From 9ee98c45e8a5fdd72fcc9a9e18b961cc2d7ea3d3 Mon Sep 17 00:00:00 2001 From: mvelasqu Date: Tue, 19 May 2026 21:30:10 -0600 Subject: [PATCH 01/13] feat: use config master files for all versions of supported plexos versions --- src/plexosdb/db.py | 192 ++++++++++++++++++++++++++-------- tests/fixtures/example_dbs.py | 29 +++-- 2 files changed, 159 insertions(+), 62 deletions(-) diff --git a/src/plexosdb/db.py b/src/plexosdb/db.py index 85a5a85..a47846b 100644 --- a/src/plexosdb/db.py +++ b/src/plexosdb/db.py @@ -4,7 +4,7 @@ import uuid from collections.abc import Iterable, Iterator from datetime import datetime -from importlib.resources import files +from importlib.resources import as_file, files from pathlib import Path from string import Template from typing import Any, Literal, TypedDict, cast @@ -46,6 +46,12 @@ CHECK_QUERY = "SELECT 1 FROM ${schema} ${where_clause}" PLEXOS_DEFAULT_SCHEMA = fpath = files("plexosdb").joinpath("schema.sql").read_text(encoding="utf-8-sig") PROPERTY_QUERY = files("plexosdb.queries").joinpath("object_properties.sql").read_text(encoding="utf-8-sig") +MASTER_TEMPLATE_FILES: dict[int, str] = { + 9: "master_9.2R6_btu.xml", + 10: "master_10.0R2_btu.xml", + 11: "master_11.0R4_btu.xml", + 12: "master_12.0R3_btu.xml", +} class PropertyRecord(TypedDict, total=False): @@ -141,6 +147,73 @@ def _get_plexos_version(self) -> tuple[int, ...] | None: return None return tuple(map(int, result[0].split("."))) + @staticmethod + def _parse_schema_version(version: int | str | tuple[int, ...]) -> int: + """Normalize schema template version to its major version number.""" + if isinstance(version, int): + major = version + elif isinstance(version, tuple): + if not version: + raise ValueError("Version tuple cannot be empty.") + major = version[0] + else: + version_str = version.strip().lower() + if version_str.startswith("v"): + version_str = version_str[1:] + + numeric_chars: list[str] = [] + for char in version_str: + if char.isdigit() or char == ".": + numeric_chars.append(char) + else: + break + + if not numeric_chars: + raise ValueError(f"Invalid schema version: {version}") + major = int("".join(numeric_chars).split(".")[0]) + + if major not in MASTER_TEMPLATE_FILES: + supported = ", ".join(map(str, sorted(MASTER_TEMPLATE_FILES))) + raise ValueError(f"Unsupported schema version '{version}'. Supported versions: {supported}") + return major + + def _import_xml_records(self, xml_path: str | Path) -> None: + """Import XML records into an existing schema.""" + xml_handler = XMLHandler.parse(fpath=xml_path) + xml_tags = {element.tag for element in xml_handler.root} + + for tag in xml_tags: + # Only parse valid schemas that we maintain. + # NOTE: If there are some missing tables, we need to add them to the Enums. + schema_enum = str2enum(tag) + if not schema_enum: + continue + + record_dict = xml_handler.get_records(schema_enum) + if not record_dict: # Skip if no records + continue + + # Group records by column structure to avoid mismatches + column_groups: dict[frozenset[str], list[dict[str, Any]]] = {} + for record in record_dict: + # Create a hashable key from the record's column names + column_key = frozenset(record.keys()) + if column_key not in column_groups: + column_groups[column_key] = [] + column_groups[column_key].append(record) + + # Process each group of consistently structured records separately + for columns, records in column_groups.items(): + column_names = list(columns) + placeholders = ", ".join([f":{s}" for s in column_names]) + columns_sql = ", ".join([f"`{key}`" for key in column_names]) + query = f"INSERT INTO {tag} ({columns_sql}) values({placeholders})" + logger.trace("{}", query) + + insert_result = self._db.executemany(query, records) + if not insert_result: + logger.warning(f"No rows inserted for {tag} with columns {column_names}") + @classmethod def from_xml( cls, @@ -210,43 +283,11 @@ def from_xml( # Temporarily disable foreign key constraints for bulk XML import instance._db.execute("PRAGMA foreign_keys = OFF") - - xml_handler = XMLHandler.parse(fpath=xml_path) - xml_tags = set([e.tag for e in xml_handler.root]) # Extract set of valid tags from xml - for tag in xml_tags: - # Only parse valid schemas that we maintain. - # NOTE: If there are some missing tables, we need to add them to the Enums. - schema_enum = str2enum(tag) - if not schema_enum: - continue - - record_dict = xml_handler.get_records(schema_enum) - if not record_dict: # Skip if no records - continue - - # Group records by column structure to avoid mismatches - column_groups: dict[frozenset[str], list[dict[str, Any]]] = {} - for record in record_dict: - # Create a hashable key from the record's column names - column_key = frozenset(record.keys()) - if column_key not in column_groups: - column_groups[column_key] = [] - column_groups[column_key].append(record) - - # Process each group of consistently structured records separately - for columns, records in column_groups.items(): - column_names = list(columns) - placeholders = ", ".join([f":{s}" for s in column_names]) - columns_sql = ", ".join([f"`{key}`" for key in column_names]) - query = f"INSERT INTO {tag} ({columns_sql}) values({placeholders})" - logger.trace("{}", query) - - insert_result = instance._db.executemany(query, records) - if not insert_result: - logger.warning(f"No rows inserted for {tag} with columns {column_names}") - - # Re-enable foreign key constraints after import - instance._db.execute("PRAGMA foreign_keys = ON") + try: + instance._import_xml_records(xml_path) + finally: + # Re-enable foreign key constraints after import + instance._db.execute("PRAGMA foreign_keys = ON") return instance @@ -2069,22 +2110,32 @@ def create_object_scenario( """Create a new scenario with specific property values for an object.""" raise NotImplementedError # pragma: no cover - def create_schema(self, schema: str | None = None) -> bool: + def create_schema( + self, + schema: str | None = None, + *, + version: int | str | tuple[int, ...] | None = None, + ) -> bool: """Create database schema from SQL script. Initializes the database schema by executing SQL statements, either from - the default schema or from a provided schema string. + the default schema or from a provided schema string. Optionally, this can + preload a versioned master template into the new schema. Parameters ---------- schema : str | None, optional Direct SQL schema content to execute. If None, uses the default schema, by default None + version : int | str | tuple[int, ...] | None, optional + PLEXOS major version used to preload the matching master template + from ``plexosdb/config``. Supported versions are 9, 10, 11, and 12. + If None, no master template is loaded. Returns ------- bool - True if the creation succeeded, False if it failed + True if initialization succeeded, False if it failed See Also -------- @@ -2102,10 +2153,61 @@ def create_schema(self, schema: str | None = None) -> bool: >>> db.create_schema() True """ - if not schema: - logger.debug("Using default schema") - return self._db.executescript(PLEXOS_DEFAULT_SCHEMA) - return self._db.executescript(schema) + existing_tables = set(self._db.tables) + has_schema = "t_class" in existing_tables + + if has_schema: + logger.debug("Schema already exists. Skipping schema creation script.") + else: + schema_sql = schema or PLEXOS_DEFAULT_SCHEMA + if not schema: + logger.debug("Using default schema") + + creation_status = self._db.executescript(schema_sql) + if not creation_status: + return False + + if version is None: + return True + + major_version = self._parse_schema_version(version) + existing_version = self._get_plexos_version() + + if existing_version: + if existing_version[0] != major_version: + msg = ( + f"Database is already initialized with version {existing_version[0]}. " + f"Requested version {major_version}. Create a new PlexosDB instance " + "to initialize a different master template version." + ) + raise ValueError(msg) + logger.debug("Master template version {} already loaded. Skipping import.", existing_version[0]) + return True + + if has_schema: + class_count = self._db.fetchone("SELECT COUNT(*) FROM t_class") + if class_count and class_count[0] > 0: + msg = ( + "Schema already contains class metadata but no version entry was found in t_config. " + "Cannot safely import a master template into a partially initialized schema. " + "Create a new PlexosDB instance and call create_schema(version=...)." + ) + raise ValueError(msg) + + template_fname = MASTER_TEMPLATE_FILES[major_version] + template_resource = files("plexosdb").joinpath("config", template_fname) + logger.debug("Loading master template for schema version {}: {}", major_version, template_fname) + + self._db.execute("PRAGMA foreign_keys = OFF") + try: + with as_file(template_resource) as template_path: + self._import_xml_records(template_path) + finally: + self._db.execute("PRAGMA foreign_keys = ON") + + # Invalidate version cache after template import. + self._version = None + return True def delete_attribute( self, diff --git a/tests/fixtures/example_dbs.py b/tests/fixtures/example_dbs.py index 8f2459c..208c757 100644 --- a/tests/fixtures/example_dbs.py +++ b/tests/fixtures/example_dbs.py @@ -1,7 +1,7 @@ from collections.abc import Generator from datetime import date from pathlib import Path -from zipfile import ZipFile +import re import pytest @@ -11,22 +11,17 @@ @pytest.fixture(scope="session") -def master_xml_files(data_folder, tmp_path_factory) -> dict[str, Path]: # type: ignore - zip_path = data_folder / "master_files.zip" - extract_dir = tmp_path_factory.getbasetemp() / "master_xml_cache" - extract_dir.mkdir(exist_ok=True) - - xml_files = {} - with ZipFile(zip_path, "r") as zip_ref: - for file_info in zip_ref.filelist: - if file_info.filename.endswith(".xml"): - stem = Path(file_info.filename).stem - extracted_path = extract_dir / file_info.filename - if not extracted_path.exists(): - zip_ref.extract(file_info, extract_dir) - xml_files[stem] = extracted_path - - yield xml_files +def master_xml_files(pytestconfig) -> dict[str, Path]: # type: ignore + config_dir = pytestconfig.rootpath.joinpath("src", "plexosdb", "config") + xml_files: dict[str, Path] = {} + + for xml_path in config_dir.glob("master_*.xml"): + match = re.match(r"master_(\d+\.\d+R\d+)_btu\.xml", xml_path.name) + if not match: + continue + xml_files[f"v{match.group(1)}"] = xml_path + + return xml_files @pytest.fixture(scope="session") From e3fac8193d577c77ed7564b66fe16ca61dde357d Mon Sep 17 00:00:00 2001 From: mvelasqu Date: Tue, 19 May 2026 21:31:07 -0600 Subject: [PATCH 02/13] feat: add new master files to handle new schema or versioning --- src/plexosdb/config/master_10.0R2_btu.xml | 199909 +++++++++++++++++ src/plexosdb/config/master_11.0R4_btu.xml | 212844 ++++++++++++++++++ src/plexosdb/config/master_12.0R3_btu.xml | 219660 +++++++++++++++++++ src/plexosdb/config/master_9.2R6_btu.xml | 186158 ++++++++++++++++ tests/data/master_files.zip | Bin 1117116 -> 0 bytes 5 files changed, 818571 insertions(+) create mode 100644 src/plexosdb/config/master_10.0R2_btu.xml create mode 100755 src/plexosdb/config/master_11.0R4_btu.xml create mode 100755 src/plexosdb/config/master_12.0R3_btu.xml create mode 100644 src/plexosdb/config/master_9.2R6_btu.xml delete mode 100644 tests/data/master_files.zip diff --git a/src/plexosdb/config/master_10.0R2_btu.xml b/src/plexosdb/config/master_10.0R2_btu.xml new file mode 100644 index 0000000..47260ee --- /dev/null +++ b/src/plexosdb/config/master_10.0R2_btu.xml @@ -0,0 +1,199909 @@ + + + 1 + 2 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 2 + 2 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 3 + 4 + 1 + Unit + 0 + 0 + 0;"-";4;"kg";5;"t";6;"kt";7;"Mt";8;"Gt";9;"ton";23;"L";24;"kL";25;"ML";26;"GL";27;"m³";28;"km³";29;"CMD";30;"gal";31;"bbl";32;"ft3";33;"MCF";34;"MMCF";35;"MTPA";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";53;"TOE";54;"kTOE";55;"MTOE";56;"kcal";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT" + true + true + 2367 + Unit the fuel is measured in + true + + + 4 + 4 + 2 + Energy Density + 85 + 0 + true + true + 2368 + Energy per unit of the fuel + true + + + 5 + 7 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 6 + 7 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 7 + 8 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 8 + 8 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 9 + 22 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 10 + 22 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 11 + 33 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 12 + 33 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 13 + 34 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 14 + 34 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 15 + 35 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 16 + 35 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 17 + 36 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 18 + 36 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 19 + 37 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 20 + 37 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 21 + 38 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 22 + 38 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 23 + 38 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 24 + 38 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 25 + 39 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 26 + 39 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 27 + 39 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 28 + 39 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 29 + 40 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 30 + 40 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 31 + 41 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 32 + 41 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 33 + 42 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 34 + 42 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 35 + 44 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 36 + 44 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 37 + 45 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 38 + 45 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 39 + 46 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the Gas Path Is Enabled + 800000 + true + + + 40 + 47 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 41 + 47 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 42 + 50 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 43 + 50 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 44 + 51 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 45 + 51 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 46 + 56 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 47 + 56 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 48 + 60 + 1 + Unit + 0 + 0 + 0;"-";1;"m";2;"km";3;"Gkm";4;"kg";5;"t";6;"kt";7;"Mt";8;"Gt";9;"ton";10;"s";11;"min";12;"hr";13;"day";14;"week";15;"°C";16;"°F";17;"HDD";18;"CDD";19;"m²";20;"ha";21;"kha";22;"km2";23;"L";24;"kL";25;"ML";26;"GL";27;"m³";28;"km³";29;"CMD";30;"gal";31;"bbl";32;"ft3";33;"MCF";34;"MMCF";35;"MTPA";36;"kPa";37;"bar";38;"psi";39;"kW";40;"MW";41;"GW";42;"TW";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";49;"kWh";50;"MWh";51;"GWh";52;"TWh";53;"TOE";54;"kTOE";55;"MTOE";56;"kcal";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT" + true + true + 2367 + Unit the Commodity is measured in + true + + + 49 + 60 + 2 + Energy Density + 85 + 0 + true + true + 2368 + Energy per unit of the Commodity + true + + + 50 + 60 + 3 + Unit Type + 0 + 0 + In (0,1) + 0;"Quantity";1;"Rate" + true + true + 2326 + Convention for reporting of Commodity at the interval level + true + + + 51 + 60 + 4 + Intrinsic + 0 + 0 + In (0,1,2,3,4) + 0;"None";1;"Electricity";2;"Heat";3;"Gas";4;"Water" + true + true + 2862 + Intrinsic Commodity + true + + + 52 + 62 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 53 + 62 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 54 + 62 + 3 + Capacity Basis + 0 + 1 + In (0,1) + 0;"Input";1;"Output" + true + true + 2467 + The basis for capacity-related properties where "Input" refers to the Primary Input and "Output" refers to the Primary Output + true + + + 55 + 65 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 56 + 65 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 57 + 69 + 1 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + false + true + 810 + If Market [Buy/Sell Unit] properties act like unit commitment or apply independently every period. + true + + + 58 + 72 + 1 + Type + 0 + 0 + In (0,1,2,3,4) + 0;"Continuous";1;"Integer";2;"Binary";3;"Semi-continuous";4;"Semi-integer" + false + true + 927 + Type of decision variable (continuous or integer). + true + + + 59 + 72 + 2 + Time Lag + 0 + 0 + false + true + 1352 + Time lag for terms in the generic decision variable definition. + true + + + 60 + 72 + 3 + Time Invariant + 0 + 1 + In (0,1,2,3) + 0;"None";1;"Bounds";2;"Cost";3;"All" + false + true + 1498 + Controls which aspects of the generic decision variable represent time-invariant values. + true + + + 61 + 74 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the Data File is enabled for build in the next pass + 800000 + true + + + 62 + 74 + 2 + Growth Period + 0 + 4 + In (1,3,4,7) + 1;"Day";3;"Month";7;"Quarter";4;"Year" + false + true + 877 + Cycle over which the growth algorithm matches energy targets (day, month, year, quarter) + true + + + 63 + 74 + 3 + Method + 0 + 1 + In (0,1,2,3) + 0;"None";1;"Linear";2;"Quadratic";3;"Custom" + false + true + 471 + Method used to align maximum (and minimum if defined) and energy values + true + + + 64 + 74 + 4 + Relative Growth at Min + 12 + 0 + false + true + 675 + Relative growth at the lowest end of the LDC for Method = Quadratic + true + + + 65 + 74 + 5 + Shape Distortion + 0 + 0 + >=0 + false + true + 1287 + Distortion of the original duration curve shape as a function of the difference in maximum and energy growth rates. + true + + + 66 + 74 + 6 + Decimal Places + 0 + 0 + >=0 + false + true + 129 + Number of decimal places in output written to text files + true + + + 67 + 74 + 7 + Missing Value Method + 0 + 0 + In (0,1,2) + 0;"Last Value";1;"Zero";2;"Default Value" + false + true + 928 + Method used to fill missing values when reading Data Files + true + + + 68 + 74 + 8 + Periods per Day + 0 + 0 + Between 0 And 86400 + false + true + 606 + Number of periods per day for Data Files using the Period column + true + + + 69 + 74 + 9 + Upscaling Method + 0 + -1 + In (-1,0,1,2) + -1;"Auto";0;"Step";1;"Interpolate";2;"Boundary Interpolate" + false + true + 1299 + Method used to upscale data e.g. from hourly to 5-minute resolution. + 100 + true + + + 70 + 74 + 10 + Downscaling Method + 0 + -1 + In (-1,0,1,2,3,4) + -1;"Auto";0;"Average";1;"First";2;"Last";3;"Max";4;"Min" + false + true + 1300 + Method used to downscale data e.g. from 5-minute to hourly resolution. + 100 + true + + + 71 + 74 + 11 + Datetime Convention + 0 + 0 + In (0,1) + 0;"Beginning of Period";1;"End of Period" + false + true + 1344 + Convention used when reading DATETIME. + true + + + 72 + 74 + 12 + Locale + 0 + 0 + >=0 + false + true + 1345 + The numeric index of the locale that should be used to read the file. + true + + + 73 + 74 + 13 + Time Shift + 6 + 0 + false + true + 1771 + Number of hours to shift data in time when interpreting dates where a positive value means the data are from a time zone that is behind the 'reference' time zone. + true + + + 74 + 74 + 14 + Week Beginning + 0 + 0 + Between -1 And 7 + false + true + 857 + Start day for mapping file data to weeks (0=automatic, 1-7=weekday, -1=hydro weeks) + true + + + 75 + 74 + 15 + Historical Sampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + false + true + 1906 + Sample data from this file between the Year From and Year To + true + + + 76 + 74 + 16 + Historical Year From + 0 + 0 + >=0 + false + true + 1907 + First year read for historical sampling + true + + + 77 + 74 + 17 + Historical Year To + 0 + 0 + >=0 + false + true + 1908 + Last year read for historical sampling + true + + + 78 + 74 + 18 + Historical Year Start + 0 + 0 + >=0 + false + true + 1909 + Start year for historical sampling within the range Year From and Year To + true + + + 79 + 74 + 19 + Historical Year Ending + 0 + 12 + Between 1 And 12 + false + true + 1917 + Month that years end in the historical data + true + + + 80 + 74 + 20 + Historical Period Type + 0 + 2 + In (2,3) + 2;"Week";3;"Month" + false + true + 1910 + Take samples at each of these period types + true + + + 81 + 74 + 21 + Base Year + 0 + 0 + >=0 + false + true + 1956 + Base year for mapping data from a file with month, day and period but no year + true + + + 82 + 75 + 1 + Compound Type + 0 + 0 + In (0,1) + 0;"Nominal";1;"Annual" + false + true + 937 + Type of compound escalator (nominal or annual equivalent rate) + true + + + 83 + 75 + 2 + Compound Start Date + 0 + -1 + false + true + 938 + Start date for compounding index (-1 means use start of planning horizon) + true + + + 84 + 78 + 1 + Read Order + 0 + 0 + true + true + 907 + Order in which to read scenario data (last read scenario has highest priority) + true + + + 85 + 78 + 2 + Locked + 0 + 0 + In (0,1) + 0;"Unlocked";1;"Locked" + true + true + 1170 + If the Scenario data are locked for editing. + true + + + 86 + 80 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the model is ready to be executed + true + + + 87 + 80 + 2 + Execution Order + 0 + 0 + >=0 + true + true + 1298 + Order in which to execute the Model when running in a batch. + true + + + 88 + 80 + 3 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + true + true + 662 + Random number seed for this model + true + + + 89 + 80 + 4 + Output to Folder + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 594 + If model output should be written to a folder under the source directory, or into the source folder itself + true + + + 90 + 80 + 5 + Make Unique Name + 0 + 0 + In (-1,0,1) + -1;"Yes";0;"No";"1";"Prompt" + true + true + 397 + If model output should be written to a unique filename for each execution + true + + + 91 + 80 + 6 + Write Input + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1221 + If Model input should be written to the output location along with the solution. + true + + + 92 + 80 + 7 + Load Custom Assemblies + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1348 + If the Model should run custom OpenPLEXOS assemblies. + true + + + 93 + 80 + 8 + Run Mode + 0 + 0 + In (0,1) + 0;"Normal";1;"Dry" + true + true + 1772 + Switches between Normal and Dry run modes + true + + + 94 + 80 + 9 + Objective Priority + 0 + 1 + >=0 + true + true + 2100 + Priority of the objective when doing hierarchical multi-objective optimization + true + + + 95 + 80 + 10 + Objective Weight + 0 + 1 + true + true + 2101 + Weight of the objective when doing blended multi-objective optimization + true + + + 96 + 80 + 11 + Objective Relative Tolerance + 0 + 0 + Between 0 And 1 + true + true + 2102 + Allowable relative degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 97 + 80 + 12 + Objective Absolute Tolerance + 0 + 0 + >=0 + true + true + 2103 + Allowable degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 98 + 81 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the project is enabled for execution + true + + + 99 + 82 + 1 + Periods per Day + 0 + 24 + Between 1 And 86400 + true + true + 606 + Number of intervals in each trading day + true + + + 100 + 82 + 2 + Compression Factor + 0 + 1 + >=1 + true + true + 2540 + Number of intervals to output per interval simulated + true + + + 101 + 82 + 3 + Date From + 0 + 43831 + >=0 + date + true + true + 125 + Start date of the planning horizon + true + + + 102 + 82 + 4 + Step Type + 0 + 1 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 765 + Planning horizon step type + true + + + 103 + 82 + 5 + Step Count + 0 + 1 + >=1 + true + true + 764 + Number of steps in the planning horizon + true + + + 104 + 82 + 6 + Look-ahead Count + 0 + 0 + >=0 + true + true + 2727 + Number of additional look-ahead steps in the planning horizon + true + + + 105 + 82 + 7 + Day Beginning + 0 + 0 + Between 0 And 23 + true + true + 126 + Start hour of the trading day + true + + + 106 + 82 + 8 + Week Beginning + 0 + 0 + Between -1 And 7 + true + true + 857 + Start day for weekly constraints + true + + + 107 + 82 + 9 + Year Ending + 0 + 0 + Between 0 And 12 + true + true + 865 + Last month of the fiscal year + true + + + 108 + 82 + 10 + Chronology + 0 + 0 + In (0,1) + 0;"Full";1;"Typical Week" + true + true + 79 + Type of chronology used + true + + + 109 + 82 + 11 + Chrono Date From + 0 + 43831 + >=0 + date + true + true + 74 + Start date for the chronological model + true + + + 110 + 82 + 12 + Chrono Period From + 0 + 1 + >=1 + true + true + 75 + Start interval for the chronological model + true + + + 111 + 82 + 13 + Chrono Period To + 0 + 24 + >=1 + true + true + 76 + End interval for the chronological model + true + + + 112 + 82 + 14 + Chrono Step Type + 0 + 2 + In (-1,0,1,2,3) + -1;"Second";0;"Minute";1;"Hour";2;"Day";3;"Week" + true + true + 78 + Chronological model step type + true + + + 113 + 82 + 15 + Chrono At a Time + 0 + 1 + >=1 + true + true + 73 + Number of steps in the chronological model + true + + + 114 + 82 + 16 + Chrono Step Count + 0 + 1 + >=1 + true + true + 77 + Number of step types in each step of the chronological model + true + + + 115 + 82 + 17 + Look-ahead Indicator + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 369 + Flag if chronological model used a look-ahead + true + + + 116 + 82 + 18 + Look-ahead Type + 0 + 1 + In (0,1,2,6) + 0;"Interval(s)";6;"Hour(s)";1;"Day(s)";2;"Week(s)" + true + true + 371 + Step type for look-ahead in chronological model + true + + + 117 + 82 + 19 + Look-ahead At a Time + 0 + 1 + >=1 + true + true + 368 + Number of step types in each step of the chronological model look-ahead + true + + + 118 + 82 + 20 + Look-ahead Periods per Day + 0 + 24 + Between 1 And 86400 + true + true + 370 + Number of intervals in each trading day of the look-ahead + true + + + 119 + 83 + 1 + Write Flat Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 863 + If the solution data are written to plain text files + true + + + 120 + 83 + 2 + Write XML Files + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 864 + If the solution data are written to XML files + true + + + 121 + 83 + 3 + XML Content + 0 + 0 + In (0,1) + 0;"Compact";1;"Full" + true + true + 1177 + Content of the zipped-XML solution files. Compact writes only binary solution tables. Raw writes binary and raw XML solution tables. + true + + + 122 + 83 + 4 + Output Results by Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 589 + If results are written by period + true + + + 123 + 83 + 5 + Output Results by Hour + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1582 + If summary results are written by hour + true + + + 124 + 83 + 6 + Output Results by Day + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 586 + If summary results are written by day + true + + + 125 + 83 + 7 + Output Results by Week + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 591 + If summary results are written by week + true + + + 126 + 83 + 8 + Output Results by Month + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 588 + If summary results are written by month + true + + + 127 + 83 + 9 + Output Results by Quarter + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1818 + If summary results are written by Quarter + true + + + 128 + 83 + 10 + Output Results by Fiscal Year + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 587 + If summary results are written by year + true + + + 129 + 83 + 11 + Output Statistics + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 593 + If statistics are calculated on multi-sample results + true + + + 130 + 83 + 12 + Output Results by Sample + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 590 + If each sample is output + true + + + 131 + 83 + 13 + Filter Objects By Interval + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 959 + If the selection of objects reported on applies to interval output + true + + + 132 + 83 + 14 + Filter Objects In Summary + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 960 + If the selection of objects reported on applies to summary output + true + + + 133 + 83 + 15 + Whole Years Only + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 961 + If reporting should be on whole years only + true + + + 134 + 83 + 16 + Datetime Convention + 0 + 0 + In (0,1) + 0;"Beginning of Period";1;"End of Period" + true + true + 1344 + Convention used when writing DATETIME. + true + + + 135 + 83 + 17 + Locale + 0 + 0 + >=0 + true + true + 1345 + The numeric index of the locale that should be used to write text files. + true + + + 136 + 83 + 18 + Flat File Format + 0 + 0 + In (0,1,2) + 0;"Datetime";1;"Periods in Columns";2;"Names in Columns" + true + true + 1359 + Format for text solution files. + true + + + 137 + 84 + 1 + Outage Pattern Count + 0 + 1 + >=1 + true + true + 521 + Number of outage patterns generated for use in MT and ST Schedule. + true + + + 138 + 84 + 2 + Monte Carlo Method + 0 + 0 + In (0,1) + 0;"Normal";1;"Convergent" + true + true + 520 + Monte-Carlo outage method. + true + + + 139 + 84 + 3 + Weibull Shape + 0 + 3 + >=0 + true + true + 523 + Shape parameter (beta) for the Weibull reliability function. + true + + + 140 + 84 + 4 + Convergent Smoothing + 0 + 5 + >=1 + true + true + 519 + Convergent Monte Carlo number of iterations used in converging outage rates. + true + + + 141 + 84 + 5 + Outage Scope + 0 + 0 + In (0,1,2,3) + 0;"All";1;"Forced Only";2;"Maintenance Only";3;"Planned Only" + true + true + 522 + Scope of preschedule outage pattern generator. + true + + + 142 + 84 + 6 + Convergence Period Type + 0 + 4 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1336 + Convergent Monte Carlo convergence period type. + true + + + 143 + 84 + 7 + Risk Sample Count + 0 + 1 + >=1 + true + true + 708 + Number of random samples generated on each Variable object. + true + + + 144 + 84 + 8 + Reduced Outage Pattern Count + 0 + 0 + >=0 + true + true + 1894 + Statistically reduce the outage patterns to at most this number. + true + + + 145 + 84 + 9 + Reduced Sample Count + 0 + 0 + >=0 + true + true + 1334 + Statistically reduce the [Risk Sample Count] to at most this number of random samples for use in simulation. + true + + + 146 + 84 + 10 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set drops to this level. + true + + + 147 + 84 + 11 + Forced Outages in Look-ahead + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1335 + If forced outages are included in the look-ahead. + true + + + 148 + 84 + 12 + EFOR Maintenance Adjust + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1793 + Adjust EFOR to account for Units Out + true + + + 149 + 84 + 13 + SDDP Iteration Limit + 0 + 20 + >=3 + true + true + 2435 + Maximum number of iterations in SDDP algorithm + true + + + 150 + 84 + 14 + SDDP Convergence Tolerance 1 + 0 + 1 + >=0 + true + true + 2436 + Objective function convergence criteria 1 for SDDP + true + + + 151 + 84 + 15 + SDDP Convergence Tolerance 2 + 0 + 0.2 + >=0 + true + true + 2437 + Objective function convergence criteria 2 for SDDP + true + + + 152 + 84 + 16 + SDDP Convergence Tolerance 2a + 0 + 0.8 + >=0 + true + true + 2438 + Objective function convergence criteria 2 (with adjustment) used in SDDP if simplification applies + true + + + 153 + 84 + 17 + SDDP Cut Sharing + 0 + 0 + In (0,1,2) + 0;"None";1;"Single";2;"Multiple" + true + true + 2642 + Type of cut sharing applied in the SDDP formulation + true + + + 154 + 84 + 18 + SDDP Simplified Chronology + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2439 + If the chronology is simplified to one block per stage during SDDP iterations + true + + + 155 + 84 + 19 + SDDP Head Effects + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2440 + If head effects are accounted for in SDDP iterations + true + + + 156 + 84 + 20 + SDDP Warm Start + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2610 + If the first forward pass of SDDP is replaced by fixed 'warm start' storage levels + true + + + 157 + 84 + 21 + SDDP Warm Start Level + 0 + 0.5 + Between 0 And 1 + true + true + 2611 + The levels to fix the storage in SDDP 'warm start' as a proportion of the distance between minimum and maximum storage levels + true + + + 158 + 84 + 22 + SDDP Replace Samples + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2614 + If the full branch samples in rolling horizon or the forward pass samples in SDDP should be replaced by user-defined samples + true + + + 159 + 84 + 23 + SDDP Final Pass Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2725 + If a final forward pass is run after the optimal policy iterations of the SDDP algorithm + true + + + 160 + 84 + 24 + FCF Scalar + 0 + 1000000 + true + true + 2441 + Scalar for future cost function objective and constraint terms + true + + + 161 + 84 + 25 + FCF Constant + 0 + 0 + true + true + 1485 + Constant future cost subtracted from the future cost during SDDP iterations + true + + + 162 + 84 + 26 + Simplified Chronology + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2541 + If the chronology is simplified to one block per stage during Rolling Horizon iterations + true + + + 163 + 84 + 27 + Simplify Hanging Branches After Branching + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2946 + If hanging branches are simplified in detail after branching + true + + + 164 + 84 + 28 + Simplify Hanging Branches Before Branching + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2947 + If hanging branches are simplified in detail before branching + true + + + 165 + 84 + 29 + Minimum Sample Weight + 0 + 1E-06 + >=0 + true + true + 2442 + Minimum sample weight for rolling horizon iterations + true + + + 166 + 84 + 30 + Deep Branching + 0 + 0 + >=0 + true + true + 2552 + For Rolling Horizon this is the level of additional branching after the end of regular branching + true + + + 167 + 84 + 31 + Rolling Horizon With Other Variables + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2532 + Perform historical sampling for all variable types + true + + + 168 + 84 + 32 + Rolling Stage Increment + 0 + -1 + true + true + 2677 + Number of stages rolled forward each iteration where -1 means this is automatically determined based on the scenario tree + true + + + 169 + 84 + 33 + Rolling Lookahead + 8 + 1 + true + true + 2724 + Number of years modeled after the end of branching in each rolling iteration + true + + + 170 + 84 + 34 + Deterministic Pass Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2726 + If the final deterministic pass is run after iterations of the Rolling Horizon algorithm + true + + + 171 + 84 + 35 + Deterministic Step Type + 0 + 0 + In (0,2,3,4) + 0;"None";2;"Week";3;"Month";4;"Year" + true + true + 2644 + The step type for solving the final deterministic pass of the rolling horizon where "None" solves the entire horizon in one step + true + + + 172 + 84 + 36 + Deterministic Batch Count + 0 + 1 + >=1 + true + true + 2650 + For Deterministic Step Type = "None" the samples in the deterministic phase will be divided into this number of batches + true + + + 173 + 84 + 37 + Deterministic Step Length + 0 + 1 + >=1 + true + true + 2645 + The number of Deterministic Step Type periods in each step of the deterministic pass of the rolling horizon + true + + + 174 + 84 + 38 + PARMA Model Type + 0 + -1 + In (-1,0,1) + -1;"None";0;"SARIMA";1;"PARMA" + true + true + 2534 + PARMA Model Type (-1 = None, 0 = SARIMA model, 1 = PARMA model) + true + + + 175 + 84 + 39 + Historical Full Branches + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2535 + Flag if full branches should be mapped by historical data in the PARMA model + true + + + 176 + 84 + 40 + Brazil Scenario Tree + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2536 + Flag if the PARMA scenario tree is created with non-equiprobability + true + + + 177 + 84 + 41 + SDDP Resampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2591 + Flag if resampling is performed for each SDDP iteration at the beginning of the forward pass (The Scenario Tree must be created with PARMA model using Brazilian Methodology) + true + + + 178 + 86 + 1 + Optimize Expansion + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2714 + If expansion is optimized by this simulation phase + true + + + 179 + 86 + 2 + Bridge Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2722 + If LT Plan should bridge (decompose) constraints for subsequent simulation phases + true + + + 180 + 86 + 3 + Bridge Storage + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2723 + If LT Plan should bridge (decompose) storage for subsequent simulation phases + true + + + 181 + 86 + 4 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 182 + 86 + 5 + Discount Period Type + 0 + 4 + In (1,2,3,4,6,7) + 3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor and expansion decisions will be computed for each of these periods. + true + + + 183 + 86 + 6 + At a Time + 0 + 0 + >=0 + true + true + 17 + Number of years solved in each step of LT Plan + true + + + 184 + 86 + 7 + Overlap + 0 + 0 + >=-1 + true + true + 595 + Number of years overlap between steps where -1 invokes Rolling Horizon + true + + + 185 + 86 + 8 + Chronology + 0 + 2 + In (2,3,4) + 2;"Partial";3;"Fitted";4;"Sampled" + true + true + 79 + Type of chronology used + true + + + 186 + 86 + 9 + LDC Type + 0 + 3 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 917 + One LDC is created for each period of this type in horizon. + true + + + 187 + 86 + 10 + Block Count + 0 + 12 + >=1 + true + true + 39 + Number of load duration curve blocks in each day/week/month. + true + + + 188 + 86 + 11 + Last Block Count + 0 + 0 + >=0 + true + true + 1702 + Number of load duration curve blocks in the last load duration curve of the horizon, or zero if the same as [Block Count]. + true + + + 189 + 86 + 12 + LDC Slicing Method + 0 + 0 + In (0,1) + 0;"Peak/Off-peak Bias";1;"Weighted Least-squares Fit" + true + true + 1200 + Method used to slice the LDC into blocks. + true + + + 190 + 86 + 13 + LDC Weight a + 0 + 0 + true + true + 1201 + LDC weighting polynomial function 'a' parameter. + true + + + 191 + 86 + 14 + LDC Weight b + 0 + 1 + true + true + 1202 + LDC weighting polynomial function 'b' parameter. + true + + + 192 + 86 + 15 + LDC Weight c + 0 + 0 + true + true + 1203 + LDC weighting polynomial function 'c' parameter. + true + + + 193 + 86 + 16 + LDC Weight d + 0 + 0 + true + true + 1204 + LDC weighting polynomial function 'd' parameter. + true + + + 194 + 86 + 17 + LDC Pin Top + 0 + -1 + >=-1 + true + true + 1205 + Number of points at the top of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 195 + 86 + 18 + LDC Pin Bottom + 0 + -1 + >=-1 + true + true + 1206 + Number of points at the bottom of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 196 + 86 + 19 + Sample Type + 0 + 2 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 1423 + For Chronology = "Sampled", take this type of sample. + true + + + 197 + 86 + 20 + Sampling Interval + 0 + 4 + In (-1,2,3,4,7) + -1;"Step";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1868 + For Chronology = "Sampled", take [Sample Type] samples in each of these intervals of time. + true + + + 198 + 86 + 21 + Sampled Block Count + 0 + 0 + >=0 + true + true + 2762 + Number of blocks modeled in each sample period (day/week) where zero means the original number of intervals + true + + + 199 + 86 + 22 + Sample Year Count + 0 + 0 + >=0 + true + true + 2227 + For [Chronology] = "Sampled", first select this many years then sample within only those years. + true + + + 200 + 86 + 23 + Reduced Sample Count + 0 + 4 + >=1 + true + true + 1334 + Statistically reduce the [Sample Type] periods to at most this number of samples each year. + true + + + 201 + 86 + 24 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set reaches this level. + true + + + 202 + 86 + 25 + Optimality + 0 + 2 + In (0,1,2) + 0;"Linear";2;"Integer" + true + true + 581 + LT Plan integerization scheme. + true + + + 203 + 86 + 26 + Integerization Horizon + 8 + -1 + >=-1 + true + true + 322 + Number of years over which the expansion decisions are integerized + true + + + 204 + 86 + 27 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon effects + true + + + 205 + 86 + 28 + Limit Capital Cost Perpetuity by Economic Life + 0 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2937 + With perpetuity end effect, if annuity calculation should extend beyond the end of the horizon up to the Economic Life + true + + + 206 + 86 + 29 + Solution Count + 0 + 1 + >=1 + true + true + 1812 + Maximum number of solutions produced in the solution hierarchy + true + + + 207 + 86 + 30 + Solution Quality + 12 + 0 + Between 0 And 100 + true + true + 1813 + Continue producing solutions up to Solution Count or when Solution Quality falls to this level + true + + + 208 + 86 + 31 + Always Annualize Build Cost + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1957 + If [Build Cost] is always annualized even when an option retires inside the horizon + true + + + 209 + 86 + 32 + Depreciation Method + 0 + 0 + In (0,1,2) + 0;"None";1;"Straight-Line";2;"Declining" + true + true + 144 + Depreciation method for computing annuities + true + + + 210 + 86 + 33 + Tax Rate + 12 + 0 + true + true + 786 + Tax rate used to compute tax credits + true + + + 211 + 86 + 34 + Inflation Rate + 12 + 0 + true + true + 311 + Inflation rate used in depreciation calculations + true + + + 212 + 86 + 35 + Heat Rate Detail + 0 + 2 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 213 + 86 + 36 + Outage Increment + 1 + 10 + >=1 + true + true + 582 + Generator outage bin size in convolution + true + + + 214 + 86 + 37 + Use Effective Load Approach + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 836 + If LT Plan uses the effective load approach + true + + + 215 + 86 + 38 + Maintenance Sculpting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 982 + If LT Plan should sculpt maintenance derating according to the inverse of load. + true + + + 216 + 86 + 39 + Pricing Method + 0 + 0 + In (0,1) + 0;"Average";1;"Marginal" + true + true + 620 + Type of generator pricing used in LT Plan. + true + + + 217 + 86 + 40 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in LT Plan. + false + + + 218 + 86 + 41 + Allow Capacity Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 8 + If regions/zones can share capacity reserves to meet requirements + true + + + 219 + 86 + 42 + Capacity Payments Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1081 + If payments are made for generation capacity + true + + + 220 + 86 + 43 + Co-optimize Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2129 + If unit commitment is co-optimized rather than sequentially optimized with expansion + true + + + 221 + 86 + 44 + Start Cost Amortization Period + 6 + 0 + >=0 + true + true + 885 + Number of hours over which generator start costs are amortized + true + + + 222 + 86 + 45 + Compute Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 88 + Master switch for computation of reliability indices LOLP, LOLE, etc. + true + + + 223 + 86 + 46 + Compute Multi-area Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1734 + Master switch for computation of reliability indices LOLP, LOLE, etc across multiple areas. + true + + + 224 + 86 + 47 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for LT Plan + true + + + 225 + 86 + 48 + Storage Restart + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2769 + If recycled storage should restart from their initial volume at the start of each capacity optimization period + true + + + 226 + 86 + 49 + Storage Formulate Head Effects + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2948 + If storage head effects should be formulated in LT Plan + true + + + 227 + 86 + 50 + Write Expansion Plan Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 908 + If expansion plans should be written to text files + true + + + 228 + 87 + 1 + Step Type + 0 + 1 + In (0,1,2) + 0;"Interval";1;"Day";2;"Week" + true + true + 765 + PASA step type: One period is modelled for each period of this type in horizon. + true + + + 229 + 87 + 2 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Definition of maintenance area for PASA. + true + + + 230 + 87 + 3 + Include DSP + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 300 + Include demand-side participation in PASA + true + + + 231 + 87 + 4 + Include Demand Bids + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 299 + Include demand bids are load in PASA + true + + + 232 + 87 + 5 + Include Contract Generation + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 297 + Include physical contract generation capacity in PASA + true + + + 233 + 87 + 6 + Include Contract Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 298 + Include physical contract load capacity in PASA + true + + + 234 + 87 + 7 + Include Market Purchases + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1232 + Include market purchases as generation capacity in PASA + true + + + 235 + 87 + 8 + Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 100 + If transmission line constraints are enabled in PASA. + true + + + 236 + 87 + 9 + Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 324 + If transmission interface constraints are enabled in PASA. + true + + + 237 + 87 + 10 + Maintenance Sculpting + 12 + 0 + Between 0 And 100 + true + true + 982 + Level of sculpting of maintenance outages: Higher sculpting means outages are more concentrated in high reserve periods + true + + + 238 + 87 + 11 + Compute Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 88 + Master switch for computation of reliability indices LOLP, LOLE, etc. + true + + + 239 + 87 + 12 + Compute Multi-area Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1734 + Master switch for computation of reliability indices LOLP, LOLE, etc across multiple areas. + true + + + 240 + 87 + 13 + Reliability Criterion + 0 + 0 + In (0,1) + 0;"LOLP";1;"Capacity Reserves" + true + true + 2705 + Criterion used to select periods for Monte Carlo reliability analysis + true + + + 241 + 87 + 14 + Reliability LOLP Tolerance + 0 + 0.01 + >=0 + true + true + 2673 + For reliability-based sampled chronology using LOLP criterion select intervals with LOLP at or above this level + true + + + 242 + 87 + 15 + Reliability Max Samples + 6 + 1E+30 + >=1 + true + true + 2674 + For reliability-based sampled chronology select no more than this many hours per year + true + + + 243 + 87 + 16 + Write Reliability Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2706 + If the periods selected for Monte Carlo reliability analysis should be written to text files + true + + + 244 + 87 + 17 + Write Outage Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 906 + If outage patterns should be written to text files + true + + + 245 + 87 + 18 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for PASA. + true + + + 246 + 88 + 1 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 247 + 88 + 2 + Discount Period Type + 0 + 2 + In (1,2,3,4,6,7) + 6;"Hour";1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor will be computed for each of these periods. + true + + + 248 + 88 + 3 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon discounting + true + + + 249 + 88 + 4 + Step Type + 0 + 4 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 765 + Each simulation step will span steps of this type. + true + + + 250 + 88 + 5 + At a Time + 0 + 0 + >=0 + true + true + 17 + Number of day/week/months/years in each MT Schedule simulation step. + true + + + 251 + 88 + 6 + Chronology + 0 + 2 + In (2,3,4,5) + 2;"Partial";3;"Fitted";4;"Sampled";5;"Reliability" + true + true + 79 + Type of chronology used + true + + + 252 + 88 + 7 + LDC Type + 0 + 1 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 917 + Create one LDC for each period of this type in the horizon. + true + + + 253 + 88 + 8 + Block Count + 0 + 3 + >=1 + true + true + 39 + Number of load duration curve blocks in each day/week/month. + true + + + 254 + 88 + 9 + Last Block Count + 0 + 0 + >=0 + true + true + 1702 + Number of load duration curve blocks in the last load duration curve of the horizon, or zero if the same as [Block Count]. + true + + + 255 + 88 + 10 + LDC Slicing Method + 0 + 0 + In (0,1) + 0;"Peak/Off-peak Bias";1;"Weighted Least-squares Fit" + true + true + 1200 + Method used to slice the LDC into blocks. + true + + + 256 + 88 + 11 + LDC Weight a + 0 + 0 + true + true + 1201 + LDC weighting polynomial function 'a' parameter. + true + + + 257 + 88 + 12 + LDC Weight b + 0 + 1 + true + true + 1202 + LDC weighting polynomial function 'b' parameter. + true + + + 258 + 88 + 13 + LDC Weight c + 0 + 0 + true + true + 1203 + LDC weighting polynomial function 'c' parameter. + true + + + 259 + 88 + 14 + LDC Weight d + 0 + 0 + true + true + 1204 + LDC weighting polynomial function 'd' parameter. + true + + + 260 + 88 + 15 + LDC Pin Top + 0 + -1 + >=-1 + true + true + 1205 + Number of points at the top of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 261 + 88 + 16 + LDC Pin Bottom + 0 + -1 + >=-1 + true + true + 1206 + Number of points at the bottom of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 262 + 88 + 17 + Sample Type + 0 + 2 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 1423 + For [Chronology] = "Sampled", take this type of sample. + true + + + 263 + 88 + 18 + Sampling Interval + 0 + 4 + In (-1,2,3,4) + -1;"Step";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1868 + For Chronology = "Sampled", take [Sample Type] samples in each of these intervals of time. + true + + + 264 + 88 + 19 + Sampled Block Count + 0 + 0 + >=0 + true + true + 2762 + Number of blocks modeled in each sample period (day/week) where zero means the original number of intervals + true + + + 265 + 88 + 20 + Reduced Sample Count + 0 + 4 + >=1 + true + true + 1334 + Statistically reduce the [Sample Type] periods to at most this number of samples each year. + true + + + 266 + 88 + 21 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set reaches this level. + true + + + 267 + 88 + 22 + Heat Rate Detail + 0 + 1 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 268 + 88 + 23 + Use Effective Load Approach + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 836 + If MT Schedule uses the effective load approach + true + + + 269 + 88 + 24 + Outage Increment + 1 + 10 + >=1 + true + true + 582 + Generator outage bin size in convolution + true + + + 270 + 88 + 25 + Pricing Method + 0 + 0 + In (0,1) + 0;"Average";1;"Marginal" + true + true + 620 + Type of generator pricing used in MT Schedule + true + + + 271 + 88 + 26 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in MT Schedule + false + + + 272 + 88 + 27 + New Entry Driver + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Reliability Only";2;"Reliability+Entrepreneurial";3;"Entrepreneurial Only" + true + true + 556 + New entry driver. + true + + + 273 + 88 + 28 + New Entry Capacity Mechanism + 0 + 0 + In (0,1,2) + 0;"None";1;"Capacity Payment";2;"Reserve Trader" + true + true + 555 + Capacity payment mechanism. + true + + + 274 + 88 + 29 + New Entry Time Lag + 55 + 12 + >=0 + true + true + 557 + Lag time for entrepreneurial entry. + true + + + 275 + 88 + 30 + Start Cost Amortization Period + 6 + 0 + >=0 + true + true + 885 + Number of hours over which generator start costs are amortized + true + + + 276 + 88 + 31 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for MT Schedule + true + + + 277 + 88 + 32 + Stochastic Algorithm + 0 + 0 + In (0,1) + 0;"Rolling Horizon";1;"SDDP" + true + true + 2235 + Algorithm invoked by the Stochastic Method when a scenario tree is present + true + + + 278 + 88 + 33 + Storage Formulate Head Effects + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2948 + If storage head effects should be formulated in MT Schedule. + true + + + 279 + 88 + 34 + Write Bridge Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1963 + If bridge information such as constraint decomposition and storage targets should be written to text files + true + + + 280 + 88 + 35 + Step Link Mode + 0 + 0 + In (0,1,2) + 0;"Link";1;"Break";2;"Parallel" + true + true + 1987 + Controls how the solutions of each step are linked together. + true + + + 281 + 88 + 36 + Reliability Min Contiguous Block + 6 + 0 + >=0 + true + true + 2675 + For reliability based sampled chronology ensure sampled periods are contained in contiguous blocks of at least this many hours + true + + + 282 + 89 + 1 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 283 + 89 + 2 + Discount Period Type + 0 + 2 + In (1,2,3,4,6,7) + 6;"Hour";1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor will be computed for each of these periods. + true + + + 284 + 89 + 3 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon discounting + true + + + 285 + 89 + 4 + Heat Rate Detail + 0 + 0 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 286 + 89 + 5 + Transmission Detail + 0 + 1 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in ST Schedule + false + + + 287 + 89 + 6 + Stochastic Method + 0 + 1 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for ST Schedule + true + + + 288 + 89 + 7 + Storage Formulate Head Effects + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2948 + If storage head effects should be formulated in ST Schedule. + true + + + 289 + 89 + 8 + Step Link Mode + 0 + 0 + In (0,1,2) + 0;"Link";1;"Break";2;"Parallel" + true + true + 1987 + Controls how the solutions of each step are linked together. + true + + + 290 + 89 + 9 + Step Relink Count + 0 + 1 + >=1 + true + true + 2704 + Number of steps that require relinking of initial conditions in parallel Step Link Mode, where 1 means no relinking + true + + + 291 + 89 + 10 + Sequential Steps + 0 + 1 + >=1 + true + true + 2703 + Number of steps run in each sequential block when running in parallel Step Link Mode + true + + + 292 + 90 + 1 + Detail + 0 + 1 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 2104 + Level of detail used in transmission modeling + true + + + 293 + 90 + 2 + MVA Base + 0 + 100 + >=0 + true + true + 528 + MVA base for AC line parameters. + true + + + 294 + 90 + 3 + OF Method + 0 + 0 + In (0,1) + 0;"Variable Shift Factor";1;"Fixed Shift Factor" + true + true + 580 + Method for solving optimal power flow. + true + + + 295 + 90 + 4 + Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 100 + If transmission line constraints are enabled. + true + + + 296 + 90 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 976 + If transmission constraints should all be formulated upfront rather than checked iteratively. + true + + + 297 + 90 + 6 + Constraint Voltage Threshold + 4 + 0 + >=0 + true + true + 99 + Voltage level at which thermal limits are modelled. + true + + + 298 + 90 + 7 + Constraint Limit Penalty + 33 + -1 + true + true + 2685 + Penalty for exceeding line and transformer limits. + true + + + 299 + 90 + 8 + Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 324 + If interface constraints are enabled. + true + + + 300 + 90 + 9 + Enforce Limits On Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 178 + If lines and transformers in interfaces should have their limits enforced regardless of voltage + true + + + 301 + 90 + 10 + Interface Limit Penalty + 33 + -1 + true + true + 2686 + Penalty for exceeding interface flow limits. + true + + + 302 + 90 + 11 + Losses Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 387 + If transmission losses are enabled. + true + + + 303 + 90 + 12 + Loss Voltage Threshold + 4 + 0 + >=0 + true + true + 386 + Voltage level at which losses are modelled. + true + + + 304 + 90 + 13 + Loss Method + 0 + 0 + In (0,1,3,4,5) + 0;"Auto";1;"Piecewise Linear";3;"Conic";4;"Successive MLF";5;"Single-pass GPF" + true + true + 384 + Formulation method used to model transmission losses. + true + + + 305 + 90 + 14 + Max Loss Relative Error + 0 + 0 + >=0 + true + true + 379 + Maximum allowed relative error in the piecewise linear loss function. + true + + + 306 + 90 + 15 + Max Loss Absolute Error + 0 + 0 + >=0 + true + true + 1915 + Maximum allowed absolute error in the piecewise linear loss function. + true + + + 307 + 90 + 16 + Max Loss Tranches + 0 + 100 + >=1 + true + true + 438 + Maximum number of tranches in piecewise linear line loss function. + true + + + 308 + 90 + 17 + Loss Tolerance + 0 + 1E-05 + >=0 + true + true + 385 + Relative gap between real and modelled losses. + true + + + 309 + 90 + 18 + Max Loss Iterations + 0 + 50 + >=1 + true + true + 437 + Maximum number of iterations for converging the losses. + true + + + 310 + 90 + 19 + Max Embedded Loss Iterations + 0 + 2 + >=0 + true + true + 422 + Maximum number of iterations for removing embedded losses from load. + true + + + 311 + 90 + 20 + Detect Non-physical Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 890 + If non-physical losses should be detected (in the piecewise linear loss model) and removed via mixed-integer programming + true + + + 312 + 90 + 21 + PTDF Method + 0 + 0 + In (0,1,2,3,4) + 0;"Single Slack Bus";1;"Distributed Slack (Reference Load)";3;"Distributed Slack (Generation Capacity)";4;"Distributed Slack (Reference Generation)" + true + true + 636 + Method for computation of shift factors + true + + + 313 + 90 + 22 + Flow PTDF Threshold + 0 + 0.01 + >=0 + true + true + 637 + Minimum absolute value of PTDF as coefficient in transmission flow constraints. + true + + + 314 + 90 + 23 + Commitment PTDF Threshold + 0 + 0 + >=0 + true + true + 2801 + Minimum absolute value of PTDF coefficient in commitment solves. + true + + + 315 + 90 + 24 + Wheeling PTDF Threshold + 0 + 0.05 + >=0 + true + true + 1371 + Minimum absolute value of PTDF as coefficient in wheeling definitions. + true + + + 316 + 90 + 25 + LODF Threshold + 0 + 0.03 + >=0 + true + true + 2237 + Minimum absolute value of LODF to be used in contingency flow constraints. + true + + + 317 + 90 + 26 + Cache Transmission Matrices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1955 + Cache the transmission matrices to disk for future use. + true + + + 318 + 90 + 27 + Reactance Cut-off + 0 + 0 + true + true + 668 + Smallest allowable reactance when performing OPF. + true + + + 319 + 90 + 28 + Allow Dump Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 9 + Model Dump Energy in OPF + true + + + 320 + 90 + 29 + Allow Unserved Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 10 + Model Unserved Energy in OPF + true + + + 321 + 90 + 30 + Energy Balance Violation Variables + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2048 + Include violation variables on the transmission system energy balance equations + true + + + 322 + 90 + 31 + Bound Node Phase Angles + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1029 + If the Node [Phase Angle] values are subject to bounds in absolute value. + true + + + 323 + 90 + 32 + Max Absolute Phase Angle + 53 + 6.28 + Between 0 And 6.28318530717958 + true + true + 1030 + Maximum absolute value allowed for any Node [Phase Angle]. + true + + + 324 + 90 + 33 + Internal VoLL + 14 + 100000 + Between 0 And 1E+9 + true + true + 325 + Value of Lost Load used internally + true + + + 325 + 90 + 34 + USE Threshold + 12 + 100 + Between 0 And 100 + true + true + 1479 + Formulates the [Unserved Energy] variables on the top x% nodes (highest load). + true + + + 326 + 90 + 35 + Rental Method + 0 + 0 + In (0,1) + 0;"Point-to-Point";1;"Flow Gate" + true + true + 681 + Method used to calculate transmission rentals + true + + + 327 + 90 + 36 + Interruption Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 328 + If region interruption sharing is activated. + true + + + 328 + 90 + 37 + Report Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 684 + If transmission reporting is enabled. + true + + + 329 + 90 + 38 + Report Voltage Threshold + 4 + 0 + >=0 + true + true + 687 + Voltage level at which transmission reporting begins. + true + + + 330 + 90 + 39 + Report Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 686 + If all flows on lines selected interfaces are reported + true + + + 331 + 90 + 40 + Report All Interregional Flows + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 683 + If line flows between regions should be reported regardless of kV. + true + + + 332 + 90 + 41 + Report All Interzonal Flows + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1512 + If line flows between zones should be reported regardless of kV. + true + + + 333 + 90 + 42 + Report Injection and Load Nodes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 685 + If all injection and load buses (nodes) are reported on (regardless of voltage) + true + + + 334 + 90 + 43 + Convergence Report Level + 0 + 1 + In (0,1,2) + 0;"None";1;"Normal";2;"Verbose" + true + true + 114 + Level of screen reporting during transmission convergence iterations (none, normal, verbose) + true + + + 335 + 90 + 44 + SCUC Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 727 + If security constrained unit commitment (SCUC) is enabled + true + + + 336 + 90 + 45 + SCUC Constraint Voltage Threshold + 4 + 0 + >=0 + true + true + 726 + Voltage level at which SCUC line thermal limits are modelled. + true + + + 337 + 90 + 46 + SCUC Interface Constraints Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1032 + If enabled interface constraints are monitored in SCUC. + true + + + 338 + 90 + 47 + Enforce N-1 Contingencies + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1480 + If N-1 contingencies should be automatically enforced. + true + + + 339 + 90 + 48 + N-1 Contingency Voltage Threshold + 4 + 0 + >=0 + true + true + 1481 + Voltage level at which N-1 contingencies are automatically enforced. + true + + + 340 + 90 + 49 + Contingency Monitoring Threshold + 12 + 100 + Between 0 And 100 + true + true + 1627 + Monitor only this percentage of most affected Line/Transformer/Interface flows. + true + + + 341 + 90 + 50 + Contingency Limit Penalty + 33 + -1 + true + true + 2050 + Penalty for exceeding contingency flow limits. + true + + + 342 + 90 + 51 + Limit Threshold + 0 + 0.95 + Between 0 And 1 + true + true + 728 + Line, Transformer, or Interface flow loading threshold above which limits are added. + true + + + 343 + 90 + 52 + Limit Bootstrap Initial Threshold + 0 + 2 + >=0 + true + true + 1016 + Initial value of [Limit Threshold] during transmission constraint bootstrap phase. + true + + + 344 + 90 + 53 + Limit Bootstrap Threshold Decrement + 0 + 0.25 + Between 0 And 1 + true + true + 1017 + [Limit Threshold] decrement used for each iteration of transmission bootstrap phase. + true + + + 345 + 90 + 54 + Max Limit Iterations + 0 + 1000 + >=0 + true + true + 1018 + Maximum number of iterations during any one call to enforce transmission limits. + true + + + 346 + 90 + 55 + Filter Limits + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2006 + If transmission limits are filtered using extreme flows from MT Schedule + true + + + 347 + 90 + 56 + Zero Limit Treatment + 0 + 0 + In (0,1) + 0;"Out-of-service";1;"Unlimited" + true + true + 2120 + Treatment of AC elements with zero limits + true + + + 348 + 90 + 57 + Calculate Node LPF from Load + 0 + 0 + In (0,1) + 0;"No";1;"Yes" + true + true + 2140 + Automatically calculate Node LPF from input Load property + true + + + 349 + 91 + 1 + Dispatch by Power Station + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 148 + If generators in power stations should be treated in aggregate for dispatch. + true + + + 350 + 91 + 2 + Power Station Aggregation Mode + 0 + 0 + In (0,1,2) + 0;"None";1;"Name";2;"Location" + true + true + 2821 + Automatically create Power Station objects by aggregating Generators + true + + + 351 + 91 + 3 + Unit Commitment Optimality + 0 + 0 + In (0,1,2,3) + 0;"Linear";1;"Rounded Relaxation";2;"Integer" + true + true + 811 + Unit commitment integerization scheme. + true + + + 352 + 91 + 4 + Rounding Up Threshold + 0 + 0.5 + Between 0 And 1 + true + true + 711 + Threshold at which non-integers are rounded up. + true + + + 353 + 91 + 5 + Rounded Relaxation Commitment Model + 0 + 0 + In (0,1) + 0;"Central";1;"Self" + true + true + 1891 + Determines if the unit commitment decisions are made centrally or by self-commitment + true + + + 354 + 91 + 6 + Rounded Relaxation Tuning + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1151 + If the Rounded Relaxation method should self-tune the [Rounding Up Threshold]. + true + + + 355 + 91 + 7 + Rounded Relaxation Start Threshold + 0 + 0.25 + >=0 + true + true + 1152 + Start value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 356 + 91 + 8 + Rounded Relaxation End Threshold + 0 + 0.75 + <=1 + true + true + 1153 + End value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 357 + 91 + 9 + Rounded Relaxation Threshold Increment + 0 + 0.05 + >=0.01 + true + true + 1154 + Increment value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 358 + 91 + 10 + DP Capacity Factor Threshold + 12 + 20 + >=0 + true + true + 910 + Minimum capacity factor for generators to be dispatched by the DP + true + + + 359 + 91 + 11 + DP Capacity Factor Error Threshold + 12 + 20 + >=0 + true + true + 889 + Error in DP capacity factor compared to MT Schedule capacity factor below which the DP solution is accepted + true + + + 360 + 91 + 12 + Capacity Factor Constraint Basis + 0 + 0 + In (0,1) + 0;"Installed Capacity";1;"Rated Capacity" + true + true + 61 + Basis for capacity factor constraints. + true + + + 361 + 91 + 13 + Forced Outage Relaxes Min Down Time + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1860 + If ramp constraints should all be formulated upfront rather than checked iteratively. + true + + + 362 + 91 + 14 + Gas Demand Resolution + 0 + 0 + In (0,1,2) + 0;"Interval";1;"Hour";2;"Day" + true + true + 1964 + Resolution of input gas demands + true + + + 363 + 91 + 15 + Heat Rate Detail + 0 + 0 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling + true + + + 364 + 91 + 16 + Unit Commitment Heat Rate Detail + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2445 + If modeling fully detailed heat rates for unit commitment. Otherwise perform a two-pass UC/ED. + true + + + 365 + 91 + 17 + Integers in Look-ahead + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + true + true + 1422 + Controls when the look-ahead contains integers for unit commitment and other decisions. + true + + + 366 + 91 + 18 + Cooling States Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2130 + If generator unit cooling states are enabled + true + + + 367 + 91 + 19 + Run Up and Down Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2106 + If generator run up and run down are modeled + true + + + 368 + 91 + 20 + Transitions Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2108 + If generator transitions are modeled + true + + + 369 + 91 + 21 + Start Cost Method + 0 + 0 + In (0,1) + 0;"Optimize";1;"Calculate" + true + true + 993 + Method for handling start costs in the mathematical formulation (integrate into the formulation, or calculate ex-post) + true + + + 370 + 91 + 22 + Start and Stop Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2105 + If facility start up and shut down are modeled + true + + + 371 + 91 + 23 + Ramping Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2820 + If facility ramping constraints are modeled + true + + + 372 + 91 + 24 + Pump and Generate + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1943 + If pumped storage/battery is allowed to pump/charge and generate/discharge simultaneously + true + + + 373 + 91 + 25 + Increment and Decrement + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2867 + If simultaneous closure of increment and decrement bids/offers around a base is allowed + true + + + 374 + 91 + 26 + Fuel Use Function Precision + 0 + 0 + >=0 + true + true + 226 + Precision for calculation of linear approximation to fuel function. + true + + + 375 + 91 + 27 + Max Heat Rate Tranches + 0 + 10 + Between 1 And 100 + true + true + 432 + Maximum number of tranches in the fuel function piecewise linear approximation + true + + + 376 + 91 + 28 + Min Heat Rate Tranche Size + 0 + 0 + >=0 + true + true + 2567 + Minimum tranche size in fuel function piecewise linear approximation + true + + + 377 + 91 + 29 + Heat Rate Error Method + 0 + 2 + In (0,1,2,3,4) + 0;"Throw Error";1;"Warn Adjust Report Raw";2;"Warn Adjust Report Adjusted";3;"No Warn Adjust";4;"Allow Non-convex" + true + true + 262 + Method for handling non-convex heat rate functions. + true + + + 378 + 91 + 30 + Formulate Upfront + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 976 + If production constraints should all be formulated upfront rather than checked iteratively. + true + + + 379 + 91 + 31 + Formulate Ramp Upfront + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1370 + If ramp constraints should all be formulated upfront rather than checked iteratively. + true + + + 380 + 91 + 32 + Warm Up Process Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2539 + If modeling of Facility Warm Up Process is enabled + true + + + 381 + 92 + 1 + Equilibrium Model + 0 + 0 + In (0,1,2) + 0;"None";1;"LRMC";2;"Nash-Cournot" + true + true + 179 + Equilibrium Model. Optimizes generation / pricing position of portfolios over the short or medium term. + true + + + 382 + 92 + 2 + Default Elasticity + 56 + -0.2 + <0 + true + true + 132 + Default price elasticity of demand + true + + + 383 + 92 + 3 + Demand Scaling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1447 + If Nash-Cournot result scales input loads to reflect price elasticity of demand. + true + + + 384 + 92 + 4 + Revenue Targeting Method + 0 + 0 + In (0,1,2) + 0;"Increment Only";1;"Decrement Only";2;"Increment or Decrement" + true + true + 699 + Method used in adjusting offers to meet revenue targets. + true + + + 385 + 92 + 5 + Revenue Targeting Iterations + 0 + 1 + >=1 + true + true + 698 + Number of iterations used to recover fixed costs. + true + + + 386 + 92 + 6 + Pricing Strategy + 0 + 0 + In (0,1,2,3) + 0;"Off";1;"No Congestion";2;"Regional";3;"Zonal" + true + true + 621 + The Bertrand Competition strategy used to set offer/bid prices each interval. + true + + + 387 + 92 + 7 + Bertrand Detect Active Ramp Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1416 + If the Bertrand algorithm should detect when generators are constrained due to ramping. + true + + + 388 + 92 + 8 + Bertrand OOMOD Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1417 + If the Bertrand algorithm should seek to maximize profits by out-of-merit-order dispatch. + true + + + 389 + 92 + 9 + Epsilon + 0 + 0.01 + >0 + true + true + 442 + Minimum margin between competing offer prices or between offer prices and the price cap. + true + + + 390 + 92 + 10 + RSI Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 715 + If Residual Supply Index method is used. + true + + + 391 + 92 + 11 + RSI Enabled for Load Bids + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2845 + If Residual Supply Index method is used for Load Bids. + true + + + 392 + 92 + 12 + RSI Bid-Cost Mark-up Method + 0 + 0 + In (0,1,2) + 0;"Variable by Merit Order";1;"Variable by Supply Capacity";2;"Uniform" + true + true + 713 + Method used in applying calculated bid cost markups to companies then generating units. + true + + + 393 + 92 + 13 + No Load Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 558 + If marginal cost bid should be adjusted to account for no-load cost + true + + + 394 + 92 + 14 + Mark-up Min Stable Level + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 410 + If mark-up should be applied to the full range of unit output including [Min Stable Level]. + true + + + 395 + 92 + 15 + Start Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1869 + If mark-ups are calculated to recover generator start cost + true + + + 396 + 92 + 16 + Start Cost Mark-up Production Bands + 0 + 100 + >=1 + true + true + 1870 + Number of bands of production used in recovery of a start cost across each window + true + + + 397 + 92 + 17 + Start Cost Mark-up Window + 6 + 24 + true + true + 1871 + Number of hours over which a start cost should be recovered using mark-up on production + true + + + 398 + 92 + 18 + Start Cost Mark-up Method + 0 + 0 + In (0,1) + 0;"Co-optimize";1;"Simple" + true + true + 2565 + Algorithm used to apply start cost mark-ups + true + + + 399 + 92 + 19 + Contracts Optimize Offers + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 112 + If contract position should be considered when offering generation. + true + + + 400 + 92 + 20 + Contracts Settlement Method + 0 + 0 + In (0,1,2) + 0;"Fixed";1;"Pro-rata";2;"Least-cost" + true + true + 113 + Method of calculating contract quantities for settlement + true + + + 401 + 92 + 21 + Contracts Handoff Point + 0 + 0 + In (0,1) + 0;"Purchaser's Price";1;"Generator's Price" + true + true + 111 + Location of hand-off for setting of contract settlement price + true + + + 402 + 92 + 22 + Market Trading Format + 0 + 1 + In (0,1) + 0;"Bilateral";1;"POOLCO" + true + true + 407 + Trading format for Cournot model (Bilateral=No Arbitrage, POOLCO=With Arbitrage). + true + + + 403 + 92 + 23 + Non Price Setting Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2107 + If non-price setting plant should be fixed prior to the final price calculation + true + + + 404 + 93 + 1 + SOLVER + 0 + 4 + In (0,1,2,3,4,6,7) + 0;"MOSEK";1;"CPLEX";2;"Xpress-MP";3;"SoPlex/SCIP";4;"Gurobi";6;"Default";7;"GLPK" + true + true + 755 + SOLVER engine used by PLEXOS. + true + + + 405 + 93 + 2 + Small LP Optimizer + 0 + 0 + Between 0 And 9 + 0;"Auto";1;"Barrier";2;"Conic";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";7;"Mixed Integer";8;"Nonconvex";9;"Concurrent" + true + true + 750 + Optimizer used to solve 'small' liner programming problems. + true + + + 406 + 93 + 3 + Small LP Nonzero Count + 0 + 250000 + >0 + true + true + 749 + Maximum number of non-zeros in a 'small' linear programming problem. + true + + + 407 + 93 + 4 + Cold Start Optimizer 1 + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 83 + First priority optimizer used to solve problems from a cold-start. + true + + + 408 + 93 + 5 + Cold Start Optimizer 2 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 84 + Second priority optimizer used to solve problems from a cold-start. + true + + + 409 + 93 + 6 + Cold Start Optimizer 3 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 85 + Third priority optimizer used to solve problems from a cold-start. + true + + + 410 + 93 + 7 + Hot Start Optimizer 1 + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 271 + First priority optimizer used to solve problems from a hot-start. + true + + + 411 + 93 + 8 + Hot Start Optimizer 2 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 272 + Second priority optimizer used to solve problems from a hot-start. + true + + + 412 + 93 + 9 + Hot Start Optimizer 3 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 273 + Third priority optimizer used to solve problems from a hot-start. + true + + + 413 + 93 + 10 + Concurrent Mode + 0 + 0 + In (0,1) + 0;"Deterministic";1;"Opportunistic" + true + true + 2693 + Mode for the concurrent optimizer + true + + + 414 + 93 + 11 + Presolve + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2773 + Toggles on/off solver presolve + true + + + 415 + 93 + 12 + Scaling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2774 + Toggles on/off solver problem scaling + true + + + 416 + 93 + 13 + Crossover + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2768 + If crossover is used to transform the interior solution produced by barrier into a basic solution + true + + + 417 + 93 + 14 + Feasibility Tolerance + 0 + 0 + >=0 + true + true + 2446 + Allowable violation of variable bounds (0 = solver default value) + true + + + 418 + 93 + 15 + Optimality Tolerance + 0 + 0 + >=0 + true + true + 2653 + Optimality tolerance (0 = solver default value) + true + + + 419 + 93 + 16 + Objective Scalar + 0 + 1 + >0 + true + true + 2651 + Scale the objective function internally by this factor + true + + + 420 + 93 + 17 + Objective Tolerance + 0 + 0 + >=0 + true + true + 2652 + Smallest allowable objective function coefficient + true + + + 421 + 93 + 18 + Maximum Threads + 0 + -1 + >=-1 + true + true + 468 + Maximum number of threads used simultaneously by all simplex and interior point optimizers, where -1 means all available threads. + true + + + 422 + 93 + 19 + MIP Root Optimizer + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 516 + Optimizer used to solve the linear relaxation of a mixed-integer program. + true + + + 423 + 93 + 20 + MIP Node Optimizer + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 513 + Optimizer used at the nodes of the branch and bound algorithm. + true + + + 424 + 93 + 21 + MIP Relative Gap + 0 + 0.0001 + >=0 + true + true + 515 + Declare the integer solution optimal when this gap is reached between the current integer solution and best-bound linear relaxation (this is not a measure of optimality). + true + + + 425 + 93 + 22 + MIP Improve Start Gap + 0 + 0 + >=0 + true + true + 1309 + Switch strategy to improving the best integer solution when this gap is reached. + true + + + 426 + 93 + 23 + MIP Absolute Gap + 0 + 0 + >=0 + true + true + 2447 + Absolute tolerance on the gap between the best integer objective and the objective of the best node remaining + true + + + 427 + 93 + 24 + MIP Max Relative Gap + 0 + 0 + >=0 + true + true + 2646 + When set to a value greater than zero, the MIP Max Time is treated as a soft constraint with optimization continuing until the MIP Max Relative Gap is reached. + true + + + 428 + 93 + 25 + MIP Max Absolute Gap + 0 + 0 + >=0 + true + true + 2819 + When set to a value greater than zero, the MIP Max Time is treated as a soft constraint with optimization continuing until the MIP Max Absolute Gap is reached. + true + + + 429 + 93 + 26 + MIP Max Time + 5 + -1 + >=-1 + true + true + 511 + Maximum time in mixed integer programming algorithm + true + + + 430 + 93 + 27 + MIP Max Relaxation Repair Time + 5 + -1 + >=-1 + true + true + 1905 + Maximum time allowed in repairing an infeasible mixed integer programming problem + true + + + 431 + 93 + 28 + MIP Maximum Threads + 0 + -1 + >=-1 + true + true + 512 + Maximum number of threads used by the mixed integer optimizer, where -1 means all available threads. + true + + + 432 + 93 + 29 + MIP Start Solution + 0 + 1 + Between 0 And 2 + 0;"Never";1;"Within Step";2;"Within And Between Steps" + true + true + 1945 + MIP solver will be warm started with previous solutions according to this setting. + true + + + 433 + 93 + 30 + MIP Focus + 0 + 0 + In (0,1,2,3) + 0;"Balanced";1;"Feasibility";2;"Optimality";3;"Best Bound" + true + true + 2659 + High-level solution strategy for the MIP solver + true + + + 434 + 93 + 31 + Carry over MIP Time + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2448 + If unused MIP Max Time is carried over to the next MIP solve allowing more time on harder problems + true + + + 435 + 93 + 32 + MIP Max Time with Carry over + 5 + -1 + >=-1 + true + true + 2449 + Maximum time in mixed integer programming algorithm including any unused time carried over + true + + + 436 + 93 + 33 + MIP Hard Stop + 5 + -1 + >=-1 + true + true + 2770 + Hard limit on the mixed integer programming time when using MIP Max Relative Gap and MIP Max Time is a soft limit + true + + + 437 + 93 + 34 + MIP Interrupt + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2802 + If the MIP search can be interrupted by pressing the CTRL-P key combination + true + + + 438 + 93 + 35 + Hint Mode + 0 + 0 + In (0,1,2) + 0;"Start";1;"Hint";2;"Fixed" + true + true + 2772 + Controls how variable hints are used by the solver + true + + + 439 + 93 + 36 + Random Number Seed + 0 + 0 + Between 0 And 2000000000 + true + true + 662 + Random number seed for the solver + true + + + 440 + 93 + 37 + Monitoring Periodic Clearing + 0 + 0 + >=0 + true + true + 2694 + Clear monitored constraints and variables from the formulation periodically (number of steps) + true + + + 441 + 93 + 38 + Monitoring Maximum Threads + 0 + -1 + >=-1 + true + true + 2450 + Maximum number of threads for monitored constraint iterations, where -1 means all available threads. + true + + + 442 + 93 + 39 + Maximum Monitored MIP Iterations + 0 + -1 + true + true + 2045 + Maximum number of monitored row/column iterations with MIP enabled + true + + + 443 + 93 + 40 + Maximum Parallel Tasks + 0 + -1 + >=-1 + true + true + 1918 + Maximum number of parallel optimizations run concurrently, where -1 means one task per CPU. + true + + + 444 + 93 + 41 + Feasibility Repair Failure + 0 + 0 + In (0,1) + 0;"Stop";1;"Continue" + true + true + 1989 + Action to take if an infeasible problem cannot be repaired. + true + + + 445 + 94 + 1 + Clear Existing + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1022 + Clear (delete) existing diagnostic files from the solution folder. + true + + + 446 + 94 + 2 + Task Size + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1023 + Print the size of the optimization task. + true + + + 447 + 94 + 3 + Task Components + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 962 + Print a summary of the formulation elements by class. + true + + + 448 + 94 + 4 + LP Progress + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 391 + Show progress messages from the LP/QP solver + true + + + 449 + 94 + 5 + MIP Progress + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 514 + Show progress messages from the MIP solver + true + + + 450 + 94 + 6 + Solver Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 756 + Print a summary of the solution status, objective function value, etc for each mathematical program solved. + true + + + 451 + 94 + 7 + Summary Exact Conditioning + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2887 + Report exact basis condition number (if available) in the solver summary. + true + + + 452 + 94 + 8 + Solution Status + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1171 + Status of the solution to each mathematical programming problem. + true + + + 453 + 94 + 9 + Times + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1024 + Print the time taken for each activity. + true + + + 454 + 94 + 10 + Sample Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1025 + Print summary for each sample of a multi-sample run. + true + + + 455 + 94 + 11 + Step Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1026 + Print summary for each step of a multi-step run. + true + + + 456 + 94 + 12 + Performance Summary + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1893 + Print performance summary at the completion of each simulation phase. + true + + + 457 + 94 + 13 + Step From + 0 + 1 + >=1 + true + true + 1418 + Limit diagnostic file writing to step numbers starting at this number. + true + + + 458 + 94 + 14 + Step To + 0 + -1 + >=-1 + true + true + 1419 + Limit diagnostic file writing to step numbers ending at this number (-1 means infinity). + true + + + 459 + 94 + 15 + Sample From + 0 + 1 + >=1 + true + true + 1883 + Limit diagnostic file writing to sample numbers starting at this number. + true + + + 460 + 94 + 16 + Sample To + 0 + -1 + >=-1 + true + true + 1884 + Limit diagnostic file writing to sample numbers ending at this number (-1 means infinity). + true + + + 461 + 94 + 17 + LP Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 390 + Write math programs to disk in LP text format + true + + + 462 + 94 + 18 + MPS Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1035 + Write math programs to disk in MPS text format + true + + + 463 + 94 + 19 + Solution Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 754 + Write math program solutions to disk in text format + true + + + 464 + 94 + 20 + Generic Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1033 + Use generic names in math program files + true + + + 465 + 94 + 21 + Binary Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 38 + Write math programs to disk in binary format + true + + + 466 + 94 + 22 + Use Generic Writer + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1895 + Use generic writer for LP and solution files + true + + + 467 + 94 + 23 + Sort Row Column Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1896 + Generic writer will sort row and columns names + true + + + 468 + 94 + 24 + Standardize Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1897 + Generic writer will standardize names in LP and SOL files + true + + + 469 + 94 + 25 + Strip Model Name + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1898 + Generic writer will strip out the Model name from LP and SOL files + true + + + 470 + 94 + 26 + Algebraic + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1899 + Write LP files in algebraic format + true + + + 471 + 94 + 27 + Skip Zero Values + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1900 + Generic writer will print only non-zero valued primal and dual variables in SOL files + true + + + 472 + 94 + 28 + Zero Tolerance LP + 0 + 0 + >=0 + true + true + 1901 + Generic writer zero value tolerance for LP file writing + true + + + 473 + 94 + 29 + Zero Tolerance SOL + 0 + 0 + >=0 + true + true + 1902 + Generic writer zero value tolerance for SOL file writing + true + + + 474 + 94 + 30 + Decimal Places LP + 0 + 6 + >=0 + true + true + 1903 + Generic writer decimal places for LP file writing + true + + + 475 + 94 + 31 + Decimal Places SOL + 0 + 6 + >=0 + true + true + 1904 + Generic writer decimal places for SOL file writing + true + + + 476 + 94 + 32 + Infeasibility LP Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2568 + Write infeasible and repaired math programs to disk in text format + true + + + 477 + 94 + 33 + Infeasibility MPS Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2569 + Write infeasible and repaired math programs to disk in MPS format + true + + + 478 + 94 + 34 + Max Infeasibility Log Lines + 0 + -1 + >=-1 + true + true + 1421 + Maximum number of infeasibility diagnostic lines written to the screen and log file. + true + + + 479 + 94 + 35 + IIS + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2225 + Compute the irreducibly inconsistent set (IIS) for each infeasibility and write to disk in text format + true + + + 480 + 94 + 36 + Feasibility Repair Weight + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1117 + Write the weights used in feasibility repair for each variable/constraint class + true + + + 481 + 94 + 37 + Database Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1922 + Output the database loading process to log file. + true + + + 482 + 94 + 38 + Licensing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1923 + Writes details of licenses checked out + true + + + 483 + 94 + 39 + Computer Information + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1925 + Output computer information. + true + + + 484 + 94 + 40 + Data File Read + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1924 + Output data file information to log file. + true + + + 485 + 94 + 41 + Monitored Iterations Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2046 + Print a summery message after iterations of row/column monitoring + true + + + 486 + 94 + 42 + Monitored Iterations + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2047 + Print messages for every iteration of row/column monitoring + true + + + 487 + 94 + 43 + Bertrand Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 30 + Write diagnostics for the Bertrand pricing algorithm + true + + + 488 + 94 + 44 + Revenue Recovery + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 697 + Write diagnostics for the LRMC recovery algorithm + true + + + 489 + 94 + 45 + Bid-Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 32 + Write diagnostics for RSI bid cost markup calculations + true + + + 490 + 94 + 46 + New Entry + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 554 + Write diagnostics for MT Schedule new entry calculations + true + + + 491 + 94 + 47 + Shift Factors + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 745 + Write the computed shift factors (PTDF) to a diagnostic file + true + + + 492 + 94 + 48 + Unserved Energy + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 825 + Write diagnostics each time USE occurs at a node + true + + + 493 + 94 + 49 + Interruption Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 328 + Write diagnostics for interruption sharing + true + + + 494 + 94 + 50 + Network Traversal + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1944 + Invokes network reduction algorithm which can improve performance on large-scale networks. + true + + + 495 + 94 + 51 + Transmission Topology + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1921 + Write a summary of the transmission topology to the log + true + + + 496 + 94 + 52 + Transmission Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 797 + Write diagnostics for convergence of the quadratic loss method + true + + + 497 + 94 + 53 + Congestion Charges + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 956 + Write diagnostics for Node.[Congestion Charge] calculations + true + + + 498 + 94 + 54 + Marginal Loss Charges + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 957 + Write diagnostics for Node.[Marginal Loss Charge] calculations + true + + + 499 + 94 + 55 + Binding Contingencies + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 958 + Write diagnostics for binding Contingency constraints + true + + + 500 + 94 + 56 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 810 + Write diagnostics for the Rounded Relaxation unit commitment algorithm + true + + + 501 + 94 + 57 + Constraint Decomposition + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 95 + Write diagnostics for constraint decomposition in MT Schedule + true + + + 502 + 94 + 58 + Constraint Rollover + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 98 + Write diagnostics for constraint RHS carry-over in ST Schedule + true + + + 503 + 94 + 59 + Storage Decomposition + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1620 + Write diagnostics for storage decomposition + true + + + 504 + 94 + 60 + Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 804 + Write diagnostics for uplift and Uniform Pricing + true + + + 505 + 94 + 61 + Marginal Unit + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 671 + Execute region marginal unit diagnostic (this is an active diagnostic) + true + + + 506 + 94 + 62 + Marginal Unit Transmission Detail + 0 + 0 + In (0,1) + 0;"Regional";1;"System" + true + true + 1755 + Transmission area for marginal unit diagnostic + true + + + 507 + 94 + 63 + Marginal Unit Increment + 1 + -1 + true + true + 1223 + Increment used for load in the marginal unit diagnostic. + true + + + 508 + 94 + 64 + Marginal Expansion Unit + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1222 + Run algorithm to calculate the marginal generating unit for expansion (LT Plan). + true + + + 509 + 94 + 65 + Marginal Expansion Increment + 1 + 1000 + true + true + 1224 + Increment used for load in the region marginal expansion unit diagnostic. + true + + + 510 + 94 + 66 + Region Supply + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 672 + Execute region supply diagnostic (this is an active diagnostic) + true + + + 511 + 94 + 67 + Annuities + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 15 + Write diagnostics for annuity calculations + true + + + 512 + 94 + 68 + NPV + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1621 + Write diagnostics for LT Plan NPV of optimal plan + true + + + 513 + 94 + 69 + Embedded Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 870 + Write diagnostics for embedded loss iterations + true + + + 514 + 94 + 70 + Outages + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 895 + Write diagnostics for generator and line outages + true + + + 515 + 94 + 71 + Random Number Seed + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 662 + Write out the Random Number Seed used for each Generator and Line + true + + + 516 + 94 + 72 + Interleaved + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1375 + Write diagnostics for Model Interleaved run mode + true + + + 517 + 94 + 73 + Heat Rate + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 260 + Write diagnostics for Generator Heat Rate curve fitting and non-convex corrections. + true + + + 518 + 94 + 74 + Objective Function + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1420 + Write diagnostics for non-zero terms in the objective function. + true + + + 519 + 94 + 75 + Future Cost Function + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1503 + Write diagnostics for the future cost function. + true + + + 520 + 94 + 76 + Historical Sampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1906 + Write the historical samples. + true + + + 521 + 94 + 77 + Scenario Tree + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1681 + Write diagnostics for the scenario tree + true + + + 522 + 94 + 78 + Sample Weights + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1682 + Write diagnostics for the sample weights + true + + + 523 + 94 + 79 + SDDP Convergence + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2434 + Write SDDP convergence diagnostic file + true + + + 524 + 94 + 80 + Sample Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2874 + Write diagnostics for reduced sample periods and periods mapping by sampled chronology. + true + + + 525 + 95 + 1 + Report + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1354 + If enabled the list object is passed into the solution file and can be used to build queries in the solution viewer + true + + + 526 + 95 + 2 + Filter + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1355 + If enabled the list object becomes a filter for the input interface. + true + + + 527 + 95 + 3 + Inclusive Empty + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1356 + This means that an empty collection implies all objects are included. + true + + + 528 + 95 + 4 + Transient + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1357 + Transient lists are not saved in the XML but only exist in the current session. + true + + + 6 + 102 + 4 + + + 6 + 114 + 366 + + + 7 + 102 + 4 + + + 7 + 103 + 10 + + + 8 + 122 + 0 + + + 11 + 129 + -1 + + + 11 + 130 + -1 + + + 12 + 137 + 20 + + + 13 + 181 + 10 + + + 17 + 286 + 0 + + + 18 + 294 + 1 + + + 18 + 297 + 230 + + + 18 + 319 + 0 + + + 18 + 320 + 0 + + + 18 + 329 + 230 + + + 1 + 1 + 0 + - + + + 2 + 2 + 0 + - + + + 3 + 3 + 0 + - + + + 4 + 4 + 0 + - + + + 5 + 5 + 0 + - + + + 6 + 6 + 0 + - + + + 7 + 7 + 0 + - + + + 8 + 8 + 0 + - + + + 9 + 9 + 0 + - + + + 10 + 10 + 0 + - + + + 11 + 11 + 0 + - + + + 12 + 12 + 0 + - + + + 13 + 13 + 0 + - + + + 14 + 14 + 0 + - + + + 15 + 15 + 0 + - + + + 16 + 16 + 0 + - + + + 17 + 17 + 0 + - + + + 18 + 18 + 0 + - + + + 19 + 19 + 0 + - + + + 20 + 20 + 0 + - + + + 21 + 21 + 0 + - + + + 22 + 22 + 0 + - + + + 23 + 23 + 0 + - + + + 24 + 24 + 0 + - + + + 25 + 25 + 0 + - + + + 26 + 26 + 0 + - + + + 27 + 27 + 0 + - + + + 28 + 28 + 0 + - + + + 29 + 29 + 0 + - + + + 30 + 30 + 0 + - + + + 31 + 31 + 0 + - + + + 32 + 32 + 0 + - + + + 33 + 33 + 0 + - + + + 34 + 34 + 0 + - + + + 35 + 35 + 0 + - + + + 36 + 36 + 0 + - + + + 37 + 37 + 0 + - + + + 38 + 38 + 0 + - + + + 39 + 39 + 0 + - + + + 40 + 40 + 0 + - + + + 41 + 41 + 0 + - + + + 42 + 42 + 0 + - + + + 43 + 43 + 0 + - + + + 44 + 44 + 0 + - + + + 45 + 45 + 0 + - + + + 46 + 46 + 0 + - + + + 47 + 47 + 0 + - + + + 48 + 48 + 0 + - + + + 49 + 49 + 0 + - + + + 50 + 50 + 0 + - + + + 51 + 51 + 0 + - + + + 52 + 52 + 0 + - + + + 53 + 53 + 0 + - + + + 54 + 54 + 0 + - + + + 55 + 55 + 0 + - + + + 56 + 56 + 0 + - + + + 57 + 57 + 0 + - + + + 58 + 58 + 0 + - + + + 59 + 59 + 0 + - + + + 60 + 60 + 0 + - + + + 61 + 61 + 0 + - + + + 62 + 62 + 0 + - + + + 63 + 63 + 0 + - + + + 64 + 64 + 0 + - + + + 65 + 65 + 0 + - + + + 66 + 66 + 0 + - + + + 67 + 67 + 0 + - + + + 68 + 68 + 0 + - + + + 69 + 69 + 0 + - + + + 70 + 70 + 0 + - + + + 71 + 71 + 0 + - + + + 72 + 72 + 0 + - + + + 73 + 73 + 0 + - + + + 74 + 74 + 0 + - + + + 75 + 75 + 0 + - + + + 76 + 76 + 0 + - + + + 77 + 77 + 0 + - + + + 78 + 78 + 0 + - + + + 79 + 79 + 0 + - + + + 80 + 80 + 0 + - + + + 81 + 81 + 0 + - + + + 82 + 82 + 0 + - + + + 83 + 83 + 0 + - + + + 84 + 84 + 0 + - + + + 85 + 85 + 0 + - + + + 86 + 86 + 0 + - + + + 87 + 87 + 0 + - + + + 88 + 88 + 0 + - + + + 89 + 89 + 0 + - + + + 90 + 90 + 0 + - + + + 91 + 91 + 0 + - + + + 92 + 92 + 0 + - + + + 93 + 93 + 0 + - + + + 94 + 94 + 0 + - + + + 95 + 95 + 0 + - + + + 96 + 96 + 0 + - + + + 1 + System + 1 + true + 1 + The integrated energy system + + + 2 + Generator + 2 + true + 22 + Generating unit, or collection of like generating units + + + 3 + Power Station + 2 + false + 23 + Collection of Generators that can be dispatched together + + + 4 + Fuel + 2 + true + 18 + Fuel for a thermal generating unit + + + 5 + Fuel Contract + 2 + false + 24 + Fuel contract + + + 6 + Power2X + 2 + false + 115 + Facility to convert electric power to hydrogen and then gas or other products + + + 7 + Battery + 2 + false + 61 + Battery energy storage system + + + 8 + Storage + 2 + false + 19 + Storage reservoir, head-pond, or tail-pond + + + 9 + Waterway + 2 + false + 20 + Waterway for representing rivers, canals, and spillways + + + 10 + Emission + 2 + false + 21 + Class of generator emission (e.g. NoX, SoX, CO2, etc) + + + 11 + Abatement + 2 + false + 55 + Emission abatement technology + + + 12 + Physical Contract + 2 + false + 25 + Physical contract (import, export, or wheel) + + + 13 + Purchaser + 2 + false + 26 + Demand + + + 14 + Reserve + 2 + false + 16 + Ancillary service + + + 15 + Reliability + 2 + false + 116 + Reliability group + + + 16 + Financial Contract + 2 + false + 4 + Financial contract (e.g. CfD, swap, cap, etc) + + + 17 + Cournot + 2 + false + 6 + Nash-Cournot game + + + 18 + RSI + 2 + false + 7 + Residual supply index analysis + + + 19 + Region + 3 + true + 8 + Transmission region/area + + + 20 + Pool + 3 + false + 75 + Set of transmission regions in a pool + + + 21 + Zone + 3 + true + 9 + Set of transmission buses in a zone + + + 22 + Node + 3 + true + 10 + Transmission node/bus + + + 23 + Load + 3 + false + 121 + Electricity Load + + + 24 + Line + 3 + true + 11 + Transmission line (AC, DC, or notional/entrepreneurial interconnector) + + + 25 + MLF + 3 + false + 12 + Marginal loss factor equation + + + 26 + Transformer + 3 + false + 13 + Voltage transformer + + + 27 + Flow Control + 3 + false + 14 + Flow control + + + 28 + Interface + 3 + false + 15 + Transmission interface + + + 29 + Contingency + 3 + false + 17 + A contingency for use in security constrained economic dispatch + + + 30 + Hub + 3 + false + 59 + A collection of nodes representing a pricing area + + + 31 + Transmission Right + 3 + false + 5 + Transmission right (FTR, SRA) + + + 32 + Heat Plant + 4 + false + 72 + Heat production plant + + + 33 + Heat Node + 4 + false + 73 + Heat connection point + + + 34 + Heat Storage + 4 + false + 118 + Storage where thermal energy can be stored and withdrawn + + + 35 + Gas Field + 5 + false + 49 + Field from which gas is extracted + + + 36 + Gas Plant + 5 + false + 70 + Gas processing plant e.g. converting raw natural gas to pipeline quality + + + 37 + Gas Pipeline + 5 + false + 51 + Pipeline for transporting gas + + + 38 + Gas Node + 5 + false + 52 + Connection point in gas network + + + 39 + Gas Storage + 5 + false + 50 + Storage where gas can be injected and extracted + + + 40 + Gas Demand + 5 + false + 53 + Demand for gas + + + 41 + Gas DSM Program + 5 + false + 109 + Demand side management programs + + + 42 + Gas Basin + 5 + false + 60 + Collection of gas fields in a common basin + + + 43 + Gas Zone + 5 + false + 56 + Set of gas nodes + + + 44 + Gas Contract + 5 + false + 69 + Gas contract + + + 45 + Gas Transport + 5 + false + 71 + Gas shipment + + + 46 + Gas Path + 5 + false + 132 + Gas shipment path + + + 47 + Gas Capacity Release Offer + 5 + false + 110 + The release of available pipeline or storage capacity to another party. + + + 48 + Water Plant + 6 + false + 63 + Water production plant e.g. desalination plant + + + 49 + Water Pipeline + 6 + false + 65 + Water network pipeline + + + 50 + Water Node + 6 + false + 66 + Water network node + + + 51 + Water Storage + 6 + false + 64 + Water storage tank + + + 52 + Water Demand + 6 + false + 67 + Demand for water + + + 53 + Water Zone + 6 + false + 68 + Set of water network nodes + + + 54 + Water Pump Station + 6 + false + 119 + Collection of Pumps that can be dispatched together + + + 55 + Water Pump + 6 + false + 120 + Device to move water upstream using electrical energy + + + 56 + Vehicle + 7 + false + 112 + An electric vehicle (EV, PHEV, etc) + + + 57 + Charging Station + 7 + false + 113 + An electric vehicle charging station + + + 58 + Fleet + 7 + false + 114 + A fleet of vehicles + + + 59 + Company + 8 + false + 2 + Energy utility or other ownership entity + + + 60 + Commodity + 9 + false + 122 + A commodity that can be produced, consumed, stored, transformed, traded, priced and constrained + + + 61 + Process + 9 + false + 123 + A process that transforms one or more input commodities to one or more output commodities + + + 62 + Facility + 9 + false + 124 + A facility that performs one or more processes + + + 63 + Maintenance + 9 + false + 62 + A class of maintenance events to be optimally placed in time + + + 64 + Flow Network + 9 + false + 126 + A network that flows a Commodity + + + 65 + Flow Node + 9 + false + 127 + A node in a flow network + + + 66 + Flow Path + 9 + false + 128 + A path in a flow network + + + 67 + Flow Storage + 9 + false + 129 + A storage located at a Flow Node + + + 68 + Entity + 9 + false + 125 + Ownership and/or strategic entity + + + 69 + Market + 9 + false + 3 + A market that can supply and/or demand a Commodity + + + 70 + Constraint + 10 + false + 27 + Generic constraint + + + 71 + Objective + 10 + false + 111 + Generic objective function + + + 72 + Decision Variable + 10 + false + 57 + Generic decision variable + + + 73 + Nonlinear Constraint + 10 + false + 117 + Generic non-linear constraint + + + 74 + Data File + 11 + true + 29 + Reference to an external text file + + + 75 + Variable + 11 + false + 31 + Stochastic variable + + + 76 + Timeslice + 11 + false + 34 + Timeslice for applying to data and/or reporting + + + 77 + Global + 11 + false + 58 + Data that are global to the simulation + + + 78 + Scenario + 11 + true + 35 + Data scenario + + + 79 + Weather Station + 11 + false + 76 + Collection of all weather events related to local station + + + 80 + Model + 12 + true + 36 + Collection of data scenarios that define a model to be evaluated + + + 81 + Project + 12 + true + 37 + Collection of models saved into single project database + + + 82 + Horizon + 13 + true + 32 + Simulation horizon + + + 83 + Report + 13 + true + 33 + Set of report selections + + + 84 + Stochastic + 14 + true + 46 + Stochastic settings + + + 85 + Preview + 13 + true + 131 + Preview of the input data used + + + 86 + LT Plan + 13 + true + 38 + LT Plan simulation phase + + + 87 + PASA + 13 + true + 39 + PASA simulation phase + + + 88 + MT Schedule + 13 + true + 40 + MT Schedule simulation phase + + + 89 + ST Schedule + 13 + true + 41 + ST Schedule simulation phase + + + 90 + Transmission + 14 + true + 43 + Transmission settings + + + 91 + Production + 14 + true + 44 + Production settings + + + 92 + Competition + 14 + true + 45 + Competition settings + + + 93 + Performance + 14 + true + 47 + Performance settings + + + 94 + Diagnostic + 14 + true + 48 + Diagnostic settings + + + 95 + List + 15 + true + 54 + Generic list of objects + + + 96 + Layout + 15 + true + 130 + A graphical layout + + + 1 + - + 0 + + + 2 + Electric + 1 + + + 3 + Transmission + 2 + + + 4 + Heat + 14 + + + 5 + Gas + 10 + + + 6 + Water + 11 + + + 7 + Transport + 15 + + + 8 + Ownership + 3 + + + 9 + Universal + 16 + + + 10 + Generic + 4 + + + 11 + Data + 5 + + + 12 + Execute + 6 + + + 13 + Simulation + 7 + + + 14 + Settings + 8 + + + 15 + List + 13 + + + 1 + 1 + 2 + Generators + 0 + -1 + true + true + 36 + Generator objects + 1 + + + 2 + 2 + 2 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Generator inherits from + Generator objects inheriting from this template + 2 + + + 3 + 95 + 2 + Generators + 0 + -1 + Lists + 0 + -1 + true + true + 36 + set of Generator objects in the List + set of Lists containing the Generator + 3 + + + 4 + 2 + 2 + Heat Input + 0 + -1 + Heat Output + 0 + -1 + false + false + 40 + set of generators that provide heat input to the generator + generator that receives the waste heat from this generator + 4 + + + 5 + 2 + 2 + Transition + 0 + -1 + false + false + 218 + set of generators that can transition + 5 + + + 6 + 2 + 3 + Power Station + 0 + -1 + Generators + 0 + -1 + true + false + 76 + power station the generator belongs to + power station the generator is aggregated in to + 6 + + + 7 + 2 + 4 + Fuels + 0 + -1 + Generators + 0 + -1 + true + false + 31 + set of fuels used by the generator + set of generators that use the fuel + 7 + + + 8 + 2 + 4 + Start Fuels + 0 + -1 + Generators Started + 0 + -1 + true + false + 92 + fuels available for starting units + set of generators that use the fuel to start + 8 + + + 9 + 2 + 6 + Source Power2X + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 293 + 9 + + + 10 + 2 + 8 + Head Storage + 0 + 1 + Exporting Generators + 0 + -1 + true + false + 38 + head storage for the generator + set of generators that draw water from the storage + 10 + + + 11 + 2 + 8 + Tail Storage + 0 + 1 + Importing Generators + 0 + -1 + true + false + 97 + tail storage for the generator + set of generators that release water into the storage + 11 + + + 12 + 2 + 22 + Nodes + 1 + -1 + Generators + 0 + -1 + true + false + 70 + set of nodes the generator injects energy at + set of generators injecting at the node + 12 + + + 13 + 2 + 22 + Nodes* + 0 + -1 + Generators* + 0 + -1 + false + true + 178 + creates copies of the generator at each node in this collection + create copies of these generators and place at this node + 13 + + + 14 + 2 + 33 + Heat Input Nodes + 0 + -1 + Generators Supplied + 0 + -1 + true + false + 223 + set of heat nodes supplying heat to the generator + set of generators supplied by the node + 14 + + + 15 + 2 + 33 + Heat Output Nodes + 0 + -1 + Supplying Generators + 0 + -1 + true + false + 224 + set of heat nodes collecting waste heat from the generator + set of generators supplying waste heat to the node + 15 + + + 16 + 2 + 35 + Source Gas Fields + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 289 + 16 + + + 17 + 2 + 36 + Source Gas Plants + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 292 + 17 + + + 18 + 2 + 38 + Gas Node + 0 + -1 + Generators + 0 + -1 + true + false + 117 + set of gas nodes connected to the generator + set of generators connected to the gas node + 18 + + + 19 + 2 + 38 + Start Gas Nodes + 0 + -1 + Generators Started + 0 + -1 + true + false + 304 + set of gas nodes available for starting units + set of generators connected to the gas node + 19 + + + 20 + 2 + 39 + Source Gas Storages + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 290 + 20 + + + 21 + 2 + 44 + Source Gas Contracts + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 291 + 21 + + + 22 + 2 + 45 + Source Gas Transports + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 299 + 22 + + + 23 + 2 + 50 + Water Node + 0 + 1 + Generators + 0 + -1 + true + false + 200 + Water Node the Generator connects to + set of Generators connected to the Water Node + 23 + + + 24 + 2 + 59 + Companies + 0 + -1 + Generators + 0 + -1 + true + false + 9 + set of companies that own the generator + set of generators the company owns + 24 + + + 25 + 2 + 60 + Commodities Consumed + 0 + -1 + Consuming Generators + 0 + -1 + true + false + 274 + set of Commodities consumed by the Generator + set of Generators that consume the Commodity + 25 + + + 26 + 2 + 60 + Commodities Produced + 0 + -1 + Producing Generators + 0 + -1 + true + false + 275 + set of Commodities produced by the Generator + set of Generators that produce the Commodity + 26 + + + 27 + 2 + 63 + Maintenances + 0 + -1 + Generators + 0 + -1 + true + false + 179 + set of maintenance events on the generator + set of generators taken out on maintenance + 27 + + + 28 + 2 + 65 + Flow Nodes + 0 + -1 + Generators + 0 + -1 + true + false + 279 + set of Flow Nodes the Generator connects to + set of Generators connected to the Flow Node + 28 + + + 29 + 2 + 69 + Capacity Markets + 0 + -1 + Capacity Generators + 0 + -1 + true + true + 4 + set of capacity markets the generator sells into + set of generators that sell capacity into the market + 29 + + + 30 + 2 + 69 + Heat Markets + 0 + -1 + Heat Generators + 0 + -1 + true + true + 286 + set of markets the generator sell heat-based products into + set of generators providing heat-based products to the market + 30 + + + 31 + 2 + 69 + Mark-to-Markets + 0 + -1 + Generators + 0 + -1 + false + false + 228 + market used to mark-to-market energy and reserves + generators using this market to mark-to-market + 31 + + + 32 + 2 + 70 + Constraints + 0 + -1 + Generators + 0 + -1 + true + true + 12 + set of Constraints on the Generator + set of Generators in the Constraint + 32 + + + 33 + 2 + 71 + Objectives + 0 + -1 + Generators + 0 + -1 + true + true + 240 + set of Objectives on the Generator + set of Generators in the Objective + 33 + + + 34 + 2 + 72 + Decision Variables + 0 + -1 + Generators + 0 + -1 + true + true + 166 + set of generators whose equations include the decision variable + Decision Variables included in the Generator formulation + 34 + + + 35 + 2 + 75 + Conditions + 0 + -1 + Generators + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Generator + set of Generator objects that define when the Variable is active + 35 + + + 36 + 1 + 3 + Power Stations + 0 + -1 + true + true + 77 + Power Station objects + 36 + + + 37 + 3 + 3 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Power Station inherits from + Power Station objects inheriting from this template + 37 + + + 38 + 95 + 3 + Power Stations + 0 + -1 + Lists + 0 + -1 + true + true + 77 + set of Power Station objects in the List + set of Lists containing the Power Station + 38 + + + 39 + 3 + 22 + Nodes + 0 + -1 + true + false + 70 + (optional) set of nodes the power station injects at + 39 + + + 40 + 1 + 4 + Fuels + 0 + -1 + true + true + 31 + Fuel objects + 40 + + + 41 + 4 + 4 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fuel inherits from + Fuel objects inheriting from this template + 41 + + + 42 + 95 + 4 + Fuels + 0 + -1 + Lists + 0 + -1 + true + true + 31 + set of Fuel objects in the List + set of Lists containing the Fuel + 42 + + + 43 + 4 + 6 + Source Power2X + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 293 + 43 + + + 44 + 4 + 35 + Source Gas Fields + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 289 + 44 + + + 45 + 4 + 36 + Source Gas Plants + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 292 + 45 + + + 46 + 4 + 38 + Gas Nodes + 0 + -1 + Fuels + 0 + -1 + true + false + 115 + set of gas nodes the fuel is delivered through + set of fuels delivered from the gas node + 46 + + + 47 + 4 + 39 + Source Gas Storages + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 290 + 47 + + + 48 + 4 + 44 + Source Gas Contracts + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 291 + 48 + + + 49 + 4 + 45 + Source Gas Transports + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 299 + 49 + + + 50 + 4 + 59 + Companies + 0 + -1 + Fuels + 0 + -1 + true + false + 9 + set of companies that own the fuel + set of fuels the company owns + 50 + + + 51 + 4 + 62 + Facilities + 0 + -1 + Fuels + 0 + -1 + true + true + 267 + set of Facilities that consume the Fuel + set of Fuels the Facility consumes + 51 + + + 52 + 4 + 65 + Flow Nodes + 0 + -1 + Fuels + 0 + -1 + true + false + 279 + set of Flow Nodes the Fuel connects to + set of Fuels connected to the Flow Node + 52 + + + 53 + 4 + 69 + Markets + 0 + -1 + Fuels + 0 + -1 + true + false + 61 + set of markets the fuel is bought/sold from/to + set of fuels in the market + 53 + + + 54 + 4 + 70 + Constraints + 0 + -1 + Fuels + 0 + -1 + true + true + 12 + set of Constraints on the Fuel + set of Fuels in the Constraint + 54 + + + 55 + 4 + 71 + Objectives + 0 + -1 + Fuels + 0 + -1 + true + true + 240 + set of Objectives on the Fuel + set of Fuels in the Objective + 55 + + + 56 + 4 + 75 + Conditions + 0 + -1 + Fuels + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Fuel + set of Fuel objects that define when the Variable is active + 56 + + + 57 + 1 + 5 + Fuel Contracts + 0 + -1 + true + true + 30 + Fuel Contract objects + 57 + + + 58 + 5 + 5 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fuel Contract inherits from + Fuel Contract objects inheriting from this template + 58 + + + 59 + 95 + 5 + Fuel Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 30 + set of Fuel Contract objects in the List + set of Lists containing the Fuel Contract + 59 + + + 60 + 5 + 2 + Generators + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 36 + set of generators whose fuel use is subject to the contract + set of fuel contracts associated with supply to the generator + 60 + + + 61 + 5 + 4 + Fuel + 1 + 1 + Fuel Contracts + 0 + -1 + true + false + 29 + fuel in the contract + set of fuel contracts on the fuel + 61 + + + 62 + 5 + 59 + Companies + 0 + -1 + Fuel Contracts + 0 + -1 + true + false + 9 + set of companies that own the fuel contract + set of fuel contracts owned by the company + 62 + + + 63 + 5 + 70 + Constraints + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Fuel Contract + set of Fuel Contracts in the Constraint + 63 + + + 64 + 5 + 71 + Objectives + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Fuel Contract + set of Fuel Contracts in the Objective + 64 + + + 65 + 1 + 6 + Power2X + 0 + -1 + true + true + 244 + Power2X objects + 65 + + + 66 + 6 + 6 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Power2X inherits from + Power2X objects inheriting from this template + 66 + + + 67 + 95 + 6 + Power2X + 0 + -1 + Lists + 0 + -1 + true + true + 244 + set of Power2X objects in the List + set of Lists containing the Power2X + 67 + + + 68 + 6 + 4 + Fuels + 0 + 1 + Power2X + 0 + -1 + true + false + 31 + The set of fuels produced by the facility + The set of Power2X facilities that produce the fuel + 68 + + + 69 + 6 + 22 + Nodes + 1 + -1 + Power2X + 0 + -1 + true + false + 70 + The set of electric nodes the facility draws load from + The set of Power2X facilities at the node + 69 + + + 70 + 6 + 33 + Heat Nodes + 0 + -1 + Power2X + 0 + 1 + true + true + 220 + The set of heat nodes the facility supplies + The Power2X facility at the heat node + 70 + + + 71 + 6 + 34 + Heat Storages + 0 + -1 + Power2X + 0 + 1 + true + true + 253 + The set of Heat Storages connected to Power2X + The Power2X facility that is connected to Heat Storage + 71 + + + 72 + 6 + 38 + Gas Nodes + 0 + -1 + Power2X + 0 + -1 + true + true + 115 + The set of gas nodes the facility supplies + The Power2X facility at the gas node + 72 + + + 73 + 6 + 39 + Gas Storages + 0 + -1 + Power2X + 0 + 1 + true + true + 113 + The set of Gas Storages connected to Power2X + The Power2X facility connected to Gas Storage + 73 + + + 74 + 6 + 50 + Water Nodes + 0 + -1 + Power2X + 0 + 1 + true + true + 191 + The set of water nodes the facility draws water from + The Power2X facility at the water node + 74 + + + 75 + 6 + 59 + Companies + 0 + -1 + Power2X + 0 + -1 + true + false + 9 + set of companies that own the Power2X + set of Power2X the company owns + 75 + + + 76 + 6 + 60 + Commodities + 0 + -1 + Power2X + 0 + -1 + true + false + 260 + set of Commodities produced by the Power2X facility + The set of Power2X facilities that produce the Commodity + 76 + + + 77 + 6 + 65 + Flow Nodes + 0 + -1 + Power2X + 0 + -1 + true + false + 279 + set of Flow Nodes the Power2X connects to + set of Power2X objects connected to the Flow Node + 77 + + + 78 + 6 + 70 + Constraints + 0 + -1 + Power2X + 0 + -1 + true + true + 12 + set of Constraints on the Power2X + set of Power2X in the Constraint + 78 + + + 79 + 6 + 71 + Objectives + 0 + -1 + Power2X + 0 + -1 + true + true + 240 + set of Objectives on the Power2X + set of Power2X in the Objective + 79 + + + 80 + 1 + 7 + Batteries + 0 + -1 + true + true + 176 + Battery objects + 80 + + + 81 + 7 + 7 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Battery inherits from + Battery objects inheriting from this template + 81 + + + 82 + 95 + 7 + Batteries + 0 + -1 + Lists + 0 + -1 + true + true + 176 + set of Battery objects in the List + set of Lists containing the Battery + 82 + + + 83 + 7 + 22 + Nodes + 1 + -1 + Batteries + 0 + -1 + true + false + 70 + set of nodes the battery is connected to + set of batteries connected to the node + 83 + + + 84 + 7 + 22 + Nodes* + 0 + -1 + Batteries* + 0 + -1 + false + true + 178 + creates copies of the battery at each node in this collection + create copies of these batteries and place at this node + 84 + + + 85 + 7 + 59 + Companies + 0 + -1 + Batteries + 0 + -1 + true + false + 9 + set of companies that own the battery + set of batteries the company owns + 85 + + + 86 + 7 + 60 + Commodities Consumed + 0 + -1 + Consuming Batteries + 0 + -1 + true + false + 274 + set of Commodities consumed by the Battery + set of Batteries that consume the Commodity + 86 + + + 87 + 7 + 60 + Commodities Produced + 0 + -1 + Producing Batteries + 0 + -1 + true + false + 275 + set of Commodities produced by the Battery + set of Batteries that produce the Commodity + 87 + + + 88 + 7 + 65 + Flow Nodes + 0 + -1 + Batteries + 0 + -1 + true + false + 279 + set of Flow Nodes the Battery connects to + set of Batteries connected to the Flow Node + 88 + + + 89 + 7 + 69 + Capacity Markets + 0 + -1 + Capacity Batteries + 0 + -1 + true + true + 4 + set of capacity markets the battery sells into + set of batteries that sell capacity into the market + 89 + + + 90 + 7 + 70 + Constraints + 0 + -1 + Batteries + 0 + -1 + true + true + 12 + set of Constraints on the Battery + set of Batteries in the Constraint + 90 + + + 91 + 7 + 71 + Objectives + 0 + -1 + Batteries + 0 + -1 + true + true + 240 + set of Objectives on the Battery + set of Batteries in the Objective + 91 + + + 92 + 7 + 75 + Conditions + 0 + -1 + Batteries + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Battery + set of Battery objects that define when the Variable is active + 92 + + + 93 + 1 + 8 + Storages + 0 + -1 + true + true + 96 + Storage objects + 93 + + + 94 + 8 + 8 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Storage inherits from + Storage objects inheriting from this template + 94 + + + 95 + 95 + 8 + Storages + 0 + -1 + Lists + 0 + -1 + true + true + 96 + set of Storage objects in the List + set of Lists containing the Storage + 95 + + + 96 + 8 + 50 + Water Nodes + 0 + -1 + Storages + 0 + 1 + true + false + 191 + water nodes the water storage connects to + water storage the water nodes connect to + 96 + + + 97 + 8 + 70 + Constraints + 0 + -1 + Storages + 0 + -1 + true + true + 12 + set of Constraints on the Storage + set of Storages in the Constraint + 97 + + + 98 + 8 + 71 + Objectives + 0 + -1 + Storages + 0 + -1 + true + true + 240 + set of Objectives on the Storage + set of Storages in the Objective + 98 + + + 99 + 8 + 75 + Conditions + 0 + -1 + Storages + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Storage + set of Storage objects that define when the Variable is active + 99 + + + 100 + 8 + 77 + Globals + 0 + -1 + Storages + 0 + -1 + true + true + 167 + set of Globals defining data for the Storage + set of Storage objects defining Global data + 100 + + + 101 + 1 + 9 + Waterways + 0 + -1 + true + true + 104 + Waterway objects + 101 + + + 102 + 9 + 9 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Waterway inherits from + Waterway objects inheriting from this template + 102 + + + 103 + 95 + 9 + Waterways + 0 + -1 + Lists + 0 + -1 + true + true + 104 + set of Waterway objects in the List + set of Lists containing the Waterway + 103 + + + 104 + 9 + 8 + Storage From + 0 + 1 + Exporting Waterways + 0 + -1 + true + false + 94 + storage the waterway takes water from + set of exporting waterways + 104 + + + 105 + 9 + 8 + Storage To + 0 + 1 + Importing Waterways + 0 + -1 + true + false + 95 + storage the waterway takes water to + set of importing waterways + 105 + + + 106 + 9 + 70 + Constraints + 0 + -1 + Waterways + 0 + -1 + true + true + 12 + set of Constraints on the Waterway + set of Waterways in the Constraint + 106 + + + 107 + 9 + 71 + Objectives + 0 + -1 + Waterways + 0 + -1 + true + true + 240 + set of Objectives on the Waterway + set of Waterways in the Objective + 107 + + + 108 + 1 + 10 + Emissions + 0 + -1 + true + true + 20 + Emission objects + 108 + + + 109 + 10 + 10 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Emission inherits from + Emission objects inheriting from this template + 109 + + + 110 + 95 + 10 + Emissions + 0 + -1 + Lists + 0 + -1 + true + true + 20 + set of Emission objects in the List + set of Lists containing the Emission + 110 + + + 111 + 10 + 2 + Generators + 0 + -1 + Emissions + 0 + -1 + true + true + 36 + set of generators that produce the emission + set of emissions produced by the generator + 111 + + + 112 + 10 + 4 + Fuels + 0 + -1 + Emissions + 0 + -1 + true + true + 31 + set of fuels that produce the emission + set of emissions produced by the fuel + 112 + + + 113 + 10 + 6 + Power2X + 0 + -1 + Emissions + 0 + -1 + true + true + 244 + set of Power2X objects that produce the Emission + set of Emissions produced by the Power2X object + 113 + + + 114 + 10 + 35 + Gas Fields + 0 + -1 + Emissions + 0 + -1 + true + true + 112 + set of Gas Fields that produce the Emission + set of Emissions produced by the Gas Field + 114 + + + 115 + 10 + 36 + Gas Plants + 0 + -1 + Emissions + 0 + -1 + true + true + 210 + set of Gas Plants that produce the Emission + set of Emissions produced by the Gas Plant + 115 + + + 116 + 10 + 38 + Gas Nodes + 0 + -1 + Emissions + 0 + -1 + true + true + 115 + set of gas nodes that produce the emission + set of emissions produced by the gas node + 116 + + + 117 + 10 + 40 + Gas Demands + 0 + -1 + Emissions + 0 + -1 + true + true + 116 + set of Gas Demands that produce the Emission + set of Emissions produced by the Gas Demand + 117 + + + 118 + 10 + 44 + Gas Contracts + 0 + -1 + Emissions + 0 + -1 + true + true + 207 + set of Gas Contracts that produce the Emission + set of Emissions produced by the Gas Contract + 118 + + + 119 + 10 + 45 + Gas Transports + 0 + -1 + Emissions + 0 + -1 + true + true + 211 + set of Gas Transports that produce the Emission + set of Emissions produced by the Gas Transport + 119 + + + 120 + 10 + 48 + Water Plants + 0 + -1 + Emissions + 0 + -1 + true + true + 188 + set of Water Plants that produce the Emission + set of Emissions produced by the Water Plant + 120 + + + 121 + 10 + 56 + Vehicles + 0 + -1 + Emissions + 0 + -1 + true + true + 241 + set of Vehicles that produce the Emission + set of Emissions produced by the Vehicle + 121 + + + 122 + 10 + 60 + Commodities + 0 + -1 + Emissions + 0 + -1 + true + true + 260 + set of Commodities co-produced with the Emission + set of Emissions co-producing the Commodity + 122 + + + 123 + 10 + 62 + Facilities + 0 + -1 + Emissions + 0 + -1 + true + true + 267 + set of Facilities that produce or remove the Emission + set of Emissions the Facility produces + 123 + + + 124 + 10 + 69 + Markets + 0 + -1 + Emissions + 0 + -1 + true + false + 61 + set of markets the emission is bought/sold from/to + set of emissions in the market + 124 + + + 125 + 10 + 70 + Constraints + 0 + -1 + Emissions + 0 + -1 + true + true + 12 + set of Constraints on the Emission + set of Emissions in the Constraint + 125 + + + 126 + 10 + 71 + Objectives + 0 + -1 + Emissions + 0 + -1 + true + true + 240 + set of Objectives on the Emission + set of Emissions in the Objective + 126 + + + 127 + 1 + 11 + Abatements + 0 + -1 + true + true + 157 + Abatement objects + 127 + + + 128 + 11 + 11 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Abatement inherits from + Abatement objects inheriting from this template + 128 + + + 129 + 95 + 11 + Abatements + 0 + -1 + Lists + 0 + -1 + true + true + 157 + set of Abatement objects in the List + set of Lists containing the Abatement + 129 + + + 130 + 11 + 2 + Generators + 0 + -1 + Abatements + 0 + -1 + true + true + 36 + set of generators the abatement technology is connected to + set of abatements connected to the generator + 130 + + + 131 + 11 + 4 + Consumables + 0 + -1 + Abatements + 0 + -1 + true + true + 158 + set of consumables that are used by the abatement technology + set of abatements that consume the fuel + 131 + + + 132 + 11 + 10 + Emissions + 0 + -1 + Abatements + 0 + -1 + true + true + 20 + set of emissions that are removed by this abatement technology + set of abatements applied to the emission + 132 + + + 133 + 11 + 35 + Gas Fields + 0 + -1 + Abatements + 0 + -1 + true + true + 112 + set of gas fields the abatement technology is connected to + set of abatements connected to the gas field + 133 + + + 134 + 11 + 36 + Gas Plants + 0 + -1 + Abatements + 0 + -1 + true + true + 210 + set of gas plants the abatement technology is connected to + set of abatements connected to the gas plant + 134 + + + 135 + 11 + 38 + Gas Nodes + 0 + -1 + Abatements + 0 + -1 + true + true + 115 + set of gas nodes the abatement technology is connected to + set of abatements connected to the gas node + 135 + + + 136 + 11 + 40 + Gas Demands + 0 + -1 + Abatements + 0 + -1 + true + true + 116 + set of gas demands the abatement technology is connected to + set of abatements connected to the gas demand + 136 + + + 137 + 11 + 44 + Gas Contracts + 0 + -1 + Abatements + 0 + -1 + true + true + 207 + set of gas contracts the abatement technology is connected to + set of abatements connected to the gas contract + 137 + + + 138 + 11 + 70 + Constraints + 0 + -1 + Abatements + 0 + -1 + true + true + 12 + set of Constraints on the Abatement + set of Abatements in the Constraint + 138 + + + 139 + 11 + 71 + Objectives + 0 + -1 + Abatements + 0 + -1 + true + true + 240 + set of Objectives on the Abatement + set of Abatements in the Objective + 139 + + + 140 + 1 + 12 + Physical Contracts + 0 + -1 + true + true + 75 + Physical Contract objects + 140 + + + 141 + 12 + 12 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Physical Contract inherits from + Physical Contract objects inheriting from this template + 141 + + + 142 + 95 + 12 + Physical Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 75 + set of Physical Contract objects in the List + set of Lists containing the Physical Contract + 142 + + + 143 + 12 + 22 + Generation Node + 0 + 1 + Generation Contracts + 0 + -1 + true + false + 34 + node for generation in the contract + set of generation contracts at the node + 143 + + + 144 + 12 + 22 + Load Node + 0 + 1 + Load Contracts + 0 + -1 + true + false + 59 + node for load in the contract + set of load contracts at the node + 144 + + + 145 + 12 + 59 + Companies + 0 + -1 + Physical Contracts + 0 + -1 + true + false + 9 + set of companies that own the physical contract + set of physical contracts owned by the company + 145 + + + 146 + 12 + 70 + Constraints + 0 + -1 + Physical Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Physical Contract + set of Physical Contracts in the Constraint + 146 + + + 147 + 12 + 71 + Objectives + 0 + -1 + Physical Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Physical Contract + set of Physical Contracts in the Objective + 147 + + + 148 + 1 + 13 + Purchasers + 0 + -1 + true + true + 81 + Purchaser objects + 148 + + + 149 + 13 + 13 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Purchaser inherits from + Purchaser objects inheriting from this template + 149 + + + 150 + 95 + 13 + Purchasers + 0 + -1 + Lists + 0 + -1 + true + true + 81 + set of Purchaser objects in the List + set of Lists containing the Purchaser + 150 + + + 151 + 13 + 22 + Nodes + 1 + -1 + Purchasers + 0 + -1 + true + false + 70 + set of nodes the purchaser withdraws energy from + set of purchasers at the node + 151 + + + 152 + 13 + 22 + Nodes* + 0 + -1 + Purchasers* + 0 + -1 + false + true + 178 + creates copies of the Purchaser at each node in this collection + create copies of these Purchasers and place at this node + 152 + + + 153 + 13 + 59 + Companies + 0 + -1 + Purchasers + 0 + -1 + true + false + 9 + set of companies that own the purchaser + set of purchasers owned by the company + 153 + + + 154 + 13 + 70 + Constraints + 0 + -1 + Purchasers + 0 + -1 + true + true + 12 + set of Constraints on the Purchaser + set of Purchasers in the Constraint + 154 + + + 155 + 13 + 71 + Objectives + 0 + -1 + Purchasers + 0 + -1 + true + true + 240 + set of Objectives on the Purchaser + set of Purchasers in the Objective + 155 + + + 156 + 1 + 14 + Reserves + 0 + -1 + true + true + 88 + Reserve objects + 156 + + + 157 + 14 + 14 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Reserve inherits from + Reserve objects inheriting from this template + 157 + + + 158 + 95 + 14 + Reserves + 0 + -1 + Lists + 0 + -1 + true + true + 88 + set of Reserve objects in the List + set of Lists containing the Reserve + 158 + + + 159 + 14 + 2 + Generators + 0 + -1 + Reserves + 0 + -1 + true + true + 36 + set of generators that provide the reserve + set of reserves provided by the generator + 159 + + + 160 + 14 + 2 + Generator Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 35 + set of generators that are contingencies + set of reserves the generator is a contingency for + 160 + + + 161 + 14 + 2 + Generator Cost Allocation + 0 + -1 + Reserve Costs Allocated + 0 + -1 + false + true + 110 + set of generators over which the cost of the reserve is allocated + set of reserves whose costs are allocated to the generator + 161 + + + 162 + 14 + 6 + Power2X + 0 + -1 + Reserves + 0 + -1 + true + true + 244 + The set of Power2X facilities that provide the reserve + The set of reserves provided by the Power2X facility + 162 + + + 163 + 14 + 7 + Batteries + 0 + -1 + Reserves + 0 + -1 + true + true + 176 + set of batteries that provide the reserve + set of reserves provided by the battery + 163 + + + 164 + 14 + 7 + Battery Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 301 + set of batteries that are contingencies + set of reserves the battery is a contingency for + 164 + + + 165 + 14 + 13 + Purchasers + 0 + -1 + Reserves + 0 + -1 + true + true + 81 + set of purchasers that provide the reserve + set of reserve the purchaser provides interruptible load for + 165 + + + 166 + 14 + 14 + Nested Reserves + 0 + -1 + Master Reserves + 0 + -1 + false + false + 66 + reserves nested inside this reserve class + reserves this class is nested inside + 166 + + + 167 + 14 + 19 + Regions + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 85 + set of regions that set the load risk + set of reserves the region is a contingency for + 167 + + + 168 + 14 + 21 + Zones + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 106 + set of zones that set the load risk + set of reserves the zone is a contingency for + 168 + + + 169 + 14 + 24 + Lines + 0 + -1 + Reserves + 0 + -1 + false + true + 57 + set of lines that share the reserve + set of reserves the line is sharing + 169 + + + 170 + 14 + 24 + Line Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 56 + set of lines that are contingencies + set of reserves the line is a contingency for + 170 + + + 171 + 14 + 69 + Markets + 0 + -1 + Reserves + 0 + -1 + true + false + 61 + set of markets the reserve is bought/sold from/to + set of reserves in the market + 171 + + + 172 + 14 + 70 + Constraints + 0 + -1 + Reserves + 0 + -1 + true + true + 12 + set of Constraints on the Reserve + set of Reserves in the Constraint + 172 + + + 173 + 14 + 71 + Objectives + 0 + -1 + Reserves + 0 + -1 + true + true + 240 + set of Objectives on the Reserve + set of Reserves in the Objective + 173 + + + 174 + 14 + 75 + Conditions + 0 + -1 + Reserves + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Reserve + set of Reserve objects that define when the Variable is active + 174 + + + 175 + 1 + 15 + Reliability + 0 + -1 + true + true + 249 + Reliability objects + 175 + + + 176 + 15 + 15 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Reliability inherits from + Reliability objects inheriting from this template + 176 + + + 177 + 95 + 15 + Reliability + 0 + -1 + Lists + 0 + -1 + true + true + 249 + set of Reliability objects in the List + set of Lists containing the Reliability + 177 + + + 178 + 15 + 2 + Generators + 0 + -1 + Reliability + 0 + -1 + true + true + 36 + set of generators in the reliability group + set of reliability groups for the generator + 178 + + + 179 + 15 + 19 + Region + 1 + 1 + Reliability + 0 + -1 + true + true + 84 + reference region for the reliability group + set of reliability groups referencing the region + 179 + + + 180 + 1 + 16 + Financial Contracts + 0 + -1 + true + true + 28 + Financial Contract objects + 180 + + + 181 + 16 + 16 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Financial Contract inherits from + Financial Contract objects inheriting from this template + 181 + + + 182 + 95 + 16 + Financial Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 28 + set of Financial Contract objects in the List + set of Lists containing the Financial Contract + 182 + + + 183 + 16 + 2 + Generators + 0 + -1 + Financial Contracts + 0 + -1 + true + true + 36 + set of generators involved in the financial contract + set of financial contracts associated with the generator + 183 + + + 184 + 16 + 19 + Region + 0 + 1 + Financial Contracts + 0 + -1 + true + false + 84 + region the contract is settled in + set of financial contracts settled in the region + 184 + + + 185 + 16 + 19 + Regions + 0 + -1 + true + true + 85 + 185 + + + 186 + 16 + 59 + Generating Companies + 0 + -1 + Generation Contracts + 0 + -1 + true + false + 32 + generating party or parties + set of financial contracts the company is a generating party to + 186 + + + 187 + 16 + 59 + Purchasing Companies + 0 + -1 + Purchase Contracts + 0 + -1 + true + false + 82 + purchasing party or parties + set of financial contracts the company is a purchasing party to + 187 + + + 188 + 16 + 75 + Conditions + 0 + -1 + Financial Contracts + 0 + -1 + true + true + 11 + set of conditions that apply to the financial contract + set of financial contracts the condition applies to + 188 + + + 189 + 1 + 17 + Cournots + 0 + -1 + true + true + 15 + Cournot objects + 189 + + + 190 + 17 + 17 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Cournot inherits from + Cournot objects inheriting from this template + 190 + + + 191 + 95 + 17 + Cournots + 0 + -1 + Lists + 0 + -1 + true + true + 15 + set of Cournot objects in the List + set of Lists containing the Cournot + 191 + + + 192 + 17 + 19 + Region + 1 + 1 + true + false + 84 + region associated with the Cournot game + 192 + + + 193 + 1 + 18 + RSIs + 0 + -1 + true + true + 89 + RSI objects + 193 + + + 194 + 18 + 18 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the RSI inherits from + RSI objects inheriting from this template + 194 + + + 195 + 95 + 18 + RSIs + 0 + -1 + Lists + 0 + -1 + true + true + 89 + set of RSI objects in the List + set of Lists containing the RSI + 195 + + + 196 + 18 + 19 + Region + 1 + 1 + RSIs + 0 + -1 + true + false + 84 + region associated with the RSI + 196 + + + 197 + 18 + 24 + Lines + 0 + -1 + RSIs + 0 + -1 + true + true + 57 + set of lines included in import capacity calculations + 197 + + + 198 + 18 + 28 + Interfaces + 0 + -1 + RSIs + 0 + -1 + true + true + 50 + set of interfaces included in import capacity calculations + 198 + + + 199 + 18 + 59 + Companies + 0 + -1 + RSIs + 0 + -1 + true + true + 9 + 199 + + + 200 + 1 + 19 + Regions + 0 + -1 + true + true + 85 + Region objects + 200 + + + 201 + 19 + 19 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Region inherits from + Region objects inheriting from this template + 201 + + + 202 + 95 + 19 + Regions + 0 + -1 + Lists + 0 + -1 + true + true + 85 + set of Region objects in the List + set of Lists containing the Region + 202 + + + 203 + 19 + 2 + Generators + 0 + -1 + Regions + 0 + -1 + false + true + 36 + 203 + + + 204 + 19 + 7 + Batteries + 0 + -1 + Regions + 0 + -1 + false + true + 176 + 204 + + + 205 + 19 + 10 + Emissions + 0 + -1 + Regions + 0 + -1 + true + true + 20 + set of emissions in the region + set of Regions that produce the emission + 205 + + + 206 + 19 + 12 + Generation Contracts + 0 + -1 + false + true + 33 + 206 + + + 207 + 19 + 12 + Load Contracts + 0 + -1 + false + true + 58 + 207 + + + 208 + 19 + 13 + Purchasers + 0 + -1 + Regions + 0 + -1 + false + true + 81 + 208 + + + 209 + 19 + 19 + Regions + 0 + -1 + false + true + 85 + set of regions the region connects to + 209 + + + 210 + 19 + 20 + Pool + 0 + 1 + Regions + 0 + -1 + true + false + 231 + pool the region is in (for transmission) + set of regions in the pool + 210 + + + 211 + 19 + 22 + Reference Node + 0 + 1 + false + false + 83 + the reference node for the region + 211 + + + 212 + 19 + 24 + Exporting Lines + 0 + -1 + false + true + 25 + 212 + + + 213 + 19 + 24 + Importing Lines + 0 + -1 + false + true + 47 + 213 + + + 214 + 19 + 24 + Interregional Lines + 0 + -1 + false + true + 51 + 214 + + + 215 + 19 + 24 + Intraregional Lines + 0 + -1 + false + true + 53 + 215 + + + 216 + 19 + 26 + Exporting Transformers + 0 + -1 + false + true + 181 + 216 + + + 217 + 19 + 26 + Importing Transformers + 0 + -1 + false + true + 182 + 217 + + + 218 + 19 + 26 + Interregional Transformers + 0 + -1 + false + true + 183 + 218 + + + 219 + 19 + 26 + Intraregional Transformers + 0 + -1 + false + true + 185 + 219 + + + 220 + 19 + 32 + Heat Plants + 0 + -1 + Regions + 0 + -1 + false + true + 219 + 220 + + + 221 + 19 + 36 + Gas Plants + 0 + -1 + Regions + 0 + -1 + false + true + 210 + 221 + + + 222 + 19 + 39 + Gas Storages + 0 + -1 + Regions + 0 + -1 + false + true + 113 + 222 + + + 223 + 19 + 48 + Water Plants + 0 + -1 + Regions + 0 + -1 + false + true + 188 + 223 + + + 224 + 19 + 59 + Utilities + 0 + -1 + true + true + 102 + set of utility-owned companies (competitive fringe in RSI) + 224 + + + 225 + 19 + 62 + Facilities + 0 + -1 + Regions + 0 + -1 + false + true + 267 + 225 + + + 226 + 19 + 69 + Markets + 0 + -1 + false + true + 61 + 226 + + + 227 + 19 + 70 + Constraints + 0 + -1 + Regions + 0 + -1 + true + true + 12 + set of Constraints on the Region + set of Regions in the Constraint + 227 + + + 228 + 19 + 71 + Objectives + 0 + -1 + Regions + 0 + -1 + true + true + 240 + set of Objectives on the Region + set of Regions in the Objective + 228 + + + 229 + 19 + 75 + Conditions + 0 + -1 + Regions + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Region + set of Region objects that define when the Variable is active + 229 + + + 230 + 1 + 20 + Pools + 0 + -1 + true + true + 230 + Pool objects + 230 + + + 231 + 20 + 20 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Pool inherits from + Pool objects inheriting from this template + 231 + + + 232 + 95 + 20 + Pools + 0 + -1 + Lists + 0 + -1 + true + true + 230 + set of Pool objects in the List + set of Lists containing the Pool + 232 + + + 233 + 20 + 14 + ORDC Reserves + 0 + -1 + Pools + 0 + 1 + false + true + 300 + Specifies Raise and Operational Reserves for ORDC calculations + Pool the Reserve belongs to (for ORDC calculations) + 233 + + + 234 + 20 + 20 + Pools + 0 + -1 + false + true + 230 + set of Pools the Pool transacts with + 234 + + + 235 + 20 + 22 + ORDC System Lambda Nodes + 0 + -1 + ORDC System Lambda Nodes + 0 + 1 + false + true + 310 + The set of Nodes that their energy components dictate the system lambda for the ORDC algorithm + Node used in the system lambda for the ORDC calculation + 235 + + + 236 + 20 + 59 + Companies + 0 + -1 + Pools + 0 + 1 + false + true + 9 + set of companies in the pool + pool the company is in (for energy balancing) + 236 + + + 237 + 1 + 21 + Zones + 0 + -1 + true + true + 106 + Zone objects + 237 + + + 238 + 21 + 21 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Zone inherits from + Zone objects inheriting from this template + 238 + + + 239 + 95 + 21 + Zones + 0 + -1 + Lists + 0 + -1 + true + true + 106 + set of Zone objects in the List + set of Lists containing the Zone + 239 + + + 240 + 21 + 2 + Generators + 0 + -1 + Zones + 0 + -1 + false + true + 36 + 240 + + + 241 + 21 + 2 + Capacity Generators + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 2 + 241 + + + 242 + 21 + 7 + Batteries + 0 + -1 + Zones + 0 + -1 + false + true + 176 + 242 + + + 243 + 21 + 7 + Capacity Batteries + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 226 + 243 + + + 244 + 21 + 10 + Emissions + 0 + -1 + Zones + 0 + -1 + true + true + 20 + set of emissions in the zone + 244 + + + 245 + 21 + 12 + Capacity Generation Contracts + 0 + -1 + false + true + 1 + 245 + + + 246 + 21 + 12 + Capacity Load Contracts + 0 + -1 + false + true + 3 + 246 + + + 247 + 21 + 12 + Generation Contracts + 0 + -1 + false + true + 33 + 247 + + + 248 + 21 + 12 + Load Contracts + 0 + -1 + false + true + 58 + 248 + + + 249 + 21 + 13 + Purchasers + 0 + -1 + Zones + 0 + -1 + false + true + 81 + 249 + + + 250 + 21 + 13 + Capacity Purchasers + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 6 + 250 + + + 251 + 21 + 19 + Region + 0 + 1 + Zones + 0 + -1 + true + false + 84 + the region the zone belongs to + set of zones in the region + 251 + + + 252 + 21 + 21 + Zones + 0 + -1 + true + true + 106 + set of zones the zone connects to + 252 + + + 253 + 21 + 22 + Reference Node + 0 + 1 + false + false + 83 + the reference node for the zone + 253 + + + 254 + 21 + 24 + Exporting Capacity Lines + 0 + -1 + false + true + 23 + 254 + + + 255 + 21 + 24 + Exporting Lines + 0 + -1 + false + true + 25 + 255 + + + 256 + 21 + 24 + Importing Capacity Lines + 0 + -1 + false + true + 45 + 256 + + + 257 + 21 + 24 + Importing Lines + 0 + -1 + false + true + 47 + 257 + + + 258 + 21 + 24 + Interzonal Lines + 0 + -1 + false + true + 52 + 258 + + + 259 + 21 + 24 + Intrazonal Lines + 0 + -1 + false + true + 54 + 259 + + + 260 + 21 + 26 + Exporting Capacity Transformers + 0 + -1 + false + true + 164 + 260 + + + 261 + 21 + 26 + Exporting Transformers + 0 + -1 + false + true + 181 + 261 + + + 262 + 21 + 26 + Importing Capacity Transformers + 0 + -1 + false + true + 165 + 262 + + + 263 + 21 + 26 + Importing Transformers + 0 + -1 + false + true + 182 + 263 + + + 264 + 21 + 26 + Interzonal Transformers + 0 + -1 + false + true + 184 + 264 + + + 265 + 21 + 26 + Intrazonal Transformers + 0 + -1 + false + true + 186 + 265 + + + 266 + 21 + 32 + Heat Plants + 0 + -1 + Zones + 0 + -1 + false + true + 219 + 266 + + + 267 + 21 + 32 + Capacity Heat Plants + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 307 + 267 + + + 268 + 21 + 36 + Gas Plants + 0 + -1 + Zones + 0 + -1 + false + true + 210 + 268 + + + 269 + 21 + 36 + Capacity Gas Plants + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 305 + 269 + + + 270 + 21 + 39 + Gas Storages + 0 + -1 + Zones + 0 + -1 + false + true + 113 + 270 + + + 271 + 21 + 39 + Capacity Gas Storages + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 306 + 271 + + + 272 + 21 + 48 + Water Plants + 0 + -1 + Zones + 0 + -1 + false + true + 188 + 272 + + + 273 + 21 + 48 + Capacity Water Plants + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 308 + 273 + + + 274 + 21 + 62 + Facilities + 0 + -1 + Zones + 0 + 0 + false + true + 267 + 274 + + + 275 + 21 + 62 + Capacity Facilities + 0 + -1 + Capacity Zones + 0 + 0 + false + true + 309 + 275 + + + 276 + 21 + 69 + Markets + 0 + -1 + false + true + 61 + 276 + + + 277 + 21 + 69 + Capacity Markets + 0 + -1 + false + true + 4 + 277 + + + 278 + 21 + 70 + Constraints + 0 + -1 + Zones + 0 + -1 + true + true + 12 + set of Constraints on the Zone + set of Zones in the Constraint + 278 + + + 279 + 21 + 71 + Objectives + 0 + -1 + Zones + 0 + -1 + true + true + 240 + set of Objectives on the Zone + set of Zones in the Objective + 279 + + + 280 + 21 + 75 + Conditions + 0 + -1 + Zones + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Zone + set of Zone objects that define when the Variable is active + 280 + + + 281 + 1 + 22 + Nodes + 0 + -1 + true + true + 70 + Node objects + 281 + + + 282 + 22 + 22 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Node inherits from + Node objects inheriting from this template + 282 + + + 283 + 95 + 22 + Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 70 + set of Node objects in the List + set of Lists containing the Node + 283 + + + 284 + 22 + 19 + Region + 1 + 1 + Nodes + 0 + -1 + true + false + 84 + the region the node belongs to + set of nodes in the region + 284 + + + 285 + 22 + 21 + Zone + 0 + 1 + Nodes + 0 + -1 + true + false + 105 + zone the node is in (for transmission) + set of nodes in the zone + 285 + + + 286 + 22 + 21 + Capacity Zones + 0 + -1 + Capacity Nodes + 0 + -1 + true + true + 7 + capacity zones the node belongs to + set of nodes in the capacity zone + 286 + + + 287 + 22 + 30 + Hubs + 0 + -1 + Nodes + 0 + -1 + true + false + 170 + hub the node belongs to + set of nodes in the hub + 287 + + + 288 + 22 + 59 + Companies + 0 + -1 + Nodes + 0 + -1 + true + true + 9 + set of companies that own the nodes + set of nodes the company owns + 288 + + + 289 + 22 + 62 + Facilities + 0 + -1 + Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Node + set of Nodes the Facility connects to + 289 + + + 290 + 22 + 66 + Exporting Flow Paths + 0 + -1 + Node From + 0 + 1 + true + true + 297 + set of flow paths exporting from the node + node the flow path exports from + 290 + + + 291 + 22 + 66 + Importing Flow Paths + 0 + -1 + Node To + 0 + 1 + true + true + 298 + set of flow paths importing to the node + node the flow path imports to + 291 + + + 292 + 22 + 69 + Markets + 0 + -1 + Nodes + 0 + 1 + true + true + 61 + external markets connected to the node + node the market can buy and sell energy at + 292 + + + 293 + 22 + 70 + Constraints + 0 + -1 + Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Node + set of Nodes in the Constraint + 293 + + + 294 + 22 + 71 + Objectives + 0 + -1 + Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Node + set of Nodes in the Objective + 294 + + + 295 + 22 + 72 + Decision Variables + 0 + -1 + Nodes + 0 + -1 + true + true + 166 + set of nodes whose equations include the decision variable + Decision Variables included in the Node formulation + 295 + + + 296 + 22 + 75 + Conditions + 0 + -1 + Nodes + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Node + set of Node objects that define when the Variable is active + 296 + + + 297 + 22 + 79 + Weather Stations + 0 + 1 + Nodes + 0 + -1 + true + false + 233 + weather station the node is in + set of nodes in the weather station + 297 + + + 298 + 1 + 23 + Loads + 0 + -1 + true + true + 259 + Electricity Loads + 298 + + + 299 + 23 + 23 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Load inherits from + Load objects inheriting from this template + 299 + + + 300 + 95 + 23 + Loads + 0 + -1 + Lists + 0 + -1 + true + true + 259 + set of Load objects in the List + set of Lists containing the Load + 300 + + + 301 + 23 + 22 + Node + 1 + 1 + Loads + 0 + -1 + true + false + 67 + the node the load belongs to + set of loads at the node + 301 + + + 302 + 23 + 59 + Company + 0 + 1 + Loads + 0 + -1 + true + false + 285 + the company the load belongs to + set of loads owned by the company + 302 + + + 303 + 1 + 24 + Lines + 0 + -1 + true + true + 57 + Line objects + 303 + + + 304 + 24 + 24 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Line inherits from + Line objects inheriting from this template + 304 + + + 305 + 95 + 24 + Lines + 0 + -1 + Lists + 0 + -1 + true + true + 57 + set of Line objects in the List + set of Lists containing the Line + 305 + + + 306 + 24 + 22 + Node From + 1 + 1 + Exporting Lines + 0 + -1 + true + false + 68 + node that the line notionally exports from + set of exporting lines + 306 + + + 307 + 24 + 22 + Node To + 1 + 1 + Importing Lines + 0 + -1 + true + false + 69 + node that the line notionally imports to + set of importing lines + 307 + + + 308 + 24 + 59 + Companies + 0 + -1 + Lines + 0 + -1 + true + false + 9 + set of companies that owns the line + set of lines owned by the company + 308 + + + 309 + 24 + 63 + Maintenances + 0 + -1 + Lines + 0 + -1 + true + false + 179 + set of maintenance events on the line + set of lines taken out on maintenance + 309 + + + 310 + 24 + 70 + Constraints + 0 + -1 + Lines + 0 + -1 + true + true + 12 + set of Constraints on the Line + set of Lines in the Constraint + 310 + + + 311 + 24 + 71 + Objectives + 0 + -1 + Lines + 0 + -1 + true + true + 240 + set of Objectives on the Line + set of Lines in the Objective + 311 + + + 312 + 24 + 75 + Conditions + 0 + -1 + Lines + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Line + set of Line objects that define when the Variable is active + 312 + + + 313 + 1 + 25 + MLFs + 0 + -1 + true + true + 63 + MLF objects + 313 + + + 314 + 25 + 25 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the MLF inherits from + MLF objects inheriting from this template + 314 + + + 315 + 95 + 25 + MLFs + 0 + -1 + Lists + 0 + -1 + true + true + 63 + set of MLF objects in the List + set of Lists containing the MLF + 315 + + + 316 + 25 + 19 + Regions + 0 + -1 + true + true + 85 + set of regions whose demand appears in the MLF equation + 316 + + + 317 + 25 + 22 + Node + 1 + 1 + true + false + 67 + reference node for the MLF equation + 317 + + + 318 + 25 + 24 + Line + 1 + 1 + true + false + 55 + interregional notional interconnector whose losses are determined by the MLF equation + 318 + + + 319 + 1 + 26 + Transformers + 0 + -1 + true + true + 99 + Transformer objects + 319 + + + 320 + 26 + 26 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Transformer inherits from + Transformer objects inheriting from this template + 320 + + + 321 + 95 + 26 + Transformers + 0 + -1 + Lists + 0 + -1 + true + true + 99 + set of Transformer objects in the List + set of Lists containing the Transformer + 321 + + + 322 + 26 + 22 + Node From + 1 + 1 + Exporting Transformers + 0 + -1 + true + false + 68 + node that the transformer takes power from + set of exporting transformers + 322 + + + 323 + 26 + 22 + Node To + 1 + 1 + Importing Transformers + 0 + -1 + true + false + 69 + node that the transformer takes power to + set of importing transformers + 323 + + + 324 + 26 + 70 + Constraints + 0 + -1 + Transformers + 0 + -1 + true + true + 12 + set of Constraints on the Transformer + set of Transformers in the Constraint + 324 + + + 325 + 26 + 71 + Objectives + 0 + -1 + Transformers + 0 + -1 + true + true + 240 + set of Objectives on the Transformer + set of Transformers in the Objective + 325 + + + 326 + 1 + 27 + Flow Controls + 0 + -1 + true + true + 74 + Flow Control objects + 326 + + + 327 + 27 + 27 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Control inherits from + Flow Control objects inheriting from this template + 327 + + + 328 + 95 + 27 + Flow Controls + 0 + -1 + Lists + 0 + -1 + true + true + 74 + set of Flow Control objects in the List + set of Lists containing the Flow Control + 328 + + + 329 + 27 + 24 + Line + 1 + 1 + Flow Controls + 0 + -1 + true + false + 55 + line the flow control operates on + flow control associated with the line + 329 + + + 330 + 27 + 24 + Lines* + 0 + -1 + Flow Controls* + 0 + -1 + false + true + 187 + creates copies of the flow control at each line in this collection + create copies of these flow controls and place at this line + 330 + + + 331 + 27 + 70 + Constraints + 0 + -1 + Flow Controls + 0 + -1 + true + true + 12 + set of Constraints on the Flow Control + set of Flow Controls in the Constraint + 331 + + + 332 + 27 + 71 + Objectives + 0 + -1 + Flow Controls + 0 + -1 + true + true + 240 + set of Objectives on the Flow Control + set of Flow Controls in the Objective + 332 + + + 333 + 1 + 28 + Interfaces + 0 + -1 + true + true + 50 + Interface objects + 333 + + + 334 + 28 + 28 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Interface inherits from + Interface objects inheriting from this template + 334 + + + 335 + 95 + 28 + Interfaces + 0 + -1 + Lists + 0 + -1 + true + true + 50 + set of Interface objects in the List + set of Lists containing the Interface + 335 + + + 336 + 28 + 24 + Lines + 0 + -1 + Interfaces + 0 + -1 + true + true + 57 + set of lines in the interface + interfaces the line is in + 336 + + + 337 + 28 + 26 + Transformers + 0 + -1 + Interfaces + 0 + -1 + true + true + 99 + set of transformers in the interface + set of interfaces defined on the transformer + 337 + + + 338 + 28 + 70 + Constraints + 0 + -1 + Interfaces + 0 + -1 + true + true + 12 + set of Constraints on the Interface + set of Interfaces in the Constraint + 338 + + + 339 + 28 + 71 + Objectives + 0 + -1 + Interfaces + 0 + -1 + true + true + 240 + set of Objectives on the Interface + set of Interfaces in the Objective + 339 + + + 340 + 28 + 75 + Conditions + 0 + -1 + Interfaces + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Interface + set of Interface objects that define when the Variable is active + 340 + + + 341 + 1 + 29 + Contingencies + 0 + -1 + true + true + 13 + Contingency objects + 341 + + + 342 + 29 + 29 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Contingency inherits from + Contingency objects inheriting from this template + 342 + + + 343 + 95 + 29 + Contingencies + 0 + -1 + Lists + 0 + -1 + true + true + 13 + set of Contingency objects in the List + set of Lists containing the Contingency + 343 + + + 344 + 29 + 2 + Generators + 0 + -1 + Contingencies + 0 + -1 + true + false + 36 + set of generators that form the contingency + set of contingencies the generator defines + 344 + + + 345 + 29 + 24 + Lines + 0 + -1 + Contingencies + 0 + -1 + true + false + 57 + set of lines that form the contingency + set of contingencies the line defines + 345 + + + 346 + 29 + 24 + Lines Monitored + 0 + -1 + Reporting Monitoring Contingencies + 0 + -1 + true + true + 311 + 346 + + + 347 + 29 + 24 + Monitored Lines + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 107 + set of lines whose limits are monitored under the contingency + set of contingencies the line is monitored under + 347 + + + 348 + 29 + 26 + Transformers + 0 + -1 + Contingencies + 0 + -1 + true + false + 99 + set of transformers that form the contingency + set of contingencies the transformer defines + 348 + + + 349 + 29 + 26 + Monitored Transformers + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 108 + set of transformers whose limits are monitored under the contingency + set of contingencies the transformer is monitored under + 349 + + + 350 + 29 + 26 + Transformers Monitored + 0 + -1 + Reporting Monitoring Contingencies + 0 + -1 + true + true + 312 + 350 + + + 351 + 29 + 28 + Interfaces Monitored + 0 + -1 + Reporting Monitoring Contingencies + 0 + -1 + true + true + 313 + 351 + + + 352 + 29 + 28 + Monitored Interfaces + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 109 + set of interfaces whose limits are monitored under the contingency + set of contingencies the interface is monitored under + 352 + + + 353 + 1 + 30 + Hubs + 0 + -1 + true + true + 170 + Hub objects + 353 + + + 354 + 30 + 30 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Hub inherits from + Hub objects inheriting from this template + 354 + + + 355 + 95 + 30 + Hubs + 0 + -1 + Lists + 0 + -1 + true + true + 170 + set of Hub objects in the List + set of Lists containing the Hub + 355 + + + 356 + 30 + 70 + Constraints + 0 + -1 + Hubs + 0 + -1 + true + true + 12 + set of Constraints on the Hub + set of Hubs in the Constraint + 356 + + + 357 + 30 + 71 + Objectives + 0 + -1 + Hubs + 0 + -1 + true + true + 240 + set of Objectives on the Hub + set of Hubs in the Objective + 357 + + + 358 + 1 + 31 + Transmission Rights + 0 + -1 + true + true + 101 + Transmission Right objects + 358 + + + 359 + 31 + 31 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Transmission Right inherits from + Transmission Right objects inheriting from this template + 359 + + + 360 + 95 + 31 + Transmission Rights + 0 + -1 + Lists + 0 + -1 + true + true + 101 + set of Transmission Right objects in the List + set of Lists containing the Transmission Right + 360 + + + 361 + 31 + 21 + Zone From + 0 + 1 + true + false + 171 + zone for generation in the transmission right + 361 + + + 362 + 31 + 21 + Zone To + 0 + 1 + true + false + 172 + zone for load in the transmission right + 362 + + + 363 + 31 + 22 + Node From + 0 + 1 + true + false + 68 + node for generation in the transmission right + 363 + + + 364 + 31 + 22 + Node To + 0 + 1 + true + false + 69 + node for load in the transmission right + 364 + + + 365 + 31 + 24 + Line + 0 + 1 + true + false + 55 + line whose rentals are involved in the transmission right + 365 + + + 366 + 31 + 30 + Hub From + 0 + 1 + true + false + 173 + hub for generation in the transmission right + 366 + + + 367 + 31 + 30 + Hub To + 0 + 1 + true + false + 174 + hub for load in the transmission right + 367 + + + 368 + 31 + 59 + Companies + 0 + -1 + Transmission Rights + 0 + -1 + true + false + 9 + companies that own the transmission right + transmissions rights owned by the company + 368 + + + 369 + 1 + 32 + Heat Plants + 0 + -1 + true + true + 219 + Heat Plant objects + 369 + + + 370 + 32 + 32 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Plant inherits from + Heat Plant objects inheriting from this template + 370 + + + 371 + 95 + 32 + Heat Plants + 0 + -1 + Lists + 0 + -1 + true + true + 219 + set of Heat Plant objects in the List + set of Lists containing the Heat Plant + 371 + + + 372 + 32 + 4 + Fuels + 0 + -1 + Heat Plants + 0 + -1 + true + false + 31 + set of fuels consumed + set of heat plants that consume the fuel + 372 + + + 373 + 32 + 4 + Start Fuels + 0 + -1 + Heat Plants Started + 0 + -1 + true + false + 92 + fuels available for starting units + set of heat plants that use the fuel to start + 373 + + + 374 + 32 + 22 + Nodes + 0 + -1 + Heat Plants + 0 + -1 + true + false + 70 + set of nodes injected at + set of heat plants connected to the node + 374 + + + 375 + 32 + 33 + Heat Input Nodes + 0 + -1 + Input Heat Plants + 0 + -1 + true + false + 223 + set of heat nodes the heat plant injects to + set of heat plants connected to the heat node + 375 + + + 376 + 32 + 33 + Heat Output Nodes + 0 + -1 + Output Heat Plants + 0 + -1 + true + false + 224 + set of heat nodes the heat plant receives from + set of heat plants connected to the heat node + 376 + + + 377 + 32 + 38 + Gas Nodes + 0 + -1 + Heat Plants + 0 + -1 + true + true + 115 + set of source gas nodes for the heat plant + set of heat plants connected to the gas node + 377 + + + 378 + 32 + 70 + Constraints + 0 + -1 + Heat Plants + 0 + -1 + true + true + 12 + set of Constraints on the Heat Plant + set of Heat Plants in the Constraint + 378 + + + 379 + 32 + 71 + Objectives + 0 + -1 + Heat Plants + 0 + -1 + true + true + 240 + set of Objectives on the Heat Plant + set of Heat Plants in the Objective + 379 + + + 380 + 32 + 75 + Conditions + 0 + -1 + Heat Plants + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Heat Plant + set of Heat Plant objects that define when the Variable is active + 380 + + + 381 + 1 + 33 + Heat Nodes + 0 + -1 + true + true + 220 + Heat Node objects + 381 + + + 382 + 33 + 33 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Node inherits from + Heat Node objects inheriting from this template + 382 + + + 383 + 95 + 33 + Heat Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 220 + set of Heat Node objects in the List + set of Lists containing the Heat Node + 383 + + + 384 + 33 + 33 + Heat Export Nodes + 0 + -1 + Heat Import Nodes + 0 + -1 + true + false + 225 + set of node heat is exported to + set of heat nodes importing to node + 384 + + + 385 + 33 + 48 + Water Plants + 0 + -1 + Heat Nodes + 0 + -1 + true + false + 188 + set of water plants supplied + set of nodes supplying heat + 385 + + + 386 + 33 + 62 + Facilities + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Heat Node + set of Heat Nodes the Facility connects to + 386 + + + 387 + 33 + 69 + Markets + 0 + -1 + Heat Nodes + 0 + 1 + true + true + 61 + external heat markets connected to the heat node + heat node the market can by and sell heat at + 387 + + + 388 + 33 + 70 + Constraints + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Heat Node + set of Heat Nodes in the Constraint + 388 + + + 389 + 33 + 71 + Objectives + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Heat Node + set of Heat Nodes in the Objective + 389 + + + 390 + 33 + 75 + Conditions + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Heat Node + set of Heat Node objects that define when the Variable is active + 390 + + + 391 + 1 + 34 + Heat Storages + 0 + -1 + true + true + 253 + Heat Storage objects + 391 + + + 392 + 34 + 34 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Storage inherits from + Heat Storage objects inheriting from this template + 392 + + + 393 + 95 + 34 + Heat Storages + 0 + -1 + Lists + 0 + -1 + true + true + 253 + set of Heat Storage objects in the List + set of Lists containing the Heat Storage + 393 + + + 394 + 34 + 33 + Heat Nodes + 1 + 1 + Heat Storages + 0 + 1 + true + false + 220 + set of heat nodes the heat storage injects to and withdraws from + set of heat storages connected to the heat node + 394 + + + 395 + 34 + 70 + Constraints + 0 + -1 + Heat Storages + 0 + -1 + true + true + 12 + set of Constraints on the Heat Storage + set of Heat Storages in the Constraint + 395 + + + 396 + 34 + 71 + Objectives + 0 + -1 + Heat Storages + 0 + -1 + true + true + 240 + set of Objectives on the Heat Storage + set of Heat Storages in the Objective + 396 + + + 397 + 1 + 35 + Gas Fields + 0 + -1 + true + true + 112 + Gas Field objects + 397 + + + 398 + 35 + 35 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Field inherits from + Gas Field objects inheriting from this template + 398 + + + 399 + 95 + 35 + Gas Fields + 0 + -1 + Lists + 0 + -1 + true + true + 112 + set of Gas Field objects in the List + set of Lists containing the Gas Field + 399 + + + 400 + 35 + 38 + Gas Node + 0 + -1 + Gas Fields + 0 + -1 + true + true + 117 + gas node the gas field connects to + set of gas fields connected to the gas node + 400 + + + 401 + 35 + 42 + Gas Basin + 0 + -1 + Gas Fields + 0 + -1 + true + true + 177 + gas basins the gas field belongs to + set of gas fields in the gas basin + 401 + + + 402 + 35 + 59 + Companies + 0 + -1 + Gas Fields + 0 + -1 + true + false + 9 + Set of companies that own the gas field + set of gas fields the company owns + 402 + + + 403 + 35 + 63 + Maintenances + 0 + -1 + Gas Fields + 0 + -1 + true + false + 179 + set of maintenance events on the gas field + set of gas fields taken out by the maintenance event + 403 + + + 404 + 35 + 70 + Constraints + 0 + -1 + Gas Fields + 0 + -1 + true + true + 12 + set of Constraints on the Gas Field + set of Gas Fields in the Constraint + 404 + + + 405 + 35 + 71 + Objectives + 0 + -1 + Gas Fields + 0 + -1 + true + true + 240 + set of Objectives on the Gas Field + set of Gas Fields in the Objective + 405 + + + 406 + 1 + 36 + Gas Plants + 0 + -1 + true + true + 210 + Gas Plant objects + 406 + + + 407 + 36 + 36 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Plant inherits from + Gas Plant objects inheriting from this template + 407 + + + 408 + 95 + 36 + Gas Plants + 0 + -1 + Lists + 0 + -1 + true + true + 210 + set of Gas Plant objects in the List + set of Lists containing the Gas Plant + 408 + + + 409 + 36 + 22 + Node + 0 + 1 + Gas Plants + 0 + -1 + true + false + 67 + Electric Node the Gas Plant connects to + set of Gas Plants connected to the Electric Node + 409 + + + 410 + 36 + 38 + Input Node + 0 + 1 + Gas Plants Supplied + 0 + -1 + true + false + 208 + Gas Node the Gas Plant imports gas from + set of Gas Plants the Gas Node supplies + 410 + + + 411 + 36 + 38 + Output Node + 1 + 1 + Supplying Gas Plants + 0 + -1 + true + false + 209 + Gas Node the Gas Plant exports gas to + set of Gas Plants that supply the Gas Node + 411 + + + 412 + 36 + 63 + Maintenances + 0 + -1 + Gas Plants + 0 + -1 + true + false + 179 + set of maintenance events on the gas plant + set of gas plants taken out by the maintenance event + 412 + + + 413 + 36 + 70 + Constraints + 0 + -1 + Gas Plants + 0 + -1 + true + true + 12 + set of Constraints on the Gas Plant + set of Gas Plants in the Constraint + 413 + + + 414 + 36 + 71 + Objectives + 0 + -1 + Gas Plants + 0 + -1 + true + true + 240 + set of Objectives on the Gas Plant + set of Gas Plants in the Objective + 414 + + + 415 + 36 + 72 + Decision Variables + 0 + -1 + Gas Plants + 0 + -1 + true + true + 166 + set of gas plants whose equations include the decision variable + Decision Variables included in the Gas Plant formulation + 415 + + + 416 + 1 + 37 + Gas Pipelines + 0 + -1 + true + true + 114 + Gas Pipeline objects + 416 + + + 417 + 37 + 37 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Pipeline inherits from + Gas Pipeline objects inheriting from this template + 417 + + + 418 + 95 + 37 + Gas Pipelines + 0 + -1 + Lists + 0 + -1 + true + true + 114 + set of Gas Pipeline objects in the List + set of Lists containing the Gas Pipeline + 418 + + + 419 + 37 + 38 + Gas Node From + 1 + 1 + Exporting Gas Pipelines + 0 + -1 + true + false + 118 + gas node the gas pipeline exports from + set of gas pipelines exporting from the gas node + 419 + + + 420 + 37 + 38 + Gas Node To + 1 + 1 + Importing Gas Pipelines + 0 + -1 + true + false + 119 + gas node the gas pipeline imports to + set of gas pipelines importing to the gas node + 420 + + + 421 + 37 + 46 + Gas Paths + 0 + -1 + Gas Pipelines + 0 + -1 + false + true + 303 + set of Gas Paths that are associated with a Gas Pipeline to deliver gas + set of Gas Pipelines associated with the Gas Path + 421 + + + 422 + 37 + 63 + Maintenances + 0 + -1 + Gas Pipelines + 0 + -1 + true + false + 179 + set of maintenance events on the gas pipeline + set of gas pipelines taken out by the maintenance event + 422 + + + 423 + 37 + 70 + Constraints + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 12 + set of Constraints on the Gas Pipeline + set of Gas Pipelines in the Constraint + 423 + + + 424 + 37 + 71 + Objectives + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 240 + set of Objectives on the Gas Pipeline + set of Gas Pipelines in the Objective + 424 + + + 425 + 37 + 75 + Conditions + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Gas Pipeline + set of Gas Pipeline objects that define when the Variable is active + 425 + + + 426 + 1 + 38 + Gas Nodes + 0 + -1 + true + true + 115 + Gas Node objects + 426 + + + 427 + 38 + 38 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Node inherits from + Gas Node objects inheriting from this template + 427 + + + 428 + 95 + 38 + Gas Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 115 + set of Gas Node objects in the List + set of Lists containing the Gas Node + 428 + + + 429 + 38 + 43 + Gas Zones + 0 + -1 + Gas Nodes + 0 + -1 + true + false + 159 + set of gas zones the gas node belongs to + set of gas nodes in the gas zone + 429 + + + 430 + 38 + 45 + Gas Transports + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 211 + 430 + + + 431 + 38 + 46 + Gas Paths + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 303 + set of Gas paths that the gas node is a part of + set of gas nodes that are in the gas path + 431 + + + 432 + 38 + 62 + Facilities + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Gas Node + set of Gas Nodes the Facility connects to + 432 + + + 433 + 38 + 69 + Markets + 0 + -1 + Gas Nodes + 0 + 1 + true + true + 61 + external gas market connected to the gas node + gas node the market can buy and sell gas at + 433 + + + 434 + 38 + 70 + Constraints + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Gas Node + set of Gas Nodes in the Constraint + 434 + + + 435 + 38 + 71 + Objectives + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Gas Node + set of Gas Nodes in the Objective + 435 + + + 436 + 1 + 39 + Gas Storages + 0 + -1 + true + true + 113 + Gas Storage objects + 436 + + + 437 + 39 + 39 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Storage inherits from + Gas Storage objects inheriting from this template + 437 + + + 438 + 95 + 39 + Gas Storages + 0 + -1 + Lists + 0 + -1 + true + true + 113 + set of Gas Storage objects in the List + set of Lists containing the Gas Storage + 438 + + + 439 + 39 + 6 + Source Power2X + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 293 + 439 + + + 440 + 39 + 22 + Node + 0 + 1 + Gas Storages + 0 + -1 + true + false + 67 + Electric Node the Gas Storage connects to + set of Gas Storages connected to the Electric Node + 440 + + + 441 + 39 + 35 + Source Gas Fields + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 289 + 441 + + + 442 + 39 + 36 + Source Gas Plants + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 292 + 442 + + + 443 + 39 + 38 + Gas Nodes + 1 + -1 + Gas Storages + 0 + -1 + true + true + 115 + gas node the gas storage connects to + set of gas storages connected to the gas node + 443 + + + 444 + 39 + 39 + Source Gas Storages + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 290 + 444 + + + 445 + 39 + 44 + Source Gas Contracts + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 291 + 445 + + + 446 + 39 + 45 + Source Gas Transports + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 299 + 446 + + + 447 + 39 + 63 + Maintenances + 0 + -1 + Gas Storages + 0 + -1 + true + false + 179 + set of maintenance events on the gas storage + set of gas storages taken out by the maintenance event + 447 + + + 448 + 39 + 70 + Constraints + 0 + -1 + Gas Storages + 0 + -1 + true + true + 12 + set of Constraints on the Gas Storage + set of Gas Storages in the Constraint + 448 + + + 449 + 39 + 71 + Objectives + 0 + -1 + Gas Storages + 0 + -1 + true + true + 240 + set of Objectives on the Gas Storage + set of Gas Storages in the Objective + 449 + + + 450 + 1 + 40 + Gas Demands + 0 + -1 + true + true + 116 + Gas Demand objects + 450 + + + 451 + 40 + 40 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Demand inherits from + Gas Demand objects inheriting from this template + 451 + + + 452 + 95 + 40 + Gas Demands + 0 + -1 + Lists + 0 + -1 + true + true + 116 + set of Gas Demand objects in the List + set of Lists containing the Gas Demand + 452 + + + 453 + 40 + 6 + Source Power2X + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 293 + 453 + + + 454 + 40 + 35 + Source Gas Fields + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 289 + 454 + + + 455 + 40 + 36 + Source Gas Plants + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 292 + 455 + + + 456 + 40 + 38 + Gas Nodes + 1 + -1 + Gas Demands + 0 + -1 + true + true + 115 + set of gas nodes the demand occurs at + set of gas demands at this gas node + 456 + + + 457 + 40 + 39 + Source Gas Storages + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 290 + 457 + + + 458 + 40 + 44 + Linked Gas Contracts + 0 + -1 + Linked Gas Demands + 0 + -1 + true + true + 288 + gas contracts linked to the gas demand + set of gas demands linked with the gas contract + 458 + + + 459 + 40 + 44 + Source Gas Contracts + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 291 + 459 + + + 460 + 40 + 45 + Source Gas Transports + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 299 + 460 + + + 461 + 40 + 59 + Companies + 0 + -1 + Gas Demands + 0 + -1 + true + false + 9 + set of companies that own the gas demand + set of gas demands the company owns + 461 + + + 462 + 1 + 41 + Gas DSM Programs + 0 + -1 + true + true + 235 + Gas DSM Program objects + 462 + + + 463 + 41 + 41 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas DSM Program inherits from + Gas DSM Program objects inheriting from this template + 463 + + + 464 + 95 + 41 + Gas DSM Programs + 0 + -1 + Lists + 0 + -1 + true + true + 235 + set of Gas DSM Program objects in the List + set of Lists containing the Gas DSM Program + 464 + + + 465 + 41 + 40 + Gas Demands + 1 + -1 + Gas DSM Programs + 0 + -1 + true + false + 116 + set of gas demand for the DSM program + set of gas DSM programs for the gas demand + 465 + + + 466 + 41 + 70 + Constraints + 0 + -1 + Gas DSM Programs + 0 + -1 + true + true + 12 + set of Constraints on the Gas DSM Program + set of Gas DSM Programs in the Constraint + 466 + + + 467 + 41 + 71 + Objectives + 0 + -1 + Gas DSM Programs + 0 + -1 + true + true + 240 + set of Objectives on the Gas DSM Program + set of Gas DSM Programs in the Objective + 467 + + + 468 + 1 + 42 + Gas Basins + 0 + -1 + true + true + 175 + Gas Basin objects + 468 + + + 469 + 42 + 42 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Basin inherits from + Gas Basin objects inheriting from this template + 469 + + + 470 + 95 + 42 + Gas Basins + 0 + -1 + Lists + 0 + -1 + true + true + 175 + set of Gas Basin objects in the List + set of Lists containing the Gas Basin + 470 + + + 471 + 42 + 70 + Constraints + 0 + -1 + Gas Basins + 0 + -1 + true + true + 12 + set of Constraints on the Gas Basin + set of Gas Basins in the Constraint + 471 + + + 472 + 42 + 71 + Objectives + 0 + -1 + Gas Basins + 0 + -1 + true + true + 240 + set of Objectives on the Gas Basin + set of Gas Basins in the Objective + 472 + + + 473 + 1 + 43 + Gas Zones + 0 + -1 + true + true + 159 + Gas Zone objects + 473 + + + 474 + 43 + 43 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Zone inherits from + Gas Zone objects inheriting from this template + 474 + + + 475 + 95 + 43 + Gas Zones + 0 + -1 + Lists + 0 + -1 + true + true + 159 + set of Gas Zone objects in the List + set of Lists containing the Gas Zone + 475 + + + 476 + 43 + 2 + Generators + 0 + -1 + false + true + 36 + 476 + + + 477 + 43 + 35 + Gas Fields + 0 + -1 + false + true + 112 + 477 + + + 478 + 43 + 36 + Gas Plants + 0 + -1 + false + true + 210 + 478 + + + 479 + 43 + 37 + Exporting Gas Pipelines + 0 + -1 + false + true + 160 + 479 + + + 480 + 43 + 37 + Importing Gas Pipelines + 0 + -1 + false + true + 161 + 480 + + + 481 + 43 + 37 + Interzonal Gas Pipelines + 0 + -1 + false + true + 162 + 481 + + + 482 + 43 + 37 + Intrazonal Gas Pipelines + 0 + -1 + false + true + 163 + 482 + + + 483 + 43 + 39 + Gas Storages + 0 + -1 + false + true + 113 + 483 + + + 484 + 43 + 40 + Gas Demands + 0 + -1 + false + true + 116 + 484 + + + 485 + 43 + 44 + Gas Contracts + 0 + -1 + false + true + 207 + 485 + + + 486 + 43 + 45 + Exporting Gas Transports + 0 + -1 + false + true + 214 + 486 + + + 487 + 43 + 45 + Importing Gas Transports + 0 + -1 + false + true + 215 + 487 + + + 488 + 43 + 45 + Interzonal Gas Transports + 0 + -1 + false + true + 216 + 488 + + + 489 + 43 + 45 + Intrazonal Gas Transports + 0 + -1 + false + true + 217 + 489 + + + 490 + 1 + 44 + Gas Contracts + 0 + -1 + true + true + 207 + Gas Contract objects + 490 + + + 491 + 44 + 44 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Contract inherits from + Gas Contract objects inheriting from this template + 491 + + + 492 + 95 + 44 + Gas Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 207 + set of Gas Contract objects in the List + set of Lists containing the Gas Contract + 492 + + + 493 + 44 + 35 + Gas Fields + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 112 + gas fields that have a contract to produce gas + set of gas contracts associated with gas field production + 493 + + + 494 + 44 + 37 + Gas Pipelines + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 114 + gas pipelines that have a contract to transport gas + set of gas contracts associated with gas transportation + 494 + + + 495 + 44 + 38 + Gas Nodes + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 115 + gas nodes that have a contract to deliver gas + set of gas contracts associated with gas nodes + 495 + + + 496 + 44 + 45 + Gas Transports + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 211 + gas transports that have a contract to deliver gas + set of gas contracts associated with gas transport + 496 + + + 497 + 44 + 46 + Gas Paths + 0 + -1 + Gas Contracts + 0 + -1 + false + true + 303 + set of Gas Paths that are associated with a Gas Contract to deliver gas + set of Gas Contracts associated with the Gas Path + 497 + + + 498 + 44 + 59 + Companies + 0 + 1 + Gas Contracts + 0 + 1 + true + false + 9 + company that have a contract to supply gas + set of gas contract supplying to the company + 498 + + + 499 + 44 + 70 + Constraints + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Gas Contract + set of Gas Contracts in the Constraint + 499 + + + 500 + 44 + 71 + Objectives + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Gas Contract + set of Gas Contracts in the Objective + 500 + + + 501 + 1 + 45 + Gas Transports + 0 + -1 + true + true + 211 + Gas Transport objects + 501 + + + 502 + 45 + 45 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Transport inherits from + Gas Transport objects inheriting from this template + 502 + + + 503 + 95 + 45 + Gas Transports + 0 + -1 + Lists + 0 + -1 + true + true + 211 + set of Gas Transport objects in the List + set of Lists containing the Gas Transport + 503 + + + 504 + 45 + 6 + Source Power2X + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 293 + 504 + + + 505 + 45 + 35 + Source Gas Fields + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 289 + 505 + + + 506 + 45 + 36 + Source Gas Plants + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 292 + 506 + + + 507 + 45 + 38 + Export Node + 0 + 1 + Exporting Gas Transports + 0 + -1 + true + false + 212 + gas node the gas transport exports from + set of gas transports exporting from the gas node + 507 + + + 508 + 45 + 38 + Import Node + 0 + -1 + Importing Gas Transports + 0 + -1 + true + true + 213 + gas node the gas transport imports to + set of gas transports importing to the gas node + 508 + + + 509 + 45 + 39 + Source Gas Storages + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 290 + 509 + + + 510 + 45 + 44 + Source Gas Contracts + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 291 + 510 + + + 511 + 45 + 45 + Source Gas Transports + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 299 + 511 + + + 512 + 45 + 46 + Gas Paths + 0 + -1 + Gas Transports + 0 + -1 + true + true + 303 + set of gas paths that the gas transport can take + set of gas transports that can travel along a gas path + 512 + + + 513 + 45 + 46 + Initial Gas Path + 0 + 1 + Gas Transports Started + 0 + -1 + true + true + 314 + initial gas path that the gas transport is on at the beginning of the horizon + set of gas transports that are already travelling along a gas path at the beginning of the horizon + 513 + + + 514 + 45 + 63 + Maintenances + 0 + -1 + Gas Transports + 0 + -1 + true + false + 179 + set of maintenance events on the gas transport + set of gas transports taken out by the maintenance event + 514 + + + 515 + 45 + 70 + Constraints + 0 + -1 + Gas Transports + 0 + -1 + true + true + 12 + set of Constraints on the Gas Transport + set of Gas Transports in the Constraint + 515 + + + 516 + 45 + 71 + Objectives + 0 + -1 + Gas Transports + 0 + -1 + true + true + 240 + set of Objectives on the Gas Transport + set of Gas Transports in the Objective + 516 + + + 517 + 1 + 46 + Gas Paths + 0 + -1 + true + true + 303 + Gas Path objects + 517 + + + 518 + 46 + 46 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Path inherits from + Gas Path objects inheriting from this template + 518 + + + 519 + 95 + 46 + Gas Paths + 0 + -1 + Lists + 0 + -1 + true + true + 303 + set of Gas Path objects in the List + set of Lists containing the Gas Path + 519 + + + 520 + 1 + 47 + Gas Capacity Release Offers + 0 + -1 + true + true + 239 + Gas Capacity Release Offer objects + 520 + + + 521 + 47 + 47 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Capacity Release Offer inherits from + Gas Capacity Release Offer objects inheriting from this template + 521 + + + 522 + 95 + 47 + Gas Capacity Release Offers + 0 + -1 + Lists + 0 + -1 + true + true + 239 + set of Gas Capacity Release Offer objects in the List + set of Lists containing the Gas Capacity Release Offer + 522 + + + 523 + 47 + 37 + Gas Pipelines + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + false + 114 + set of gas pipelines for the gas capacity release offers + set of gas capacity release offers for gas pipelines + 523 + + + 524 + 47 + 39 + Gas Storages + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + false + 113 + set of gas storages for the gas capacity release offers + set of gas capacity release offers for gas storages + 524 + + + 525 + 47 + 70 + Constraints + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + true + 12 + set of Constraints on the Gas Capacity Release Offer + set of Gas Capacity Release Offers in the Constraint + 525 + + + 526 + 47 + 71 + Objectives + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + true + 240 + set of Objectives on the Gas Capacity Release Offer + set of Gas Capacity Release Offers in the Objective + 526 + + + 527 + 1 + 48 + Water Plants + 0 + -1 + true + true + 188 + Water Plant objects + 527 + + + 528 + 48 + 48 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Plant inherits from + Water Plant objects inheriting from this template + 528 + + + 529 + 95 + 48 + Water Plants + 0 + -1 + Lists + 0 + -1 + true + true + 188 + set of Water Plant objects in the List + set of Lists containing the Water Plant + 529 + + + 530 + 48 + 22 + Node + 0 + 1 + Water Plants + 0 + -1 + true + false + 67 + Electric Node the Water Plant connects to + set of Water Plants connected to the Electric Node + 530 + + + 531 + 48 + 50 + Input Node + 0 + 1 + Water Plant Supplied + 0 + -1 + true + false + 208 + Water Node the Water Plant imports water from (or 'the sea' if none is defined) + set of Water Plants the Water Node supplies + 531 + + + 532 + 48 + 50 + Output Node + 1 + 1 + Supplying Water Plants + 0 + -1 + true + false + 209 + Water Node the Water Plant exports water to + set of Water Plants that supply the Water Node + 532 + + + 533 + 48 + 63 + Maintenances + 0 + -1 + Water Plants + 0 + -1 + true + false + 179 + set of maintenance events on the water plant + set of water plants taken out by the maintenance event + 533 + + + 534 + 48 + 70 + Constraints + 0 + -1 + Water Plants + 0 + -1 + true + true + 12 + set of Constraints on the Water Plant + set of Water Plants in the Constraint + 534 + + + 535 + 48 + 71 + Objectives + 0 + -1 + Water Plants + 0 + -1 + true + true + 240 + set of Objectives on the Water Plant + set of Water Plants in the Objective + 535 + + + 536 + 48 + 72 + Decision Variables + 0 + -1 + Water Plants + 0 + -1 + true + true + 166 + set of water plants whose equations include the decision variable + Decision Variables included in the Water Plant formulation + 536 + + + 537 + 1 + 49 + Water Pipelines + 0 + -1 + true + true + 190 + Water Pipeline objects + 537 + + + 538 + 49 + 49 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pipeline inherits from + Water Pipeline objects inheriting from this template + 538 + + + 539 + 95 + 49 + Water Pipelines + 0 + -1 + Lists + 0 + -1 + true + true + 190 + set of Water Pipeline objects in the List + set of Lists containing the Water Pipeline + 539 + + + 540 + 49 + 50 + Water Node From + 1 + 1 + Exporting Water Pipelines + 0 + -1 + true + false + 201 + Water Node the Water Pipeline exports from + set of Water Pipelines exporting from the Water Node + 540 + + + 541 + 49 + 50 + Water Node To + 1 + 1 + Importing Water Pipelines + 0 + -1 + true + false + 202 + Water Node the Water Pipeline imports to + set of Water Pipelines importing to the Water Node + 541 + + + 542 + 49 + 63 + Maintenances + 0 + -1 + Water Pipelines + 0 + -1 + true + false + 179 + set of maintenance events on the water pipeline + set of water pipelines taken out by the maintenance event + 542 + + + 543 + 49 + 70 + Constraints + 0 + -1 + Water Pipelines + 0 + -1 + true + true + 12 + set of Constraints on the Water Pipeline + set of Water Pipelines in the Constraint + 543 + + + 544 + 49 + 71 + Objectives + 0 + -1 + Water Pipelines + 0 + -1 + true + true + 240 + set of Objectives on the Water Pipeline + set of Water Pipelines in the Objective + 544 + + + 545 + 1 + 50 + Water Nodes + 0 + -1 + true + true + 191 + Water Node objects + 545 + + + 546 + 50 + 50 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Node inherits from + Water Node objects inheriting from this template + 546 + + + 547 + 95 + 50 + Water Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 191 + set of Water Node objects in the List + set of Lists containing the Water Node + 547 + + + 548 + 50 + 22 + Node + 0 + 1 + Water Nodes + 0 + -1 + true + false + 67 + Node the Water Node connects to + set of Water Nodes connected to the Electric Node + 548 + + + 549 + 50 + 53 + Water Zones + 0 + -1 + Water Nodes + 0 + -1 + true + true + 193 + set of Water Zones the Water node belongs to + set of Water Nodes in the Water Zone + 549 + + + 550 + 50 + 62 + Facilities + 0 + -1 + Water Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Water Node + set of Water Nodes the Facility connects to + 550 + + + 551 + 50 + 69 + Markets + 0 + -1 + Water Nodes + 0 + 1 + true + true + 61 + external water market connected to the water node + water node the market can buy and sell water at + 551 + + + 552 + 50 + 70 + Constraints + 0 + -1 + Water Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Water Node + set of Water Nodes in the Constraint + 552 + + + 553 + 50 + 71 + Objectives + 0 + -1 + Water Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Water Node + set of Water Nodes in the Objective + 553 + + + 554 + 1 + 51 + Water Storages + 0 + -1 + true + true + 189 + Water Storage objects + 554 + + + 555 + 51 + 51 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Storage inherits from + Water Storage objects inheriting from this template + 555 + + + 556 + 95 + 51 + Water Storages + 0 + -1 + Lists + 0 + -1 + true + true + 189 + set of Water Storage objects in the List + set of Lists containing the Water Storage + 556 + + + 557 + 51 + 50 + Water Node + 1 + 1 + Water Storages + 0 + -1 + true + false + 200 + Water Node the Water Storage connects to + set of Water Storages connected to the Water Node + 557 + + + 558 + 51 + 63 + Maintenances + 0 + -1 + Water Storages + 0 + -1 + true + false + 179 + set of maintenance events on the water storage + set of water storages taken out by the maintenance event + 558 + + + 559 + 51 + 70 + Constraints + 0 + -1 + Water Storages + 0 + -1 + true + true + 12 + set of Constraints on the Water Storage + set of Water Storages in the Constraint + 559 + + + 560 + 51 + 71 + Objectives + 0 + -1 + Water Storages + 0 + -1 + true + true + 240 + set of Objectives on the Water Storage + set of Water Storages in the Objective + 560 + + + 561 + 1 + 52 + Water Demands + 0 + -1 + true + true + 192 + Water Demand objects + 561 + + + 562 + 52 + 52 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Demand inherits from + Water Demand objects inheriting from this template + 562 + + + 563 + 95 + 52 + Water Demands + 0 + -1 + Lists + 0 + -1 + true + true + 192 + set of Water Demand objects in the List + set of Lists containing the Water Demand + 563 + + + 564 + 52 + 50 + Water Nodes + 1 + -1 + Water Demands + 0 + -1 + true + false + 191 + set of Water Nodes the Water Demand occurs at + set of Water Demands at this Water Node + 564 + + + 565 + 1 + 53 + Water Zones + 0 + -1 + true + true + 193 + Water Zone objects + 565 + + + 566 + 53 + 53 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Zone inherits from + Water Zone objects inheriting from this template + 566 + + + 567 + 95 + 53 + Water Zones + 0 + -1 + Lists + 0 + -1 + true + true + 193 + set of Water Zone objects in the List + set of Lists containing the Water Zone + 567 + + + 568 + 53 + 48 + Water Plants + 0 + -1 + false + true + 188 + 568 + + + 569 + 53 + 49 + Exporting Water Pipelines + 0 + -1 + false + true + 203 + 569 + + + 570 + 53 + 49 + Importing Water Pipelines + 0 + -1 + false + true + 204 + 570 + + + 571 + 53 + 49 + Interzonal Water Pipelines + 0 + -1 + false + true + 205 + 571 + + + 572 + 53 + 49 + Intrazonal Water Pipelines + 0 + -1 + false + true + 206 + 572 + + + 573 + 53 + 51 + Water Storages + 0 + -1 + false + true + 189 + 573 + + + 574 + 53 + 52 + Water Demands + 0 + -1 + false + true + 192 + 574 + + + 575 + 1 + 54 + Water Pump Stations + 0 + -1 + true + true + 254 + Water Pump Station objects + 575 + + + 576 + 54 + 54 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pump Station inherits from + Water Pump Station objects inheriting from this template + 576 + + + 577 + 95 + 54 + Water Pump Stations + 0 + -1 + Lists + 0 + -1 + true + true + 254 + set of Water Pump Station objects in the List + set of Lists containing the Water Pump Station + 577 + + + 578 + 54 + 49 + Water Pipeline + 0 + 1 + true + false + 256 + Water Pipeline connected to the water pump station + 578 + + + 579 + 54 + 51 + Downstream Water Storage + 0 + 1 + true + false + 258 + Water Storage situated downstream to the pump station + 579 + + + 580 + 54 + 51 + Upstream Water Storage + 0 + 1 + true + false + 257 + Water Storage situated upstream to the water pump station + 580 + + + 581 + 54 + 55 + Water Pumps + 0 + -1 + Water Pump Stations + 0 + 1 + true + true + 255 + Collection of water pumps associated with the water pump station + Water pump stations associated with a water pump + 581 + + + 582 + 54 + 70 + Constraints + 0 + -1 + Water Pump Stations + 0 + -1 + true + true + 12 + set of Constraints on the Water Pump Station + set of Water Pump Stations in the Constraint + 582 + + + 583 + 54 + 71 + Objectives + 0 + -1 + Water Pump Stations + 0 + -1 + true + true + 240 + set of Objectives on the Water Pump Station + set of Water Pump Stations in the Objective + 583 + + + 584 + 1 + 55 + Water Pumps + 0 + -1 + true + true + 255 + Water Pump objects + 584 + + + 585 + 55 + 55 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pump inherits from + Water Pump objects inheriting from this template + 585 + + + 586 + 95 + 55 + Water Pumps + 0 + -1 + Lists + 0 + -1 + true + true + 255 + set of Water Pump objects in the List + set of Lists containing the Water Pump + 586 + + + 587 + 55 + 70 + Constraints + 0 + -1 + Water Pumps + 0 + -1 + true + true + 12 + set of Constraints on the Water Pumps + set of Water Pumps in the Constraint + 587 + + + 588 + 1 + 56 + Vehicles + 0 + -1 + true + true + 241 + Vehicle objects + 588 + + + 589 + 56 + 56 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Vehicle inherits from + Vehicle objects inheriting from this template + 589 + + + 590 + 95 + 56 + Vehicles + 0 + -1 + Lists + 0 + -1 + true + true + 241 + set of Vehicle objects in the List + set of Lists containing the Vehicle + 590 + + + 591 + 56 + 57 + Charging Stations + 0 + -1 + Vehicles + 0 + -1 + true + true + 242 + set of Charging Stations used by the Vehicle + set of Vehicles that use the Charging Station + 591 + + + 592 + 56 + 58 + Fleets + 0 + -1 + Vehicles + 0 + -1 + true + false + 243 + set of Fleets the Vehicle belongs to + set of Vehicles in the Fleet + 592 + + + 593 + 56 + 60 + Commodities + 0 + -1 + Vehicles + 0 + -1 + true + false + 260 + set of Commodities consumed by the Vehicle + set of Vehicles consuming the Commodity + 593 + + + 594 + 56 + 70 + Constraints + 0 + -1 + Vehicles + 0 + -1 + true + true + 12 + set of Constraints on the Vehicle + set of Vehicles in the Constraint + 594 + + + 595 + 56 + 71 + Objectives + 0 + -1 + Vehicles + 0 + -1 + true + true + 240 + set of Objectives on the Vehicle + set of Vehicles in the Objective + 595 + + + 596 + 1 + 57 + Charging Stations + 0 + -1 + true + true + 242 + Charging Station objects + 596 + + + 597 + 57 + 57 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Charging Station inherits from + Charging Station objects inheriting from this template + 597 + + + 598 + 95 + 57 + Charging Stations + 0 + -1 + Lists + 0 + -1 + true + true + 242 + set of Charging Station objects in the List + set of Lists containing the Charging Station + 598 + + + 599 + 57 + 14 + Reserves + 0 + -1 + Charging Stations + 0 + -1 + true + true + 88 + set of Reserves provided by the Charging Station + set of Charging Stations providing the Reserve + 599 + + + 600 + 57 + 22 + Node + 1 + 1 + Charging Stations + 0 + -1 + true + false + 67 + Charging Station connection point in the electric network + set of Charging Stations connected to the electric Node + 600 + + + 601 + 57 + 60 + Commodities + 0 + -1 + Charging Stations + 0 + -1 + true + false + 260 + set of Commodities consumed by the Charging Station + set of Charging Stations consuming the Commodity + 601 + + + 602 + 1 + 58 + Fleets + 0 + -1 + true + true + 243 + Fleet objects + 602 + + + 603 + 58 + 58 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fleet inherits from + Fleet objects inheriting from this template + 603 + + + 604 + 95 + 58 + Fleets + 0 + -1 + Lists + 0 + -1 + true + true + 243 + set of Fleet objects in the List + set of Lists containing the Fleet + 604 + + + 605 + 58 + 59 + Companies + 0 + -1 + Fleets + 0 + -1 + true + false + 9 + set of Companies that own the Fleet + set of Fleets owned by the Company + 605 + + + 606 + 1 + 59 + Companies + 0 + -1 + true + true + 9 + Company objects + 606 + + + 607 + 59 + 59 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Company inherits from + Company objects inheriting from this template + 607 + + + 608 + 95 + 59 + Companies + 0 + -1 + Lists + 0 + -1 + true + true + 9 + set of Company objects in the List + set of Lists containing the Company + 608 + + + 609 + 59 + 4 + Fuels + 0 + -1 + true + true + 31 + 609 + + + 610 + 59 + 10 + Emissions + 0 + -1 + Companies + 0 + -1 + true + true + 20 + set of emissions produced by the company + set of companies that produce the emission + 610 + + + 611 + 59 + 14 + Reserves + 0 + -1 + true + true + 88 + 611 + + + 612 + 59 + 19 + Regions + 0 + -1 + Companies + 0 + -1 + true + true + 85 + set of regions the company has load responsibilities in + set of companies that are responsible for the load in the region + 612 + + + 613 + 59 + 56 + Vehicles + 0 + -1 + true + true + 241 + 613 + + + 614 + 59 + 59 + Companies + 0 + -1 + false + true + 9 + set of Companies the Company connects to + 614 + + + 615 + 59 + 60 + Commodities + 0 + -1 + true + true + 260 + 615 + + + 616 + 59 + 62 + Facilities + 0 + -1 + Companies + 0 + -1 + true + true + 267 + set of Facilities owned by the Company + Companies that own the Facility + 616 + + + 617 + 59 + 69 + Markets + 0 + -1 + Companies + 0 + -1 + true + true + 61 + Markets the Company own trades in + Companies that own the trades in the Market + 617 + + + 618 + 59 + 70 + Constraints + 0 + -1 + Companies + 0 + -1 + true + true + 12 + set of Constraints on the Company + set of Companies in the Constraint + 618 + + + 619 + 59 + 71 + Objectives + 0 + -1 + Companies + 0 + -1 + true + true + 240 + set of Objectives on the Company + set of Companies in the Objective + 619 + + + 620 + 1 + 60 + Commodities + 0 + -1 + true + true + 260 + Commodity objects + 620 + + + 621 + 60 + 60 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Commodity inherits from + Commodity objects inheriting from this template + 621 + + + 622 + 95 + 60 + Commodities + 0 + -1 + Lists + 0 + -1 + true + true + 260 + set of Commodity objects in the List + set of Lists containing the Commodity + 622 + + + 623 + 60 + 69 + Markets + 0 + -1 + Commodities + 0 + 1 + true + false + 61 + Markets the Commodity is traded in + Commodity traded in the Market + 623 + + + 624 + 60 + 70 + Constraints + 0 + -1 + Commodities + 0 + -1 + true + true + 12 + set of Constraints on the Commodity + set of Commodities in the Constraint + 624 + + + 625 + 60 + 71 + Objectives + 0 + -1 + Commodities + 0 + -1 + true + true + 240 + set of Objectives on the Commodity + set of Commodities in the Objective + 625 + + + 626 + 1 + 61 + Processes + 0 + -1 + true + true + 261 + Process objects + 626 + + + 627 + 61 + 61 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Process inherits from + Process objects inheriting from this template + 627 + + + 628 + 95 + 61 + Processes + 0 + -1 + Lists + 0 + -1 + true + true + 261 + set of Process objects in the List + set of Lists containing the Process + 628 + + + 629 + 61 + 60 + Primary Input + 0 + 1 + Primary Consumers + 0 + -1 + true + true + 263 + the primary input Commodity to the Process + set of Processes for which this Commodity is the primary input + 629 + + + 630 + 61 + 60 + Primary Output + 0 + 1 + Primary Producers + 0 + -1 + true + true + 265 + the primary output Commodity of the Process + set of Processes for which this Commodity is the primary output + 630 + + + 631 + 61 + 60 + Secondary Inputs + 0 + -1 + Secondary Consumers + 0 + -1 + true + true + 264 + the set of secondary input Commodities to the Process + set of Processes for which this Commodity is a secondary input + 631 + + + 632 + 61 + 60 + Secondary Outputs + 0 + -1 + Secondary Producers + 0 + -1 + true + true + 266 + the set of secondary output Commodities of the Process + set of Processes for which this Commodity is a secondary output + 632 + + + 633 + 61 + 70 + Constraints + 0 + -1 + Processes + 0 + -1 + true + true + 12 + set of Constraints on the Process + set of Processes in the Constraint + 633 + + + 634 + 61 + 71 + Objectives + 0 + -1 + Processes + 0 + -1 + true + true + 240 + set of Objectives on the Process + set of Processes in the Objective + 634 + + + 635 + 1 + 62 + Facilities + 0 + -1 + true + true + 267 + Facility objects + 635 + + + 636 + 62 + 62 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Facility inherits from + Facility objects inheriting from this template + 636 + + + 637 + 95 + 62 + Facilities + 0 + -1 + Lists + 0 + -1 + true + true + 267 + set of Facility objects in the List + set of Lists containing the Facility + 637 + + + 638 + 62 + 60 + Primary Inputs + 0 + -1 + Primary Consuming Facilities + 0 + -1 + true + true + 268 + 638 + + + 639 + 62 + 60 + Primary Outputs + 0 + -1 + Primary Producing Facilities + 0 + -1 + true + true + 270 + 639 + + + 640 + 62 + 60 + Secondary Inputs + 0 + -1 + Secondary Consuming Facilities + 0 + -1 + true + true + 264 + 640 + + + 641 + 62 + 60 + Secondary Outputs + 0 + -1 + Secondary Producing Facilities + 0 + -1 + true + true + 266 + 641 + + + 642 + 62 + 61 + Primary Process + 0 + 1 + Primary Facilities + 0 + -1 + true + false + 276 + the primary Process performed by the Facility + set of Facilities where this is the primary Process + 642 + + + 643 + 62 + 61 + Secondary Processes + 0 + -1 + Secondary Facilities + 0 + -1 + true + true + 277 + set of secondary Processes performed by the Facility + set of Facilities where this is a secondary Process + 643 + + + 644 + 62 + 61 + Warm Up Process + 0 + 1 + Facilities Warmed Up + 0 + -1 + true + false + 295 + the Process that runs during the Facility warm up time + set of Facilities where this is the Warm Up Process + 644 + + + 645 + 62 + 63 + Maintenances + 0 + -1 + Facilities + 0 + -1 + true + false + 179 + set of maintenance events on the facility + set of Facilities taken out on maintenance + 645 + + + 646 + 62 + 65 + Flow Nodes + 0 + -1 + Facilities + 0 + -1 + true + true + 279 + Set of Flow Nodes the Facility connects to + set of Facilities connected to the Flow Node + 646 + + + 647 + 62 + 68 + Entities + 0 + -1 + Facilities + 0 + -1 + true + true + 273 + set of Entities associated with the Facility + set of Facilities associated with the Entity + 647 + + + 648 + 62 + 70 + Constraints + 0 + -1 + Facilities + 0 + -1 + true + true + 12 + set of Constraints on the Facility + set of Facilities in the Constraint + 648 + + + 649 + 62 + 71 + Objectives + 0 + -1 + Facilities + 0 + -1 + true + true + 240 + set of Objectives on the Facility + set of Facilities in the Objective + 649 + + + 650 + 62 + 75 + Conditions + 0 + -1 + Facilities + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Facility + set of Facilities that define when the Variable is active + 650 + + + 651 + 1 + 63 + Maintenances + 0 + -1 + true + true + 179 + Maintenance objects + 651 + + + 652 + 63 + 63 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Maintenance inherits from + Maintenance objects inheriting from this template + 652 + + + 653 + 95 + 63 + Maintenances + 0 + -1 + Lists + 0 + -1 + true + true + 179 + set of Maintenance objects in the List + set of Lists containing the Maintenance + 653 + + + 654 + 63 + 63 + Prerequisites + 0 + -1 + Dependencies + 0 + -1 + true + false + 180 + set of maintenance events that must precede this event + set of maintenance events that depend on the completion of this event + 654 + + + 655 + 63 + 70 + Constraints + 0 + -1 + Maintenances + 0 + -1 + true + true + 12 + set of Constraints on the Maintenance + set of Maintenances in the Constraint + 655 + + + 656 + 63 + 71 + Objectives + 0 + -1 + Maintenances + 0 + -1 + true + true + 240 + set of Objectives on the Maintenance + set of Maintenances in the Objective + 656 + + + 657 + 1 + 64 + Flow Networks + 0 + -1 + true + true + 278 + Flow Network objects + 657 + + + 658 + 64 + 64 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Network inherits from + Flow Network objects inheriting from this template + 658 + + + 659 + 95 + 64 + Flow Networks + 0 + -1 + Lists + 0 + -1 + true + true + 278 + set of Flow Network objects in the List + set of Lists containing the Flow Network + 659 + + + 660 + 64 + 60 + Commodity + 1 + 1 + Flow Networks + 0 + -1 + true + true + 287 + Commodity flowing on the Flow Network + set of Flow Networks flowing the Commodity + 660 + + + 661 + 64 + 62 + Facilities + 0 + -1 + Flow Networks + 0 + -1 + true + true + 267 + 661 + + + 662 + 64 + 65 + Flow Nodes + 0 + -1 + Flow Network + 0 + 1 + true + true + 279 + Set of Flow Nodes in the Flow Network + Flow Network the Flow Node belongs to + 662 + + + 663 + 64 + 67 + Flow Storages + 0 + -1 + Flow Network + 0 + -1 + true + true + 294 + 663 + + + 664 + 64 + 70 + Constraints + 0 + -1 + Flow Networks + 0 + -1 + true + true + 12 + set of Constraints on the Flow Network + set of Flow Networks in the Constraint + 664 + + + 665 + 64 + 71 + Objectives + 0 + -1 + Flow Networks + 0 + -1 + true + true + 240 + set of Objectives on the Flow Network + set of Flow Networks in the Objective + 665 + + + 666 + 1 + 65 + Flow Nodes + 0 + -1 + true + true + 279 + Flow Node objects + 666 + + + 667 + 65 + 65 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Node inherits from + Flow Node objects inheriting from this template + 667 + + + 668 + 95 + 65 + Flow Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 279 + set of Flow Node objects in the List + set of Lists containing the Flow Node + 668 + + + 669 + 65 + 68 + Entities + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 273 + set of Entities associated with the Flow Node + set of Flow Nodes associated with the Entity + 669 + + + 670 + 65 + 69 + Markets + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 61 + set of Markets connected to the Flow Node + Flow Nodes the Market is connected to + 670 + + + 671 + 65 + 70 + Constraints + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Flow Node + set of Flow Nodes in the Constraint + 671 + + + 672 + 65 + 71 + Objectives + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Flow Node + set of Flow Nodes in the Objective + 672 + + + 673 + 1 + 66 + Flow Paths + 0 + -1 + true + true + 280 + Flow Path objects + 673 + + + 674 + 66 + 66 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Path inherits from + Flow Path objects inheriting from this template + 674 + + + 675 + 95 + 66 + Flow Paths + 0 + -1 + Lists + 0 + -1 + true + true + 280 + set of Flow Path objects in the List + set of Lists containing the Flow Path + 675 + + + 676 + 66 + 65 + Flow Node From + 0 + 1 + Exporting Flow Paths + 0 + -1 + true + false + 282 + Flow Node the Flow Path exports from + set of Flow Paths exporting from the Flow Node + 676 + + + 677 + 66 + 65 + Flow Node To + 0 + 1 + Importing Flow Paths + 0 + -1 + true + false + 283 + Flow Node the Flow Path imports to + set of Flow Paths importing to the Flow Node + 677 + + + 678 + 66 + 68 + Entities + 0 + -1 + Flow Paths + 0 + -1 + true + true + 273 + set of Entities associated with the Flow Paths + set of Flow Paths associated with the Entity + 678 + + + 679 + 66 + 70 + Constraints + 0 + -1 + Flow Paths + 0 + -1 + true + true + 12 + set of Constraints on the Flow Path + set of Flow Paths in the Constraint + 679 + + + 680 + 66 + 71 + Objectives + 0 + -1 + Flow Paths + 0 + -1 + true + true + 240 + set of Objectives on the Flow Path + set of Flow Paths in the Objective + 680 + + + 681 + 1 + 67 + Flow Storages + 0 + -1 + true + true + 294 + Flow Storage objects + 681 + + + 682 + 67 + 67 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Storage inherits from + Flow Storage objects inheriting from this template + 682 + + + 683 + 95 + 67 + Flow Storages + 0 + -1 + Lists + 0 + -1 + true + true + 294 + set of Flow Storage objects in the List + set of Lists containing the Flow Storage + 683 + + + 684 + 67 + 65 + Flow Node + 1 + 1 + Flow Storages + 0 + -1 + true + false + 284 + Flow Node the Flow Storage connects to + 684 + + + 685 + 67 + 68 + Entities + 0 + -1 + Flow Storages + 0 + -1 + true + true + 273 + set of Entities associated with the Flow Storages + set of Flow Storage associated with the Entity + 685 + + + 686 + 67 + 70 + Constraints + 0 + -1 + Flow Storages + 0 + -1 + true + true + 12 + set of Constraints on the Flow Storage + set of Flow Storages in the Constraint + 686 + + + 687 + 67 + 71 + Objectives + 0 + -1 + Flow Storages + 0 + -1 + true + true + 240 + set of Objectives on the Flow Storage + set of Flow Storages in the Objective + 687 + + + 688 + 1 + 68 + Entities + 0 + -1 + true + true + 273 + Entity objects + 688 + + + 689 + 68 + 68 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Entity inherits from + Entity objects inheriting from this template + 689 + + + 690 + 95 + 68 + Entities + 0 + -1 + Lists + 0 + -1 + true + true + 273 + set of Entity objects in the List + set of Lists containing the Entity + 690 + + + 691 + 68 + 60 + Commodities + 0 + -1 + true + true + 260 + 691 + + + 692 + 68 + 70 + Constraints + 0 + -1 + Entities + 0 + -1 + true + true + 12 + set of Constraints on the Entity + set of Entities in the Constraint + 692 + + + 693 + 68 + 71 + Objectives + 0 + -1 + Entities + 0 + -1 + true + true + 240 + set of Objectives on the Entity + set of Entities in the Objective + 693 + + + 694 + 1 + 69 + Markets + 0 + -1 + true + true + 61 + Market objects + 694 + + + 695 + 69 + 69 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Market inherits from + Market objects inheriting from this template + 695 + + + 696 + 95 + 69 + Markets + 0 + -1 + Lists + 0 + -1 + true + true + 61 + set of Market objects in the List + set of Lists containing the Market + 696 + + + 697 + 69 + 68 + Entities + 0 + -1 + Markets + 0 + -1 + true + true + 273 + Entities that own the trades in the Market + Markets the Entity trades in + 697 + + + 698 + 69 + 70 + Constraints + 0 + -1 + Markets + 0 + -1 + true + true + 12 + set of Constraints on the Market + set of Markets in the Constraint + 698 + + + 699 + 69 + 71 + Objectives + 0 + -1 + Markets + 0 + -1 + true + true + 240 + set of Objectives on the Market + set of Markets in the Objective + 699 + + + 700 + 1 + 70 + Constraints + 0 + -1 + true + true + 12 + Constraint objects + 700 + + + 701 + 70 + 70 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Constraint inherits from + Constraint objects inheriting from this template + 701 + + + 702 + 95 + 70 + Constraints + 0 + -1 + Lists + 0 + -1 + true + true + 12 + set of Constraint objects in the List + set of Lists containing the Constraint + 702 + + + 703 + 70 + 75 + Conditions + 0 + -1 + Conditional Constraints + 0 + -1 + true + true + 11 + set of switching variables for this constraint + set of constraints switched by this variable + 703 + + + 704 + 1 + 71 + Objectives + 0 + -1 + true + true + 240 + Objective + 704 + + + 705 + 71 + 71 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Objective inherits from + Objective objects inheriting from this template + 705 + + + 706 + 95 + 71 + Objectives + 0 + -1 + Lists + 0 + -1 + true + true + 240 + set of Objective objects in the List + set of Lists containing the Objective + 706 + + + 707 + 1 + 72 + Decision Variables + 0 + -1 + true + true + 166 + Decision Variable objects + 707 + + + 708 + 72 + 72 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Decision Variable inherits from + Decision Variable objects inheriting from this template + 708 + + + 709 + 95 + 72 + Decision Variables + 0 + -1 + Lists + 0 + -1 + true + true + 166 + set of Decision Variable objects in the List + set of Lists containing the Decision Variable + 709 + + + 710 + 72 + 70 + Constraints + 0 + -1 + Decision Variables + 0 + -1 + true + true + 12 + set of Constraints on the Decision Variable + set of Decision Variables in the Constraint + 710 + + + 711 + 72 + 70 + Definition + 0 + 1 + Definitions + 0 + 1 + true + false + 168 + Constraint that defines the Decision Variable value + Decision Variable defined by this Constraint + 711 + + + 712 + 72 + 71 + Objectives + 0 + -1 + Decision Variables + 0 + -1 + true + true + 240 + set of Objectives on the Decision Variable + set of Decision Variables in the Objective + 712 + + + 713 + 1 + 73 + Nonlinear Constraints + 0 + -1 + true + true + 250 + Nonlinear Constraint objects + 713 + + + 714 + 73 + 73 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Nonlinear Constraint inherits from + Nonlinear Constraint objects inheriting from this template + 714 + + + 715 + 95 + 73 + Nonlinear Constraints + 0 + -1 + Lists + 0 + -1 + true + true + 250 + set of Nonlinear Constraint objects in the List + set of Lists containing the Nonlinear Constraint + 715 + + + 716 + 73 + 72 + Decision Variable X + 1 + 1 + true + false + 251 + Decision Variable object specifying "X" for the Nonlinear Constraint + 716 + + + 717 + 73 + 72 + Decision Variable Y + 1 + 1 + true + false + 252 + Decision Variable object specifying "Y" for the Nonlinear Constraint + 717 + + + 718 + 1 + 74 + Data Files + 0 + -1 + true + true + 16 + Data File objects + 718 + + + 719 + 95 + 74 + Data Files + 0 + -1 + Lists + 0 + -1 + true + true + 16 + set of Data File objects in the List + set of Lists containing the Data File + 719 + + + 720 + 1 + 75 + Variables + 0 + -1 + true + true + 103 + Variable objects + 720 + + + 721 + 95 + 75 + Variables + 0 + -1 + Lists + 0 + -1 + true + true + 103 + set of Variable objects in the List + set of Lists containing the Variable + 721 + + + 722 + 75 + 70 + Constraints + 0 + -1 + Variables + 0 + -1 + true + true + 12 + set of Constraints on the Variable + set of Variables in the Constraint + 722 + + + 723 + 75 + 71 + Objectives + 0 + -1 + Variables + 0 + -1 + true + true + 240 + set of Objectives on the Variable + set of Variables in the Objective + 723 + + + 724 + 75 + 75 + Variables + 0 + -1 + true + true + 103 + correlation matrix + 724 + + + 725 + 75 + 75 + Conditions + 0 + -1 + true + true + 11 + set of conditions the condition depends on + 725 + + + 726 + 1 + 76 + Timeslices + 0 + -1 + true + true + 98 + Timeslice objects + 726 + + + 727 + 95 + 76 + Timeslices + 0 + -1 + Lists + 0 + -1 + true + true + 98 + set of Timeslice objects in the List + set of Lists containing the Timeslice + 727 + + + 728 + 1 + 77 + Globals + 0 + -1 + true + true + 167 + Global objects + 728 + + + 729 + 95 + 77 + Globals + 0 + -1 + Lists + 0 + -1 + true + true + 167 + set of Global objects in the List + set of Lists containing the Global + 729 + + + 730 + 1 + 78 + Scenarios + 0 + -1 + true + true + 90 + Scenario objects + 730 + + + 731 + 95 + 78 + Scenarios + 0 + -1 + Lists + 0 + -1 + true + true + 90 + set of Scenario objects in the List + set of Lists containing the Scenario + 731 + + + 732 + 1 + 79 + Weather Stations + 0 + -1 + true + true + 233 + Weather station objects + 732 + + + 733 + 95 + 79 + Weather Stations + 0 + -1 + Lists + 0 + -1 + true + true + 233 + set of Weather Station objects in the List + set of Lists containing the Weather Station + 733 + + + 734 + 79 + 38 + Gas Node + 1 + -1 + Weather Stations + 0 + 1 + true + false + 117 + gas node the weather station connects to + set of weather stations connected to the gas node + 734 + + + 735 + 79 + 39 + Gas Storages + 0 + -1 + false + true + 113 + 735 + + + 736 + 79 + 40 + Gas Demands + 0 + -1 + false + true + 116 + 736 + + + 737 + 1 + 80 + Models + 0 + -1 + true + true + 64 + Model objects + 737 + + + 738 + 80 + 78 + Scenarios + 0 + -1 + Models + 0 + -1 + true + true + 90 + set of scenarios used by the model + set of models that use the scenario + 738 + + + 739 + 80 + 15 + Reliability + 0 + 1 + Models + 0 + -1 + true + false + 249 + Reliability object evaluated in the model + set of models that run this Reliability object + 739 + + + 740 + 80 + 82 + Horizon + 1 + 1 + Models + 0 + -1 + true + false + 43 + horizon for the model + set of models that run this Horizon + 740 + + + 741 + 80 + 83 + Report + 1 + 1 + Models + 0 + -1 + true + false + 86 + report for the model + set of models that use these Report settings + 741 + + + 742 + 80 + 85 + Preview + 0 + 1 + Models + 0 + -1 + true + false + 302 + Preview settings for the model + set of models that run this Preview + 742 + + + 743 + 80 + 86 + LT Plan + 0 + 1 + Models + 0 + -1 + true + false + 60 + LT Plan settings for the model + set of models that run this LT Plan + 743 + + + 744 + 80 + 87 + PASA + 0 + 1 + Models + 0 + -1 + true + false + 71 + PASA settings for the model + set of models that run the this PASA + 744 + + + 745 + 80 + 88 + MT Schedule + 0 + 1 + Models + 0 + -1 + true + false + 65 + MT Schedule settings for the model + set of models that run this MT Schedule + 745 + + + 746 + 80 + 89 + ST Schedule + 0 + 1 + Models + 0 + -1 + true + false + 91 + ST Schedule settings for the model + set of models that run this ST Schedule + 746 + + + 747 + 80 + 84 + Stochastic + 0 + 1 + Models + 0 + -1 + true + false + 93 + Stochastic settings for the model + set of models using these Stochastic settings + 747 + + + 748 + 80 + 90 + Transmission + 0 + 1 + Models + 0 + -1 + true + false + 100 + Transmission settings for Model + set of Models using these Transmission settings + 748 + + + 749 + 80 + 91 + Production + 0 + 1 + Models + 0 + -1 + true + false + 78 + Production settings for Model + set of Models using these Production settings + 749 + + + 750 + 80 + 92 + Competition + 0 + 1 + Models + 0 + -1 + true + false + 10 + Competition settings for Model + set of Models using these Competition settings + 750 + + + 751 + 80 + 93 + Performance + 0 + 1 + Models + 0 + -1 + true + false + 72 + Performance settings for Model + set of Models using these Performance settings + 751 + + + 752 + 80 + 94 + Diagnostic + 0 + 1 + Models + 0 + -1 + true + false + 18 + Diagnostic settings for Model + set of Models using these Diagnostic settings + 752 + + + 753 + 80 + 80 + Interleaved + 0 + 1 + true + false + 155 + model run interleaved with this model + 753 + + + 754 + 1 + 81 + Projects + 0 + -1 + true + true + 79 + Project objects + 754 + + + 755 + 81 + 80 + Models + 1 + -1 + Projects + 0 + -1 + true + true + 64 + set of models included in the project + set of projects the model is included in + 755 + + + 756 + 81 + 82 + Horizon + 1 + 1 + Projects + 0 + -1 + true + false + 43 + horizon for the project + set of projects that run this Horizon + 756 + + + 757 + 81 + 83 + Report + 1 + 1 + Projects + 0 + -1 + true + false + 86 + report for the project + set of projects using these Report settings + 757 + + + 758 + 1 + 82 + Horizons + 0 + -1 + true + true + 44 + Horizon objects + 758 + + + 759 + 1 + 83 + Reports + 0 + -1 + true + true + 87 + Report objects + 759 + + + 760 + 83 + 75 + Master Filter + 0 + 1 + Master Filtered Reports + 0 + -1 + true + true + 236 + master conditional filter that defines which periods will be reported + Report object which the master filter condition belongs to + 760 + + + 761 + 83 + 75 + Object Filter + 0 + -1 + Object Filtered Reports + 0 + -1 + true + true + 237 + set of filter conditions that define which objects will be reported + Report object which the condition belongs to + 761 + + + 762 + 83 + 95 + Lists + 0 + -1 + Reports + 0 + -1 + true + true + 120 + set of Lists in the Report + set of Report objects containing the List + 762 + + + 763 + 1 + 84 + Stochastic + 0 + -1 + true + true + 93 + Stochastic objects + 763 + + + 764 + 1 + 85 + Preview + 0 + -1 + true + true + 302 + Preview objects + 764 + + + 765 + 1 + 86 + LT Plan + 0 + -1 + true + true + 60 + LT Plan objects + 765 + + + 766 + 86 + 75 + Variables + 0 + -1 + LT Plans + 0 + -1 + true + true + 103 + Variables providing profiles for chronological slicing, fitting or sampling + set of LT Plans using the Variable profile for chronological slicing, fitting or sampling + 766 + + + 767 + 86 + 90 + Transmission + 0 + 1 + LT Plans + 0 + -1 + true + false + 100 + Transmission settings for LT Plan + set of LT Plans using these Transmission settings + 767 + + + 768 + 86 + 91 + Production + 0 + 1 + LT Plans + 0 + -1 + true + false + 78 + Production settings for LT Plan + set of LT Plans using these Production settings + 768 + + + 769 + 86 + 92 + Competition + 0 + 1 + LT Plans + 0 + -1 + true + false + 10 + Competition settings for LT Plan + set of LT Plans using these Competition settings + 769 + + + 770 + 86 + 93 + Performance + 0 + 1 + LT Plans + 0 + -1 + true + false + 72 + Performance settings for LT Plan + set of LT Plans using these Performance settings + 770 + + + 771 + 86 + 94 + Diagnostic + 0 + 1 + LT Plans + 0 + -1 + true + false + 18 + Diagnostic settings for LT Plan + set of LT Plans using these Diagnostic settings + 771 + + + 772 + 1 + 87 + PASA + 0 + -1 + true + true + 71 + PASA objects + 772 + + + 773 + 87 + 90 + Transmission + 0 + 1 + PASAs + 0 + -1 + true + false + 100 + Transmission settings for PASA + set of PASAs using these Transmission settings + 773 + + + 774 + 87 + 91 + Production + 0 + 1 + PASAs + 0 + -1 + true + false + 78 + Production settings for PASA + set of PASAs using these Production settings + 774 + + + 775 + 87 + 92 + Competition + 0 + 1 + PASAs + 0 + -1 + true + false + 10 + Competition settings for PASA + set of PASAs using these Competition settings + 775 + + + 776 + 87 + 93 + Performance + 0 + 1 + PASAs + 0 + -1 + true + false + 72 + Performance settings for PASA + set of PASAs using these Performance settings + 776 + + + 777 + 87 + 94 + Diagnostic + 0 + 1 + PASAs + 0 + -1 + true + false + 18 + Diagnostic settings for PASA + set of PASAs using these Diagnostic settings + 777 + + + 778 + 1 + 88 + MT Schedule + 0 + -1 + true + true + 65 + MT Schedule objects + 778 + + + 779 + 88 + 75 + Variables + 0 + -1 + MT Schedules + 0 + -1 + true + true + 103 + Variables providing profiles for chronological slicing, fitting or sampling + set of MT Schedules using the Variable profile for chronological slicing, fitting or sampling + 779 + + + 780 + 88 + 90 + Transmission + 0 + 1 + MT Schedules + 0 + -1 + true + false + 100 + Transmission settings for MT Schedule + set of MT Schedules using these Transmission settings + 780 + + + 781 + 88 + 91 + Production + 0 + 1 + MT Schedules + 0 + -1 + true + false + 78 + Production settings for MT Schedule + set of MT Schedules using these Production settings + 781 + + + 782 + 88 + 92 + Competition + 0 + 1 + MT Schedules + 0 + -1 + true + false + 10 + Competition settings for MT Schedule + set of MT Schedules using these Competition settings + 782 + + + 783 + 88 + 93 + Performance + 0 + 1 + MT Schedules + 0 + -1 + true + false + 72 + Performance settings for MT Schedule + set of MT Schedules using these Performance settings + 783 + + + 784 + 88 + 94 + Diagnostic + 0 + 1 + MT Schedules + 0 + -1 + true + false + 18 + Diagnostic settings for MT Schedule + set of MT Schedules using these Diagnostic settings + 784 + + + 785 + 1 + 89 + ST Schedule + 0 + -1 + true + true + 91 + ST Schedule objects + 785 + + + 786 + 89 + 90 + Transmission + 0 + 1 + ST Schedules + 0 + -1 + true + false + 100 + Transmission settings for ST Schedule + set of ST Schedules using these Transmission settings + 786 + + + 787 + 89 + 91 + Production + 0 + 1 + ST Schedules + 0 + -1 + true + false + 78 + Production settings for ST Schedule + set of ST Schedules using these Production settings + 787 + + + 788 + 89 + 92 + Competition + 0 + 1 + ST Schedules + 0 + -1 + true + false + 10 + Competition settings for ST Schedule + set of ST Schedules using these Competition settings + 788 + + + 789 + 89 + 93 + Performance + 0 + 1 + ST Schedules + 0 + -1 + true + false + 72 + Performance settings for ST Schedule + set of ST Schedules using these Performance settings + 789 + + + 790 + 89 + 94 + Diagnostic + 0 + 1 + ST Schedules + 0 + -1 + true + false + 18 + Diagnostic settings for ST Schedule + set of ST Schedules using these Diagnostic settings + 790 + + + 791 + 1 + 90 + Transmission + 0 + -1 + true + true + 100 + Transmission objects + 791 + + + 792 + 1 + 91 + Production + 0 + -1 + true + true + 78 + Production objects + 792 + + + 793 + 1 + 92 + Competition + 0 + -1 + true + true + 10 + Competition objects + 793 + + + 794 + 1 + 93 + Performance + 0 + -1 + true + true + 72 + Performance objects + 794 + + + 795 + 1 + 94 + Diagnostics + 0 + -1 + true + true + 19 + Diagnostic objects + 795 + + + 796 + 1 + 95 + Lists + 0 + -1 + true + true + 120 + List objects + 796 + + + 797 + 95 + 95 + Lists + 0 + -1 + true + true + 120 + set of List objects in the List + 797 + + + 798 + 1 + 96 + Layouts + 0 + -1 + true + true + 296 + Layout objects + 798 + + + 799 + 96 + 96 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Layout inherits from + Layout objects inheriting from this template + 799 + + + 800 + 95 + 96 + Layouts + 0 + -1 + Lists + 0 + -1 + true + true + 296 + set of Layout objects in the List + set of Lists containing the Layout + 800 + + + 801 + 96 + 8 + Storages + 0 + -1 + Layouts + 0 + -1 + true + true + 96 + set of Storage objects in the Layout + set of Layouts containing the Storage + 801 + + + 802 + 96 + 22 + Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 70 + set of Node objects in the Layout + set of Layouts containing the Node + 802 + + + 803 + 96 + 33 + Heat Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 220 + set of Heat Node objects in the Layout + set of Layouts containing the Heat Node + 803 + + + 804 + 96 + 38 + Gas Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 115 + set of Gas Node objects in the Layout + set of Layouts containing the Gas Node + 804 + + + 805 + 96 + 50 + Water Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 191 + set of Water Node objects in the Layout + set of Layouts containing the Water Node + 805 + + + 806 + 96 + 65 + Flow Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 279 + set of FlowNode objects in the Layout + set of Layouts containing the Flow Node + 806 + + + 111 + 7 + 112 + + + 111 + 8 + 112 + + + 185 + 180 + 200 + + + 199 + 193 + 606 + + + 203 + 12 + 284 + + + 204 + 83 + 284 + + + 205 + 200 + 108 + + + 206 + 143 + 284 + + + 207 + 144 + 284 + + + 208 + 151 + 284 + + + 209 + 200 + 200 + + + 212 + 306 + 284 + 307 + 284 + 1 + + + 213 + 307 + 284 + 306 + 284 + 1 + + + 214 + 306 + 284 + 307 + 284 + 1 + + + 214 + 307 + 284 + 306 + 284 + 1 + + + 215 + 306 + 284 + 307 + 284 + 0 + + + 215 + 307 + 284 + 306 + 284 + 0 + + + 216 + 322 + 284 + 323 + 284 + 1 + + + 217 + 323 + 284 + 322 + 284 + 1 + + + 218 + 322 + 284 + 323 + 284 + 1 + + + 218 + 323 + 284 + 322 + 284 + 1 + + + 219 + 322 + 284 + 323 + 284 + 0 + + + 219 + 323 + 284 + 322 + 284 + 0 + + + 220 + 374 + 284 + + + 221 + 409 + 284 + + + 222 + 440 + 284 + + + 223 + 530 + 284 + + + 225 + 284 + 289 + + + 226 + 284 + 292 + + + 240 + 12 + 285 + + + 241 + 12 + 286 + + + 242 + 83 + 285 + + + 243 + 83 + 286 + + + 244 + 237 + 108 + + + 245 + 143 + 286 + + + 246 + 144 + 286 + + + 247 + 143 + 285 + + + 248 + 144 + 285 + + + 249 + 151 + 285 + + + 250 + 151 + 286 + + + 252 + 237 + 237 + + + 254 + 306 + 286 + 307 + 286 + 1 + + + 255 + 306 + 285 + 307 + 285 + 1 + + + 256 + 307 + 286 + 306 + 286 + 1 + + + 257 + 307 + 285 + 306 + 285 + 1 + + + 258 + 306 + 285 + 307 + 285 + 1 + + + 258 + 307 + 285 + 306 + 285 + 1 + + + 259 + 306 + 285 + 307 + 285 + 0 + + + 259 + 307 + 285 + 306 + 285 + 0 + + + 260 + 322 + 286 + 323 + 286 + 1 + + + 261 + 322 + 285 + 323 + 285 + 1 + + + 262 + 323 + 286 + 322 + 286 + 1 + + + 263 + 323 + 285 + 322 + 285 + 1 + + + 264 + 322 + 285 + 323 + 285 + 1 + + + 264 + 323 + 285 + 322 + 285 + 1 + + + 265 + 322 + 285 + 323 + 285 + 0 + + + 265 + 323 + 285 + 322 + 285 + 0 + + + 266 + 374 + 285 + + + 267 + 374 + 286 + + + 268 + 409 + 285 + + + 269 + 409 + 286 + + + 270 + 440 + 285 + + + 271 + 440 + 286 + + + 272 + 530 + 285 + + + 274 + 285 + 289 + + + 275 + 286 + 289 + + + 276 + 285 + 292 + + + 277 + 286 + 292 + + + 476 + 18 + 429 + + + 477 + 400 + 429 + + + 478 + 411 + 429 + + + 479 + 419 + 429 + 420 + 429 + 1 + + + 480 + 420 + 429 + 419 + 429 + 1 + + + 481 + 419 + 429 + 420 + 429 + 1 + + + 481 + 420 + 429 + 419 + 429 + 1 + + + 482 + 419 + 429 + 420 + 429 + 0 + + + 482 + 420 + 429 + 419 + 429 + 0 + + + 483 + 443 + 429 + + + 484 + 456 + 429 + + + 485 + 495 + 429 + + + 486 + 507 + 429 + 508 + 429 + 1 + + + 487 + 508 + 429 + 507 + 429 + 1 + + + 488 + 507 + 429 + 508 + 429 + 1 + + + 488 + 508 + 429 + 507 + 429 + 1 + + + 489 + 507 + 429 + 508 + 429 + 0 + + + 489 + 508 + 429 + 507 + 429 + 0 + + + 568 + 532 + 549 + + + 569 + 540 + 549 + 541 + 549 + 1 + + + 570 + 541 + 549 + 540 + 549 + 1 + + + 571 + 540 + 549 + 541 + 549 + 1 + + + 571 + 541 + 549 + 540 + 549 + 1 + + + 572 + 540 + 549 + 541 + 549 + 0 + + + 572 + 541 + 549 + 540 + 549 + 0 + + + 573 + 557 + 549 + + + 574 + 564 + 549 + + + 609 + 24 + 7 + + + 610 + 606 + 108 + + + 611 + 606 + 156 + + + 612 + 606 + 200 + + + 613 + 605 + 592 + + + 615 + 616 + 639 + + + 615 + 616 + 641 + + + 638 + 629 + 642 + + + 639 + 630 + 642 + + + 640 + 631 + 642 + + + 640 + 631 + 643 + + + 641 + 632 + 642 + + + 641 + 632 + 643 + + + 661 + 646 + 662 + + + 663 + 684 + 662 + + + 691 + 647 + 639 + + + 691 + 647 + 641 + + + Dynamic + 0 + + + Hydro Model + Energy + + + Interface + 5 + + + Language + 9 + + + Lock Attributes + 0 + + + Lock Configuration + 0 + + + Lock Memberships + 0 + + + Lock Objects + 0 + + + Lock Properties + 0 + + + Revision + 214 + + + Units + Metric + + + Validated + 0 + + + Version + 10.000 + + + Saved With + PLEXOS 9.200 R06 x64 Edition + + + Culture + en-US English (United States) + + + UICulture + en-US English (United States) + + + Decimal + . + + + DBID + 7d279306-ff8a-4911-a567-f9fe3924b032 + + + 1 + 1 + 1 + 737 + 80 + 2 + + + 2 + 1 + 1 + 737 + 80 + 3 + + + 3 + 1 + 1 + 737 + 80 + 4 + + + 4 + 1 + 1 + 737 + 80 + 5 + + + 5 + 1 + 1 + 758 + 82 + 6 + + + 6 + 1 + 1 + 758 + 82 + 7 + + + 7 + 1 + 1 + 759 + 83 + 8 + + + 8 + 1 + 1 + 759 + 83 + 9 + + + 9 + 1 + 1 + 759 + 83 + 10 + + + 10 + 1 + 1 + 759 + 83 + 11 + + + 11 + 1 + 1 + 763 + 84 + 12 + + + 12 + 1 + 1 + 765 + 86 + 13 + + + 13 + 1 + 1 + 772 + 87 + 14 + + + 14 + 1 + 1 + 778 + 88 + 15 + + + 15 + 1 + 1 + 785 + 89 + 16 + + + 16 + 1 + 1 + 785 + 89 + 17 + + + 17 + 1 + 1 + 791 + 90 + 18 + + + 18 + 1 + 1 + 794 + 93 + 19 + + + 19 + 80 + 2 + 740 + 82 + 7 + + + 20 + 80 + 3 + 740 + 82 + 6 + + + 21 + 80 + 4 + 740 + 82 + 6 + + + 22 + 80 + 5 + 740 + 82 + 6 + + + 23 + 80 + 2 + 741 + 83 + 8 + + + 24 + 80 + 3 + 741 + 83 + 9 + + + 25 + 80 + 4 + 741 + 83 + 10 + + + 26 + 80 + 5 + 741 + 83 + 11 + + + 27 + 80 + 5 + 747 + 84 + 12 + + + 28 + 80 + 2 + 743 + 86 + 13 + + + 29 + 80 + 3 + 744 + 87 + 14 + + + 30 + 80 + 4 + 744 + 87 + 14 + + + 31 + 80 + 5 + 744 + 87 + 14 + + + 32 + 80 + 3 + 745 + 88 + 15 + + + 33 + 80 + 4 + 745 + 88 + 15 + + + 34 + 80 + 5 + 745 + 88 + 15 + + + 35 + 80 + 3 + 746 + 89 + 16 + + + 36 + 80 + 4 + 746 + 89 + 17 + + + 37 + 80 + 5 + 746 + 89 + 16 + + + 38 + 80 + 3 + 748 + 90 + 18 + + + 39 + 80 + 2 + 751 + 93 + 19 + + + 40 + 80 + 3 + 751 + 93 + 19 + + + 41 + 80 + 4 + 751 + 93 + 19 + + + 42 + 80 + 5 + 751 + 93 + 19 + + + 1 + 1 + System + 1 + the system object + 98bd24fd-e92b-4738-92d4-3f03a8a09cc3 + + + 2 + 80 + Long Term + 80 + Long Term model with LT Plan + 8ac14ba8-c29d-4805-a7c4-185199e7fe8b + + + 3 + 80 + Nodal + 80 + Nodal model with MT and ST Schedule + 480a9f72-97d2-47fc-bcd2-1e4e8d6dc089 + + + 4 + 80 + Regional + 80 + Regional model with MT and ST Schedule + d4b86f02-f545-4369-9b15-7f9fd90bcb77 + + + 5 + 80 + Reliability + 80 + Reliability study with MT and ST Schedule + d463d7cb-8038-4071-9b99-ee5970a45c2a + + + 6 + 82 + 2020 + 82 + The year 2020 + fc5f8da4-3567-44c9-aa2b-57434d2095c0 + + + 7 + 82 + 2020-29 + 82 + The 10-year study period 2020-29 + 459b3309-93ee-49b9-9272-7fb9a1329ea9 + + + 8 + 83 + Long Term + 83 + Reporting for Long Term model + 7b86dc77-6df9-4029-a7c9-a959bfc2dcb6 + + + 9 + 83 + Nodal + 83 + Reporting for Nodal model + 5ea40b2b-5b80-4523-ac3b-cda13d882afb + + + 10 + 83 + Regional + 83 + Reporting for Regional model + b72a94d3-ba54-402e-8391-52855d8aa49a + + + 11 + 83 + Reliability + 83 + Reporting for Reliability model + 606146e3-cbc4-4b78-bca4-70ae44a133bc + + + 12 + 84 + Monte Carlo s=20 + 84 + Monte Carlo simulation with a sample size of 20 + c217c361-f9b5-4434-9994-4514a249a0b8 + + + 13 + 86 + LDC r=10 + 86 + LT Plan for capacity expansion planning using LDC and discount rate of 10% + 72dd0286-9f68-4d74-bb24-c191c159e0d6 + + + 14 + 87 + Regional + 87 + PASA for maintenance scheduling + 45297721-62a1-457e-8891-0d644b7c3733 + + + 15 + 88 + Regional + 88 + MT Schedule for constraint decomposition in regional mode + 40f2a2ef-50fa-40dd-8779-885e4bde2cf6 + + + 16 + 89 + Nodal + 89 + ST Schedule chronological simulation in nodal mode + b1e6d38e-4b17-4b24-aec2-65ab7f1826ff + + + 17 + 89 + Regional + 89 + ST Schedule chronological simulation in regional mode + fbc7fb10-1173-4412-a0b7-0a64a178a59d + + + 18 + 90 + Large-scale 230kV + 90 + Transmission options for large-scale networks + e943f5d6-8907-468c-80f6-49e35620f1d9 + + + 19 + 93 + Gurobi + 93 + bb2917d7-545e-4de0-b95c-af1e9d373382 + + + 1 + 1 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the generator must be reported even if it is out-of-service + 800000 + true + + + 2 + 1 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the generator for the generation of outages + 101000000 + true + + + 3 + 1 + 2 + 3 + Dispatchable + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2895 + A dispatchable generator operates anywhere within its technical limits whereas a non-dispatchable generator operates at its maximum available rating at all times + 800000 + true + + + 4 + 1 + 2 + 4 + Max Heat Rate Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 432 + Maximum number of tranches in the fuel function piecewise linear approximation. + 1000 + true + + + 5 + 1 + 2 + 5 + Formulate Non-convex + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order. + 1000 + true + + + 6 + 1 + 2 + 6 + Hydro Efficiency Optimality + 0 + -1 + In (-1,0,2) + -1;"Auto";0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2763 + Controls when integers are used to enforce multi-band hydro efficiency functions to dispatch in order + true + + + 7 + 1 + 2 + 7 + Head Effects Method + 0 + 0 + In (0,1) + 0;"Backward Looking";1;"Dynamic" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1920 + Method used to account for the effects of storage head on efficiency + 41000 + true + + + 8 + 1 + 2 + 8 + Min Down Time Mode + 0 + 1 + In (0,1) + 0;"Relaxed";1;"Enforced" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1652 + Controls how [Min Down Time] is applied after outages. + 1000000080 + true + + + 9 + 1 + 2 + 9 + Forced Outage Rate Denominator + 0 + 0 + In (0,1) + 0;"Time";1;"Operating Time" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1819 + Denominator for Forced Outage Rate calculations + 100000000 + true + + + 10 + 1 + 2 + 10 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 100000000 + true + + + 11 + 1 + 2 + 11 + Fixed Load Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 202 + Method of interpreting zero values of the [Fixed Load] property. + 80 + true + + + 12 + 1 + 2 + 12 + Fixed Load Global + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2465 + If [Fixed Load] applies across all units or unit-by-unit + true + + + 13 + 1 + 2 + 13 + Min Load Global + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2321 + If [Min Load] applies across all units or unit-by-unit + true + + + 14 + 1 + 2 + 14 + Load Subtracter Global + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2846 + If [Load Subtracter] applies across all units or unit-by-unit + true + + + 15 + 1 + 2 + 15 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the generator can set price + 4000000 + true + + + 16 + 1 + 2 + 16 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 400000 + true + + + 17 + 1 + 2 + 17 + Offers Must Clear in Order + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 576 + Flag to control ordering of clearing of user-defined generator offers. + 400000 + true + + + 18 + 1 + 2 + 18 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the generator. + 1000000000 + true + + + 19 + 1 + 2 + 19 + Unit Commitment Period + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2389 + Period between unit commitment (on/off) decisions. + 1000000000 + true + + + 20 + 1 + 2 + 20 + Unit Commitment Aggregation + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2412 + Flag if the generator is aggregated into an equivalent single unit for the purpose of unit commitment + 1000000000 + true + + + 21 + 1 + 2 + 21 + Rounding Up Threshold + 0 + -1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 711 + Threshold at which non-integers are rounded up. + 1000000000 + true + + + 22 + 1 + 2 + 22 + Include in Rounded Relaxation Merit Order + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1792 + Flag if Generator is included in the Region merit order for Rounded Relaxation unit commitment. + 1000000000 + true + + + 23 + 1 + 2 + 23 + Start Profile Range + 0 + 0 + In (0,1) + 0;"Min Stable Level";1;"Max Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1615 + Maximum range for [Start Profile] + 1000000000 + true + + + 24 + 1 + 2 + 24 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 25 + 1 + 2 + 25 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 26 + 1 + 2 + 26 + Declining Depreciation Balance + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 130 + Balance applied to declining depreciation method + 8 + true + + + 27 + 1 + 2 + 27 + Production Decomposition Method + 0 + 0 + In (0,1) + 0;"Optimized";1;"Fixed" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 931 + Method used to decompose generator production from MT to ST Schedule + 200 + true + + + 28 + 1 + 2 + 28 + Include in Uplift + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1362 + If this generator's costs are included in the uplift calculations. + 4000000 + true + + + 29 + 1 + 2 + 29 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this generator receives capacity payments. + 8 + true + + + 30 + 1 + 2 + 30 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 31 + 1 + 2 + 31 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 20 + true + + + 32 + 1 + 2 + 32 + End Effects Method + 0 + 2 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period heat volumes. + 20 + true + + + 33 + 1 + 2 + 33 + Recycle Penalty + 61 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 20 + true + + + 34 + 1 + 2 + 34 + Pump Timeframe + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2545 + Maximum hours to pump after generation + false + + + 35 + 1 + 2 + 35 + Controllable Inflow + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2779 + Proportion of Natural Inflow that is controllable + 40000 + true + + + 36 + 1 + 2 + 36 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 20 + true + + + 37 + 1 + 2 + 37 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 20 + true + + + 38 + 1 + 2 + 38 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 20 + true + + + 39 + 1 + 2 + 39 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 20 + true + + + 40 + 1 + 2 + 40 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 20 + true + + + 41 + 1 + 2 + 41 + Decomposition Bound Penalty + 61 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 20 + true + + + 42 + 1 + 2 + 42 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 20 + true + + + 43 + 1 + 2 + 43 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the generator's capacity acts strategically + 40 + true + + + 44 + 1 + 2 + 44 + Transition Type + 0 + 0 + In (0,1) + 0;"Individual";1;"Group" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1881 + If the generator can transition between a single generator or to a group of generators. + 1000000000 + true + + + 45 + 1 + 2 + 45 + Simultaneous Pump and Generation + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2628 + Pumped storage can pump and generate simultaneously + 80 + true + + + 46 + 1 + 2 + 46 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 47 + 1 + 2 + 47 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 48 + 1 + 2 + 48 + Min Up Time by Cooling State + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2832 + determines whether cooling states are considered for Min Up Time + true + + + 49 + 1 + 2 + 49 + Scale Participation Factors + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2993 + Flag if participation factors should be scaled for a generator + 800000 + false + + + 50 + 1 + 3 + 50 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 51 + 1 + 3 + 51 + Max Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 414 + Maximum generating capacity of each unit + 5 + true + + + 52 + 1 + 3 + 52 + Min Stable Level + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 501 + Minimum stable generation level + 1000000081 + true + + + 53 + 1 + 3 + 53 + Min Stable Level Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2629 + Penalty applied to violation of min stable level. + 1000000081 + true + + + 54 + 1 + 3 + 54 + Min Stable Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1372 + Minimum stable generation level as a proportion of [Max Capacity] + 1000000080 + true + + + 55 + 1 + 3 + 55 + Fuel Price + 29 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 225 + Fuel price (when not using Fuels collection) + 2000000000 + true + + + 56 + 1 + 3 + 56 + Load Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate. + 1000 + true + + + 57 + 1 + 3 + 57 + Heat Rate + 36 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 260 + Average heat rate (total fuel divided by total generation) + 1001 + true + + + 58 + 1 + 3 + 58 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 59 + 1 + 3 + 59 + Heat Rate Incr + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 60 + 1 + 3 + 60 + Heat Rate Incr2 + 38 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 264 + Second-order polynomial term in unit fuel use function + 1000 + true + + + 61 + 1 + 3 + 61 + Heat Rate Incr3 + 44 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 265 + Third-order polynomial term in unit fuel use function + 1000 + true + + + 62 + 1 + 3 + 62 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 63 + 1 + 3 + 63 + Pump VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2626 + Variable operation and maintenance charge for pump + 2000000001 + false + + + 64 + 1 + 3 + 64 + Generating VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2627 + Variable operation and maintenance charge for generating + 2000000001 + false + + + 65 + 1 + 3 + 65 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 66 + 1 + 3 + 66 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge for generation + 2000000000 + true + + + 67 + 1 + 3 + 67 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running a generating unit when on-line + 20000000 + true + + + 68 + 1 + 3 + 68 + Generation Credit + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2764 + Credit received for generation + 2000000000 + true + + + 69 + 1 + 3 + 69 + Generation Credit Start Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2765 + Year to start applying Generation Credits + 1000000080 + true + + + 70 + 1 + 3 + 70 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 71 + 1 + 3 + 71 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 72 + 1 + 3 + 72 + Run Up Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while running the unit up from zero to [Min Stable Level]. + 80000000 + true + + + 73 + 1 + 3 + 73 + Start Profile + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for running the unit up from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 74 + 1 + 3 + 74 + Start Profile Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2639 + Penalty for violation of [Start Profile]. + 80 + true + + + 75 + 1 + 3 + 75 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 76 + 1 + 3 + 76 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 77 + 1 + 3 + 77 + Run Down Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1020 + Ramp rate that applies while running the unit down from [Min Stable Level] to zero + 200000000 + true + + + 78 + 1 + 3 + 78 + Shutdown Profile + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 933 + Detailed regime for running the unit down from [Min Stable Level] when [Run Down Rate] is non-constant. + 200000000 + true + + + 79 + 1 + 3 + 79 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 80 + 1 + 3 + 80 + Rolling Planning Bonus + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2519 + Bonus for remaining online at the end of the look-ahead + 1000000000 + true + + + 81 + 1 + 3 + 81 + Rating + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 665 + Rated capacity of units + 81 + true + + + 82 + 1 + 3 + 82 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + true + + + 83 + 1 + 3 + 83 + Rating Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2631 + Penalty for violation of Rating + true + + + 84 + 1 + 3 + 84 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 85 + 1 + 3 + 85 + Min Up Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2592 + Penalty for violation of min up time + 1000000080 + true + + + 86 + 1 + 3 + 86 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 87 + 1 + 3 + 87 + Min Down Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2593 + Penalty for violation of min down time + 1000000080 + true + + + 88 + 1 + 3 + 88 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 89 + 1 + 3 + 89 + Max Up Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2594 + Penalty for violation of max up time + 1000000080 + true + + + 90 + 1 + 3 + 90 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 91 + 1 + 3 + 91 + Max Down Time Penalty + 48 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2620 + Penalty for violation of max down time + 1000000080 + true + + + 92 + 1 + 3 + 92 + Generating Units + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2531 + Number of generating units + 1000000080 + true + + + 93 + 1 + 3 + 93 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 94 + 1 + 3 + 94 + Fixed Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load + 10000080 + true + + + 95 + 1 + 3 + 95 + Fixed Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1092 + Penalty for violation of [Fixed Load]. + 80 + true + + + 96 + 1 + 3 + 96 + Min Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 486 + Minimum level of station load (must run/run of river) + 80 + true + + + 97 + 1 + 3 + 97 + Min Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1093 + Penalty for violation of [Min Load]. + 80 + true + + + 98 + 1 + 3 + 98 + Max Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 436 + Maximum level of unit load (unit may provide spinning reserve with remainder of spare capacity) + 80 + true + + + 99 + 1 + 3 + 99 + Max Load Penalty + 33 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2595 + Penalty for violation of [Max Load]. + 80 + true + + + 100 + 1 + 3 + 100 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Number of units that should be committed + 1000000080 + true + + + 101 + 1 + 3 + 101 + Fuel Mix Penalty + 29 + 0 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 222 + Penalty applied to violations of fuel mixing constraints + 1000 + true + + + 102 + 1 + 3 + 102 + Ramp Up Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Load point for use with multi-band Max Ramp Up constraints + 80 + true + + + 103 + 1 + 3 + 103 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate that applies at the given load point + 80 + true + + + 104 + 1 + 3 + 104 + Ramp Up Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 105 + 1 + 3 + 105 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 106 + 1 + 3 + 106 + Ramp Down Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Load point for use with multi-band Max Ramp Down constraints + 80 + true + + + 107 + 1 + 3 + 107 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate that applies at the given load point + 80 + true + + + 108 + 1 + 3 + 108 + Ramp Down Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 109 + 1 + 3 + 109 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 110 + 1 + 3 + 110 + Rough Running Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 709 + Start point of rough running range + 80 + true + + + 111 + 1 + 3 + 111 + Rough Running Range + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 710 + Length of rough running range (must be paired with Rough Running Point) + 80 + true + + + 112 + 1 + 3 + 112 + Regulation Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 673 + Start point of regulation reserve range + 2 + true + + + 113 + 1 + 3 + 113 + Regulation Range + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 674 + Length of regulation reserve range (must be paired with Regulation Point) + 2 + true + + + 114 + 1 + 3 + 114 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of capacity + 2 + true + + + 115 + 1 + 3 + 115 + Aux Fixed + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 116 + 1 + 3 + 116 + Aux Base + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 117 + 1 + 3 + 117 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of generation + 200000 + true + + + 118 + 1 + 3 + 118 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) + 600000 + true + + + 119 + 1 + 3 + 119 + Natural Inflow + 25 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 530 + Natural inflow to the generator (controllable and uncontrolled) + 40000 + true + + + 120 + 1 + 3 + 120 + Efficiency Base + 119 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 887 + Flow rate at notional zero load for hydro unit + 41000 + true + + + 121 + 1 + 3 + 121 + Efficiency Incr + 120 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Efficiency of hydro generation + 41000 + true + + + 122 + 1 + 3 + 122 + Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1831 + Annual degradation in generating efficiency with age + 1000 + false + + + 123 + 1 + 3 + 123 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 639 + Efficiency of pumping + 8041001 + true + + + 124 + 1 + 3 + 124 + Pump Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 642 + Load drawn by a unit in pumping mode + 8040001 + true + + + 125 + 1 + 3 + 125 + Pump Load Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2736 + A multiplier (percentage) on the pump load + 80 + true + + + 126 + 1 + 3 + 126 + Pump Load Penalty + 33 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2596 + Penalty for violation of Pump Load. + 8040080 + true + + + 127 + 1 + 3 + 127 + Pump Units + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 645 + Number of pump units + 8040004 + true + + + 128 + 1 + 3 + 128 + Min Pump Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 490 + Minimum unit load while pumping + 8040080 + true + + + 129 + 1 + 3 + 129 + Must Pump Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 915 + Number of pump units that must be running in pump mode + 1008040080 + true + + + 130 + 1 + 3 + 130 + Max Units Pumping + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1145 + Maximum number of units allowed to be running in pump mode. + 1008040080 + true + + + 131 + 1 + 3 + 131 + Fixed Pump Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1328 + Fixed pump load + 8040080 + true + + + 132 + 1 + 3 + 132 + Fixed Pump Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1329 + Penalty for violation of [Fixed Pump Load]. + 8040080 + true + + + 133 + 1 + 3 + 133 + Pump UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1229 + Use of system charge for pump load + 2008040000 + true + + + 134 + 1 + 3 + 134 + Min Pump Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1802 + Minimum number of hours a unit must be run in pump mode after being started + 1000000080 + true + + + 135 + 1 + 3 + 135 + Min Pump Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1829 + Minimum number of hours a unit must be off after being shut down from pump mode + 1000000080 + true + + + 136 + 1 + 3 + 136 + Max Pump Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2888 + Maximum number of hours a unit can be run in pump mode after being started + 1000000080 + true + + + 137 + 1 + 3 + 137 + Generation Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1932 + Minimum time between operating in generation mode and pump mode + 8000000 + true + + + 138 + 1 + 3 + 138 + Pump Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1933 + Minimum time between operating in pump mode and generation mode + 8000000 + true + + + 139 + 1 + 3 + 139 + Reserves VO&M Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 690 + Variable O&M cost associated with providing spinning reserve + 2000000002 + true + + + 140 + 1 + 3 + 140 + Sync Cond Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 775 + Maximum number of synchronous condenser units + 40006 + true + + + 141 + 1 + 3 + 141 + Must-run Sync Cond Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 526 + Number of must-run synchronous condenser units + 40082 + true + + + 142 + 1 + 3 + 142 + Sync Cond Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 772 + Load drawn by a unit in synchronous condenser mode + 40002 + true + + + 143 + 1 + 3 + 143 + Sync Cond VO&M Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 776 + Variable O&M cost associated with running a unit in synchronous condenser mode + 2000040002 + true + + + 144 + 1 + 3 + 144 + Reserve Share + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 689 + Proportion of maximum capacity that must be set aside for reserves + 2 + true + + + 145 + 1 + 3 + 145 + Initial Generation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 313 + Generation at time zero + 80000 + true + + + 146 + 1 + 3 + 146 + Initial Units Generating + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 317 + Number of units generating at time zero + 1000080000 + true + + + 147 + 1 + 3 + 147 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the unit has been up for at time zero + 1000080000 + true + + + 148 + 1 + 3 + 148 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the unit has been down for at time zero + 1000080000 + true + + + 149 + 1 + 3 + 149 + Initial Pumping + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1827 + Generator pump load at time zero + 80000 + false + + + 150 + 1 + 3 + 150 + Initial Units Pumping + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1828 + Number of units pumping at time zero + 1000080000 + true + + + 151 + 1 + 3 + 151 + Initial Hours Pumping + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1931 + Hours the unit has been pumping for at time zero + 1000080000 + true + + + 152 + 1 + 3 + 152 + Last Start State + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 934 + Number of hours the unit had been down before the last start + 1000080000 + true + + + 153 + 1 + 3 + 153 + Reference Generation + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 669 + Generation level for generation slack PTDF calculation + 800000000 + true + + + 154 + 1 + 3 + 154 + Load Subtracter + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1296 + Generation subtracted from the System load duration curve prior to slicing. + 10100000 + true + + + 155 + 1 + 3 + 155 + Price Following + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1775 + Proportion of energy optimized, where the remainder is proportional load following + 40000 + true + + + 156 + 1 + 3 + 156 + Load Following Profile + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1773 + Profile to follow for proportional load following + 40000 + true + + + 157 + 1 + 3 + 157 + Load Following Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1774 + Regression factor for proportional load following + 40000 + true + + + 158 + 1 + 3 + 158 + Boiler Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 40 + Efficiency of the boiler component of a combined-cycle plant + 10 + true + + + 159 + 1 + 3 + 159 + Heat Load + 15 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 255 + Waste heat that must be extracted for exogenous loads (CCGT) + 30 + true + + + 160 + 1 + 3 + 160 + Power to Heat Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 611 + Ratio of heat production to electric production + 20 + true + + + 161 + 1 + 3 + 161 + CHP Electric Heat Rate Incr + 36 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 71 + Incremental electric heat rate in heating mode + 20 + true + + + 162 + 1 + 3 + 162 + CHP Heat Surrogate Rate Incr + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 72 + Notional value for heat fuel offtake estimation. + 20 + true + + + 163 + 1 + 3 + 163 + Boiler Heat Rate Incr + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 42 + Incremental heat rate for heat production from boiler + 20 + true + + + 164 + 1 + 3 + 164 + Max Boiler Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 413 + Maximum heat production from ancillary boiler + 20 + true + + + 165 + 1 + 3 + 165 + Max Heat + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1514 + Maximum heat allowed in storage + 400020000 + true + + + 166 + 1 + 3 + 166 + Min Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1515 + Minimum heat allowed in storage + 400020000 + true + + + 167 + 1 + 3 + 167 + Max Heat Penalty + 29 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2597 + Adds a penalty to the max heat constraint to allow for relaxation + 2000000000 + true + + + 168 + 1 + 3 + 168 + Opening Heat + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1513 + Initial heat in the storage + 400020000 + true + + + 169 + 1 + 3 + 169 + Heat Withdrawal Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1518 + Incremental cost of withdrawing heat from the storage + 400020000 + true + + + 170 + 1 + 3 + 170 + Heat Injection Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1519 + Incremental cost of injecting heat into the storage + 400020000 + true + + + 171 + 1 + 3 + 171 + Fixed Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1338 + Generic annual fixed charge + 8008 + true + + + 172 + 1 + 3 + 172 + Heat Loss + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1516 + Rate at which heat is lost from storage + 400020000 + true + + + 173 + 1 + 3 + 173 + Water Offtake + 68 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1801 + Water recycled through the generator (e.g. for cooling) + 8000000000 + true + + + 174 + 1 + 3 + 174 + Water Consumption + 68 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1803 + Water consumed by the generator (e.g. evaporative cooling losses) + 8000000000 + true + + + 175 + 1 + 3 + 175 + Max Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 451 + Maximum rate of release from each unit + 40080 + true + + + 176 + 1 + 9 + 176 + Max Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 423 + Maximum energy + 80 + true + + + 177 + 1 + 9 + 176 + Max Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1548 + Maximum energy in hour + 80 + true + + + 178 + 1 + 9 + 176 + Max Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 424 + Maximum energy in day + 80 + true + + + 179 + 1 + 9 + 176 + Max Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 426 + Maximum energy in week + 80 + true + + + 180 + 1 + 9 + 176 + Max Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 425 + Maximum energy in month + 80 + true + + + 181 + 1 + 9 + 176 + Max Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 427 + Maximum energy in year + 80 + true + + + 182 + 1 + 9 + 177 + Min Energy + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1110 + Minimum energy + 80 + true + + + 183 + 1 + 9 + 177 + Min Energy Hour + 1 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1549 + Minimum energy in hour + 80 + true + + + 184 + 1 + 9 + 177 + Min Energy Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1111 + Minimum energy in day + 80 + true + + + 185 + 1 + 9 + 177 + Min Energy Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1112 + Minimum energy in week + 80 + true + + + 186 + 1 + 9 + 177 + Min Energy Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1113 + Minimum energy in month + 80 + true + + + 187 + 1 + 9 + 177 + Min Energy Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1114 + Minimum energy in year + 80 + true + + + 188 + 1 + 9 + 178 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor (energy constraint) + 80 + true + + + 189 + 1 + 9 + 178 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 190 + 1 + 9 + 178 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 191 + 1 + 9 + 178 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 192 + 1 + 9 + 178 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 193 + 1 + 9 + 178 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 194 + 1 + 9 + 179 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor + 80 + true + + + 195 + 1 + 9 + 179 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 196 + 1 + 9 + 179 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 197 + 1 + 9 + 179 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 198 + 1 + 9 + 179 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 199 + 1 + 9 + 179 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 200 + 1 + 9 + 180 + Max Energy Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1190 + Penalty applied to violations of [Max Energy] and [Max Capacity Factor] constraints. + 80 + true + + + 201 + 1 + 9 + 181 + Min Energy Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1191 + Penalty applied to violations of [Min Energy] and [Min Capacity Factor] constraints. + 80 + true + + + 202 + 1 + 9 + 182 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 203 + 1 + 9 + 182 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 204 + 1 + 9 + 182 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 205 + 1 + 9 + 182 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 206 + 1 + 9 + 182 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 207 + 1 + 9 + 182 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 208 + 1 + 9 + 183 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints. + 1080000080 + true + + + 209 + 1 + 9 + 184 + Energy Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 868 + Scalar applied to generator energy limits and energy implied by capacity factor constraints + 80 + true + + + 210 + 1 + 9 + 185 + Max Generation Curtailed + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2922 + Maximum generation curtailed + 80 + true + + + 211 + 1 + 9 + 185 + Max Generation Curtailed Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2923 + Maximum generation curtailed in hour + 80 + true + + + 212 + 1 + 9 + 185 + Max Generation Curtailed Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2924 + Maximum generation curtailed in day + 80 + true + + + 213 + 1 + 9 + 185 + Max Generation Curtailed Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2925 + Maximum generation curtailed in week + 80 + true + + + 214 + 1 + 9 + 185 + Max Generation Curtailed Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2926 + Maximum generation curtailed in month + 80 + true + + + 215 + 1 + 9 + 185 + Max Generation Curtailed Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2927 + Maximum generation curtailed in year + 80 + true + + + 216 + 1 + 9 + 186 + Max Generation Curtailment Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2928 + Maximum proportion of generation curtailed + 80 + true + + + 217 + 1 + 9 + 186 + Max Generation Curtailment Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2929 + Maximum proportion of generation curtailed in hour + 80 + true + + + 218 + 1 + 9 + 186 + Max Generation Curtailment Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2930 + Maximum proportion of generation curtailed in day + 80 + true + + + 219 + 1 + 9 + 186 + Max Generation Curtailment Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2931 + Maximum proportion of generation curtailed in week + 80 + true + + + 220 + 1 + 9 + 186 + Max Generation Curtailment Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2932 + Maximum proportion of generation curtailed in month + 80 + true + + + 221 + 1 + 9 + 186 + Max Generation Curtailment Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2933 + Maximum proportion of generation curtailed in year + 80 + true + + + 222 + 1 + 9 + 187 + Max Heat Withdrawal + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1520 + Maximum amount of heat that can be withdrawn from the storage + 400020000 + true + + + 223 + 1 + 9 + 187 + Max Heat Withdrawal Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1553 + Maximum amount of heat that can be withdrawn from the storage in a hour + 400020000 + true + + + 224 + 1 + 9 + 187 + Max Heat Withdrawal Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1521 + Maximum amount of heat that can be withdrawn from the storage in a day + 400020000 + true + + + 225 + 1 + 9 + 187 + Max Heat Withdrawal Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1522 + Maximum amount of heat that can be withdrawn from the storage in a week + 400020000 + true + + + 226 + 1 + 9 + 187 + Max Heat Withdrawal Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1523 + Maximum amount of heat that can be withdrawn from the storage in a month + 400020000 + true + + + 227 + 1 + 9 + 187 + Max Heat Withdrawal Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1524 + Maximum amount of heat that can be withdrawn from the storage in a year + 400020000 + true + + + 228 + 1 + 9 + 188 + Max Heat Injection + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1525 + Maximum amount of heat that can be injected into the storage + 400020000 + true + + + 229 + 1 + 9 + 188 + Max Heat Injection Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1554 + Maximum amount of heat that can be injected into the storage in a hour + 400020000 + true + + + 230 + 1 + 9 + 188 + Max Heat Injection Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1526 + Maximum amount of heat that can be injected into the storage in a day + 400020000 + true + + + 231 + 1 + 9 + 188 + Max Heat Injection Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1527 + Maximum amount of heat that can be injected into the storage in a week + 400020000 + true + + + 232 + 1 + 9 + 188 + Max Heat Injection Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1528 + Maximum amount of heat that can be injected into the storage in a month + 400020000 + true + + + 233 + 1 + 9 + 188 + Max Heat Injection Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1529 + Maximum amount of heat that can be injected into the storage in a year + 400020000 + true + + + 234 + 1 + 9 + 189 + Min Heat Withdrawal + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1530 + Amount of heat that must be withdrawn from storage + 400020000 + true + + + 235 + 1 + 9 + 189 + Min Heat Withdrawal Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1555 + Amount of heat that must be withdrawn from storage each hour + 400020000 + true + + + 236 + 1 + 9 + 189 + Min Heat Withdrawal Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1531 + Amount of heat that must be withdrawn from storage each day + 400020000 + true + + + 237 + 1 + 9 + 189 + Min Heat Withdrawal Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1532 + Amount of heat that must be withdrawn from storage each week + 400020000 + true + + + 238 + 1 + 9 + 189 + Min Heat Withdrawal Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1533 + Amount of heat that must be withdrawn from storage each month + 400020000 + true + + + 239 + 1 + 9 + 189 + Min Heat Withdrawal Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1534 + Amount of heat that must be withdrawn from storage each year + 400020000 + true + + + 240 + 1 + 9 + 190 + Min Heat Injection + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1535 + Amount of heat that must be injected into the storage + 400020000 + true + + + 241 + 1 + 9 + 190 + Min Heat Injection Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1556 + Amount of heat that must be injected into the storage each hour + 400020000 + true + + + 242 + 1 + 9 + 190 + Min Heat Injection Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1536 + Amount of heat that must be injected into the storage each day + 400020000 + true + + + 243 + 1 + 9 + 190 + Min Heat Injection Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1537 + Amount of heat that must be injected into the storage each week + 400020000 + true + + + 244 + 1 + 9 + 190 + Min Heat Injection Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1538 + Amount of heat that must be injected into the storage each month + 400020000 + true + + + 245 + 1 + 9 + 190 + Min Heat Injection Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1539 + Amount of heat that must be injected into the storage each year + 400020000 + true + + + 246 + 1 + 4 + 191 + Offer Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for incr/decr style offer + 400000 + true + + + 247 + 1 + 4 + 192 + Offer No Load Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 568 + Fixed dispatch cost component of generator offer. + 400000 + true + + + 248 + 1 + 4 + 193 + Offer Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band + 400001 + true + + + 249 + 1 + 4 + 194 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400001 + true + + + 250 + 1 + 4 + 195 + Offer Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1368 + Scalar applied to the [Offer Quantity] property + 400000 + true + + + 251 + 1 + 4 + 196 + Offer Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1386 + Adder applied to the [Offer Price] property + 400000 + true + + + 252 + 1 + 4 + 197 + Offer Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1365 + Scalar applied to the [Offer Price] property + 400000 + true + + + 253 + 1 + 4 + 198 + Mark-up + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 408 + Mark-up above marginal cost + 400040 + true + + + 254 + 1 + 4 + 199 + Bid-Cost Mark-up + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + 400040 + true + + + 255 + 1 + 4 + 200 + Mark-up Point + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1091 + Load point for use with multi-point [Mark-up] or [Bid-Cost Mark-up]. + 400040 + true + + + 256 + 1 + 4 + 201 + Pump Bid Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1301 + Base pump load for balancing bid + 8400000 + true + + + 257 + 1 + 4 + 202 + Pump Bid Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 1303 + Pump load bid quantity in band + 8400000 + true + + + 258 + 1 + 4 + 203 + Pump Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1302 + Bid price of pump load in band + 8400000 + true + + + 259 + 1 + 4 + 204 + Pump Bid Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1369 + Scalar applied to the [Pump Bid Quantity] property + 8400000 + true + + + 260 + 1 + 4 + 205 + Pump Bid Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1387 + Adder applied to the [Pump Bid Price] property + 8400000 + true + + + 261 + 1 + 4 + 206 + Pump Bid Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1367 + Scalar applied to the [Pump Bid Price] property + 8400000 + true + + + 262 + 1 + 4 + 207 + Simultaneous Increment and Decrement + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2868 + Degenerate increment and decrement offers and bids can be cleared simultaneously + 400000 + true + + + 263 + 1 + 4 + 208 + Strategic Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1009 + Generating unit rating for application in RSI capacity calculations + 40 + true + + + 264 + 1 + 4 + 209 + Strategic Reference Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1031 + Sent-out marginal generation reference price for RSI markup application. + 40 + true + + + 265 + 1 + 4 + 210 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Pumping unit/Anti-generation rating for application in RSI capacity calculations. + 40 + true + + + 266 + 1 + 4 + 211 + Economic Maximum + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2240 + Unit maximum generation economically available + 40 + true + + + 267 + 1 + 4 + 212 + Economic Minimum + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2241 + Unit minimum generation economically available + 40 + true + + + 268 + 1 + 4 + 213 + Tie Break Group + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2962 + TieBreak group that the generator belongs to + 40 + false + + + 269 + 1 + 5 + 214 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 270 + 1 + 5 + 215 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 271 + 1 + 5 + 216 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 272 + 1 + 6 + 217 + Initial Age + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Average age of units at the start of the simulation horizon + 80000 + true + + + 273 + 1 + 6 + 218 + Power Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1830 + Annual degradation of power with age + 4 + true + + + 274 + 1 + 6 + 219 + Capacity Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1960 + Annual degradation in storage capacity with age + 4 + false + + + 275 + 1 + 6 + 220 + Equity Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 180 + Annual required return on equity + 8000 + true + + + 276 + 1 + 6 + 221 + Debt Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 127 + Annual debt charge + 8000 + true + + + 277 + 1 + 6 + 222 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the generator to capacity reserves + C + true + + + 278 + 1 + 6 + 223 + Firm Capacity Unit Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2664 + The total number of units installed in band corresponding to the same band of [Firm Capacity] + C + true + + + 279 + 1 + 7 + 224 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 280 + 1 + 7 + 225 + Effective Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2672 + Effective forced outage rate for use in calculation of reliability indices + true + + + 281 + 1 + 7 + 226 + Forced Outage + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 282 + 1 + 7 + 227 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 283 + 1 + 7 + 228 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 284 + 1 + 7 + 229 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 285 + 1 + 7 + 230 + Min Time Between Maintenance + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2506 + Minimum time between maintenance events + 1000000 + true + + + 286 + 1 + 7 + 231 + Min Total Maintenance Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2543 + Minimum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 287 + 1 + 7 + 232 + Max Total Maintenance Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2544 + Maximum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 288 + 1 + 7 + 233 + Maintenance + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 392 + Capacity lost to maintenance + 1000000 + false + + + 289 + 1 + 7 + 234 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Unit rating during outage + 1000000 + true + + + 290 + 1 + 7 + 235 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 291 + 1 + 7 + 236 + Outage Pump Load + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1402 + Load drawn by a unit in pumping mode + 1000000 + true + + + 292 + 1 + 7 + 237 + Initial Operating Hours + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1820 + Hours the unit has been operating since the last forced outage + 1000080000 + true + + + 293 + 1 + 7 + 238 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 294 + 1 + 7 + 239 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 295 + 1 + 7 + 240 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 296 + 1 + 7 + 241 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 297 + 1 + 7 + 242 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 298 + 1 + 8 + 243 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 299 + 1 + 8 + 244 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 300 + 1 + 8 + 245 + One-time Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1958 + One-time cost associated with the project + 8 + true + + + 301 + 1 + 8 + 246 + Investment Tax Credit + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2850 + Percentage of the annualized build cost to apply to investment credit + 2000000000 + true + + + 302 + 1 + 8 + 247 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 303 + 1 + 8 + 248 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning. + 8 + true + + + 304 + 1 + 8 + 249 + Commission Date + 0 + 1 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the generator was commissioned for use with [Technical Life] + 8 + true + + + 305 + 1 + 8 + 250 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 306 + 1 + 8 + 251 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 307 + 1 + 8 + 252 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 308 + 1 + 8 + 253 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered). + 9 + true + + + 309 + 1 + 8 + 254 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 310 + 1 + 8 + 255 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 311 + 1 + 8 + 256 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 312 + 1 + 8 + 257 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 313 + 1 + 8 + 258 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 314 + 1 + 8 + 259 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 315 + 1 + 8 + 260 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 316 + 1 + 8 + 261 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 317 + 1 + 8 + 262 + Build Set Size + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1453 + Expansion must occur in sets of this many units where zero indicates any set size + 88 + true + + + 318 + 1 + 8 + 263 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 319 + 1 + 8 + 264 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the generator for capacity + 4000008 + true + + + 320 + 1 + 8 + 265 + Recovery Price Adder + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Recovery price adder to include for MT/ST optimization + 8008 + false + + + 321 + 1 + 8 + 266 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Generator production + 8009 + false + + + 322 + 1 + 11 + 267 + Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 968 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 323 + 1 + 11 + 268 + Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 969 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 1100000000 + true + + + 324 + 1 + 11 + 269 + Pump Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1394 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 325 + 1 + 11 + 270 + Pump Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1395 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 1100000000 + true + + + 326 + 1 + 11 + 271 + Generation Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1608 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 327 + 1 + 11 + 272 + Generation Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1609 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 328 + 1 + 11 + 273 + Pump Load Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1610 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 329 + 1 + 11 + 274 + Pump Load Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1611 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 330 + 1 + 11 + 275 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 331 + 1 + 11 + 276 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 332 + 1 + 12 + 277 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 333 + 1 + 12 + 278 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 334 + 1 + 12 + 279 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 335 + 5 + 1 + 1 + Transition Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1139 + Cost required for a Generator transition + 1000000000 + true + + + 336 + 7 + 1 + 1 + Transport Charge + 29 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 800 + Transport charge (added to base fuel price) + 2000000000 + true + + + 337 + 7 + 1 + 2 + Mutually Exclusive + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 998 + If the Fuel cannot be mixed with other Fuels associated with this Generator. + 80 + true + + + 338 + 7 + 1 + 3 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Fixed fuel mix ratio + 80 + true + + + 339 + 7 + 1 + 4 + Min Ratio + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 494 + Minimum fuel mix ratio + 80 + true + + + 340 + 7 + 1 + 5 + Max Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 450 + Maximum fuel mix ratio + 80 + true + + + 341 + 7 + 1 + 6 + Max Input + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 433 + Maximum amount of fuel input to generator + 80 + true + + + 342 + 7 + 1 + 7 + Rating + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 665 + Rating of generating units when running this fuel + 80 + true + + + 343 + 7 + 1 + 8 + Is Available + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 332 + If the fuel is available for use by the generator + 800000 + true + + + 344 + 7 + 1 + 9 + Heat Rate Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 266 + Scalar on base generator heat rate function + 1000 + true + + + 345 + 7 + 1 + 10 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 346 + 7 + 1 + 11 + Heat Rate + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Heat-rate at load point (used with Load Point) or 'b' in the heat input function + 1000 + true + + + 347 + 7 + 1 + 12 + Heat Rate Incr + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + Average marginal heat-rate in band + 1000 + true + + + 348 + 7 + 1 + 13 + Heat Rate Incr2 + 38 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 264 + Second-order polynomial term in unit fuel use function + 1000 + true + + + 349 + 7 + 1 + 14 + Heat Rate Incr3 + 44 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 265 + Third-order polynomial term in unit fuel use function + 1000 + true + + + 350 + 7 + 1 + 15 + Transition Cost Down + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1134 + Cost required for Fuel Transition shutdown process (surplus over Production Offtake). + 1000000000 + true + + + 351 + 7 + 1 + 16 + Transition Cost Up + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1135 + Cost required for Fuel Transition start-up process (surplus over Production Offtake). + 1000000000 + true + + + 352 + 7 + 1 + 17 + Decoupling Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1136 + Number of hours Fuel can’t be used for Generation after a shutdown + 1000000000 + true + + + 353 + 7 + 1 + 18 + Coupling Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1137 + Number of hours Fuel has to be used after a start-up + 1000000000 + true + + + 354 + 7 + 1 + 19 + Emission Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 165 + Scalar on emissions from this generator and fuel combination + 2000 + true + + + 355 + 7 + 1 + 20 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + MW offer in band + 400000 + true + + + 356 + 7 + 1 + 21 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400000 + true + + + 357 + 8 + 1 + 1 + Offtake at Start + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 578 + Fuel required to start a unit + 1080000000 + true + + + 358 + 8 + 1 + 2 + Transport Charge + 29 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 800 + Cost of transporting the fuel to the generator + 1080000000 + true + + + 359 + 8 + 1 + 3 + Emission Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 165 + Scalar on emissions from this generator and start fuel combination + 80002000 + true + + + 360 + 10 + 1 + 1 + Flow Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 210 + Units of storage received per unit of generation + 40000 + true + + + 361 + 10 + 1 + 2 + Flow at Start + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1208 + The amount of water released when starting a generating unit. + 1080040000 + true + + + 362 + 10 + 1 + 3 + Efficiency Point + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1340 + Storage percentage full associated with [Efficiency Scalar] + 41000 + true + + + 363 + 10 + 1 + 4 + Efficiency Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1341 + Generation efficiency scalar at the given [Efficiency Point] + 41000 + true + + + 364 + 11 + 1 + 1 + Flow Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 210 + Units of storage received per unit of generation + 40000 + true + + + 365 + 12 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator output injected at the node + true + + + 366 + 12 + 1 + 2 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of pump load at the node + true + + + 367 + 13 + 1 + 1 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of installed units at the Node + 800000 + true + + + 368 + 15 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 369 + 18 + 1 + 1 + Enable Co-optimization + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2558 + If the gas node is available for use by the generator + true + + + 370 + 19 + 1 + 1 + Offtake at Start + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 578 + Amount of gas required to start a unit + 1080000000 + true + + + 371 + 19 + 1 + 2 + Transport Charge + 29 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 800 + Cost of transporting the gas to the generator + 1080000000 + true + + + 372 + 19 + 1 + 3 + Emission Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 165 + Scalar on emissions from this generator and start gas node combination + 80002000 + true + + + 373 + 24 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 374 + 25 + 3 + 1 + Generation Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity consumed per unit of generation + true + + + 375 + 25 + 3 + 2 + Pump Load Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity consumed per unit of pump load + true + + + 376 + 25 + 3 + 3 + Fuel Offtake Coefficient + 106 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity consumed per unit of fuel used + true + + + 377 + 25 + 8 + 4 + Capacity Built Coefficient + 107 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Amount of the Commodity consumed per unit of capacity built + true + + + 378 + 25 + 8 + 5 + Capacity Retired Coefficient + 107 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Amount of the Commodity consumed per unit of capacity retired + true + + + 379 + 26 + 2 + 1 + Mutually Exclusive Production + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2756 + If the energy used for producing commodities and serving load are mutually exclusive + 800000 + true + + + 380 + 26 + 3 + 2 + Generation Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity produced per unit of generation + true + + + 381 + 26 + 3 + 3 + Pump Load Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity produced per unit of pump load + true + + + 382 + 26 + 3 + 4 + Fuel Offtake Coefficient + 106 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity produced per unit of fuel used + true + + + 383 + 27 + 1 + 1 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 585 + Unit rating during outage + 4 + true + + + 384 + 27 + 1 + 2 + Outage Rating Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1715 + Proportion of [Rating] during outage + 4 + true + + + 385 + 27 + 1 + 3 + Outage Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1716 + Unit [Firm Capacity] during outage + 4 + true + + + 386 + 27 + 1 + 4 + Outage Firm Capacity Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1717 + Proportion of [Firm Capacity] during outage + 4 + true + + + 387 + 28 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of generation + true + + + 388 + 28 + 3 + 2 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of pump load + true + + + 389 + 28 + 3 + 3 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of fuel offtake + true + + + 390 + 29 + 4 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for capacity market + true + + + 391 + 29 + 4 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band for capacity market + true + + + 392 + 30 + 1 + 1 + Conversion Rate + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 115 + Conversion rate of generator heat input to waste heat input. + 1000 + true + + + 393 + 32 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 394 + 32 + 3 + 2 + Generation Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 239 + Coefficient of the square of generation + true + + + 395 + 32 + 3 + 3 + Generation SUM Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 240 + Coefficient of the square of the summed generation + true + + + 396 + 32 + 3 + 4 + Generation Sent Out Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1147 + Coefficient of generation measured at the station gate + true + + + 397 + 32 + 3 + 5 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor. + true + + + 398 + 32 + 3 + 6 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation. + 1000000000 + true + + + 399 + 32 + 3 + 7 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + 1000000000 + true + + + 400 + 32 + 3 + 8 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 401 + 32 + 3 + 9 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 402 + 32 + 3 + 10 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the generating unit has been off + 1000000000 + true + + + 403 + 32 + 3 + 11 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 404 + 32 + 3 + 12 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of committed capacity + 1000000004 + true + + + 405 + 32 + 3 + 13 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 406 + 32 + 3 + 14 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + 1000 + true + + + 407 + 32 + 3 + 15 + Waste Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1887 + Coefficient of waste heat + 20000 + true + + + 408 + 32 + 3 + 16 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of emission production + 2000 + true + + + 409 + 32 + 3 + 17 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + 20 + true + + + 410 + 32 + 3 + 18 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 643 + Coefficient of pump load + 8040000 + true + + + 411 + 32 + 3 + 19 + Pump Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1645 + Coefficient of number of hours the generating unit is running in pump mode + 8040000 + true + + + 412 + 32 + 3 + 20 + Units Pumping Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1148 + Coefficient on the number of units pumping + 1008040000 + true + + + 413 + 32 + 3 + 21 + Pump Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1323 + Coefficient on the number of pump units started + 1088040000 + true + + + 414 + 32 + 3 + 22 + Sync Cond Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1646 + Coefficient of synchronous condenser load + 1000000002 + true + + + 415 + 32 + 3 + 23 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + 1000000002 + true + + + 416 + 32 + 3 + 24 + Sync Cond Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1648 + Coefficient of number of hours the generating unit is running in synchronous condenser mode + 1000000002 + true + + + 417 + 32 + 3 + 25 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 418 + 32 + 3 + 26 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 419 + 32 + 3 + 27 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 420 + 32 + 3 + 28 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 421 + 32 + 3 + 29 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 422 + 32 + 3 + 30 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 423 + 32 + 3 + 31 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + 2 + true + + + 424 + 32 + 3 + 32 + Sync Cond Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 774 + Coefficient of synchronous condenser reserve provision + 2 + true + + + 425 + 32 + 3 + 33 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + 2 + true + + + 426 + 32 + 3 + 34 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 427 + 32 + 3 + 35 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 428 + 32 + 3 + 36 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 429 + 32 + 3 + 37 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 430 + 32 + 3 + 38 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 431 + 32 + 3 + 39 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + 2 + true + + + 432 + 32 + 3 + 40 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + 2 + true + + + 433 + 32 + 3 + 41 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + 2 + true + + + 434 + 32 + 3 + 42 + Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1469 + Coefficient of flexibility up + 2 + true + + + 435 + 32 + 3 + 43 + Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1470 + Coefficient of flexibility down + 2 + true + + + 436 + 32 + 3 + 44 + Ramp Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1471 + Coefficient of ramp flexibility up + 2 + true + + + 437 + 32 + 3 + 45 + Ramp Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1472 + Coefficient of ramp flexibility down + 2 + true + + + 438 + 32 + 3 + 46 + Withdrawal Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of generator heat withdrawal + 20000 + true + + + 439 + 32 + 3 + 47 + Injection Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of generator heat injection + 20000 + true + + + 440 + 32 + 3 + 48 + Water Offtake Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1804 + Coefficient of generator water offtake + 8000000000 + true + + + 441 + 32 + 3 + 49 + Water Consumption Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1805 + Coefficient of generator water consumption + 8000000000 + true + + + 442 + 32 + 3 + 50 + Reserve Provision Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2893 + Generation coefficient of reserve provision + 2 + false + + + 443 + 32 + 3 + 51 + Reserve Provision Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2894 + Load coefficient of reserve provision + 2 + false + + + 444 + 32 + 5 + 52 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 445 + 32 + 5 + 53 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 446 + 32 + 5 + 54 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 447 + 32 + 5 + 55 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 448 + 32 + 5 + 56 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 449 + 32 + 5 + 57 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 450 + 32 + 6 + 58 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 451 + 32 + 6 + 59 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 452 + 32 + 6 + 60 + Rated Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 664 + Coefficient of capacity as measured by Rating + C + true + + + 453 + 32 + 6 + 61 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 454 + 32 + 6 + 62 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the average age of units + 8 + true + + + 455 + 32 + 6 + 63 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of generator contribution to capacity reserves + C + true + + + 456 + 32 + 7 + 64 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 457 + 32 + 7 + 65 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 458 + 32 + 8 + 66 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 459 + 32 + 8 + 67 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 460 + 32 + 8 + 68 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 461 + 32 + 8 + 69 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 462 + 32 + 8 + 70 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 463 + 32 + 8 + 71 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 464 + 32 + 8 + 72 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 465 + 32 + 8 + 73 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 466 + 32 + 8 + 74 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 467 + 33 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation measured at the generator-terminal + true + + + 468 + 33 + 3 + 2 + Generation Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 239 + Coefficient of the square of generation measured at the generator terminal + true + + + 469 + 33 + 3 + 3 + Generation SUM Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 240 + Coefficient of the square of the summed generation measured at the generator terminal + true + + + 470 + 33 + 3 + 4 + Generation Sent Out Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1147 + Coefficient of generation measured at the station gate + true + + + 471 + 33 + 3 + 5 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor. + true + + + 472 + 33 + 3 + 6 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation. + true + + + 473 + 33 + 3 + 7 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 474 + 33 + 3 + 8 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + true + + + 475 + 33 + 3 + 9 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + true + + + 476 + 33 + 3 + 10 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the generating unit has been off + true + + + 477 + 33 + 3 + 11 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + true + + + 478 + 33 + 3 + 12 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of committed capacity + true + + + 479 + 33 + 3 + 13 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 480 + 33 + 3 + 14 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + true + + + 481 + 33 + 3 + 15 + Waste Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1887 + Coefficient of waste heat + true + + + 482 + 33 + 3 + 16 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of emission production + true + + + 483 + 33 + 3 + 17 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + true + + + 484 + 33 + 3 + 18 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 643 + Coefficient of pump load + true + + + 485 + 33 + 3 + 19 + Pump Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1645 + Coefficient of number of hours the generating unit is running in pump mode + true + + + 486 + 33 + 3 + 20 + Units Pumping Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1148 + Coefficient on the number of units pumping + true + + + 487 + 33 + 3 + 21 + Pump Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1323 + Coefficient on the number of pump units started + true + + + 488 + 33 + 3 + 22 + Sync Cond Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1646 + Coefficient of synchronous condenser load + true + + + 489 + 33 + 3 + 23 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + true + + + 490 + 33 + 3 + 24 + Sync Cond Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1648 + Coefficient of number of hours the generating unit is running in synchronous condenser mode + true + + + 491 + 33 + 3 + 25 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 492 + 33 + 3 + 26 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 493 + 33 + 3 + 27 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 494 + 33 + 3 + 28 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 495 + 33 + 3 + 29 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 496 + 33 + 3 + 30 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + true + + + 497 + 33 + 3 + 31 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + true + + + 498 + 33 + 3 + 32 + Sync Cond Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 774 + Coefficient of synchronous condenser reserve provision + true + + + 499 + 33 + 3 + 33 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + true + + + 500 + 33 + 3 + 34 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + true + + + 501 + 33 + 3 + 35 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + true + + + 502 + 33 + 3 + 36 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + true + + + 503 + 33 + 3 + 37 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + true + + + 504 + 33 + 3 + 38 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + true + + + 505 + 33 + 3 + 39 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 506 + 33 + 3 + 40 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + true + + + 507 + 33 + 3 + 41 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + true + + + 508 + 33 + 3 + 42 + Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1469 + Coefficient of flexibility up + true + + + 509 + 33 + 3 + 43 + Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1470 + Coefficient of flexibility down + true + + + 510 + 33 + 3 + 44 + Ramp Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1471 + Coefficient of ramp flexibility up + true + + + 511 + 33 + 3 + 45 + Ramp Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1472 + Coefficient of ramp flexibility down + true + + + 512 + 33 + 3 + 46 + Withdrawal Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of generator heat withdrawal + true + + + 513 + 33 + 3 + 47 + Injection Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of generator heat injection + true + + + 514 + 33 + 3 + 48 + Water Offtake Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1804 + Coefficient of generator water offtake + true + + + 515 + 33 + 3 + 49 + Water Consumption Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1805 + Coefficient of generator water consumption + true + + + 516 + 33 + 5 + 50 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 517 + 33 + 5 + 51 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 518 + 33 + 5 + 52 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 519 + 33 + 5 + 53 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 520 + 33 + 5 + 54 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 521 + 33 + 5 + 55 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 522 + 33 + 6 + 56 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 523 + 33 + 6 + 57 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 524 + 33 + 6 + 58 + Rated Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 664 + Coefficient of capacity as measured by Rating + true + + + 525 + 33 + 6 + 59 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 526 + 33 + 6 + 60 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + true + + + 527 + 33 + 6 + 61 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of generator contribution to capacity reserves + true + + + 528 + 33 + 7 + 62 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 529 + 33 + 7 + 63 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 530 + 33 + 8 + 64 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 531 + 33 + 8 + 65 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 532 + 33 + 8 + 66 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 533 + 33 + 8 + 67 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 534 + 33 + 8 + 68 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 535 + 33 + 8 + 69 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 536 + 33 + 8 + 70 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 537 + 33 + 8 + 71 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 538 + 33 + 8 + 72 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 539 + 34 + 1 + 1 + Heat Input Definition Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1885 + Coefficient of the Decision Variable in the Generator Heat Input definition equation + true + + + 540 + 35 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation in condition + true + + + 541 + 35 + 3 + 2 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 542 + 35 + 3 + 3 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit starts + true + + + 543 + 35 + 3 + 4 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + true + + + 544 + 35 + 3 + 5 + Efficiency Coefficient + 120 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2643 + Coefficient of generator efficiency + true + + + 545 + 35 + 3 + 6 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + true + + + 546 + 35 + 3 + 7 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 643 + Coefficient of pump load + 8040000 + true + + + 547 + 35 + 6 + 8 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 548 + 35 + 6 + 9 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 549 + 35 + 6 + 10 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 550 + 35 + 7 + 11 + Outage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2563 + Coefficient of capacity on outage + 4 + true + + + 551 + 35 + 7 + 12 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 4 + true + + + 552 + 35 + 7 + 13 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 553 + 35 + 8 + 14 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 554 + 35 + 8 + 15 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 555 + 35 + 8 + 16 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 556 + 35 + 8 + 17 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 557 + 35 + 8 + 18 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 558 + 35 + 8 + 19 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 559 + 35 + 8 + 20 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 560 + 35 + 8 + 21 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 561 + 36 + 1 + 1 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + false + false + false + 1 + 335 + Flag if the Power Station is enabled + 800000 + true + + + 562 + 39 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator load injected at the node + true + + + 563 + 40 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 564 + 40 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 565 + 40 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal stockpile trajectory from one simulation phase to the next. + 400000000 + true + + + 566 + 40 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition stockpile target penalty function 'a' term. + 400000000 + true + + + 567 + 40 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition stockpile target penalty function 'b' term. + 400000000 + true + + + 568 + 40 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition stockpile target penalty function 'c' term. + 400000000 + true + + + 569 + 40 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition stockpile target penalty function 'x' term. + 400000000 + true + + + 570 + 40 + 2 + 8 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of stockpile bounds when the decomposition implies possible violations. + 400000000 + true + + + 571 + 40 + 3 + 9 + Units + 0 + 1 + In (0,1) + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 812 + Flag if fuel exists + 800000 + true + + + 572 + 40 + 3 + 10 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Fuel price + 2000000001 + true + + + 573 + 40 + 3 + 11 + Tax + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 785 + Fuel tax + 2000000000 + true + + + 574 + 40 + 3 + 12 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 905 + Increment to the price of the fuel + 2000000000 + true + + + 575 + 40 + 3 + 13 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Multiplier on the price of the fuel + 2000000000 + true + + + 576 + 40 + 3 + 14 + Heat Value + 37 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of fuel + 100 + false + + + 577 + 40 + 3 + 15 + Shadow Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 742 + Shadow price of fuel (if defined as input, sets the internal price for fuel) + 2000000000 + true + + + 578 + 40 + 3 + 16 + Shadow Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1082 + Increment to the shadow price of the fuel (use only when Shadow Price is defined) + 2000000000 + true + + + 579 + 40 + 3 + 17 + Shadow Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 896 + Multiplier on the shadow price of the fuel (use only when Shadow Price is defined) + 2000000000 + true + + + 580 + 40 + 3 + 18 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 581 + 40 + 10 + 19 + Max Inventory + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1589 + Maximum fuel allowed in stockpile + 400000000 + true + + + 582 + 40 + 10 + 20 + Min Inventory + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum fuel required in stockpile + 400000000 + true + + + 583 + 40 + 10 + 21 + Opening Inventory + 87 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1591 + Initial fuel in the stockpile + 400000000 + true + + + 584 + 40 + 10 + 22 + Delivery + 87 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Fuel delivered to the stockpile + 400000000 + true + + + 585 + 40 + 10 + 23 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of delivering fuel to the stockpile + 400000000 + true + + + 586 + 40 + 10 + 24 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost applied to closing inventory in the stockpile + 400000000 + true + + + 587 + 40 + 10 + 25 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity in the stockpile + 400000000 + true + + + 588 + 40 + 10 + 26 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Incremental cost of taking fuel from stockpile + 400000000 + true + + + 589 + 40 + 9 + 27 + Max Offtake + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 939 + Maximum fuel offtake per interval + 80 + true + + + 590 + 40 + 9 + 27 + Max Offtake Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1557 + Maximum fuel offtake in hour + 80 + true + + + 591 + 40 + 9 + 27 + Max Offtake Day + 87 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 940 + Maximum fuel offtake in day + 80 + true + + + 592 + 40 + 9 + 27 + Max Offtake Week + 87 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 941 + Maximum fuel offtake in week + 80 + true + + + 593 + 40 + 9 + 27 + Max Offtake Month + 87 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 942 + Maximum fuel offtake in month + 80 + true + + + 594 + 40 + 9 + 27 + Max Offtake Year + 87 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 943 + Maximum fuel offtake in year + 80 + true + + + 595 + 40 + 9 + 28 + Min Offtake + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 944 + Minimum fuel offtake per interval + 80 + true + + + 596 + 40 + 9 + 28 + Min Offtake Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1558 + Minimum fuel offtake in hour + 80 + true + + + 597 + 40 + 9 + 28 + Min Offtake Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 945 + Minimum fuel offtake in day + 80 + true + + + 598 + 40 + 9 + 28 + Min Offtake Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 946 + Minimum fuel offtake in week + 80 + true + + + 599 + 40 + 9 + 28 + Min Offtake Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 947 + Minimum fuel offtake in month + 80 + true + + + 600 + 40 + 9 + 28 + Min Offtake Year + 87 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 948 + Minimum fuel offtake in year + 80 + true + + + 601 + 40 + 9 + 29 + Max Offtake Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2426 + Penalty applied to violations of [Max Offtake]constraints + 80 + true + + + 602 + 40 + 9 + 30 + Min Offtake Penalty + 88 + 1000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2427 + Penalty applied to violations of [Min Offtake] constraints + 80 + true + + + 603 + 40 + 9 + 31 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of fuel that can be taken from stockpile + 400000000 + true + + + 604 + 40 + 9 + 31 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of fuel that can be taken from stockpile in a hour + 400000000 + true + + + 605 + 40 + 9 + 31 + Max Withdrawal Day + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of fuel that can be taken from stockpile in a day + 400000000 + true + + + 606 + 40 + 9 + 31 + Max Withdrawal Week + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of fuel that can be taken from stockpile in a week + 400000000 + true + + + 607 + 40 + 9 + 31 + Max Withdrawal Month + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of fuel that can be taken from stockpile in a month + 400000000 + true + + + 608 + 40 + 9 + 31 + Max Withdrawal Year + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of fuel that can be taken from stockpile in a year + 400000000 + true + + + 609 + 40 + 9 + 32 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1258 + Amount of fuel that must be taken from stockpile + 400000000 + true + + + 610 + 40 + 9 + 32 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of fuel that must be taken from stockpile each hour + 400000000 + true + + + 611 + 40 + 9 + 32 + Min Withdrawal Day + 87 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of fuel that must be taken from stockpile each day + 400000000 + true + + + 612 + 40 + 9 + 32 + Min Withdrawal Week + 87 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of fuel that must be taken from stockpile each week + 400000000 + true + + + 613 + 40 + 9 + 32 + Min Withdrawal Month + 87 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of fuel that must be taken from stockpile each month + 400000000 + true + + + 614 + 40 + 9 + 32 + Min Withdrawal Year + 87 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of fuel that must be taken from stockpile each year + 400000000 + true + + + 615 + 40 + 12 + 33 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 616 + 40 + 12 + 34 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 617 + 40 + 12 + 35 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 618 + 50 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 619 + 51 + 3 + 1 + Consumption Rate + 113 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2752 + Fuel consumed per unit of the Primary Output from the Facility + true + + + 620 + 54 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 621 + 54 + 1 + 2 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of fuel emission + 2000 + true + + + 622 + 54 + 1 + 3 + In Use Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1382 + Boolean value (1 if the Fuel is in use, 0 otherwise) + 1000000000 + true + + + 623 + 54 + 1 + 4 + Closing Inventory Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of fuel stockpile closing inventory. + 400000000 + true + + + 624 + 54 + 1 + 5 + Inventory Change Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in fuel stockpile level. + 400000000 + true + + + 625 + 54 + 1 + 6 + Delivery Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of delivery to fuel stockpile. + 400000000 + true + + + 626 + 54 + 1 + 7 + Withdrawal Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal from fuel stockpile. + 400000000 + true + + + 627 + 54 + 1 + 8 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation with given fuel + true + + + 628 + 55 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 629 + 55 + 1 + 2 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of fuel emission + true + + + 630 + 55 + 1 + 3 + In Use Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1382 + Boolean value (1 if the Fuel is in use, 0 otherwise) + true + + + 631 + 55 + 1 + 4 + Closing Inventory Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of fuel stockpile closing inventory + true + + + 632 + 55 + 1 + 5 + Inventory Change Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in fuel stockpile level + true + + + 633 + 55 + 1 + 6 + Delivery Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of delivery to fuel stockpile + true + + + 634 + 55 + 1 + 7 + Withdrawal Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal from fuel stockpile + true + + + 635 + 55 + 1 + 8 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation with given fuel + true + + + 636 + 56 + 3 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 637 + 57 + 9 + 1 + Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 650 + Contract quantity + 80 + true + + + 638 + 57 + 9 + 1 + Quantity Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + true + 1 + 1559 + Total contract quantity in hour + 80 + true + + + 639 + 57 + 9 + 1 + Quantity Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + true + 1 + 651 + Total contract quantity in day + 80 + true + + + 640 + 57 + 9 + 1 + Quantity Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + true + 1 + 653 + Total contract quantity in week + 80 + true + + + 641 + 57 + 9 + 1 + Quantity Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + true + 1 + 652 + Total contract quantity in month + 80 + true + + + 642 + 57 + 9 + 1 + Quantity Year + 87 + 0 + 1 + 0 + 0 + 4 + false + false + true + true + 1 + 654 + Total contract quantity in year + 80 + true + + + 643 + 57 + 3 + 2 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 612 + Contract price + 2000000001 + true + + + 644 + 57 + 3 + 3 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 905 + Increment to the price of the fuel contract. + 2000000000 + true + + + 645 + 57 + 3 + 4 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Multiplier on the price of the fuel contract. + 2000000000 + true + + + 646 + 57 + 3 + 5 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed charge for the fuel contract + 8000 + true + + + 647 + 57 + 9 + 6 + Take-or-Pay Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 778 + Contract take-or-pay quantity + 80 + true + + + 648 + 57 + 9 + 6 + Take-or-Pay Quantity Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1560 + Contract take-or-pay quantity in hour + 80 + true + + + 649 + 57 + 9 + 6 + Take-or-Pay Quantity Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 779 + Contract take-or-pay quantity in day + 80 + true + + + 650 + 57 + 9 + 6 + Take-or-Pay Quantity Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 781 + Contract take-or-pay quantity in week + 80 + true + + + 651 + 57 + 9 + 6 + Take-or-Pay Quantity Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 780 + Contract take-or-pay quantity in month + 80 + true + + + 652 + 57 + 9 + 6 + Take-or-Pay Quantity Year + 87 + 0 + 1 + 0 + 0 + 4 + false + true + true + false + 1 + 782 + Contract take-or-pay quantity in year + 80 + true + + + 653 + 57 + 9 + 7 + Take-or-Pay Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 777 + Contract take-or-pay price + 80 + true + + + 654 + 57 + 12 + 8 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 655 + 57 + 12 + 9 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 656 + 57 + 12 + 10 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 657 + 62 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of fuel contract + 40 + true + + + 658 + 63 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel contract offtake + true + + + 659 + 64 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel contract offtake + true + + + 660 + 65 + 2 + 1 + Max Efficiency Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2443 + Maximum number of tranches in the efficiency piecewise linear approximation + 1000 + true + + + 661 + 65 + 2 + 2 + Formulate Non-convex + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order + 1000 + true + + + 662 + 65 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 100000000 + true + + + 663 + 65 + 2 + 4 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 664 + 65 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 665 + 65 + 2 + 6 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 666 + 65 + 2 + 7 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled + 8 + true + + + 667 + 65 + 3 + 8 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 668 + 65 + 3 + 9 + Max Load + 1 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 436 + Maximum load of each unit + 5 + true + + + 669 + 65 + 3 + 10 + Min Stable Level + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 501 + Minimum allowed electric load when operating + 1000000081 + true + + + 670 + 65 + 3 + 11 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 671 + 65 + 3 + 12 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 672 + 65 + 3 + 13 + Load Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point efficiency + 1000 + true + + + 673 + 65 + 3 + 14 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1209 + Efficiency of energy conversion process + 1000 + true + + + 674 + 65 + 3 + 15 + Water Consumption + 68 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1803 + Water consumed by the Power2X facility + 1000 + true + + + 675 + 65 + 3 + 16 + Ramp Up Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Load point for use with multi-band Max Ramp Up constraints + 80 + true + + + 676 + 65 + 3 + 17 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate that applies at the given load point + 80 + true + + + 677 + 65 + 3 + 18 + Ramp Up Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 678 + 65 + 3 + 19 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 679 + 65 + 3 + 20 + Ramp Down Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Load point for use with multi-band Max Ramp Down constraints + 80 + true + + + 680 + 65 + 3 + 21 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate that applies at the given load point + 80 + true + + + 681 + 65 + 3 + 22 + Ramp Down Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 682 + 65 + 3 + 23 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 683 + 65 + 3 + 24 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 684 + 65 + 3 + 25 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 685 + 65 + 3 + 26 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 686 + 65 + 3 + 27 + Run Up Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while increasing load from zero to [Min Stable Level]. + 80000000 + true + + + 687 + 65 + 3 + 28 + Start Profile + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for increasing load from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 688 + 65 + 3 + 29 + Start Profile Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2639 + Penalty for violation of [Start Profile]. + 80 + true + + + 689 + 65 + 3 + 30 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 690 + 65 + 3 + 31 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 691 + 65 + 3 + 32 + Run Down Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1020 + Ramp rate that applies while running the unit down from [Min Stable Level] to zero + 200000000 + true + + + 692 + 65 + 3 + 33 + Shutdown Profile + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 933 + Detailed regime for running the unit down from [Min Stable Level] when [Run Down Rate] is non-constant. + 200000000 + true + + + 693 + 65 + 3 + 34 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 694 + 65 + 3 + 35 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 695 + 65 + 3 + 36 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 696 + 65 + 3 + 37 + Min Stable Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1372 + Minimum stable operation level as a proportion of [Max Load] + 1000000080 + true + + + 697 + 65 + 3 + 38 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Power2X object + 100 + true + + + 698 + 65 + 3 + 39 + Bid Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2547 + Base load for balancing bid + true + + + 699 + 65 + 3 + 40 + Bid Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + true + + + 700 + 65 + 3 + 41 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Energy bid price + true + + + 701 + 65 + 9 + 42 + Max Production + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum production + 80 + true + + + 702 + 65 + 9 + 42 + Max Production Hour + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production in hour + 80 + true + + + 703 + 65 + 9 + 42 + Max Production Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production in day + 80 + true + + + 704 + 65 + 9 + 42 + Max Production Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production in week + 80 + true + + + 705 + 65 + 9 + 42 + Max Production Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production in month + 80 + true + + + 706 + 65 + 9 + 42 + Max Production Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production in year + 80 + true + + + 707 + 65 + 9 + 43 + Min Production + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1275 + Minimum production + 80 + true + + + 708 + 65 + 9 + 43 + Min Production Hour + 15 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production in hour + 80 + true + + + 709 + 65 + 9 + 43 + Min Production Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production in day + 80 + true + + + 710 + 65 + 9 + 43 + Min Production Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production in week + 80 + true + + + 711 + 65 + 9 + 43 + Min Production Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production in month + 80 + true + + + 712 + 65 + 9 + 43 + Min Production Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production in year + 80 + true + + + 713 + 65 + 9 + 44 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor (production constraint) + 80 + true + + + 714 + 65 + 9 + 44 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 715 + 65 + 9 + 44 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 716 + 65 + 9 + 44 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 717 + 65 + 9 + 44 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 718 + 65 + 9 + 44 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 719 + 65 + 9 + 45 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor + 80 + true + + + 720 + 65 + 9 + 45 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 721 + 65 + 9 + 45 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 722 + 65 + 9 + 45 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 723 + 65 + 9 + 45 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 724 + 65 + 9 + 45 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 725 + 65 + 9 + 46 + Max Production Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1361 + Penalty applied to violations of [Max Production] and [Max Capacity Factor] constraints. + 80 + true + + + 726 + 65 + 9 + 47 + Min Production Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2292 + Penalty applied to violations of [Min Production] and [Min Capacity Factor] constraints. + 80 + true + + + 727 + 65 + 9 + 48 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 728 + 65 + 9 + 48 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 729 + 65 + 9 + 48 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 730 + 65 + 9 + 48 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 731 + 65 + 9 + 48 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 732 + 65 + 9 + 48 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 733 + 65 + 9 + 49 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints. + 1080000080 + true + + + 734 + 65 + 6 + 50 + Initial Age + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Age of the Power2X in years at the start of the simulation horizon + 80000 + true + + + 735 + 65 + 6 + 51 + Power Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1830 + Degradation of Power2X efficiency with cycles + 4 + true + + + 736 + 65 + 6 + 52 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the Power2X to capacity reserves + C + true + + + 737 + 65 + 7 + 53 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 738 + 65 + 7 + 54 + Forced Outage + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 739 + 65 + 7 + 55 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 740 + 65 + 7 + 56 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 741 + 65 + 7 + 57 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 742 + 65 + 7 + 58 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 743 + 65 + 7 + 59 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Unit rating during outage + 1000000 + true + + + 744 + 65 + 7 + 60 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 745 + 65 + 7 + 61 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 746 + 65 + 7 + 62 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 747 + 65 + 7 + 63 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 748 + 65 + 7 + 64 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 749 + 65 + 8 + 65 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 750 + 65 + 8 + 66 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning. + 8 + true + + + 751 + 65 + 8 + 67 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 752 + 65 + 8 + 68 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 753 + 65 + 8 + 69 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered). + 9 + true + + + 754 + 65 + 8 + 70 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 755 + 65 + 8 + 71 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 756 + 65 + 8 + 72 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 757 + 65 + 8 + 73 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 758 + 65 + 8 + 74 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 759 + 65 + 8 + 75 + Recovery Price Adder + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Recovery price adder to include for MT/ST optimization + 8008 + false + + + 760 + 65 + 8 + 76 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Power2X production + 8009 + false + + + 761 + 65 + 11 + 77 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 762 + 65 + 11 + 78 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 763 + 65 + 12 + 79 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 764 + 65 + 12 + 80 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 765 + 65 + 12 + 81 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 766 + 68 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this fuel produced + true + + + 767 + 69 + 1 + 1 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of facility load at the node + true + + + 768 + 70 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Heat Node + true + + + 769 + 71 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Heat Storage + true + + + 770 + 72 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Gas Node + true + + + 771 + 72 + 1 + 2 + Min Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by Power2X in the blend + 100 + true + + + 772 + 72 + 1 + 3 + Max Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by Power2X in the blend + 100 + true + + + 773 + 73 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Gas Storage + true + + + 774 + 74 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's water consumption that gets drawn from this Water Node + true + + + 775 + 75 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 776 + 76 + 1 + 1 + Ratio + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 666 + Amount of the Commodity produced per unit of input energy to the facility + true + + + 777 + 77 + 3 + 1 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 626 + Amount of the Power2X production on the Flow Node injected(positive)/withdrawn(negative) per unit of production + true + + + 778 + 78 + 3 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 779 + 78 + 3 + 2 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 780 + 78 + 3 + 3 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 781 + 78 + 3 + 4 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load drawn by the facility + true + + + 782 + 78 + 3 + 5 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of facility production + false + + + 783 + 78 + 3 + 6 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 784 + 78 + 3 + 7 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 785 + 78 + 3 + 8 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 786 + 78 + 3 + 9 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 787 + 78 + 3 + 10 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 788 + 78 + 3 + 11 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 789 + 78 + 3 + 12 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 790 + 78 + 5 + 13 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 791 + 78 + 5 + 14 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 792 + 78 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 793 + 78 + 5 + 16 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 794 + 78 + 5 + 17 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 795 + 78 + 5 + 18 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 796 + 78 + 6 + 19 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 797 + 78 + 8 + 20 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built constraint + 8 + true + + + 798 + 78 + 8 + 21 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 799 + 78 + 8 + 22 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 800 + 78 + 8 + 23 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 801 + 78 + 8 + 24 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 802 + 78 + 8 + 25 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 803 + 79 + 3 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 804 + 79 + 3 + 2 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 805 + 79 + 3 + 3 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 806 + 79 + 3 + 4 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load drawn by the facility + true + + + 807 + 79 + 3 + 5 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of facility production + false + + + 808 + 79 + 3 + 6 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 809 + 79 + 3 + 7 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 810 + 79 + 3 + 8 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 811 + 79 + 3 + 9 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 812 + 79 + 3 + 10 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 813 + 79 + 3 + 11 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 814 + 79 + 3 + 12 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 815 + 79 + 5 + 13 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 816 + 79 + 5 + 14 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 817 + 79 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 818 + 79 + 5 + 16 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 819 + 79 + 5 + 17 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 820 + 79 + 5 + 18 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 821 + 79 + 6 + 19 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 822 + 79 + 8 + 20 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 823 + 79 + 8 + 21 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 824 + 79 + 8 + 22 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 825 + 79 + 8 + 23 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 826 + 79 + 8 + 24 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 827 + 79 + 8 + 25 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 828 + 80 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the generator for the generation of outages + 101000000 + true + + + 829 + 80 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 100000000 + true + + + 830 + 80 + 2 + 3 + End Effects Method + 0 + 2 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period energy. + 20 + true + + + 831 + 80 + 2 + 4 + Recharge Timeframe + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2546 + Maximum hours to recharge after discharge + true + + + 832 + 80 + 2 + 5 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the battery can set price + 4000000 + true + + + 833 + 80 + 2 + 6 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal state-of-charge from one simulation phase to the next + 400000000 + true + + + 834 + 80 + 2 + 7 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition state-of-charge target penalty function 'a' term + 400000000 + true + + + 835 + 80 + 2 + 8 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition state-of-charge target penalty function 'b' term + 400000000 + true + + + 836 + 80 + 2 + 9 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition state-of-charge target penalty function 'c' term + 400000000 + true + + + 837 + 80 + 2 + 10 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition state-of-charge target penalty function 'x' term + 400000000 + true + + + 838 + 80 + 2 + 11 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of state-of-charge bounds when the decomposition implies possible violations + 400000000 + true + + + 839 + 80 + 2 + 12 + Non-physical Charge Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2870 + Penalty applied to non-physical charging of the battery. A value of -1 means none is allowed. + 400000000 + true + + + 840 + 80 + 2 + 13 + Non-physical Discharge Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2871 + Penalty applied to non-physical discharging of the battery. A value of -1 means none is allowed. + 400000000 + true + + + 841 + 80 + 2 + 14 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 842 + 80 + 2 + 15 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 843 + 80 + 2 + 16 + Declining Depreciation Balance + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 130 + Balance applied to declining depreciation method + 8 + true + + + 844 + 80 + 2 + 17 + Build Cost Multiplier + 0 + 1 + In (0,1,2) + 0;"None";1;"Production Capacity";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 845 + 80 + 2 + 18 + Simultaneous Charge and Discharge + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2632 + Battery can charge and discharge simultaneously + 80 + true + + + 846 + 80 + 2 + 19 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the battery. + 1000000000 + true + + + 847 + 80 + 2 + 20 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the battery acts strategically + 40 + true + + + 848 + 80 + 2 + 21 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 849 + 80 + 3 + 22 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of BESS units installed + 800001 + true + + + 850 + 80 + 3 + 23 + Capacity + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of the BESS + 5 + true + + + 851 + 80 + 3 + 24 + Duration + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1476 + Battery duration used to determine the MWh capacity + 4 + true + + + 852 + 80 + 3 + 25 + Max Power + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1756 + Power at full discharge + 5 + true + + + 853 + 80 + 3 + 26 + Max Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 436 + Power at full charge including inverter losses + 5 + true + + + 854 + 80 + 3 + 27 + Max SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1666 + Allowable maximum State of Charge + 5 + true + + + 855 + 80 + 3 + 28 + Min SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1667 + Allowable minimum state of charge + 5 + true + + + 856 + 80 + 3 + 29 + Initial SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1670 + Initial State of Charge + 5 + true + + + 857 + 80 + 3 + 30 + Charge Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 858 + 80 + 3 + 31 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 859 + 80 + 3 + 32 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 860 + 80 + 3 + 33 + Charging VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2624 + Variable operation and maintenance charge for charging + 2000000001 + true + + + 861 + 80 + 3 + 34 + Discharging VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2625 + Variable operation and maintenance charge for discharging + 2000000001 + true + + + 862 + 80 + 3 + 35 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Fixed operations and maintenance charge + 8000 + true + + + 863 + 80 + 3 + 36 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge for generation + 2000000000 + true + + + 864 + 80 + 3 + 37 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 865 + 80 + 3 + 38 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 866 + 80 + 3 + 39 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 867 + 80 + 3 + 40 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 656 + Penalty for violating Max Ramp Down constraint. + 80 + true + + + 868 + 80 + 3 + 41 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 869 + 80 + 3 + 42 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Battery marginal loss factor (MLF or TLF) + 600000 + true + + + 870 + 80 + 3 + 43 + Min Discharge Level + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2553 + Minimum discharge level when discharging + 80 + true + + + 871 + 80 + 3 + 44 + Min Charge Level + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2554 + Minimum unit charge level when charging + 80 + true + + + 872 + 80 + 3 + 45 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a battery must discharge after discharging starts + 1000000080 + true + + + 873 + 80 + 3 + 46 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a battery must have zero discharge after discharging stops + 1000000080 + true + + + 874 + 80 + 3 + 47 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a battery can discharge after discharging starts + 1000000080 + true + + + 875 + 80 + 3 + 48 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a battery can have zero discharge after discharging stops + 1000000080 + true + + + 876 + 80 + 3 + 49 + Min Charge Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2876 + Minimum number of hours a unit must be run in charge mode after being started + 1000000080 + true + + + 877 + 80 + 3 + 50 + Min Charge Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2877 + Minimum number of hours a unit must refrain from charging after being shut down from charge mode + 1000000080 + true + + + 878 + 80 + 3 + 51 + Max Charge Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2889 + Maximum number of hours a unit can be run in charge mode after being started + 1000000080 + true + + + 879 + 80 + 3 + 52 + Discharge Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2657 + Minimum time between operating in discharge mode and charge mode + 80 + true + + + 880 + 80 + 3 + 53 + Charge Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2658 + Minimum time between operating in charge mode and discharge mode + 80 + true + + + 881 + 80 + 3 + 54 + Self Discharge Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2710 + Percentage of stored energy lost per hour due to self-discharge. + 200000 + true + + + 882 + 80 + 9 + 55 + Max Cycles + 62 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1832 + Number of cycles allowed each interval + 80 + true + + + 883 + 80 + 9 + 55 + Max Cycles Hour + 62 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1833 + Number of cycles allowed each hour + 80 + true + + + 884 + 80 + 9 + 55 + Max Cycles Day + 62 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1834 + Number of cycles allowed each day + 80 + true + + + 885 + 80 + 9 + 55 + Max Cycles Week + 62 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1835 + Number of cycles allowed each week + 80 + true + + + 886 + 80 + 9 + 55 + Max Cycles Month + 62 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1836 + Number of cycles allowed each month + 80 + true + + + 887 + 80 + 9 + 55 + Max Cycles Year + 62 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1837 + Number of cycles allowed each year + 80 + true + + + 888 + 80 + 9 + 56 + Energy Target + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1861 + Battery stored energy target + 80 + true + + + 889 + 80 + 9 + 56 + Energy Target Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1862 + end of hour battery stored energy target + 80 + true + + + 890 + 80 + 9 + 56 + Energy Target Day + 3 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1863 + end of day battery stored energy target + 80 + true + + + 891 + 80 + 9 + 56 + Energy Target Week + 3 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1864 + end of week battery stored energy target + 80 + true + + + 892 + 80 + 9 + 56 + Energy Target Month + 3 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1865 + end of month battery stored energy target + 80 + true + + + 893 + 80 + 9 + 56 + Energy Target Year + 3 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1866 + end of year battery stored energy target + 80 + true + + + 894 + 80 + 9 + 57 + Energy Target Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1867 + Penalty for violating the battery stored energy target. + 80 + true + + + 895 + 80 + 11 + 58 + Non-anticipativity + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 896 + 80 + 11 + 59 + Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1858 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 897 + 80 + 4 + 60 + Offer Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for incr/decr style offer + 400000 + true + + + 898 + 80 + 4 + 61 + Offer No Load Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 568 + Fixed dispatch cost component of generator offer. + 400000 + true + + + 899 + 80 + 4 + 62 + Offer Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band + 400001 + true + + + 900 + 80 + 4 + 63 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400001 + true + + + 901 + 80 + 4 + 64 + Offer Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1368 + Scalar applied to the [Offer Quantity] property + 400000 + true + + + 902 + 80 + 4 + 65 + Offer Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1386 + Adder applied to the [Offer Price] property + 400000 + true + + + 903 + 80 + 4 + 66 + Offer Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1365 + Scalar applied to the [Offer Price] property + 400000 + true + + + 904 + 80 + 4 + 67 + Bid Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2547 + Base load for balancing bid + 400400000 + true + + + 905 + 80 + 4 + 68 + Bid Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 34 + load bid quantity in band + 400400000 + true + + + 906 + 80 + 4 + 69 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 33 + Bid price of load in band + 400400000 + true + + + 907 + 80 + 4 + 70 + Bid Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2548 + Scalar applied to the [Bid Quantity] property + 400400000 + true + + + 908 + 80 + 4 + 71 + Bid Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2549 + Adder applied to the [Bid Price] property + 400400000 + true + + + 909 + 80 + 4 + 72 + Bid Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2550 + Scalar applied to the [Bid Price] property + 400400000 + true + + + 910 + 80 + 4 + 73 + Simultaneous Increment and Decrement + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2868 + Degenerate increment and decrement offers and bids can be cleared simultaneously + 400000 + true + + + 911 + 80 + 4 + 74 + Strategic Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1009 + Generating unit rating for application in RSI capacity calculations + 40 + true + + + 912 + 80 + 4 + 75 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Pumping unit rating for application in RSI capacity calculations. + 40 + true + + + 913 + 80 + 6 + 76 + Initial Age + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Age of the battery in number of cycles at the start of the simulation horizon + 80000 + true + + + 914 + 80 + 6 + 77 + Power Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1830 + Degradation of battery power with cycles + 4 + true + + + 915 + 80 + 6 + 78 + Capacity Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1960 + Degradation in capacity with age in number of cycles + 4 + true + + + 916 + 80 + 6 + 79 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the battery to capacity reserves + C + true + + + 917 + 80 + 6 + 80 + Firm Capacity Unit Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2664 + The total number of units installed in band corresponding to the same band of [Firm Capacity] + C + true + + + 918 + 80 + 7 + 81 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 919 + 80 + 7 + 82 + Effective Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2672 + Effective forced outage rate for use in calculation of reliability indices + true + + + 920 + 80 + 7 + 83 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 921 + 80 + 7 + 84 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 922 + 80 + 7 + 85 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 923 + 80 + 7 + 86 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Unit rating during outage + 1000000 + true + + + 924 + 80 + 7 + 87 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Battery outage rating based on max power + 1000000 + true + + + 925 + 80 + 7 + 88 + Outage Pump Load + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1402 + Load drawn by a unit in pumping mode + 1000000 + true + + + 926 + 80 + 7 + 89 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 927 + 80 + 7 + 90 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 928 + 80 + 7 + 91 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 929 + 80 + 7 + 92 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 930 + 80 + 7 + 93 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 931 + 80 + 8 + 94 + Max Units Built + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of BESS units that can be built + 89 + true + + + 932 + 80 + 8 + 95 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 933 + 80 + 8 + 96 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + First date at which a BESS unit can be built + 8 + true + + + 934 + 80 + 8 + 97 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of a BESS unit + 8 + true + + + 935 + 80 + 8 + 98 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a BESS unit + 8009 + true + + + 936 + 80 + 8 + 99 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 937 + 80 + 8 + 100 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of a BESS unit (period over which fixed costs are recovered) + 9 + true + + + 938 + 80 + 8 + 101 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 939 + 80 + 8 + 102 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of BESS units that can be built in a year + 88 + true + + + 940 + 80 + 8 + 103 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units allowed to be constructed in any single year of the planning horizon + 88 + true + + + 941 + 80 + 8 + 104 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units allowed to be retired in aggregate over the planning horizon + 88 + true + + + 942 + 80 + 8 + 105 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a BESS unit + 8 + true + + + 943 + 80 + 8 + 106 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 944 + 80 + 8 + 107 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 945 + 80 + 8 + 108 + Min Units Retired in Year + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 946 + 80 + 8 + 109 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 947 + 80 + 8 + 110 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 948 + 80 + 11 + 111 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 949 + 80 + 11 + 112 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 950 + 80 + 12 + 113 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 951 + 80 + 12 + 114 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 952 + 80 + 12 + 115 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 953 + 83 + 1 + 1 + Distribution Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2713 + Proportion of battery charge and discharge at the node + true + + + 954 + 84 + 1 + 1 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of installed units at the Node + 800000 + true + + + 955 + 85 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 956 + 86 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity consumed per unit of generation + true + + + 957 + 86 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Amount of the Commodity consumed per unit of load + true + + + 958 + 86 + 8 + 3 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Amount of the Commodity consumed per unit of capacity built + true + + + 959 + 86 + 8 + 4 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Amount of the Commodity consumed per unit of capacity retired + true + + + 960 + 87 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity produced per unit of generation + true + + + 961 + 87 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Amount of the Commodity produced per unit of load + true + + + 962 + 88 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of generation + true + + + 963 + 88 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 80 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of load + true + + + 964 + 89 + 4 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for capacity market + true + + + 965 + 89 + 4 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band for capacity market + true + + + 966 + 90 + 3 + 1 + Energy Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1859 + Coefficient of energy stored in the BESS + true + + + 967 + 90 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 968 + 90 + 3 + 3 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load consumption (charging) in the constraint + true + + + 969 + 90 + 3 + 4 + Discharging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2938 + Coefficient of hours discharging + 1000000000 + true + + + 970 + 90 + 3 + 5 + Charging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2939 + Coefficient of hours charging + 1000000000 + true + + + 971 + 90 + 3 + 6 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 972 + 90 + 3 + 7 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 973 + 90 + 3 + 8 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 974 + 90 + 3 + 9 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 975 + 90 + 3 + 10 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 976 + 90 + 3 + 11 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 977 + 90 + 3 + 12 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + 2 + true + + + 978 + 90 + 3 + 13 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + 2 + true + + + 979 + 90 + 3 + 14 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 980 + 90 + 3 + 15 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 981 + 90 + 3 + 16 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 982 + 90 + 3 + 17 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 983 + 90 + 3 + 18 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 984 + 90 + 3 + 19 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 985 + 90 + 3 + 20 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + 2 + true + + + 986 + 90 + 3 + 21 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + 2 + true + + + 987 + 90 + 3 + 22 + Reserve Provision Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2893 + Generation coefficient of reserve provision + 2 + true + + + 988 + 90 + 3 + 23 + Reserve Provision Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2894 + Load coefficient of reserve provision + 2 + true + + + 989 + 90 + 6 + 24 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 990 + 90 + 6 + 25 + Installed Capacity Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 991 + 90 + 6 + 26 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of generation capacity (power) + true + + + 992 + 90 + 6 + 27 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 993 + 90 + 6 + 28 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of battery contribution to capacity reserves + C + true + + + 994 + 90 + 6 + 29 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 995 + 90 + 6 + 30 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + 8 + true + + + 996 + 90 + 5 + 31 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 997 + 90 + 5 + 32 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 998 + 90 + 5 + 33 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 999 + 90 + 5 + 34 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 1000 + 90 + 5 + 35 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 1001 + 90 + 7 + 36 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 1002 + 90 + 7 + 37 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 1003 + 90 + 8 + 38 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 1004 + 90 + 8 + 39 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 1005 + 90 + 8 + 40 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 1006 + 90 + 8 + 41 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 1007 + 90 + 8 + 42 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 1008 + 90 + 8 + 43 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 1009 + 90 + 8 + 44 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 1010 + 90 + 8 + 45 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 1011 + 90 + 8 + 46 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 1012 + 91 + 3 + 1 + Energy Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1859 + Coefficient of energy stored in the BESS + true + + + 1013 + 91 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 1014 + 91 + 3 + 3 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load obligation + true + + + 1015 + 91 + 3 + 4 + Discharging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2938 + Coefficient of hours discharging + 1000000000 + true + + + 1016 + 91 + 3 + 5 + Charging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2939 + Coefficient of hours charging + 1000000000 + true + + + 1017 + 91 + 3 + 6 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 1018 + 91 + 3 + 7 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 1019 + 91 + 3 + 8 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 1020 + 91 + 3 + 9 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 1021 + 91 + 3 + 10 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 1022 + 91 + 3 + 11 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + true + + + 1023 + 91 + 3 + 12 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + true + + + 1024 + 91 + 3 + 13 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + true + + + 1025 + 91 + 3 + 14 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + true + + + 1026 + 91 + 3 + 15 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + true + + + 1027 + 91 + 3 + 16 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + true + + + 1028 + 91 + 3 + 17 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + true + + + 1029 + 91 + 3 + 18 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + true + + + 1030 + 91 + 3 + 19 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 1031 + 91 + 3 + 20 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + true + + + 1032 + 91 + 3 + 21 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + true + + + 1033 + 91 + 6 + 22 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 1034 + 91 + 6 + 23 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 1035 + 91 + 6 + 24 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 1036 + 91 + 6 + 25 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of battery contribution to capacity reserves + C + true + + + 1037 + 91 + 6 + 26 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 2 + 1838 + Coefficient of cycles + true + + + 1038 + 91 + 6 + 27 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + true + + + 1039 + 91 + 5 + 28 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 1040 + 91 + 5 + 29 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 1041 + 91 + 5 + 30 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 1042 + 91 + 5 + 31 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 1043 + 91 + 5 + 32 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 1044 + 91 + 7 + 33 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 1045 + 91 + 7 + 34 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 1046 + 91 + 8 + 35 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 1047 + 91 + 8 + 36 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 1048 + 91 + 8 + 37 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 1049 + 91 + 8 + 38 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 1050 + 91 + 8 + 39 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 1051 + 91 + 8 + 40 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 1052 + 91 + 8 + 41 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 1053 + 91 + 8 + 42 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + true + + + 1054 + 91 + 8 + 43 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + true + + + 1055 + 92 + 3 + 1 + Energy Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1859 + Coefficient of energy stored in the BESS + true + + + 1056 + 92 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 1057 + 92 + 3 + 3 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load consumption (charging) in the constraint + true + + + 1058 + 92 + 6 + 4 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 1059 + 92 + 6 + 5 + Installed Capacity Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 1060 + 92 + 6 + 6 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + true + + + 1061 + 92 + 7 + 7 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 1062 + 92 + 7 + 8 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 1063 + 92 + 8 + 9 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + true + + + 1064 + 92 + 8 + 10 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + true + + + 1065 + 92 + 8 + 11 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 1066 + 92 + 8 + 12 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 1067 + 92 + 8 + 13 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 1068 + 92 + 8 + 14 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 1069 + 92 + 8 + 15 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 1070 + 92 + 8 + 16 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 1071 + 93 + 2 + 1 + Model + 0 + 0 + In (0,1,2,3) + 0;"Auto";1;"Energy";3;"Volume";2;"Level" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1079 + Model used to define and model storage volumes (used to override the file-level Hydro Model setting). + 40000 + true + + + 1072 + 93 + 2 + 2 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 1073 + 93 + 2 + 3 + Internal Volume Scalar + 0 + 1000 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 1074 + 93 + 2 + 4 + End Effects Method + 0 + 0 + In (0,1,2) + 0;"Auto";1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 168 + Method used to handle end-of-period storage. + 4000 + true + + + 1075 + 93 + 2 + 5 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 1076 + 93 + 2 + 6 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 1077 + 93 + 2 + 7 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 1078 + 93 + 2 + 8 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 1079 + 93 + 2 + 9 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 1080 + 93 + 2 + 10 + Decomposition Bound Penalty + 46 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 1081 + 93 + 2 + 11 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 40080 + true + + + 1082 + 93 + 2 + 12 + Spill Penalty + 46 + 0.0001 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1238 + Penalty applied to spill from the storage to "the sea" in the last period of each simulation step. + 40000 + true + + + 1083 + 93 + 2 + 13 + Non-physical Inflow Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1130 + Penalty applied to non-physical inflow to the storage. A value of -1 means none are allowed. + 40000 + true + + + 1084 + 93 + 2 + 14 + Non-physical Spill Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1131 + Penalty applied to non-physical spill from the storage. A value of -1 means none are allowed. + 40000 + true + + + 1085 + 93 + 3 + 15 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Number of units of the storage + 840000 + true + + + 1086 + 93 + 3 + 16 + Max Volume + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 466 + Maximum volume + 40001 + true + + + 1087 + 93 + 3 + 17 + Max Volume Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2716 + Penalty for violatiog the Max Volume constraint + 40000 + true + + + 1088 + 93 + 3 + 18 + Initial Volume + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Storage volume at the start of the period + C0001 + true + + + 1089 + 93 + 3 + 19 + Min Volume + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 510 + Minimum volume + 40000 + true + + + 1090 + 93 + 3 + 20 + Min Volume Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2717 + Penalty for violatiog the Min Volume constraint + 40000 + true + + + 1091 + 93 + 3 + 21 + Max Level + 23 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 435 + Maximum level + 40000 + true + + + 1092 + 93 + 3 + 22 + Initial Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 316 + Initial level + 40000 + true + + + 1093 + 93 + 3 + 23 + Min Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 485 + Minimum level + 40000 + true + + + 1094 + 93 + 3 + 24 + Low Ref Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 389 + Low reference level for volume calculation + 40000 + true + + + 1095 + 93 + 3 + 25 + Low Ref Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 388 + Area of surface at low reference level + 40000 + true + + + 1096 + 93 + 3 + 26 + High Ref Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 269 + High reference level for volume calculation + 40000 + true + + + 1097 + 93 + 3 + 27 + High Ref Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 268 + Area of surface at high reference level + 40000 + true + + + 1098 + 93 + 3 + 28 + Natural Inflow + 25 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 530 + Rate of natural inflow + 40001 + true + + + 1099 + 93 + 3 + 29 + Natural Inflow Incr + 25 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1396 + Increment to [Natural Inflow] + 40000 + true + + + 1100 + 93 + 3 + 30 + Natural Inflow Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1397 + Multiplier on [Natural Inflow] + 40000 + true + + + 1101 + 93 + 3 + 31 + Water Value + 46 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 855 + Incremental price of water released from storage + 40000 + true + + + 1102 + 93 + 3 + 32 + Water Value Point + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 856 + Volume associated with [Water Value] in multiple bands + 40000 + true + + + 1103 + 93 + 3 + 33 + Energy Value + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 176 + Incremental price of energy generated from storage + 40000 + true + + + 1104 + 93 + 3 + 34 + Energy Value Point + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2538 + Energy associated with [Energy Value] in multiple bands + 40000 + true + + + 1105 + 93 + 3 + 35 + Downstream Efficiency + 120 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 153 + Aggregate efficiency of generation down the river chain + 40000 + true + + + 1106 + 93 + 3 + 36 + Loss Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to evaporation, leakage, etc + 240000 + true + + + 1107 + 93 + 3 + 37 + Recycle Penalty + 46 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 1108 + 93 + 3 + 38 + Rolling Planning Bonus + 46 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2519 + Bonus for storage contents at the end of the look-ahead + true + + + 1109 + 93 + 9 + 39 + Min Release + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 497 + Minimum rate of release from the storage + 40080 + true + + + 1110 + 93 + 9 + 40 + Max Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 451 + Maximum rate of release from the storage + 40080 + true + + + 1111 + 93 + 9 + 41 + Max Generator Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1210 + Maximum rate of release for generation from the storage + 40080 + true + + + 1112 + 93 + 9 + 42 + Min Release Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1947 + Penalty for violation of minimum rate of release constraints + 40080 + true + + + 1113 + 93 + 9 + 43 + Max Release Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1948 + Penalty for violation of maximum rate of release constraints + 40080 + true + + + 1114 + 93 + 9 + 44 + Max Spill + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 457 + Maximum allowable spill from the storage to "the sea" + 40080 + true + + + 1115 + 93 + 9 + 45 + Max Ramp + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in storage + 40080 + true + + + 1116 + 93 + 9 + 45 + Max Ramp Hour + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum change in storage across each hour. + 40080 + true + + + 1117 + 93 + 9 + 45 + Max Ramp Day + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum of change in storage across each day. + 40080 + true + + + 1118 + 93 + 9 + 45 + Max Ramp Week + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum of change in storage across each week. + 40080 + true + + + 1119 + 93 + 9 + 45 + Max Ramp Month + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum of change in storage across each month. + 40080 + true + + + 1120 + 93 + 9 + 45 + Max Ramp Year + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum of change in storage across each year. + 40080 + true + + + 1121 + 93 + 9 + 46 + Max Ramp Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 285 + Penalty for violating the [Max Ramp Day/Week/Month/Year] constraint. + 40080 + true + + + 1122 + 93 + 9 + 47 + Target + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 40080 + true + + + 1123 + 93 + 9 + 47 + Target Hour + 24 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 40080 + true + + + 1124 + 93 + 9 + 47 + Target Day + 24 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 40080 + true + + + 1125 + 93 + 9 + 47 + Target Week + 24 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of weekly storage target + 40080 + true + + + 1126 + 93 + 9 + 47 + Target Month + 24 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 40080 + true + + + 1127 + 93 + 9 + 47 + Target Year + 24 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 40080 + true + + + 1128 + 93 + 9 + 47 + Target Custom + 24 + 0 + >=0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2542 + end of horizon storage target + 40080 + true + + + 1129 + 93 + 9 + 48 + Target Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1703 + storage target + 40080 + true + + + 1130 + 93 + 9 + 48 + Target Level Hour + 23 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1704 + end of hour storage target + 40080 + true + + + 1131 + 93 + 9 + 48 + Target Level Day + 23 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1705 + end of day storage target + 40080 + true + + + 1132 + 93 + 9 + 48 + Target Level Week + 23 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1706 + end of week storage target + 40080 + true + + + 1133 + 93 + 9 + 48 + Target Level Month + 23 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1707 + end of month storage target + 40080 + true + + + 1134 + 93 + 9 + 48 + Target Level Year + 23 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1708 + end of year storage target + 40080 + true + + + 1135 + 93 + 9 + 49 + Target Penalty + 46 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 40080 + true + + + 1136 + 93 + 11 + 50 + Trajectory Non-anticipativity + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100040000 + true + + + 1137 + 93 + 11 + 51 + Trajectory Non-anticipativity Volume + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100040000 + true + + + 1138 + 93 + 11 + 52 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100040000 + true + + + 1139 + 93 + 11 + 53 + Trajectory Lower Bound Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2504 + Price for running the storage below the stochastic optimal storage trajectory + 100040000 + true + + + 1140 + 93 + 11 + 54 + Trajectory Upper Bound Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2505 + Price for running the storage above the stochastic optimal storage trajectory + 100040000 + true + + + 1141 + 93 + 12 + 55 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + 40000 + true + + + 1142 + 93 + 12 + 56 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + 40000 + true + + + 1143 + 93 + 12 + 57 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + 40000 + true + + + 1144 + 97 + 1 + 1 + Initial Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2566 + Coefficient of storage initial volume. + 40000 + true + + + 1145 + 97 + 1 + 2 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + 40000 + true + + + 1146 + 97 + 1 + 3 + End Level Coefficient + 23 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1720 + Coefficient of storage end level. + 40000 + true + + + 1147 + 97 + 1 + 4 + Capacity Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2942 + Coefficient of energy storage capacity. + 40000 + true + + + 1148 + 97 + 1 + 5 + Ramp Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in storage end volume. + 40000 + true + + + 1149 + 97 + 1 + 6 + Natural Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + 40000 + true + + + 1150 + 97 + 1 + 7 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow. + 40000 + true + + + 1151 + 97 + 1 + 8 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release. + 40000 + true + + + 1152 + 97 + 1 + 9 + Generator Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1124 + Coefficient of generator release. + 40000 + true + + + 1153 + 97 + 1 + 10 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill. + 40000 + true + + + 1154 + 97 + 1 + 11 + Hours Full Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1712 + Coefficient of the number of hours the storage is full. + 40000 + true + + + 1155 + 97 + 1 + 12 + Loss Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1942 + Coefficient of the loss from the storage. + 40000 + true + + + 1156 + 98 + 1 + 1 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 1157 + 98 + 1 + 2 + End Level Coefficient + 23 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1720 + Coefficient of storage end level + true + + + 1158 + 98 + 1 + 3 + Ramp Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in storage end volume + true + + + 1159 + 98 + 1 + 4 + Natural Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + true + + + 1160 + 98 + 1 + 5 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow + true + + + 1161 + 98 + 1 + 6 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release + true + + + 1162 + 98 + 1 + 7 + Generator Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1124 + Coefficient of generator release + true + + + 1163 + 98 + 1 + 8 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill + true + + + 1164 + 98 + 1 + 9 + Hours Full Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1712 + Coefficient of the number of hours the storage is full + true + + + 1165 + 98 + 1 + 10 + Loss Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1942 + Coefficient of the loss from the storage + true + + + 1166 + 99 + 1 + 1 + Initial Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2566 + Coefficient of the initial volume in storage in the condition equation + true + + + 1167 + 99 + 1 + 2 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of the end volume in storage in the condition equation + true + + + 1168 + 99 + 1 + 3 + Initial Potential Energy Coefficient + 2 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2612 + Coefficient of the initial potential energy in storage in the condition equation + true + + + 1169 + 99 + 1 + 4 + End Potential Energy Coefficient + 2 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2613 + Coefficient of the end potential energy in storage in the condition equation + true + + + 1170 + 99 + 1 + 5 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow in the condition equation + true + + + 1171 + 99 + 1 + 6 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release in the condition equation + true + + + 1172 + 99 + 1 + 7 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill in the condition equation + true + + + 1173 + 100 + 1 + 1 + FCF Shadow Price + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1486 + Shadow price of water in storage in Future Cost Function + true + + + 1174 + 101 + 2 + 1 + Traversal Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 801 + Time taken for flows to traverse the waterway + 40000 + true + + + 1175 + 101 + 2 + 2 + Flow Control + 0 + 0 + In (0,1) + 0;"Economic";1;"Spill Only" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 899 + Waterway flow optimization method (0=economic, 1=flow when spilling only) + 40000 + true + + + 1176 + 101 + 3 + 3 + Max Flow + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow limit + 40001 + true + + + 1177 + 101 + 3 + 4 + Min Flow + 25 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 481 + Minimum flow limit + 40000 + true + + + 1178 + 101 + 3 + 5 + Initial Flow + 25 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1174 + Initial flow on the waterway for use in enforcing first period ramp constraint. + 40000 + true + + + 1179 + 101 + 3 + 6 + Max Ramp + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 446 + Maximum change in flow (MW or cumecs per hour) + 40000 + true + + + 1180 + 101 + 3 + 7 + Max Flow Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1164 + Penalty for violating the [Max Flow] constraint. + 40000 + true + + + 1181 + 101 + 3 + 8 + Min Flow Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 286 + Penalty for violating the [Min Flow] constraint. + 40000 + true + + + 1182 + 101 + 3 + 9 + Max Ramp Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 285 + Penalty for violating the [Max Ramp] constraint. + 40000 + true + + + 1183 + 101 + 3 + 10 + Input Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 319 + Input flow scalar + 40000 + true + + + 1184 + 101 + 3 + 11 + Output Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 592 + Output flow scalar + 40000 + true + + + 1185 + 101 + 12 + 12 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + 40000 + true + + + 1186 + 101 + 12 + 13 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + 40000 + true + + + 1187 + 101 + 12 + 14 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + 40000 + true + + + 1188 + 106 + 1 + 1 + Flow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of waterway flow. + 40000 + true + + + 1189 + 106 + 1 + 2 + Ramp Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in waterway flow. + 40000 + true + + + 1190 + 106 + 1 + 3 + Hours Flowing Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1713 + Coefficient of the number of hours the waterway is flowing + 40000 + true + + + 1191 + 107 + 1 + 1 + Flow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of waterway flow + true + + + 1192 + 107 + 1 + 2 + Ramp Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in waterway flow + true + + + 1193 + 107 + 1 + 3 + Hours Flowing Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1713 + Coefficient of the number of hours the waterway is flowing + true + + + 1194 + 108 + 3 + 1 + Price + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 612 + Price charged per unit of emission (accounting only) + 2000002000 + true + + + 1195 + 108 + 3 + 2 + Shadow Price + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 742 + Shadow price (marginal cost) of emissions + 2000002000 + true + + + 1196 + 108 + 9 + 3 + Max Production + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum emission production per interval + 2080 + true + + + 1197 + 108 + 9 + 3 + Max Production Hour + 19 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum emission production in hour + 2080 + true + + + 1198 + 108 + 9 + 3 + Max Production Day + 20 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum emission production in day + 2080 + true + + + 1199 + 108 + 9 + 3 + Max Production Week + 20 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum emission production in week + 2080 + true + + + 1200 + 108 + 9 + 3 + Max Production Month + 20 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum emission production in month + 2080 + true + + + 1201 + 108 + 9 + 3 + Max Production Year + 20 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum emission production in year + 2080 + true + + + 1202 + 108 + 9 + 4 + Max Production Penalty + 30 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1361 + Penalty for violation of [Max Production] constraints. + 2080 + true + + + 1203 + 108 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1204 + 108 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1205 + 108 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1206 + 111 + 1 + 1 + Production Rate + 40 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 627 + Emissions produced per MWh of generation + 2001 + true + + + 1207 + 111 + 1 + 2 + Removal Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 677 + Proportion of emissions removed (scrubbed) + 2000 + true + + + 1208 + 111 + 1 + 3 + Removal Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 911 + Incremental cost of emissions abatement + 2000 + true + + + 1209 + 111 + 1 + 4 + Production at Start + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 625 + Emissions produced at each unit start up + 80002000 + true + + + 1210 + 111 + 1 + 5 + Shadow Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 896 + Scalar on the incremental cost of generation for this emission + 2000002000 + true + + + 1211 + 111 + 1 + 6 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Scalar on the accounting cost of generation for this emission + 2000002000 + true + + + 1212 + 111 + 1 + 7 + Allocation + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3 + Emission rights allocation + 2080 + true + + + 1213 + 111 + 1 + 7 + Allocation Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1581 + Emission rights allocation + 2080 + true + + + 1214 + 111 + 1 + 7 + Allocation Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 4 + Emission rights allocation + 2080 + true + + + 1215 + 111 + 1 + 7 + Allocation Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 6 + Emission rights allocation + 2080 + true + + + 1216 + 111 + 1 + 7 + Allocation Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 5 + Emission rights allocation + 2080 + true + + + 1217 + 111 + 1 + 7 + Allocation Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 7 + Emission rights allocation + 2080 + true + + + 1218 + 111 + 1 + 8 + Fuel Production Rate + 39 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2036 + Emissions produced per unit of fuel usage + 2001 + true + + + 1219 + 112 + 1 + 1 + Production Rate + 39 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of energy + 2001 + true + + + 1220 + 113 + 1 + 1 + Production Rate + 63 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the Power2X object + 2000 + true + + + 1221 + 114 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the gas field + 2000 + true + + + 1222 + 115 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of gas + 2000 + true + + + 1223 + 116 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of fuel processed + 2000 + true + + + 1224 + 117 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the gas demand + 2000 + true + + + 1225 + 118 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas procured from the gas contract + 2000 + true + + + 1226 + 119 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of gas + 2000 + true + + + 1227 + 120 + 1 + 1 + Production Rate + 71 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of water + 2000 + true + + + 1228 + 121 + 1 + 1 + Distance Coefficient + 91 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2458 + Emissions produced per unit distance travelled + 2000 + true + + + 1229 + 121 + 1 + 2 + Charging Coefficient + 92 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2459 + Emissions produced per unit of charging + 2000 + true + + + 1230 + 122 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 626 + Amount of the Commodity produced (positive value) or consumed (negative value) per unit of the emission produced + 2000 + true + + + 1231 + 122 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Amount of the Commodity consumed (positive value) or produced (negative value) per unit of the emission abated + 2000 + true + + + 1232 + 123 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of the Primary Output of the Facility + 2001 + true + + + 1233 + 123 + 1 + 2 + Removal Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 677 + Proportion of emissions removed (scrubbed) + 2000 + true + + + 1234 + 124 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Emissions produced for each unit sold to the market + 2000 + true + + + 1235 + 124 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Emissions produced for each unit purchased from the market + 2000 + true + + + 1236 + 125 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of emission production + 2000 + true + + + 1237 + 125 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1238 + 126 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of emissions produced + 2000 + true + + + 1239 + 126 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1240 + 127 + 3 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Flag if emission abatement technology is installed + 802000 + true + + + 1241 + 127 + 3 + 2 + Abatement Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1426 + Cost per unit of emission removed + 2000002000 + true + + + 1242 + 127 + 3 + 3 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running emission abatement when generators are on-line + 20002000 + true + + + 1243 + 127 + 3 + 4 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 849 + Cost per unit of generation + 2000002000 + true + + + 1244 + 127 + 3 + 5 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1209 + Efficiency of emission abatement + 3000 + true + + + 1245 + 127 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed charge for emission abatement technology + A000 + true + + + 1246 + 127 + 7 + 7 + Units Out + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 818 + Flag if emission abatement technology is out-of-service + 1002000 + true + + + 1247 + 127 + 9 + 8 + Max Abatement + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1427 + Maximum emission abatement rate + 2080 + true + + + 1248 + 127 + 9 + 8 + Max Abatement Hour + 19 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2746 + Maximum abatement in an hour + 2080 + true + + + 1249 + 127 + 9 + 8 + Max Abatement Day + 20 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2747 + Maximum abatement in a day + 2080 + true + + + 1250 + 127 + 9 + 8 + Max Abatement Week + 20 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2748 + Maximum abatement in a week + 2080 + true + + + 1251 + 127 + 9 + 8 + Max Abatement Month + 20 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2749 + Maximum abatement in a month + 2080 + true + + + 1252 + 127 + 9 + 8 + Max Abatement Year + 20 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2750 + Maximum abatement in a year + 2080 + true + + + 1253 + 127 + 12 + 9 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1254 + 127 + 12 + 10 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1255 + 127 + 12 + 11 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1256 + 130 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator emissions that feed into the abatement technology + 2000 + true + + + 1257 + 131 + 1 + 1 + Consumption Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1428 + Consumption at notional zero generation level + 2000 + true + + + 1258 + 131 + 1 + 2 + Consumption Incr + 36 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1429 + Incremental consumption as a function of generation + 2000 + true + + + 1259 + 132 + 1 + 1 + Abatement Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1426 + Cost per unit of emission removed for this emission + 2000 + true + + + 1260 + 132 + 1 + 2 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Efficiency of emission abatement for this emission + 2000 + true + + + 1261 + 132 + 1 + 3 + Max Abatement + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1427 + Maximum emission abatement rate for this emission + 2000 + true + + + 1262 + 133 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas field emissions that feed into the abatement technology + 2000 + true + + + 1263 + 134 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas plant emissions that feed into the abatement technology + 2000 + true + + + 1264 + 135 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas node emissions that feed into the abatement technology + 2000 + true + + + 1265 + 136 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas demand emissions that feed into the abatement technology + 2000 + true + + + 1266 + 137 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas contracts emissions that feed into the abatement technology + 2000 + true + + + 1267 + 138 + 1 + 1 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1268 + 138 + 1 + 2 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours the emission abatement technology is running + 2000 + true + + + 1269 + 139 + 1 + 1 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + true + + + 1270 + 139 + 1 + 2 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours the emission abatement technology is running + true + + + 1271 + 140 + 2 + 1 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer/Bid Quantity] and [Offer/Bid Price] + 100 + true + + + 1272 + 140 + 2 + 2 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Physical Contract can set price + 4000000 + true + + + 1273 + 140 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Physical Contract is in service + 800000 + true + + + 1274 + 140 + 3 + 4 + Max Generation + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 431 + Maximum generation cleared on physical contract + 5 + true + + + 1275 + 140 + 3 + 5 + Max Load + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 436 + Maximum load cleared on physical contract + 5 + true + + + 1276 + 140 + 3 + 6 + Min Generation + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 483 + Minimum generation cleared on physical contract + 80 + true + + + 1277 + 140 + 3 + 7 + Min Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 486 + Minimum load cleared on physical contract + 80 + true + + + 1278 + 140 + 4 + 8 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 572 + MW offer in band + 400000 + true + + + 1279 + 140 + 4 + 9 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 569 + Price of energy in band + 400000 + true + + + 1280 + 140 + 4 + 10 + Bid Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 34 + MW bid in band + 400000 + true + + + 1281 + 140 + 4 + 11 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 33 + Value of energy in band + 400000 + true + + + 1282 + 140 + 6 + 12 + Firm Capacity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the generation to capacity reserves. + C + true + + + 1283 + 140 + 6 + 13 + Load Obligation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Load obligation for capacity reserves. + C + true + + + 1284 + 140 + 8 + 14 + Capacity Charge + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 199 + Hourly fixed charge for contract capacity + 8008 + true + + + 1285 + 140 + 8 + 14 + Capacity Charge Hour + 52 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1564 + Hourly fixed charge for contract capacity + 8008 + true + + + 1286 + 140 + 8 + 14 + Capacity Charge Day + 51 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 201 + Daily fixed charge for contract capacity + 8008 + true + + + 1287 + 140 + 8 + 14 + Capacity Charge Week + 50 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 871 + Weekly fixed charge for contract capacity + 8008 + true + + + 1288 + 140 + 8 + 14 + Capacity Charge Month + 49 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 872 + Monthly fixed charge for contract capacity + 8008 + true + + + 1289 + 140 + 8 + 14 + Capacity Charge Year + 31 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 873 + Annual fixed charge for contract capacity + 8008 + true + + + 1290 + 140 + 8 + 15 + Max Generation Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 874 + Maximum generation capacity that can be contracted (LT Plan) + 8 + true + + + 1291 + 140 + 8 + 16 + Max Load Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 875 + Maximum load capacity that can be contracted (LT Plan) + 8 + true + + + 1292 + 140 + 8 + 17 + Min Generation Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 973 + Minimum generation capacity contracted (LT Plan) + 8 + true + + + 1293 + 140 + 8 + 18 + Min Load Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 974 + Minimum load capacity contracted (LT Plan) + 8 + true + + + 1294 + 140 + 11 + 19 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1295 + 140 + 12 + 20 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1296 + 140 + 12 + 21 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1297 + 140 + 12 + 22 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1298 + 145 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of physical contract + 40 + true + + + 1299 + 146 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of cleared load bids + 400000 + true + + + 1300 + 146 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of cleared generation offers + 400000 + true + + + 1301 + 146 + 3 + 3 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient of 0,1 value indicating if the physical contracting is generating. + 1000000000 + true + + + 1302 + 146 + 3 + 4 + Units Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1118 + Coefficient of 0,1 value indicating if the physical contracting is a load. + 1000000000 + true + + + 1303 + 146 + 6 + 5 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity contracted (LT Plan) + 4 + true + + + 1304 + 146 + 6 + 6 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of total load obligation contracted (LT Plan) + 4 + true + + + 1305 + 146 + 8 + 7 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 1306 + 147 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of cleared load bids + true + + + 1307 + 147 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of cleared generation offers + true + + + 1308 + 147 + 3 + 3 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient of 0,1 value indicating if the physical contracting is generating + true + + + 1309 + 147 + 3 + 4 + Units Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1118 + Coefficient of 0,1 value indicating if the physical contracting is a load + true + + + 1310 + 147 + 6 + 5 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity contracted + true + + + 1311 + 147 + 6 + 6 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of total load obligation contracted + true + + + 1312 + 147 + 8 + 7 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 1313 + 148 + 2 + 1 + Benefit Function Shape + 0 + 1 + In (0,1) + 0;"Linear";1;"Quadratic" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 29 + Shape of the benefit function. + 100 + true + + + 1314 + 148 + 2 + 2 + Max Benefit Function Tranches + 0 + 10 + >=1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 412 + Maximum number of tranches in the piecewise linear benefit function. + 100 + true + + + 1315 + 148 + 2 + 3 + Interruptible Load Logic + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 13 + If the interruptible load supplied by the Purchaser is limited by the amount of cleared load bids. + 2 + true + + + 1316 + 148 + 2 + 4 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Purchaser can set price + 4000000 + true + + + 1317 + 148 + 2 + 5 + Load Settlement Source + 0 + 0 + In (0,1) + 0;"Node";1;"Region"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2728 + Source used to determine price paid by loads. + 4000000 + true + + + 1318 + 148 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Purchaser is in service + 800000 + true + + + 1319 + 148 + 3 + 7 + Min Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 486 + Minimum load if any load is cleared. + 100480 + true + + + 1320 + 148 + 3 + 8 + Max Load + 1 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 436 + Maximum load (sum of cleared demand bids) + 100480 + true + + + 1321 + 148 + 3 + 9 + Fixed Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load + 100480 + true + + + 1322 + 148 + 3 + 10 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 480 + true + + + 1323 + 148 + 3 + 11 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 480 + true + + + 1324 + 148 + 9 + 12 + Max Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 423 + Maximum energy + 480 + true + + + 1325 + 148 + 9 + 12 + Max Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1548 + Maximum energy in hour + 480 + true + + + 1326 + 148 + 9 + 12 + Max Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 424 + Maximum energy in day + 480 + true + + + 1327 + 148 + 9 + 12 + Max Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 426 + Maximum energy in week + 480 + true + + + 1328 + 148 + 9 + 12 + Max Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 425 + Maximum energy in month + 480 + true + + + 1329 + 148 + 9 + 12 + Max Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 427 + Maximum energy in year + 480 + true + + + 1330 + 148 + 9 + 13 + Min Energy + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1110 + Minimum energy + 480 + true + + + 1331 + 148 + 9 + 13 + Min Energy Hour + 1 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1549 + Minimum energy in hour + 480 + true + + + 1332 + 148 + 9 + 13 + Min Energy Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1111 + Minimum energy in day + 480 + true + + + 1333 + 148 + 9 + 13 + Min Energy Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1112 + Minimum energy in week + 480 + true + + + 1334 + 148 + 9 + 13 + Min Energy Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1113 + Minimum energy in month + 480 + true + + + 1335 + 148 + 9 + 13 + Min Energy Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1114 + Minimum energy in year + 480 + true + + + 1336 + 148 + 9 + 14 + Max Load Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1100 + Maximum load factor + 480 + true + + + 1337 + 148 + 9 + 14 + Max Load Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1567 + Maximum load factor in hour + 480 + true + + + 1338 + 148 + 9 + 14 + Max Load Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1101 + Maximum load factor in day + 480 + true + + + 1339 + 148 + 9 + 14 + Max Load Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1102 + Maximum load factor in week + 480 + true + + + 1340 + 148 + 9 + 14 + Max Load Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1103 + Maximum load factor in month + 480 + true + + + 1341 + 148 + 9 + 14 + Max Load Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1104 + Maximum load factor in year + 480 + true + + + 1342 + 148 + 9 + 15 + Min Load Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1105 + Minimum load factor + 480 + true + + + 1343 + 148 + 9 + 15 + Min Load Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1568 + Minimum load factor in hour + 480 + true + + + 1344 + 148 + 9 + 15 + Min Load Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1106 + Minimum load factor in day + 480 + true + + + 1345 + 148 + 9 + 15 + Min Load Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1107 + Minimum load factor in week + 480 + true + + + 1346 + 148 + 9 + 15 + Min Load Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1108 + Minimum load factor in month + 480 + true + + + 1347 + 148 + 9 + 15 + Min Load Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1109 + Minimum load factor in year + 480 + true + + + 1348 + 148 + 9 + 16 + Max Energy Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1190 + Penalty applied to violations of [Max Energy] and [Max Load Factor] constraints. + 480 + true + + + 1349 + 148 + 9 + 17 + Min Energy Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1191 + Penalty applied to violations of [Min Energy] and [Min Load Factor] constraints. + 480 + true + + + 1350 + 148 + 3 + 18 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) + 600000 + true + + + 1351 + 148 + 4 + 19 + Bid Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 34 + Quantity bid in band + 401 + true + + + 1352 + 148 + 4 + 20 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 33 + Value of energy in band + 401 + true + + + 1353 + 148 + 4 + 21 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Purchaser Load rating for application in RSI capacity calculations. + 40 + true + + + 1354 + 148 + 3 + 22 + Tariff + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 784 + Price paid by customers for load bid cleared + 2000000000 + true + + + 1355 + 148 + 3 + 23 + Demand Fn Slope + 33 + 0 + <=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 138 + Demand function slope + 400 + true + + + 1356 + 148 + 3 + 24 + Demand Fn Intercept + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 137 + Demand function vertical intercept + 400 + true + + + 1357 + 148 + 6 + 25 + Load Obligation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Load obligation for capacity reserves. + 404 + true + + + 1358 + 148 + 12 + 26 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1359 + 148 + 12 + 27 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1360 + 148 + 12 + 28 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1361 + 151 + 1 + 1 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of purchaser load taken at the node + 40 + true + + + 1362 + 152 + 1 + 1 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of installed units at the Node + 800000 + true + + + 1363 + 153 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 1364 + 154 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of purchaser demand + 400 + true + + + 1365 + 154 + 1 + 2 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of load obligation in the constraint + 404 + true + + + 1366 + 154 + 1 + 3 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of reserve provision + 2 + true + + + 1367 + 155 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of purchaser demand + true + + + 1368 + 155 + 1 + 2 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of load obligation + true + + + 1369 + 155 + 1 + 3 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of interruptible load provision + true + + + 1370 + 156 + 2 + 1 + Type + 0 + 1 + In (1,2,3,4,5,6,7,8) + 1;"Raise";2;"Lower";7;"Regulation";3;"Regulation Raise";4;"Regulation Lower";5;"Replacement";6;"Operational";8;"Inertia" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 927 + Reserve type + 3 + true + + + 1371 + 156 + 2 + 2 + Mutually Exclusive + 0 + 0 + In (0,1,2) + 0;"Auto";1;"Yes";2;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 998 + If generation capacity providing this reserve is mutually exclusive to other reserves + 82 + true + + + 1372 + 156 + 2 + 3 + Dynamic Risk + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 12 + If elements in the Generator Contingencies and Line Contingencies collections are considered for dynamic risk calculations + 2 + true + + + 1373 + 156 + 2 + 4 + Cost Allocation Model + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Runway";2;"Probabilistic Runway";3;"Prorata" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 11 + Reserve cost allocation method. + 2 + true + + + 1374 + 156 + 2 + 5 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 335 + Flag if the reserve is enabled + 800002 + true + + + 1375 + 156 + 2 + 6 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 301 + If the reserve is modelled in the LT Plan phase. + 800002 + true + + + 1376 + 156 + 2 + 7 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 302 + If the reserve is modelled in the MT Schedule phase. + 800002 + true + + + 1377 + 156 + 2 + 8 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 305 + If the reserve is modelled in the ST Schedule phase. + 800002 + true + + + 1378 + 156 + 2 + 9 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 810 + If the set of Generators providing the Reserve is optimized or always includes all members of the Reserve Generators collection. + 1000000002 + true + + + 1379 + 156 + 2 + 10 + Sharing Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1384 + If sharing of reserve across the transmission network is enabled. + 800000002 + true + + + 1380 + 156 + 2 + 11 + Sharing Losses Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1385 + If sharing of reserve accounts for transmission losses. + 800000002 + true + + + 1381 + 156 + 2 + 12 + Energy Usage For Replacement + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2145 + If Reserve energy usage is used for replacement reserve. + 40002 + true + + + 1382 + 156 + 3 + 13 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 489 + Minimum required reserve + 82 + true + + + 1383 + 156 + 3 + 14 + Static Risk + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 1004 + Additional static risk over and above dynamic risk + 82 + true + + + 1384 + 156 + 3 + 15 + Timeframe + 5 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 788 + Timeframe in which the reserve is required + 2 + true + + + 1385 + 156 + 3 + 16 + Duration + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1476 + Time over which the required response must be maintained + 2 + true + + + 1386 + 156 + 3 + 17 + Max Provision + 1 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 443 + Maximum provision allowed for reserve class + 82 + true + + + 1387 + 156 + 3 + 18 + Max Sharing + 1 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2881 + Maximum reserve contribution from other regions/zones + 82 + true + + + 1388 + 156 + 3 + 19 + Risk Adjustment Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 707 + Proportion of contingency size (MW reserve/MW contingency) + 2 + true + + + 1389 + 156 + 3 + 20 + Energy Usage + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Percentage of reserve dispatched in energy market + 40002 + true + + + 1390 + 156 + 3 + 21 + VoRS + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 851 + Value of reserve shortage (-1 sets hard constraint) + 40000002 + true + + + 1391 + 156 + 3 + 22 + Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on Reserve Price for settlement + 4000002 + true + + + 1392 + 156 + 3 + 23 + Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on Reserve Price for settlement + 4000002 + true + + + 1393 + 156 + 3 + 24 + Cut-off Size + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 124 + The size below which a generator will not be considered for a share in reserve costs + 2 + true + + + 1394 + 156 + 3 + 25 + Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 612 + Price + 4000002 + true + + + 1395 + 156 + 12 + 26 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1396 + 156 + 12 + 27 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1397 + 156 + 12 + 28 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1398 + 159 + 1 + 1 + Initial Pump Load Raise Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1934 + Pump load raise reserve provision at time zero + 82 + true + + + 1399 + 159 + 1 + 2 + Initial Raise Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1935 + Generator raise reserve provision at time zero + 82 + true + + + 1400 + 159 + 1 + 3 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum spinning reserve response from generation adjustments + 82 + true + + + 1401 + 159 + 1 + 4 + Max Sync Cond Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 458 + Maximum synchronous condenser reserve response + 82 + true + + + 1402 + 159 + 1 + 5 + Max Pump Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 444 + Maximum dispatchable pump load reserve response + 82 + true + + + 1403 + 159 + 1 + 6 + Total Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2782 + Maximum reserve response from generation, pumped load and synchronous condenser adjustments + 82 + true + + + 1404 + 159 + 1 + 7 + Max Replacement + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 452 + Maximum replacement (non-spinning) reserve capability + 82 + true + + + 1405 + 159 + 1 + 8 + Max Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1318 + Maximum spinning reserve response as a proportion of generation capacity + 82 + true + + + 1406 + 159 + 1 + 9 + Max Sync Cond Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1319 + Maximum synchronous condenser reserve response as a proportion of generation capacity + 82 + true + + + 1407 + 159 + 1 + 10 + Max Pump Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1320 + Maximum dispatchable pump load reserve response as a proportion of pump load + 82 + true + + + 1408 + 159 + 1 + 11 + Max Replacement Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1321 + Maximum replacement (non-spinning) reserve capability as a proportion of generation capacity + 82 + true + + + 1409 + 159 + 1 + 12 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 489 + Minimum reserve provision when generator is available + 82 + true + + + 1410 + 159 + 1 + 13 + Min Spinning Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1376 + Minimum spinning reserve provision when units are generating + 82 + true + + + 1411 + 159 + 1 + 14 + Min Regulation Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1377 + Minimum regulation reserve provision when units are in the regulation range + 82 + true + + + 1412 + 159 + 1 + 15 + Min Replacement Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1742 + Minimum replacement reserve provision when units are off-line + 82 + true + + + 1413 + 159 + 1 + 16 + Effectiveness + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 162 + Estimated reserve effectiveness (MW/MW) + 82 + true + + + 1414 + 159 + 1 + 17 + Response Ratio + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 694 + Ratio that converts energy ramping to units comparable to reserve ramping units + 82 + true + + + 1415 + 159 + 1 + 18 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Reserve offer quantity in offer band + 400002 + true + + + 1416 + 159 + 1 + 19 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Reserve offer price in offer band + 400002 + true + + + 1417 + 159 + 1 + 20 + Sync Cond Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 773 + Synchronous condenser reserve offer price + 440002 + true + + + 1418 + 159 + 1 + 21 + Pump Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 644 + Dispatchable pump load reserve offer price + 8440002 + true + + + 1419 + 159 + 1 + 22 + Replacement Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1731 + Replacement reserve offer quantity in offer band + 400002 + true + + + 1420 + 159 + 1 + 23 + Replacement Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1732 + Replacement reserve offer price in offer band + 400002 + true + + + 1421 + 162 + 1 + 1 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum reserve response + 82 + true + + + 1422 + 163 + 1 + 1 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum reserve response from discharging generation adjustment + 82 + true + + + 1423 + 163 + 1 + 2 + Max Charge Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2385 + Maximum reserve response from charging load adjustment + 82 + true + + + 1424 + 163 + 1 + 3 + Max Replacement + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 452 + Maximum replacement (non-spinning) reserve capability + 82 + true + + + 1425 + 163 + 1 + 4 + Max Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1318 + Maximum reserve response as a proportion of generation capacity + 82 + true + + + 1426 + 163 + 1 + 5 + Max Charge Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2386 + Maximum dispatchable charging load reserve response as a proportion of charge load + 82 + true + + + 1427 + 163 + 1 + 6 + Max Replacement Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1321 + Maximum replacement (non-spinning) reserve capability as a proportion of generation capacity + 82 + true + + + 1428 + 163 + 1 + 7 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 489 + Minimum reserve provision when generator is available + 82 + true + + + 1429 + 163 + 1 + 8 + Min Spinning Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1376 + Minimum spinning reserve provision when units are generating + 82 + true + + + 1430 + 163 + 1 + 9 + Min Regulation Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1377 + Minimum regulation reserve provision when units are in the regulation range + 82 + true + + + 1431 + 163 + 1 + 10 + Min Replacement Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1742 + Minimum replacement reserve provision when units are off-line + 82 + true + + + 1432 + 163 + 1 + 11 + Effectiveness + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 162 + Estimated reserve effectiveness (MW/MW) + 82 + true + + + 1433 + 163 + 1 + 12 + Response Ratio + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 694 + Ratio that converts energy ramping to units comparable to reserve ramping units + 82 + true + + + 1434 + 163 + 1 + 13 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Reserve offer quantity in offer band + 400002 + true + + + 1435 + 163 + 1 + 14 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Reserve offer price in offer band + 400002 + true + + + 1436 + 163 + 1 + 15 + Charge Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2226 + Charging reserve offer price + 400002 + true + + + 1437 + 163 + 1 + 16 + Total Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2782 + Maximum reserve response from charge and discharge adjustments + 82 + true + + + 1438 + 165 + 1 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Interruptible load offer price + 400002 + true + + + 1439 + 165 + 1 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Interruptible load offer quantity + 400002 + true + + + 1440 + 166 + 1 + 1 + Cascading + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2229 + If the relationship between the reserves is cascading or not + 2 + true + + + 1441 + 167 + 1 + 1 + Load Risk + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 140 + Percentage of region's load at risk + 2 + true + + + 1442 + 167 + 1 + 2 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this region + 82 + true + + + 1443 + 168 + 1 + 1 + Load Risk + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 140 + Percentage of zone's load at risk + 2 + true + + + 1444 + 168 + 1 + 2 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this zone + 82 + false + + + 1445 + 169 + 1 + 1 + Max Sharing + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2881 + Maximum amount of reserve shared on the line + 82 + true + + + 1446 + 170 + 1 + 1 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Multiplier on line flow in the reference direction in setting the contingency size (Risk >= Coefficient * Flow Forward) + 2 + true + + + 1447 + 170 + 1 + 2 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Multiplier on line flow in the counter reference direction in setting the contingency size (Risk >= Coefficient * Flow Back) + 2 + true + + + 1448 + 172 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + 2 + true + + + 1449 + 172 + 1 + 2 + Sharing Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2883 + Coefficient of reserve shared from other regions/zones + 2 + true + + + 1450 + 172 + 1 + 3 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + 2 + true + + + 1451 + 172 + 1 + 4 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + 40000002 + true + + + 1452 + 173 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + true + + + 1453 + 173 + 1 + 2 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + true + + + 1454 + 173 + 1 + 3 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + true + + + 1455 + 174 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + true + + + 1456 + 174 + 1 + 2 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + true + + + 1457 + 174 + 1 + 3 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + true + + + 1458 + 175 + 2 + 1 + Perform EFC Evaluation + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2218 + Flag indicating if the EFC should be evaluated for the Reliability object. + true + + + 1459 + 175 + 2 + 2 + EFC Risk Metric + 0 + 0 + In (0,1) + 0;"LOLE Hours";1;"EENS" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2160 + Risk Metric for EFC evaluation. + true + + + 1460 + 175 + 2 + 3 + Max EFC Iterations + 0 + 20 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2216 + Maximum number of ST Schedule iterations for EFC evaluation. + true + + + 1461 + 175 + 2 + 4 + EFC Convergence Threshold + 12 + 1 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2217 + Convergence criteria for Reliability evaluation. + true + + + 1462 + 175 + 2 + 5 + EFC Initial Estimate + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2215 + Initial Firm Capacity Estimate for the set of generators associated with the Reliability object. + true + + + 1463 + 175 + 3 + 6 + Simplify Generator Properties + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2219 + Flag indicating if Generator properties should be ignored for the model. + true + + + 1464 + 175 + 3 + 7 + Skip Steps + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2220 + Indicates steps that should be skipped. + true + + + 1465 + 175 + 12 + 8 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to a solution. + true + + + 1466 + 175 + 12 + 9 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to a solution + true + + + 1467 + 175 + 12 + 10 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to a solution + true + + + 1468 + 180 + 2 + 1 + Is Physical + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1295 + If the contract quantity must be matched by physical generation/load. + 4000000 + true + + + 1469 + 180 + 3 + 2 + Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 650 + Contract quantity + 5 + true + + + 1470 + 180 + 3 + 3 + Floor Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 204 + Contract floor price + 4000001 + true + + + 1471 + 180 + 3 + 4 + Cap Price + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 53 + Contract cap price + 4000001 + true + + + 1472 + 183 + 1 + 1 + Generation Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator load that is settled in the contract + 40 + true + + + 1473 + 184 + 1 + 1 + Load Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of region load that is settled in the contract + 40 + true + + + 1474 + 186 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of contract + 40 + true + + + 1475 + 187 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of contract + 40 + true + + + 1476 + 189 + 1 + 1 + Demand Intercept + 33 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 139 + Demand function vertical intercept + 40 + true + + + 1477 + 189 + 1 + 2 + Demand Slope + 56 + 0 + <0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 142 + Long-run demand function slope + 40 + true + + + 1478 + 193 + 2 + 1 + Allow Negative Mark-ups + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 980 + Flag if negative calculated markups are allowed or truncated at zero + 4000040 + true + + + 1479 + 193 + 1 + 2 + RSI + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 712 + Residual Supply Index + 4000040 + true + + + 1480 + 193 + 1 + 3 + Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 344 + Lerner Index (P-C)/P + 4000040 + true + + + 1481 + 193 + 1 + 4 + Bounded Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 43 + Lerner Index (P-C)/P + 4000040 + true + + + 1482 + 193 + 1 + 5 + Intercept + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 323 + Intercept in LI equation + 4000040 + true + + + 1483 + 193 + 1 + 6 + RSI Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 714 + RSI Coefficient in LI equation + 4000040 + true + + + 1484 + 193 + 1 + 7 + RSI-squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 717 + RSI-squared Coefficient in LI equation + 4000040 + true + + + 1485 + 193 + 1 + 8 + Load Unhedged Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 361 + Load Unhedged Coefficient in LI equation + 4000040 + true + + + 1486 + 193 + 1 + 9 + RSI Inverse Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 716 + RSI Inverse Coefficient + 4000040 + true + + + 1487 + 193 + 1 + 10 + Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Load Coefficient in LI equation + 4000040 + true + + + 1488 + 193 + 1 + 11 + Load Capacity Ratio Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 351 + Load Capacity Ratio Coefficient in LI equation + 4000040 + true + + + 1489 + 193 + 1 + 12 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Capacity Factor Coefficient in LI equation + 4000040 + true + + + 1490 + 193 + 1 + 13 + Load Variation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 363 + Load Variation Coefficient in LI equation + 4000040 + true + + + 1491 + 193 + 1 + 14 + Summer Period Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 769 + Summer Period Coefficient in LI equation + 4000040 + true + + + 1492 + 193 + 1 + 15 + Peak Period Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 601 + Peak Period Coefficient + 4000040 + true + + + 1493 + 193 + 1 + 16 + Average Load + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 26 + Average Load used in computation of Load Variation + 4000040 + true + + + 1494 + 193 + 1 + 17 + Lerner Index t-statistic + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 347 + T-statistic applied in low/high LI scenarios. + 4000040 + true + + + 1495 + 193 + 1 + 18 + Lerner Index Std Dev + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 346 + Standard deviation applied in low/high LI scenarios. + 4000040 + true + + + 1496 + 193 + 1 + 19 + Lerner Index Calibration Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 345 + Calibration factor added to Lerner Index + 4000040 + true + + + 1497 + 193 + 1 + 20 + Min Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 484 + Lower bound on Lerner Index + 40000C0 + true + + + 1498 + 193 + 1 + 21 + Max Lerner Index + 0 + 0.9 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 434 + Upper bound on Lerner Index + 40000C0 + true + + + 1499 + 200 + 2 + 1 + Generator Settlement Model + 0 + 0 + In (0,1,2,3,4,5,6,7) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average";3;"Pay-as-Bid";4;"Uniform";5;"None";6;"Custom";7;"Most Expensive Dispatched" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 252 + Model used to determine price paid to generators. + 4000000 + true + + + 1500 + 200 + 2 + 2 + Load Settlement Model + 0 + 2 + In (0,1,2,3,4,5,6,7) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average";3;"Pay-as-Bid";4;"Uniform";5;"None";6;"Custom";7;"Most Expensive Dispatched" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 359 + Model used to determine price paid by loads. + 4000000 + true + + + 1501 + 200 + 2 + 3 + Uniform Pricing Pumped Storage Price Setting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 805 + If pumped storage can set the SMP + 4000000 + true + + + 1502 + 200 + 2 + 4 + Uniform Pricing Relax Transmission Limits + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 809 + If transmission limits are relaxed in calculating SMP + 4000000 + true + + + 1503 + 200 + 2 + 5 + Uniform Pricing Relax Generic Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 808 + If other generic constraints are relaxed in calculating SMP + 4000000 + true + + + 1504 + 200 + 2 + 6 + Uniform Pricing Relax Generator Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 807 + If generator non-technical constraints are relaxed in calculating SMP + 4000000 + true + + + 1505 + 200 + 2 + 7 + Uniform Pricing Relax Ancillary Services + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 806 + If ancillary service requirements are relaxed in calculating SMP + 4000000 + true + + + 1506 + 200 + 2 + 8 + Uplift Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 833 + If uplift is added to market prices + 4000000 + true + + + 1507 + 200 + 2 + 9 + Uplift Cost Basis + 0 + 1 + In (1,2) + 1;"Cost-based";2;"Bid-based" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 830 + Basis for calculating generation cost for uplift calculations (cost-based or bid-base) + 4000000 + true + + + 1508 + 200 + 2 + 10 + Uplift Compatibility + 0 + 1 + In (1,2,3) + 1;"CBP";2;"SEM";3;"Custom" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 829 + Uplift calculation compatibility (match to market being modelled) + 4000000 + true + + + 1509 + 200 + 2 + 11 + Uplift Alpha + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 827 + Alpha parameter for SEM-style uplift payment (weight on total generation revenues) + 4000000 + true + + + 1510 + 200 + 2 + 12 + Uplift Beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 828 + Beta parameter for SEM-style uplift payment (weight on squared deviations from shadow price) + 4000000 + true + + + 1511 + 200 + 2 + 13 + Uplift Delta + 0 + 5 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1080 + Delta parameter for SEM-style uplift payment (proportion of shadow total system revenues after uplift) + 4000000 + true + + + 1512 + 200 + 2 + 14 + Uplift Include Start Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 835 + If the uplift calculation should include recovery of start costs + 4000000 + true + + + 1513 + 200 + 2 + 15 + Uplift Include No-Load Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 834 + If the uplift calculation should include recovery of no-load costs + 4000000 + true + + + 1514 + 200 + 2 + 16 + Uplift Detect Active Min Stable Level Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 831 + If the uplift calculation should exclude units running at min stable level + 4000000 + true + + + 1515 + 200 + 2 + 17 + Uplift Detect Active Ramp Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 832 + If the uplift calculation should exclude generators on ramp limits + 4000000 + true + + + 1516 + 200 + 2 + 18 + Include in Marginal Unit + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1446 + Flag if the region is included in the Region Marginal Unit Diagnostic + 800 + true + + + 1517 + 200 + 2 + 19 + Include in Uplift + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1362 + If uplift is allowed in the period + 4000000 + true + + + 1518 + 200 + 2 + 20 + Include in Kron Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2699 + A flag indicating if the selected region should be included in the Kron-reduction algorithm + true + + + 1519 + 200 + 2 + 21 + Constraint Payments Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 97 + Constraint payments compatibility (match to market being modelled) + 4000000 + true + + + 1520 + 200 + 2 + 22 + Constraint Payments Compatibility + 0 + 1 + In (1,2) + 1;"CBP";2;"SEM" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 96 + Constraint payments compatibility (match to market being modeled) + 4000000 + true + + + 1521 + 200 + 2 + 23 + Load Metering Point + 0 + 0 + In (0,1) + 0;"Generator Terminal";1;"Sent Out" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 930 + Metering point for input loads in the region + 200000 + true + + + 1522 + 200 + 2 + 24 + Load Includes Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 353 + Flag if input load includes transmission losses + 200000 + true + + + 1523 + 200 + 2 + 25 + Aggregate Transmission + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2 + If transmission should be aggregated to the region level + 2000000 + true + + + 1524 + 200 + 2 + 26 + Pool Type + 0 + 0 + In (0,1) + 0;"Gross Pool";1;"Net Pool" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 610 + Gross or Net Pool for settlement of Financial Contracts in the Region. + 4000000 + true + + + 1525 + 200 + 2 + 27 + MLF Adjusts Offer Price + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1196 + If Generator [Marginal Loss Factor] adjusts [Offer Price]. + 600000 + true + + + 1526 + 200 + 2 + 28 + MLF Adjusts Bid Price + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1197 + If Purchaser [Marginal Loss Factor] adjusts [Bid Price]. + 200000 + true + + + 1527 + 200 + 2 + 29 + MLF Adjusts No Load Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1198 + If Generator [Marginal Loss Factor] adjusts [Offer No Load Cost]. + 200000 + true + + + 1528 + 200 + 2 + 30 + MLF Adjusts Start Cost + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1199 + If Generator [Marginal Loss Factor] adjusts [Start Cost]. + 200000 + true + + + 1529 + 200 + 2 + 31 + Include in Region Supply + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 304 + Flag if the region is included in the Region Supply Diagnostic + 800 + true + + + 1530 + 200 + 2 + 32 + Transmission Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1673 + If transmission line constraints are enabled in this region. + 80 + true + + + 1531 + 200 + 2 + 33 + Transmission Constraint Voltage Threshold + 4 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1674 + Voltage level at which thermal limits are modeled in this region. + 80 + true + + + 1532 + 200 + 2 + 34 + Transmission Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1675 + If interface constraints are enabled in this region. + 80 + true + + + 1533 + 200 + 2 + 35 + Enforce Transmission Limits On Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1676 + If lines in interfaces should have their limits enforced regardless of voltage in this region. + 80 + true + + + 1534 + 200 + 2 + 36 + Transmission Report Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1677 + If transmission reporting is enabled in this region. + true + + + 1535 + 200 + 2 + 37 + Transmission Report Voltage Threshold + 4 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1678 + Voltage level at which transmission reporting begins in this region. + true + + + 1536 + 200 + 2 + 38 + Transmission Report Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1679 + If all flows on lines selected interfaces are reported in this region. + true + + + 1537 + 200 + 2 + 39 + Transmission Report Injection and Load Nodes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1680 + If all injection and load buses (nodes) are reported on (regardless of voltage) in this region. + true + + + 1538 + 200 + 2 + 40 + Transmission Clustering Level + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2026 + Cluster nodes until this number of equivalent nodes remain (-1 means no clustering) + true + + + 1539 + 200 + 2 + 41 + Transmission Clustering Tolerance + 12 + 100 + Between 0 and 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2027 + Cluster nodes until this level of accuracy is reached (100% means no clustering) + true + + + 1540 + 200 + 2 + 42 + Report Objects in Region + 0 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1807 + If objects in the Region such as Nodes, Lines, Generators, etc should be reported. + true + + + 1541 + 200 + 2 + 43 + Wheeling Method + 0 + 1 + In (1,2) + 1;"Net";2;"Gross" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1777 + Export wheeling charge method + 800000000 + true + + + 1542 + 200 + 2 + 44 + Decomposition Group + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1972 + The decomposition group that the region belongs to. + true + + + 1543 + 200 + 2 + 45 + Capacity Expansion Group + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2676 + The capacity expansion group that the region belongs to for LT decomposition. + true + + + 1544 + 200 + 2 + 46 + Solution Detail + 0 + 1 + In (1,2,3) + 1;"SCUC";2;"SCED";3;"Static" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2066 + Solution detail to be used for the region + true + + + 1545 + 200 + 2 + 47 + Unserved Energy Method + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Greedy Response";2;"Min LOLE";3;"Min Residual Shortfall" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2136 + Unserved Energy Method to be used for the region + true + + + 1546 + 200 + 2 + 48 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1547 + 200 + 2 + 49 + Report Marginal Resources + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2623 + If marginal resources are reported for the region in the solution + true + + + 1548 + 200 + 3 + 50 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Region is included in the simulation. + 800000 + true + + + 1549 + 200 + 3 + 51 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + true + true + true + 1 + 349 + Load + 100001 + true + + + 1550 + 200 + 3 + 52 + Load Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 358 + Scale factor for raw load figures (to convert as required to nodal load) + 100000 + true + + + 1551 + 200 + 3 + 53 + Fixed Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load + 100000 + true + + + 1552 + 200 + 3 + 54 + Fixed Generation + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 198 + Fixed (or embedded) generation + 100000 + true + + + 1553 + 200 + 3 + 55 + VoLL + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 847 + Value of lost load (VoLL) + 40000001 + true + + + 1554 + 200 + 3 + 56 + Price of Dump Energy + 33 + -1000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 616 + Price of dump energy per MWh (1=hard constraint) + 40000001 + true + + + 1555 + 200 + 3 + 57 + Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on generator offer prices + 4000000 + true + + + 1556 + 200 + 3 + 58 + Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on generator offer prices + 4000000 + true + + + 1557 + 200 + 3 + 59 + Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 612 + Price + 4000000 + true + + + 1558 + 200 + 3 + 60 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge on exports from the region + 2000000000 + true + + + 1559 + 200 + 3 + 61 + Fixed Cost Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 195 + This parameter is a percentage to represent the amount of fixed cost considered in the recovery algorithm (but PLEXOS will still report the full amount of fixed costs on each generator/line) + 8040 + true + + + 1560 + 200 + 3 + 62 + Elasticity + 56 + -0.2 + <0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1273 + Price elasticity of demand + 40 + true + + + 1561 + 200 + 3 + 63 + Reference Load + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 670 + Reference load for distributed load slack model + 800000000 + true + + + 1562 + 200 + 3 + 64 + Internal VoLL + 33 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 325 + Region specific value of lost load + 40000001 + true + + + 1563 + 200 + 3 + 65 + Internal VoLL Level + 3 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2077 + Level of unserved energy VoLL applies to + 40000001 + true + + + 1564 + 200 + 9 + 66 + Max Unserved Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2014 + Maximum unserved energy + 80 + true + + + 1565 + 200 + 9 + 66 + Max Unserved Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2898 + Maximum unserved energy in hour + 80 + true + + + 1566 + 200 + 9 + 66 + Max Unserved Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2899 + Maximum unserved energy in day + 80 + true + + + 1567 + 200 + 9 + 66 + Max Unserved Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2900 + Maximum unserved energy in week + 80 + true + + + 1568 + 200 + 9 + 66 + Max Unserved Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2901 + Maximum unserved energy in month + 80 + true + + + 1569 + 200 + 9 + 66 + Max Unserved Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2902 + Maximum unserved energy in year + 80 + true + + + 1570 + 200 + 9 + 67 + Max Unserved Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2903 + Maximum proportion of energy unserved + 80 + true + + + 1571 + 200 + 9 + 67 + Max Unserved Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2904 + Maximum proportion of energy unserved in hour + 80 + true + + + 1572 + 200 + 9 + 67 + Max Unserved Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2905 + Maximum proportion of energy unserved in day + 80 + true + + + 1573 + 200 + 9 + 67 + Max Unserved Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2906 + Maximum proportion of energy unserved in week + 80 + true + + + 1574 + 200 + 9 + 67 + Max Unserved Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2907 + Maximum proportion of energy unserved in month + 80 + true + + + 1575 + 200 + 9 + 67 + Max Unserved Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2908 + Maximum proportion of energy unserved in year + 80 + true + + + 1576 + 200 + 9 + 68 + Max Dump Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2909 + Maximum dump energy + 80 + true + + + 1577 + 200 + 9 + 68 + Max Dump Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2910 + Maximum dump energy in hour + 80 + true + + + 1578 + 200 + 9 + 68 + Max Dump Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2911 + Maximum dump energy in day + 80 + true + + + 1579 + 200 + 9 + 68 + Max Dump Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2912 + Maximum dump energy in week + 80 + true + + + 1580 + 200 + 9 + 68 + Max Dump Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2913 + Maximum dump energy in month + 80 + true + + + 1581 + 200 + 9 + 68 + Max Dump Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2914 + Maximum dump energy in year + 80 + true + + + 1582 + 200 + 9 + 69 + Max Dump Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2915 + Maximum proportion of energy dumped + 80 + true + + + 1583 + 200 + 9 + 69 + Max Dump Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2916 + Maximum proportion of energy dumped in hour + 80 + true + + + 1584 + 200 + 9 + 69 + Max Dump Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2917 + Maximum proportion of energy dumped in day + 80 + true + + + 1585 + 200 + 9 + 69 + Max Dump Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2918 + Maximum proportion of energy dumped in week + 80 + true + + + 1586 + 200 + 9 + 69 + Max Dump Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2919 + Maximum proportion of energy dumped in month + 80 + true + + + 1587 + 200 + 9 + 69 + Max Dump Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2920 + Maximum proportion of energy dumped in year + 80 + true + + + 1588 + 200 + 9 + 70 + Max Generation Curtailed + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2922 + Maximum generation curtailed + 80 + true + + + 1589 + 200 + 9 + 70 + Max Generation Curtailed Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2923 + Maximum generation curtailed in hour + 80 + true + + + 1590 + 200 + 9 + 70 + Max Generation Curtailed Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2924 + Maximum generation curtailed in day + 80 + true + + + 1591 + 200 + 9 + 70 + Max Generation Curtailed Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2925 + Maximum generation curtailed in week + 80 + true + + + 1592 + 200 + 9 + 70 + Max Generation Curtailed Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2926 + Maximum generation curtailed in month + 80 + true + + + 1593 + 200 + 9 + 70 + Max Generation Curtailed Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2927 + Maximum generation curtailed in year + 80 + true + + + 1594 + 200 + 9 + 71 + Max Generation Curtailment Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2928 + Maximum proportion of generation curtailed + 80 + true + + + 1595 + 200 + 9 + 71 + Max Generation Curtailment Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2929 + Maximum proportion of generation curtailed in hour + 80 + true + + + 1596 + 200 + 9 + 71 + Max Generation Curtailment Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2930 + Maximum proportion of generation curtailed in day + 80 + true + + + 1597 + 200 + 9 + 71 + Max Generation Curtailment Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2931 + Maximum proportion of generation curtailed in week + 80 + true + + + 1598 + 200 + 9 + 71 + Max Generation Curtailment Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2932 + Maximum proportion of generation curtailed in month + 80 + true + + + 1599 + 200 + 9 + 71 + Max Generation Curtailment Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2933 + Maximum proportion of generation curtailed in year + 80 + true + + + 1600 + 200 + 4 + 72 + DSP Bid Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 156 + Bid quantity for demand-side participation + 400400 + true + + + 1601 + 200 + 4 + 73 + DSP Bid Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 155 + Bid price for demand-side participation + 400400 + true + + + 1602 + 200 + 4 + 74 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the Region's Generators are included in Competition modelling. + 40 + true + + + 1603 + 200 + 7 + 75 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1604 + 200 + 7 + 76 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance factor + 1000000 + true + + + 1605 + 200 + 6 + 77 + Peak Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 600 + Indicates periods that include the peak load + 100008 + true + + + 1606 + 200 + 6 + 78 + Firm Capacity Incr + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1959 + Firm Capacity not explicitly modeled that should be included in reserve margin calculations + 1000000 + true + + + 1607 + 200 + 8 + 79 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + true + + + 1608 + 200 + 8 + 80 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + true + + + 1609 + 200 + 8 + 81 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 1610 + 200 + 8 + 82 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 1611 + 200 + 8 + 83 + Min Native Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1293 + Minimum capacity reserves supplied only by sources in the Region + 88 + true + + + 1612 + 200 + 8 + 84 + Min Native Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1294 + Minimum capacity reserve margin supplied only by sources in the Region + 88 + true + + + 1613 + 200 + 8 + 85 + Capacity Shortage Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 69 + Penalty for a shortage of capacity reserves + 40000008 + true + + + 1614 + 200 + 8 + 86 + Capacity Excess Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 57 + Penalty for an excess of capacity reserves + 40000008 + true + + + 1615 + 200 + 8 + 87 + Capacity Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1752 + Cap on the capacity price + 4000008 + true + + + 1616 + 200 + 8 + 88 + Capacity Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1753 + Floor on the capacity price + 4000008 + true + + + 1617 + 200 + 8 + 89 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this region + 88 + true + + + 1618 + 200 + 12 + 90 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1619 + 200 + 12 + 91 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1620 + 200 + 12 + 92 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1621 + 205 + 1 + 1 + Max Production + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 949 + Maximum total emission production by emission producers in the region + 2000 + true + + + 1622 + 205 + 1 + 1 + Max Production Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum total emission production by emission producers in the region per hour + 2000 + true + + + 1623 + 205 + 1 + 1 + Max Production Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum total emission production by emission producers in the region per day + 2000 + true + + + 1624 + 205 + 1 + 1 + Max Production Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum total emission production by emission producers in the region per week + 2000 + true + + + 1625 + 205 + 1 + 1 + Max Production Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum total emission production by emission producers in the region per month + 2000 + true + + + 1626 + 205 + 1 + 1 + Max Production Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum total emission production by emission producers in the region per year + 2000 + true + + + 1627 + 209 + 1 + 1 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for exports to the region + 2000000000 + true + + + 1628 + 209 + 1 + 2 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the region + true + + + 1629 + 209 + 1 + 3 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports + true + + + 1630 + 209 + 1 + 4 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 429 + Maximum flow allowed between the regions + 4 + true + + + 1631 + 209 + 1 + 5 + Firm Exports + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2700 + The firm exports from the parent region to the child regions for Capacity Expansion Decomposition + 4 + true + + + 1632 + 227 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of region load + 100000 + true + + + 1633 + 227 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of region load + 100000 + true + + + 1634 + 227 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of region generation + true + + + 1635 + 227 + 3 + 4 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the region + 1000000004 + true + + + 1636 + 227 + 3 + 5 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1637 + 227 + 3 + 6 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1638 + 227 + 3 + 7 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1639 + 227 + 3 + 8 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 1640 + 227 + 6 + 9 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + 4 + true + + + 1641 + 227 + 6 + 10 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + 4 + true + + + 1642 + 227 + 6 + 11 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + 100004 + true + + + 1643 + 227 + 6 + 12 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + C + true + + + 1644 + 227 + 6 + 13 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 1645 + 227 + 6 + 14 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 1646 + 227 + 8 + 15 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + C + true + + + 1647 + 227 + 8 + 16 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + C + true + + + 1648 + 227 + 8 + 17 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + 8008 + true + + + 1649 + 227 + 8 + 18 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 1650 + 227 + 8 + 19 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 1651 + 227 + 8 + 20 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 1652 + 227 + 8 + 21 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 1653 + 228 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of region load + true + + + 1654 + 228 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of region load + true + + + 1655 + 228 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of region generation + true + + + 1656 + 228 + 3 + 4 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the region + true + + + 1657 + 228 + 3 + 5 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 1658 + 228 + 3 + 6 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1659 + 228 + 3 + 7 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1660 + 228 + 3 + 8 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 1661 + 228 + 6 + 9 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + true + + + 1662 + 228 + 6 + 10 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + true + + + 1663 + 228 + 6 + 11 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + true + + + 1664 + 228 + 6 + 12 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + true + + + 1665 + 228 + 6 + 13 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 1666 + 228 + 6 + 14 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 1667 + 228 + 8 + 15 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + true + + + 1668 + 228 + 8 + 16 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + true + + + 1669 + 228 + 8 + 17 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + true + + + 1670 + 228 + 8 + 18 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 1671 + 228 + 8 + 19 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 1672 + 228 + 8 + 20 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 1673 + 228 + 8 + 21 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 1674 + 229 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of region demand in condition + true + + + 1675 + 229 + 1 + 2 + Available Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2738 + Coefficient of region available capacity reserves in condition + true + + + 1676 + 229 + 1 + 3 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of region capacity reserves in condition + true + + + 1677 + 229 + 1 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 1678 + 229 + 1 + 5 + Price Coefficient + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1380 + Coefficient of region price in condition + true + + + 1679 + 230 + 3 + 1 + ORDC VOLL + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2678 + Value of Lost Load for ORDC calculations + true + + + 1680 + 230 + 3 + 2 + ORDC MCL + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2679 + Minimum Contingency Level for ORDC calculations + true + + + 1681 + 230 + 3 + 3 + ORDC Schedule Mu + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2680 + Average of the forecasted hourly reserve value for ORDC calculations + true + + + 1682 + 230 + 3 + 4 + ORDC Schedule Sigma + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2681 + Standard deviation of the forecasted hourly reserve value for ORDC calculations + true + + + 1683 + 230 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1684 + 230 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1685 + 230 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1686 + 234 + 1 + 1 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the regions in the pool + true + + + 1687 + 234 + 1 + 2 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports for regions in the Pool + true + + + 1688 + 237 + 2 + 1 + Load Settlement Model + 0 + 0 + In (0,1,2) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 359 + Model used to determine energy prices reported in the zone. + 4000000 + true + + + 1689 + 237 + 2 + 2 + Wheeling Method + 0 + 1 + In (1,2) + 1;"Net";2;"Gross" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1777 + Export wheeling charge method + 800000000 + true + + + 1690 + 237 + 2 + 3 + Transmission Clustering Level + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2026 + Cluster nodes until this number of equivalent nodes remain (-1 means no clustering) + true + + + 1691 + 237 + 2 + 4 + Transmission Clustering Tolerance + 12 + 100 + Between 0 and 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2027 + Cluster nodes until this level of accuracy is reached (100% means no clustering) + true + + + 1692 + 237 + 2 + 5 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1693 + 237 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Zone is in service + 800000 + true + + + 1694 + 237 + 3 + 7 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 349 + Load + 100000 + true + + + 1695 + 237 + 3 + 8 + Load Participation Factor + 0 + 0 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of region load that occurs in the zone + 100000 + true + + + 1696 + 237 + 3 + 9 + Load Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 358 + Scale factor for input [Load] + 100000 + true + + + 1697 + 237 + 3 + 10 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge on exports from the zone + 2000000000 + true + + + 1698 + 237 + 9 + 11 + Max Unserved Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2014 + Maximum unserved energy + 80 + true + + + 1699 + 237 + 9 + 11 + Max Unserved Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2898 + Maximum unserved energy in hour + 80 + true + + + 1700 + 237 + 9 + 11 + Max Unserved Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2899 + Maximum unserved energy in day + 80 + true + + + 1701 + 237 + 9 + 11 + Max Unserved Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2900 + Maximum unserved energy in week + 80 + true + + + 1702 + 237 + 9 + 11 + Max Unserved Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2901 + Maximum unserved energy in month + 80 + true + + + 1703 + 237 + 9 + 11 + Max Unserved Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2902 + Maximum unserved energy in year + 80 + true + + + 1704 + 237 + 9 + 12 + Max Unserved Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2903 + Maximum proportion of energy unserved + 80 + true + + + 1705 + 237 + 9 + 12 + Max Unserved Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2904 + Maximum proportion of energy unserved in hour + 80 + true + + + 1706 + 237 + 9 + 12 + Max Unserved Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2905 + Maximum proportion of energy unserved in day + 80 + true + + + 1707 + 237 + 9 + 12 + Max Unserved Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2906 + Maximum proportion of energy unserved in week + 80 + true + + + 1708 + 237 + 9 + 12 + Max Unserved Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2907 + Maximum proportion of energy unserved in month + 80 + true + + + 1709 + 237 + 9 + 12 + Max Unserved Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2908 + Maximum proportion of energy unserved in year + 80 + true + + + 1710 + 237 + 9 + 13 + Max Dump Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2909 + Maximum dump energy + 80 + true + + + 1711 + 237 + 9 + 13 + Max Dump Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2910 + Maximum dump energy in hour + 80 + true + + + 1712 + 237 + 9 + 13 + Max Dump Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2911 + Maximum dump energy in day + 80 + true + + + 1713 + 237 + 9 + 13 + Max Dump Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2912 + Maximum dump energy in week + 80 + true + + + 1714 + 237 + 9 + 13 + Max Dump Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2913 + Maximum dump energy in month + 80 + true + + + 1715 + 237 + 9 + 13 + Max Dump Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2914 + Maximum dump energy in year + 80 + true + + + 1716 + 237 + 9 + 14 + Max Dump Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2915 + Maximum proportion of energy dumped + 80 + true + + + 1717 + 237 + 9 + 14 + Max Dump Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2916 + Maximum proportion of energy dumped in hour + 80 + true + + + 1718 + 237 + 9 + 14 + Max Dump Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2917 + Maximum proportion of energy dumped in day + 80 + true + + + 1719 + 237 + 9 + 14 + Max Dump Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2918 + Maximum proportion of energy dumped in week + 80 + true + + + 1720 + 237 + 9 + 14 + Max Dump Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2919 + Maximum proportion of energy dumped in month + 80 + true + + + 1721 + 237 + 9 + 14 + Max Dump Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2920 + Maximum proportion of energy dumped in year + 80 + true + + + 1722 + 237 + 9 + 15 + Max Generation Curtailed + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2922 + Maximum generation curtailed + 80 + true + + + 1723 + 237 + 9 + 15 + Max Generation Curtailed Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2923 + Maximum generation curtailed in hour + 80 + true + + + 1724 + 237 + 9 + 15 + Max Generation Curtailed Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2924 + Maximum generation curtailed in day + 80 + true + + + 1725 + 237 + 9 + 15 + Max Generation Curtailed Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2925 + Maximum generation curtailed in week + 80 + true + + + 1726 + 237 + 9 + 15 + Max Generation Curtailed Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2926 + Maximum generation curtailed in month + 80 + true + + + 1727 + 237 + 9 + 15 + Max Generation Curtailed Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2927 + Maximum generation curtailed in year + 80 + true + + + 1728 + 237 + 9 + 16 + Max Generation Curtailment Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2928 + Maximum proportion of generation curtailed + 80 + true + + + 1729 + 237 + 9 + 16 + Max Generation Curtailment Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2929 + Maximum proportion of generation curtailed in hour + 80 + true + + + 1730 + 237 + 9 + 16 + Max Generation Curtailment Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2930 + Maximum proportion of generation curtailed in day + 80 + true + + + 1731 + 237 + 9 + 16 + Max Generation Curtailment Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2931 + Maximum proportion of generation curtailed in week + 80 + true + + + 1732 + 237 + 9 + 16 + Max Generation Curtailment Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2932 + Maximum proportion of generation curtailed in month + 80 + true + + + 1733 + 237 + 9 + 16 + Max Generation Curtailment Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2933 + Maximum proportion of generation curtailed in year + 80 + true + + + 1734 + 237 + 7 + 17 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1735 + 237 + 7 + 18 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance factor + 1000000 + true + + + 1736 + 237 + 6 + 19 + Peak Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 600 + Indicates periods that include the peak load + 100008 + true + + + 1737 + 237 + 6 + 20 + Firm Capacity Incr + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1959 + Firm Capacity not explicitly modeled that should be included in reserve margin calculations + 1000000 + true + + + 1738 + 237 + 8 + 21 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + true + + + 1739 + 237 + 8 + 22 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + true + + + 1740 + 237 + 8 + 23 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 1741 + 237 + 8 + 24 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 1742 + 237 + 8 + 25 + Min Native Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1293 + Minimum capacity reserves supplied only by sources in the Zone + 88 + true + + + 1743 + 237 + 8 + 26 + Min Native Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1294 + Minimum capacity reserve margin supplied only by sources in the Zone + 88 + true + + + 1744 + 237 + 8 + 27 + Capacity Shortage Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 69 + Penalty for a shortage of capacity reserves + 40000008 + true + + + 1745 + 237 + 8 + 28 + Capacity Excess Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 57 + Penalty for an excess of capacity reserves + 40000008 + true + + + 1746 + 237 + 8 + 29 + Capacity Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1752 + Cap on the capacity price + 4000008 + true + + + 1747 + 237 + 8 + 30 + Capacity Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1753 + Floor on the capacity price + 4000008 + true + + + 1748 + 237 + 8 + 31 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this zone + 88 + true + + + 1749 + 237 + 12 + 32 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1750 + 237 + 12 + 33 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1751 + 237 + 12 + 34 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1752 + 252 + 1 + 1 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for exports to the zone + 2000000000 + true + + + 1753 + 252 + 1 + 2 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the parent zone to child zone. + true + + + 1754 + 252 + 1 + 3 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports from parent zone to child zone. + true + + + 1755 + 252 + 1 + 4 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 429 + Maximum flow allowed between the zones + 4 + true + + + 1756 + 278 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of zone load + 100000 + true + + + 1757 + 278 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of zone load + 100000 + true + + + 1758 + 278 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of zone generation + true + + + 1759 + 278 + 3 + 4 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the zone + 1000000004 + true + + + 1760 + 278 + 3 + 5 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1761 + 278 + 3 + 6 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 1762 + 278 + 3 + 7 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1763 + 278 + 3 + 8 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 1764 + 278 + 6 + 9 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + 4 + true + + + 1765 + 278 + 6 + 10 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + C + true + + + 1766 + 278 + 6 + 11 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + C + true + + + 1767 + 278 + 6 + 12 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + C + true + + + 1768 + 278 + 6 + 13 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 1769 + 278 + 6 + 14 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 1770 + 278 + 8 + 15 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + C + true + + + 1771 + 278 + 8 + 16 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + C + true + + + 1772 + 278 + 8 + 17 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + 8008 + true + + + 1773 + 278 + 8 + 18 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity was built + 8 + true + + + 1774 + 278 + 8 + 19 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 1775 + 278 + 8 + 20 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 1776 + 278 + 8 + 21 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 1777 + 279 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of zone load + true + + + 1778 + 279 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of zone load + true + + + 1779 + 279 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of zone generation + true + + + 1780 + 279 + 3 + 4 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the zone + true + + + 1781 + 279 + 3 + 5 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 1782 + 279 + 3 + 6 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1783 + 279 + 3 + 7 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1784 + 279 + 3 + 8 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 1785 + 279 + 6 + 9 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + true + + + 1786 + 279 + 6 + 10 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + true + + + 1787 + 279 + 6 + 11 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + true + + + 1788 + 279 + 6 + 12 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + true + + + 1789 + 279 + 6 + 13 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 1790 + 279 + 6 + 14 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 1791 + 279 + 8 + 15 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + true + + + 1792 + 279 + 8 + 16 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + true + + + 1793 + 279 + 8 + 17 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + true + + + 1794 + 279 + 8 + 18 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 1795 + 279 + 8 + 19 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 1796 + 279 + 8 + 20 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 1797 + 279 + 8 + 21 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 1798 + 280 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of zone demand in condition + true + + + 1799 + 280 + 1 + 2 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of zone capacity reserves in condition + true + + + 1800 + 280 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 1801 + 281 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the node must be reported regardless of voltage + 800000 + true + + + 1802 + 281 + 2 + 2 + Is Slack Bus + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 339 + Set if this is the slack bus + 800000000 + true + + + 1803 + 281 + 2 + 3 + Allow Dump Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 9 + Model Node [Dump Energy] in the mathematical program. + 40000000 + true + + + 1804 + 281 + 2 + 4 + Allow Unserved Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 10 + Model Node [Unserved Energy] in the mathematical program. + 40000000 + true + + + 1805 + 281 + 2 + 5 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1806 + 281 + 2 + 6 + Always Calculate PTDF + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2836 + Flag if the PTDFs associated with the node and transmission constraints will be calculated + 800000 + true + + + 1807 + 281 + 3 + 7 + Max Unserved Energy + 1 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2014 + Maximum allowed Unserved Energy at the node. + 40000000 + true + + + 1808 + 281 + 3 + 8 + Reference Load + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 670 + Reference load for distributed load slack model + 800000000 + true + + + 1809 + 281 + 3 + 9 + Reference Generation + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 669 + Reference generation from the network case file + 800000000 + true + + + 1810 + 281 + 3 + 10 + External Nodal Injection + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2708 + External nodal injection calculated from MT phase for Kron-reduction algorithm in ST phase + 800000000 + false + + + 1811 + 281 + 3 + 11 + External Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2715 + Regional price of the node calculated from MT phase for Kron-reduction algorithm in ST phase + 4000000 + false + + + 1812 + 281 + 3 + 12 + Voltage + 4 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 848 + Voltage + 800000000 + true + + + 1813 + 281 + 3 + 13 + AC Voltage Magnitude + 10 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2812 + The per-unit voltage magnitude of a node, as determined by an AC power flow solution + 800000000 + true + + + 1814 + 281 + 3 + 14 + AC Reactive Power + 122 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2813 + The reactive power injected or withdrawn from a node, as determined by an AC power flow solution + 800000000 + true + + + 1815 + 281 + 3 + 15 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if bus is in service + 800000 + true + + + 1816 + 281 + 3 + 16 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of region load that occurs at the node + 100000 + true + + + 1817 + 281 + 3 + 17 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 349 + Load + 100000 + true + + + 1818 + 281 + 3 + 18 + Fixed Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load at the node + 100000 + true + + + 1819 + 281 + 3 + 19 + Fixed Generation + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 198 + Fixed (or embedded) generation at the node + 100000 + true + + + 1820 + 281 + 3 + 20 + Max Net Injection + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 440 + Maximum net injection + 80 + true + + + 1821 + 281 + 3 + 21 + Max Net Offtake + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 441 + Maximum net offtake + 80 + true + + + 1822 + 281 + 3 + 22 + Rating + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 665 + Maximum power flow through the Node + 80 + true + + + 1823 + 281 + 4 + 23 + DSP Bid Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 156 + Demand-side participation bid quantity + 400400 + true + + + 1824 + 281 + 4 + 24 + DSP Bid Ratio + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 157 + Demand-side participation quantity as a percentage of nodal load + 400400 + true + + + 1825 + 281 + 4 + 25 + DSP Bid Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 155 + Demand-side participation bid price + 400400 + true + + + 1826 + 281 + 3 + 26 + Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 612 + Locational marginal price + 4000000 + true + + + 1827 + 281 + 7 + 27 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1828 + 281 + 7 + 28 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance biasing factor + 1000000 + true + + + 1829 + 281 + 6 + 29 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves + 1000000 + true + + + 1830 + 281 + 6 + 30 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin + 1000000 + true + + + 1831 + 281 + 12 + 31 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1832 + 281 + 12 + 32 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1833 + 281 + 12 + 33 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1834 + 287 + 1 + 1 + Pricing Weight + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1651 + Wheeling charge for exports to the zone + 2000000000 + true + + + 1835 + 288 + 1 + 1 + Load Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2004 + Percentage share of load ownership + 40 + true + + + 1836 + 289 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 1837 + 289 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Electric Load for each unit of consumption + true + + + 1838 + 289 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Electric Generation for each unit of production + true + + + 1839 + 289 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Electric Load for each unit operating + 1000000000 + true + + + 1840 + 289 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Electric Load for each installed unit + 4 + true + + + 1841 + 293 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node load + 100000 + true + + + 1842 + 293 + 1 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of node generation + true + + + 1843 + 293 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1844 + 293 + 1 + 4 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 1845 + 293 + 1 + 5 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 1846 + 293 + 1 + 6 + Net Injection Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 912 + Coefficient of node net injection + true + + + 1847 + 293 + 1 + 7 + Phase Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 913 + Coefficient of node phase angle + 800000000 + true + + + 1848 + 293 + 1 + 8 + MLF Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 517 + Coefficient of marginal loss factor + 200000 + true + + + 1849 + 294 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node load + true + + + 1850 + 294 + 1 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of node generation + true + + + 1851 + 294 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 1852 + 294 + 1 + 4 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1853 + 294 + 1 + 5 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 1854 + 294 + 1 + 6 + Net Injection Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 912 + Coefficient of node net injection + true + + + 1855 + 294 + 1 + 7 + Phase Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 913 + Coefficient of node phase angle + true + + + 1856 + 294 + 1 + 8 + MLF Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 517 + Coefficient of marginal loss factor + true + + + 1857 + 295 + 1 + 1 + Net Injection Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1547 + Coefficient of Decision Variable in Node net injection definition equation + true + + + 1858 + 296 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node demand in condition + true + + + 1859 + 296 + 1 + 2 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 1860 + 298 + 2 + 1 + Is Scalable + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2270 + Indicates if the load is scalable or flat load. + true + + + 1861 + 298 + 3 + 2 + Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 349 + Load at a node + 100000 + true + + + 1862 + 298 + 3 + 3 + Load Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of company load that occurs at a node + 100000 + true + + + 1863 + 298 + 12 + 4 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1864 + 298 + 12 + 5 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1865 + 298 + 12 + 6 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1866 + 303 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the Line must be reported regardless of Transmission [Report Voltage Threshold]. + 800000 + true + + + 1867 + 303 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Line for the generation of outages + 101000000 + true + + + 1868 + 303 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 1869 + 303 + 2 + 4 + Enforce Limits + 0 + 1 + In (0,1,2,3) + 0;"Never";1;"Voltage";2;"Always";3;"Contingency" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 177 + Controls when flow limits are enforced with regard to Transmission [Constraint Voltage Threshold]. + 80 + true + + + 1870 + 303 + 2 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 1871 + 303 + 2 + 6 + Formulate NPL Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1207 + If integer conditions that control non-physical losses should be formulated upfront rather than checked iteratively + 2200000 + true + + + 1872 + 303 + 2 + 7 + Max Loss Tranches + 0 + 2 + >=2 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 438 + Maximum number of tranches in piecewise linear loss function. + 2200000 + true + + + 1873 + 303 + 2 + 8 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Line can transfer price across the network + 4000000 + true + + + 1874 + 303 + 2 + 9 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 100 + true + + + 1875 + 303 + 2 + 10 + Fixed Flow Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1794 + Method of interpreting zero values of the [Fixed Flow] property. + 80 + true + + + 1876 + 303 + 2 + 11 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 1877 + 303 + 2 + 12 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 1878 + 303 + 2 + 13 + Screening Mode + 0 + 1 + In (0,1,2) + 0;"Never";1;"Default";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2859 + The set of lines that should be screened for post-contingency flow under screen contingencies + true + + + 1879 + 303 + 3 + 14 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the line is in service (0,1) + 800000 + true + + + 1880 + 303 + 3 + 15 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 429 + Maximum flow + 5 + true + + + 1881 + 303 + 3 + 16 + Min Flow + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 481 + Minimum flow + 5 + true + + + 1882 + 303 + 3 + 17 + Max Rating + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 449 + Rated maximum (overrides Max Flow) + 80 + true + + + 1883 + 303 + 3 + 18 + Min Rating + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 493 + Rated minimum (overrides Min Flow) + 80 + true + + + 1884 + 303 + 3 + 19 + Overload Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 596 + Emergency line rating in the reference direction + 80 + true + + + 1885 + 303 + 3 + 20 + Overload Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 597 + Emergency line rating in the counter-reference direction + 80 + true + + + 1886 + 303 + 3 + 21 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for exceeding the flow limits on the line + 80 + true + + + 1887 + 303 + 3 + 22 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 1888 + 303 + 3 + 23 + Resistance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 693 + A measure of the line's opposition to the flow of electric charge + 800000000 + true + + + 1889 + 303 + 3 + 24 + Reactance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 667 + Together with any resistance this makes up the lines impedance + 800000000 + true + + + 1890 + 303 + 3 + 25 + Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 771 + The reciprocal of the reactance of a circuit and thus the imaginary part of its admittance + 800000000 + true + + + 1891 + 303 + 3 + 26 + AC Line Charging Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2814 + The line-charging susceptance of a transmission line + 800000000 + true + + + 1892 + 303 + 3 + 27 + Ramp Up Point + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Flow for use with multi-band Max Ramp Up constraints + 80 + true + + + 1893 + 303 + 3 + 28 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate + 80 + true + + + 1894 + 303 + 3 + 29 + Ramp Down Point + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Flow for use with multi-band Max Ramp Down constraints + 80 + true + + + 1895 + 303 + 3 + 30 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate + 80 + true + + + 1896 + 303 + 3 + 31 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty for changes in flow on the line + 80 + true + + + 1897 + 303 + 3 + 32 + Loss Base + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 375 + Interconnector loss function constant parameter for reference direction flows + 200000 + true + + + 1898 + 303 + 3 + 33 + Loss Incr + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 380 + Interconnector loss function linear parameter for reference direction flows + 200000 + true + + + 1899 + 303 + 3 + 34 + Loss Incr2 + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 382 + Interconnector loss function quadratic parameter for reference direction flows + 200000 + true + + + 1900 + 303 + 3 + 35 + Loss Base Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 376 + Interconnector loss function constant parameter for counter-reference direction flows + 200000 + true + + + 1901 + 303 + 3 + 36 + Loss Incr Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 381 + Interconnector loss function linear parameter for counter-reference direction flows + 200000 + true + + + 1902 + 303 + 3 + 37 + Loss Incr2 Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 383 + Interconnector loss function quadratic parameter for counter-reference direction flows + 200000 + true + + + 1903 + 303 + 3 + 38 + Loss Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 373 + Proportion of line losses allocated to the receiving node + 200000 + true + + + 1904 + 303 + 3 + 39 + Fixed Flow + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 197 + Fixed flow on line + 80 + true + + + 1905 + 303 + 3 + 40 + Fixed Flow Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1324 + Penalty for violation of [Fixed Flow]. + 80 + true + + + 1906 + 303 + 3 + 41 + Fixed Loss + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 203 + Fixed loss on line + 200000 + true + + + 1907 + 303 + 3 + 42 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for reference direction flows + 2000000000 + true + + + 1908 + 303 + 3 + 43 + Wheeling Charge Back + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 859 + Wheeling charge for counter-reference direction flows + 2000000000 + true + + + 1909 + 303 + 3 + 44 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 1910 + 303 + 3 + 45 + Marginal Loss Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) for exports + 600000 + true + + + 1911 + 303 + 3 + 46 + Marginal Loss Factor Back + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 378 + Transmission marginal loss factor (MLF or TLF) for imports + 600000 + true + + + 1912 + 303 + 4 + 47 + Offer Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for balancing offer + 400000 + true + + + 1913 + 303 + 4 + 48 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for reference direction flows + 400000 + true + + + 1914 + 303 + 4 + 49 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price offered in band for reference direction flows + 400000 + true + + + 1915 + 303 + 4 + 50 + Offer Quantity Back + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 573 + Quantity offered in band for counter-reference direction flows + 400000 + true + + + 1916 + 303 + 4 + 51 + Offer Price Back + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 570 + Price offered in band for counter-reference direction flows + 400000 + true + + + 1917 + 303 + 6 + 52 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum amount of capacity reserves supplied to the receiving Region/Zone. + 8 + true + + + 1918 + 303 + 6 + 53 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum amount of capacity reserves supplied to the receiving Region/Zone. + 8 + true + + + 1919 + 303 + 6 + 54 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Net capacity reserves exported + C + true + + + 1920 + 303 + 6 + 55 + Fixed Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1338 + Generic annual fixed charge + 8000 + true + + + 1921 + 303 + 6 + 56 + Equity Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 180 + Annual required return on equity + 8000 + true + + + 1922 + 303 + 6 + 57 + Debt Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 127 + Annual debt charge + 8000 + true + + + 1923 + 303 + 7 + 58 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 1924 + 303 + 7 + 59 + Circuits + 0 + 1 + >=1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 909 + Number of circuits in the notional interconnector for the purposes of outage modelling + 1000000 + true + + + 1925 + 303 + 7 + 60 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units (circuits) out of service + 1000000 + true + + + 1926 + 303 + 7 + 61 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 1927 + 303 + 7 + 62 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual timeframe + 1000000 + true + + + 1928 + 303 + 7 + 63 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Line rating in the reference direction during outage + 1000000 + true + + + 1929 + 303 + 7 + 64 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Line rating in the counter-reference direction during outage + 1000000 + true + + + 1930 + 303 + 7 + 65 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 1931 + 303 + 7 + 66 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair (hr) + 1000000 + true + + + 1932 + 303 + 7 + 67 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair (hr) + 1000000 + true + + + 1933 + 303 + 7 + 68 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 1934 + 303 + 7 + 69 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 1935 + 303 + 8 + 70 + Type + 0 + 0 + In (0,1) + 0;"AC";1;"DC" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Line expansion type + 800000008 + true + + + 1936 + 303 + 8 + 71 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the line + 8009 + true + + + 1937 + 303 + 8 + 72 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the line + 8 + true + + + 1938 + 303 + 8 + 73 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 1939 + 303 + 8 + 74 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of transmission project, for expansion planning. + 8 + true + + + 1940 + 303 + 8 + 75 + Commission Date + 0 + 1 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the line was commissioned for use with [Technical Life] + 8 + true + + + 1941 + 303 + 8 + 76 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the line + 8 + true + + + 1942 + 303 + 8 + 77 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 1943 + 303 + 8 + 78 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the line (period over which fixed costs are recovered). + 8 + true + + + 1944 + 303 + 8 + 79 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 1945 + 303 + 8 + 80 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 8 + true + + + 1946 + 303 + 8 + 81 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of lines automatically constructed + 8 + true + + + 1947 + 303 + 8 + 82 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of lines automatically retired + 8 + true + + + 1948 + 303 + 8 + 83 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 1949 + 303 + 8 + 84 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 8 + true + + + 1950 + 303 + 8 + 85 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 1951 + 303 + 8 + 86 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 8 + true + + + 1952 + 303 + 8 + 87 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 1953 + 303 + 11 + 88 + Flow Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1115 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 1954 + 303 + 11 + 89 + Flow Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1116 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 1955 + 303 + 11 + 90 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1956 + 303 + 11 + 91 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1957 + 303 + 12 + 92 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1958 + 303 + 12 + 93 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1959 + 303 + 12 + 94 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1960 + 308 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 1961 + 309 + 1 + 1 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 583 + Line rating in the reference direction during outage + 4 + true + + + 1962 + 309 + 1 + 2 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 584 + Line rating in the counter-reference direction during outage + 4 + true + + + 1963 + 310 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + 800000000 + true + + + 1964 + 310 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + 800000000 + true + + + 1965 + 310 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + 800000000 + true + + + 1966 + 310 + 3 + 4 + Flow Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 212 + Coefficient of square of line flow + 800000000 + true + + + 1967 + 310 + 3 + 5 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 1968 + 310 + 3 + 6 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 1969 + 310 + 3 + 7 + Spare Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 866 + Coefficient on spare line capacity in the reference direction + 4 + true + + + 1970 + 310 + 3 + 8 + Spare Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 867 + Coefficient on spare line capacity in the counter-reference direction + 4 + true + + + 1971 + 310 + 7 + 9 + In Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2940 + Coefficient of 0,1 flag indicating if the Line is installed and in service + true + + + 1972 + 310 + 7 + 10 + Out of Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2941 + Coefficient of 0,1 flag indicating if the Line is either not installed or out of service + true + + + 1973 + 310 + 7 + 11 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + 1000000 + true + + + 1974 + 310 + 8 + 12 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 1975 + 310 + 8 + 13 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 1976 + 310 + 8 + 14 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + C + true + + + 1977 + 310 + 8 + 15 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + C + true + + + 1978 + 310 + 8 + 16 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of lines built in the year + C + true + + + 1979 + 310 + 8 + 17 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of lines retired in the year + C + true + + + 1980 + 310 + 8 + 18 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 1981 + 310 + 8 + 19 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 1982 + 310 + 8 + 20 + Export Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 191 + Coefficient of export capacity retired + C + true + + + 1983 + 310 + 8 + 21 + Import Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 293 + Coefficient of import capacity retired + C + true + + + 1984 + 310 + 8 + 22 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 1985 + 311 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + true + + + 1986 + 311 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + true + + + 1987 + 311 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + true + + + 1988 + 311 + 3 + 4 + Flow Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 212 + Coefficient of square of line flow + true + + + 1989 + 311 + 3 + 5 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 1990 + 311 + 3 + 6 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 1991 + 311 + 3 + 7 + Spare Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 866 + Coefficient on spare line capacity in the reference direction + true + + + 1992 + 311 + 3 + 8 + Spare Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 867 + Coefficient on spare line capacity in the counter-reference direction + true + + + 1993 + 311 + 7 + 9 + In Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2940 + Coefficient of 0,1 flag indicating if the Line is installed and in service + true + + + 1994 + 311 + 7 + 10 + Out of Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2941 + Coefficient of 0,1 flag indicating if the Line is either not installed or out of service + true + + + 1995 + 311 + 7 + 11 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + true + + + 1996 + 311 + 8 + 12 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 1997 + 311 + 8 + 13 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 1998 + 311 + 8 + 14 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 1999 + 311 + 8 + 15 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2000 + 311 + 8 + 16 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of lines built in the year + true + + + 2001 + 311 + 8 + 17 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of lines retired in the year + true + + + 2002 + 311 + 8 + 18 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 2003 + 311 + 8 + 19 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 2004 + 311 + 8 + 20 + Export Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 191 + Coefficient of export capacity retired + true + + + 2005 + 311 + 8 + 21 + Import Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 293 + Coefficient of import capacity retired + true + + + 2006 + 311 + 8 + 22 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2007 + 312 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of line flow in condition + true + + + 2008 + 312 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow in condition + true + + + 2009 + 312 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow in condition + true + + + 2010 + 312 + 3 + 4 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 2011 + 312 + 3 + 5 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 2012 + 312 + 7 + 6 + In Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2940 + Coefficient of 0,1 flag indicating if the Line is installed and in service + true + + + 2013 + 312 + 7 + 7 + Out of Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2941 + Coefficient of 0,1 flag indicating if the Line is either not installed or out of service + true + + + 2014 + 312 + 7 + 8 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + true + + + 2015 + 313 + 1 + 1 + Intercept + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 323 + Intercept of the MLF equation + 200000 + true + + + 2016 + 313 + 1 + 2 + Flow Coefficient + 1 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient on line flow + 200000 + true + + + 2017 + 316 + 1 + 1 + Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 80 + Coefficient of region demand in the MLF equation + 300000 + true + + + 2018 + 319 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the Transformer must be reported regardless of Transmission [Report Voltage Threshold]. + 800000 + true + + + 2019 + 319 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Line for the generation of outages + 101000000 + true + + + 2020 + 319 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2021 + 319 + 2 + 4 + Enforce Limits + 0 + 1 + In (0,1,2,3) + 0;"Never";1;"Voltage";2;"Always";3;"Contingency" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 177 + If flow limits are enforced regardless of Transmission [Constraint Voltage Threshold]. + 80 + true + + + 2022 + 319 + 2 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 2023 + 319 + 2 + 6 + Formulate NPL Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1207 + If integer conditions that control non-physical losses should be formulated upfront rather than checked iteratively + 2200000 + true + + + 2024 + 319 + 2 + 7 + Screening Mode + 0 + 1 + In (0,1,2) + 0;"Never";1;"Default";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2859 + The set of transformers that should be screened for post-contingency flow under screen contingencies + true + + + 2025 + 319 + 3 + 8 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if transformer is in service + 800000 + true + + + 2026 + 319 + 3 + 9 + Rating + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 665 + Maximum MW rating + 5 + true + + + 2027 + 319 + 3 + 10 + Overload Rating + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1028 + Emergency rating in the reference direction + 80 + true + + + 2028 + 319 + 3 + 11 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for exceeding the flow limits on the Transformer. + 80 + true + + + 2029 + 319 + 3 + 12 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 2030 + 319 + 3 + 13 + Resistance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 693 + A measure of the transformer's opposition to the flow of electric charge + 800000000 + true + + + 2031 + 319 + 3 + 14 + Reactance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 667 + Together with any resistance this makes up the lines impedance + 800000000 + true + + + 2032 + 319 + 3 + 15 + Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 771 + The reciprocal of the reactance of a circuit and thus the imaginary part of its admittance + 800000000 + true + + + 2033 + 319 + 3 + 16 + AC Line Charging Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2814 + The line-charging susceptance of a transformer + 800000000 + true + + + 2034 + 319 + 3 + 17 + AC Tap Ratio + 0 + 1 + >0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2815 + The turns ratio of the primary winding of a transformer + 800000 + true + + + 2035 + 319 + 3 + 18 + AC Fixed Shift Angle + 11 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2816 + The fixed phase shift angle between the two windings of a single-phase transformer + 800000000 + true + + + 2036 + 319 + 3 + 19 + Loss Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 373 + Proportion of transformer losses allocated to the receiving node + 200000 + true + + + 2037 + 319 + 3 + 20 + Fixed Loss + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 203 + Fixed loss on transformer + 200000 + true + + + 2038 + 319 + 7 + 21 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2039 + 319 + 7 + 22 + Units Out + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 818 + Number of [Units] out of service + 1000000 + true + + + 2040 + 319 + 7 + 23 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2041 + 319 + 7 + 24 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual timeframe + 1000000 + true + + + 2042 + 319 + 7 + 25 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Transformer rating in the reference direction during outage + 1000000 + true + + + 2043 + 319 + 7 + 26 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Transformer rating in the counter-reference direction during outage + 1000000 + true + + + 2044 + 319 + 7 + 27 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair (hr) + 1000000 + true + + + 2045 + 319 + 7 + 28 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair (hr) + 1000000 + true + + + 2046 + 319 + 7 + 29 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair (hr) + 1000000 + true + + + 2047 + 319 + 7 + 30 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2048 + 319 + 7 + 31 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2049 + 319 + 12 + 32 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2050 + 319 + 12 + 33 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2051 + 319 + 12 + 34 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2052 + 324 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of transformer flow equation + 800000000 + true + + + 2053 + 325 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of transformer flow equation + true + + + 2054 + 326 + 2 + 1 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the flow control can transfer price across the network + 4000000 + true + + + 2055 + 326 + 2 + 2 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2056 + 326 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2057 + 326 + 2 + 4 + Type + 0 + 0 + In (0,1,2,3,4,5) + 0;"PST";1;"DSR";2;"DSSC";3;"MSSR";4;"TCSC";5;"SSSC" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Flow control type + true + + + 2058 + 326 + 3 + 5 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of installed units + 800000 + true + + + 2059 + 326 + 3 + 6 + Min Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 472 + Min angle set on the flow control + 5 + true + + + 2060 + 326 + 3 + 7 + Max Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 411 + Max angle set on the flow control + 5 + true + + + 2061 + 326 + 3 + 8 + Min Impedance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1778 + Min Impedance + 5 + true + + + 2062 + 326 + 3 + 9 + Max Impedance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1779 + Max Impedance + 5 + true + + + 2063 + 326 + 3 + 10 + Min Voltage + 4 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1780 + Min Voltage + 5 + true + + + 2064 + 326 + 3 + 11 + Max Voltage + 4 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1781 + Max Voltage + 5 + true + + + 2065 + 326 + 3 + 12 + Penalty + 43 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 602 + Penalty incurred for shifting the angle + 80 + true + + + 2066 + 326 + 3 + 13 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty price per MW change in flow on the device + 80 + true + + + 2067 + 326 + 3 + 14 + Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 14 + Angle (initial angle when used as input) + 80 + true + + + 2068 + 326 + 3 + 15 + Angle Points + 11 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1762 + Flow control angle points + true + + + 2069 + 326 + 3 + 16 + Flow Loading Points + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1763 + Flow control line flow points + true + + + 2070 + 326 + 3 + 17 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2071 + 326 + 8 + 18 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the flow control + 8009 + true + + + 2072 + 326 + 8 + 19 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2073 + 326 + 8 + 20 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of the project, for expansion planning. + 8 + true + + + 2074 + 326 + 8 + 21 + Commission Date + 0 + 1 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the flow control was commissioned for use with [Technical Life] + 8 + true + + + 2075 + 326 + 8 + 22 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the flow control + 8 + true + + + 2076 + 326 + 8 + 23 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2077 + 326 + 8 + 24 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the flow control (period over which fixed costs are recovered). + 8 + true + + + 2078 + 326 + 8 + 25 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2079 + 326 + 8 + 26 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2080 + 326 + 8 + 27 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 2081 + 326 + 8 + 28 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 2082 + 326 + 11 + 29 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2083 + 326 + 12 + 30 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2084 + 326 + 12 + 31 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2085 + 326 + 12 + 32 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2086 + 331 + 3 + 1 + Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1761 + Coefficient of flow control angle + 800000000 + true + + + 2087 + 331 + 3 + 2 + Positive Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1759 + Boolean value (1 if the flow control angle is positive, 0 otherwise) + 800000000 + true + + + 2088 + 331 + 3 + 3 + Negative Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1760 + Boolean value (1 if the flow control angle is negative, 0 otherwise) + 800000000 + true + + + 2089 + 331 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 2090 + 332 + 3 + 1 + Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1761 + Coefficient of flow control angle + true + + + 2091 + 332 + 3 + 2 + Positive Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1759 + Boolean value (1 if the flow control angle is positive, 0 otherwise) + true + + + 2092 + 332 + 3 + 3 + Negative Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1760 + Boolean value (1 if the flow control angle is negative, 0 otherwise) + true + + + 2093 + 332 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2094 + 333 + 2 + 1 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 2095 + 333 + 2 + 2 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 100 + true + + + 2096 + 333 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if interface is in service + 800000 + true + + + 2097 + 333 + 3 + 4 + Min Flow + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 481 + Minimum flow on interface + 5 + true + + + 2098 + 333 + 3 + 5 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow on interface + 5 + true + + + 2099 + 333 + 3 + 6 + Overload Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 596 + Emergency rating in the reference direction + 80 + true + + + 2100 + 333 + 3 + 7 + Overload Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 597 + Emergency rating in the counter-reference direction + 80 + true + + + 2101 + 333 + 3 + 8 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for violation of limits + 80 + true + + + 2102 + 333 + 3 + 9 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 2103 + 333 + 3 + 10 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 2104 + 333 + 3 + 11 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 2105 + 333 + 3 + 12 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty for changes in flow on the line + 80 + true + + + 2106 + 333 + 3 + 13 + Fixed Flow + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 197 + Fixed flow on interface + 80 + true + + + 2107 + 333 + 3 + 14 + Fixed Flow Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1324 + Penalty for violation of [Fixed Flow]. + 80 + true + + + 2108 + 333 + 4 + 15 + Offer Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for balancing offer + 400000 + true + + + 2109 + 333 + 4 + 16 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for reference direction flows + 400000 + true + + + 2110 + 333 + 4 + 17 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price offered in band for reference direction flows + 400000 + true + + + 2111 + 333 + 4 + 18 + Offer Quantity Back + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 573 + Quantity offered in band for counter-reference direction flows + 400000 + true + + + 2112 + 333 + 4 + 19 + Offer Price Back + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 570 + Price offered in band for counter-reference direction flows + 400000 + true + + + 2113 + 333 + 11 + 20 + Flow Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1115 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 2114 + 333 + 11 + 21 + Flow Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1116 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 2115 + 333 + 6 + 22 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the interface to region capacity reserves + C + true + + + 2116 + 333 + 8 + 23 + Expansion Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 184 + Cost of expanding the interface by one megawatt + 8008 + true + + + 2117 + 333 + 8 + 24 + Max Expansion + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 428 + Maximum interface expansion + 8 + true + + + 2118 + 333 + 8 + 25 + Min Expansion + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2745 + Minimum interface expansion + 8 + true + + + 2119 + 333 + 8 + 26 + Max Expansion In Year + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2754 + Maximum interface expansion allowed in the year + 8 + true + + + 2120 + 333 + 8 + 27 + Min Expansion In Year + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2755 + Minimum interface expansion allowed in the year + 8 + true + + + 2121 + 333 + 8 + 28 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2122 + 333 + 8 + 29 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the interface (period over which expansion costs are recovered). + 8 + true + + + 2123 + 333 + 11 + 30 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2124 + 333 + 12 + 31 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2125 + 333 + 12 + 32 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2126 + 333 + 12 + 33 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2127 + 336 + 1 + 1 + Flow Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient of flow in interface + 800000000 + true + + + 2128 + 336 + 1 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow in interface + 800000000 + true + + + 2129 + 336 + 1 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow in interface + 800000000 + true + + + 2130 + 337 + 1 + 1 + Flow Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient of transformer flow in interface + 800000000 + true + + + 2131 + 338 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + 800000000 + true + + + 2132 + 338 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + 800000000 + true + + + 2133 + 338 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + 800000000 + true + + + 2134 + 338 + 8 + 4 + Expansion Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1220 + Coefficient of total build cost + 8008 + true + + + 2135 + 339 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + true + + + 2136 + 339 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + true + + + 2137 + 339 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + true + + + 2138 + 339 + 8 + 4 + Expansion Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1220 + Coefficient of total expansion cost + true + + + 2139 + 340 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow in condition + true + + + 2140 + 341 + 2 + 1 + Is Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 335 + If the contingency is enabled + 800000 + true + + + 2141 + 341 + 2 + 2 + Monitoring Threshold + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1628 + Monitor only this percentage of most affected Line/Transformer/Interface flows. + true + + + 2142 + 341 + 2 + 3 + Screening Elements + 0 + 0 + In (0,1,2) + 0;"None";1;"Monitored Memberships";2;"Network Selections" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2866 + Determines which lines/transformers would be screened for post-contingency flow under this contingency + true + + + 2143 + 341 + 12 + 4 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2144 + 341 + 12 + 5 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2145 + 341 + 12 + 6 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2146 + 347 + 1 + 1 + Max Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2950 + Post-contingency flow limit in the reference direction + 800000000 + true + + + 2147 + 347 + 1 + 2 + Min Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2951 + Post-contingency flow limit in the counter-reference direction + 800000000 + true + + + 2148 + 349 + 1 + 1 + Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2952 + Post-contingency flow limit + 800000000 + true + + + 2149 + 352 + 1 + 1 + Max Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2950 + Post-contingency flow limit in the reference direction + 800000000 + true + + + 2150 + 352 + 1 + 2 + Min Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2951 + Post-contingency flow limit in the counter-reference direction + 800000000 + true + + + 2151 + 353 + 2 + 1 + Pricing Method + 0 + 0 + In (0,1,2) + 0;"Load Weighted Average";1;"Generation Weighted Average";2;"Weighted Average" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 620 + Method used to calculate the hub price + 4000000 + true + + + 2152 + 353 + 3 + 2 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Hub is in service + 800000 + true + + + 2153 + 353 + 12 + 3 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2154 + 353 + 12 + 4 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2155 + 353 + 12 + 5 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2156 + 356 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of hub load + true + + + 2157 + 356 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of hub generation + true + + + 2158 + 357 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of hub load + true + + + 2159 + 357 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of hub generation + true + + + 2160 + 358 + 2 + 1 + Type + 0 + 0 + In (0,1,2) + 0;"TCC";1;"TCR";2;"CRR"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Type of transmission right + 4000000 + false + + + 2161 + 358 + 2 + 2 + Hedge Type + 0 + 0 + In (0,1) + 0;"Obligation";1;"Option"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2803 + Type of transmission right + 4000000 + true + + + 2162 + 358 + 2 + 3 + Settlement Model + 0 + 0 + In (0,1) + 0;"Buy";1;"Sell" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 1653 + Direction of settlement + 4000000 + true + + + 2163 + 358 + 2 + 4 + Pricing Method + 0 + 0 + In (0,1) + 0;"LMP";1;"Congestion Charge" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 620 + Pricing method + 4000000 + true + + + 2164 + 358 + 3 + 5 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Transmission Right is in service + 800000 + true + + + 2165 + 358 + 3 + 6 + Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 650 + Contract quantity + 5 + true + + + 2166 + 358 + 3 + 7 + Rental Share + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 682 + Percent of rent in the reference direction included in the contract + 4 + true + + + 2167 + 358 + 3 + 8 + Rental Back Share + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 680 + Percent of rent in the counter-reference direction included in the contract + 4 + true + + + 2168 + 358 + 3 + 9 + Price + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Scheduled price + true + + + 2169 + 368 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of the transmission right + 40 + true + + + 2170 + 369 + 2 + 1 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the Heat Plant. + 1000000000 + true + + + 2171 + 369 + 2 + 2 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2172 + 369 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2173 + 369 + 3 + 4 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of Heat Plant units in service + 800000 + true + + + 2174 + 369 + 3 + 5 + Max Capacity + 35 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 414 + Maximum heat production + 20000 + true + + + 2175 + 369 + 3 + 6 + Efficiency Base + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 887 + Heat production no-load efficiency + 21000 + true + + + 2176 + 369 + 3 + 7 + Efficiency Incr + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Heat production efficiency + 21000 + true + + + 2177 + 369 + 3 + 8 + VO&M Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 2178 + 369 + 3 + 9 + Load Point + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate. + 1000 + true + + + 2179 + 369 + 3 + 10 + Heat Rate + 37 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 260 + Average heat rate (total fuel divided by total heat production) + 1001 + true + + + 2180 + 369 + 3 + 11 + Heat Rate Base + 35 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 2181 + 369 + 3 + 12 + Heat Rate Incr + 37 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 2182 + 369 + 3 + 13 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 2183 + 369 + 3 + 14 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 2184 + 369 + 3 + 15 + Run Up Rate + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while running the unit up from zero to [Min Stable Level]. + 80000000 + true + + + 2185 + 369 + 3 + 16 + Start Profile + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for running the unit up from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 2186 + 369 + 3 + 17 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 2187 + 369 + 3 + 18 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 2188 + 369 + 3 + 19 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 2189 + 369 + 3 + 20 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 2190 + 369 + 3 + 21 + Max Ramp Up + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 2191 + 369 + 3 + 22 + Max Ramp Down + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 2192 + 369 + 3 + 23 + Min Stable Level + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 501 + Minimum stable Heat Production level + 1000000081 + true + + + 2193 + 369 + 3 + 24 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 2194 + 369 + 8 + 25 + Max Units Built + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 2195 + 369 + 8 + 26 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2196 + 369 + 8 + 27 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2197 + 369 + 8 + 28 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Heat Plant + 8 + true + + + 2198 + 369 + 8 + 29 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 2199 + 369 + 8 + 30 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 2200 + 369 + 8 + 31 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Heat Plant (period over which fixed costs are recovered). + 9 + true + + + 2201 + 369 + 8 + 32 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2202 + 369 + 8 + 33 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2203 + 369 + 8 + 34 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2204 + 369 + 8 + 35 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2205 + 369 + 8 + 36 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Heat Plant + 8 + true + + + 2206 + 369 + 8 + 37 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2207 + 369 + 8 + 38 + Max Units Retired in Year + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2208 + 369 + 8 + 39 + Min Units Retired in Year + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2209 + 369 + 11 + 40 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2210 + 369 + 11 + 41 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2211 + 369 + 12 + 42 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2212 + 369 + 12 + 43 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2213 + 369 + 12 + 44 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2214 + 372 + 1 + 1 + Mutually Exclusive + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 998 + If the Fuel cannot be mixed with other Fuels associated with this heat plant. + 80 + true + + + 2215 + 372 + 1 + 2 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Fixed fuel mix ratio + 80 + true + + + 2216 + 372 + 1 + 3 + Min Ratio + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 494 + Minimum fuel mix ratio + 80 + true + + + 2217 + 372 + 1 + 4 + Max Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 450 + Maximum fuel mix ratio + 80 + true + + + 2218 + 372 + 1 + 5 + Max Input + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 433 + Maximum amount of fuel input to heat plant + 80 + true + + + 2219 + 372 + 1 + 6 + Is Available + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 332 + If the fuel is available for use by the generator + 800000 + true + + + 2220 + 372 + 1 + 7 + Heat Rate Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 266 + Scalar on base heat plant heat rate function + 1000 + true + + + 2221 + 372 + 1 + 8 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 2222 + 372 + 1 + 9 + Heat Rate + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Heat-rate at load point (used with Load Point) or 'b' in the heat input function + 1000 + true + + + 2223 + 372 + 1 + 10 + Heat Rate Incr + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + Average marginal heat-rate in band + 1000 + true + + + 2224 + 373 + 1 + 1 + Offtake at Start + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 578 + Fuel required to start a unit + 1080000000 + true + + + 2225 + 376 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 2226 + 378 + 3 + 1 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + 1000000000 + true + + + 2227 + 378 + 3 + 2 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + 1000 + true + + + 2228 + 378 + 3 + 3 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + 1000 + true + + + 2229 + 379 + 3 + 1 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 2230 + 379 + 3 + 2 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake of the heat plant + true + + + 2231 + 379 + 3 + 3 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + true + + + 2232 + 380 + 1 + 1 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake in condition + true + + + 2233 + 381 + 2 + 1 + Allow Dump Heat + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1927 + Model Heat Node [Dump Heat] in the mathematical program. + 40000000 + true + + + 2234 + 381 + 2 + 2 + Allow Unserved Heat + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2420 + Model Heat Node [Unserved Heat] in the mathematical program. + 40000000 + true + + + 2235 + 381 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of Heat Node units in service + 800000 + true + + + 2236 + 381 + 3 + 4 + Heat Demand + 15 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 1941 + Heat demand at the node + true + + + 2237 + 381 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2238 + 381 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2239 + 381 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2240 + 384 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 2241 + 385 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the water plant + 20000 + false + + + 2242 + 386 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 2243 + 386 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Heat consumption for each unit of consumption + true + + + 2244 + 386 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Heat production for each unit of production + true + + + 2245 + 386 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Heat consumption for each unit operating + 1000000000 + true + + + 2246 + 386 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Heat consumption for each installed unit + 4 + true + + + 2247 + 388 + 3 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node + true + + + 2248 + 389 + 3 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node + true + + + 2249 + 390 + 1 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node in condition + true + + + 2250 + 391 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of balancing the Heat Storage + true + + + 2251 + 391 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period heat volumes + 4000 + true + + + 2252 + 391 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next + 400000000 + true + + + 2253 + 391 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term + 400000000 + true + + + 2254 + 391 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term + 400000000 + true + + + 2255 + 391 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term + 400000000 + true + + + 2256 + 391 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term + 400000000 + true + + + 2257 + 391 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations + 400000000 + true + + + 2258 + 391 + 2 + 9 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2259 + 391 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2260 + 391 + 3 + 11 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of Heat Storage units in service + 800000 + true + + + 2261 + 391 + 3 + 12 + Max Heat + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1514 + Maximum heat allowed in storage + 400020000 + true + + + 2262 + 391 + 3 + 13 + Min Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1515 + Minimum heat allowed in storage + 400020000 + true + + + 2263 + 391 + 3 + 14 + Heat Loss + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1516 + Rate at which heat is lost from storage + 400020000 + true + + + 2264 + 391 + 3 + 15 + Heat Injection Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2222 + Efficiency of heat injection + 400020000 + true + + + 2265 + 391 + 3 + 16 + Heat Withdrawal Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2223 + Efficiency of heat withdrawal + 400020000 + true + + + 2266 + 391 + 3 + 17 + Heat Injection Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1519 + Incremental cost of injecting heat into the storage + 400020000 + true + + + 2267 + 391 + 3 + 18 + Heat Withdrawal Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1518 + Incremental cost of withdrawing heat from the storage + 400020000 + true + + + 2268 + 391 + 3 + 19 + Initial Heat + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2212 + Initial heat in the storage + 400020000 + true + + + 2269 + 391 + 3 + 20 + Dump Heat Penalty + 60 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2224 + Penalty applied to dump heat from the storage. A value of -1 means dump is not allowed. + 400020000 + true + + + 2270 + 391 + 9 + 21 + Max Heat Injection + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1525 + Maximum amount of heat that can be injected into the storage + 400020000 + true + + + 2271 + 391 + 9 + 21 + Max Heat Injection Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1554 + Maximum amount of heat that can be injected into the storage in a hour + 400020000 + true + + + 2272 + 391 + 9 + 21 + Max Heat Injection Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1526 + Maximum amount of heat that can be injected into the storage in a day + 400020000 + true + + + 2273 + 391 + 9 + 21 + Max Heat Injection Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1527 + Maximum amount of heat that can be injected into the storage in a week + 400020000 + true + + + 2274 + 391 + 9 + 21 + Max Heat Injection Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1528 + Maximum amount of heat that can be injected into the storage in a month + 400020000 + true + + + 2275 + 391 + 9 + 21 + Max Heat Injection Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1529 + Maximum amount of heat that can be injected into the storage in a year + 400020000 + true + + + 2276 + 391 + 9 + 22 + Min Heat Injection + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1535 + Amount of heat that must be injected into the storage + 400020000 + true + + + 2277 + 391 + 9 + 22 + Min Heat Injection Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1556 + Amount of heat that must be injected into the storage each hour + 400020000 + true + + + 2278 + 391 + 9 + 22 + Min Heat Injection Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1536 + Amount of heat that must be injected into the storage each day + 400020000 + true + + + 2279 + 391 + 9 + 22 + Min Heat Injection Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1537 + Amount of heat that must be injected into the storage each week + 400020000 + true + + + 2280 + 391 + 9 + 22 + Min Heat Injection Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1538 + Amount of heat that must be injected into the storage each month + 400020000 + true + + + 2281 + 391 + 9 + 22 + Min Heat Injection Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1539 + Amount of heat that must be injected into the storage each year + 400020000 + true + + + 2282 + 391 + 9 + 23 + Max Heat Withdrawal + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1520 + Maximum amount of heat that can be withdrawn from the storage + 400020000 + true + + + 2283 + 391 + 9 + 23 + Max Heat Withdrawal Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1553 + Maximum amount of heat that can be withdrawn from the storage in a hour + 400020000 + true + + + 2284 + 391 + 9 + 23 + Max Heat Withdrawal Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1521 + Maximum amount of heat that can be withdrawn from the storage in a day + 400020000 + true + + + 2285 + 391 + 9 + 23 + Max Heat Withdrawal Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1522 + Maximum amount of heat that can be withdrawn from the storage in a week + 400020000 + true + + + 2286 + 391 + 9 + 23 + Max Heat Withdrawal Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1523 + Maximum amount of heat that can be withdrawn from the storage in a month + 400020000 + true + + + 2287 + 391 + 9 + 23 + Max Heat Withdrawal Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1524 + Maximum amount of heat that can be withdrawn from the storage in a year + 400020000 + true + + + 2288 + 391 + 9 + 24 + Min Heat Withdrawal + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1530 + Amount of heat that must be withdrawn from storage + 400020000 + true + + + 2289 + 391 + 9 + 24 + Min Heat Withdrawal Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1555 + Amount of heat that must be withdrawn from storage each hour + 400020000 + true + + + 2290 + 391 + 9 + 24 + Min Heat Withdrawal Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1531 + Amount of heat that must be withdrawn from storage each day + 400020000 + true + + + 2291 + 391 + 9 + 24 + Min Heat Withdrawal Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1532 + Amount of heat that must be withdrawn from storage each week + 400020000 + true + + + 2292 + 391 + 9 + 24 + Min Heat Withdrawal Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1533 + Amount of heat that must be withdrawn from storage each month + 400020000 + true + + + 2293 + 391 + 9 + 24 + Min Heat Withdrawal Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1534 + Amount of heat that must be withdrawn from storage each year + 400020000 + true + + + 2294 + 391 + 9 + 25 + Target + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Storage target per interval + 80 + true + + + 2295 + 391 + 9 + 25 + Target Hour + 15 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + End of hour storage target + 80 + true + + + 2296 + 391 + 9 + 25 + Target Day + 15 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + End of day storage target + 80 + true + + + 2297 + 391 + 9 + 25 + Target Week + 15 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 2298 + 391 + 9 + 25 + Target Month + 15 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + End of month storage target + 80 + true + + + 2299 + 391 + 9 + 25 + Target Year + 15 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + End of year storage target + 80 + true + + + 2300 + 391 + 9 + 26 + Target Penalty + 60 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target + 80 + true + + + 2301 + 391 + 8 + 27 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2302 + 391 + 8 + 28 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of heat storage project, for expansion planning. + 8 + true + + + 2303 + 391 + 8 + 29 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the heat storage + 8 + true + + + 2304 + 391 + 8 + 30 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the heat storage + 8009 + true + + + 2305 + 391 + 8 + 31 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2306 + 391 + 8 + 32 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the heat storage (period over which fixed costs are recovered). + 8 + true + + + 2307 + 391 + 8 + 33 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2030 + Indicates if the heat storage is eligible for retirement planning + 8 + true + + + 2308 + 391 + 8 + 34 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the heat storage + 88 + true + + + 2309 + 391 + 8 + 35 + Max Units Built + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 2310 + 391 + 8 + 36 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2311 + 391 + 8 + 37 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2312 + 391 + 8 + 38 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2313 + 391 + 8 + 39 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2314 + 391 + 8 + 40 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2315 + 391 + 8 + 41 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2316 + 391 + 8 + 42 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2317 + 391 + 11 + 43 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 2318 + 391 + 11 + 44 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 2319 + 395 + 3 + 1 + End Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2214 + Coefficient of storage end heat. + true + + + 2320 + 395 + 3 + 2 + Injection Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of heat storage injection + true + + + 2321 + 395 + 3 + 3 + Withdrawal Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of heat storage withdrawal + true + + + 2322 + 395 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2323 + 395 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2324 + 395 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2325 + 395 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2326 + 396 + 3 + 1 + End Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2214 + Coefficient of storage end heat + true + + + 2327 + 396 + 3 + 2 + Injection Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of heat storage injection + true + + + 2328 + 396 + 3 + 3 + Withdrawal Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of heat storage withdrawal + true + + + 2329 + 396 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2330 + 396 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2331 + 396 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2332 + 396 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2333 + 397 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 2334 + 397 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 2335 + 397 + 2 + 3 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 2336 + 397 + 2 + 4 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 2337 + 397 + 2 + 5 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 2338 + 397 + 2 + 6 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 2339 + 397 + 2 + 7 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 2340 + 397 + 2 + 8 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 2341 + 397 + 2 + 9 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 2342 + 397 + 2 + 10 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 2343 + 397 + 2 + 11 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 2344 + 397 + 2 + 12 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 2345 + 397 + 2 + 13 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2346 + 397 + 2 + 14 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2347 + 397 + 2 + 15 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2348 + 397 + 2 + 16 + Use Additive Ratchet + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2210 + If additive ratchet use is enforced. + 80 + true + + + 2349 + 397 + 2 + 17 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2350 + 397 + 3 + 18 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Field is in service + 800000 + true + + + 2351 + 397 + 3 + 19 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of gas in the field + 80001 + true + + + 2352 + 397 + 3 + 20 + Production Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1274 + Incremental cost of extracting gas from the field + 2000000000 + true + + + 2353 + 397 + 3 + 21 + Dispatch Production Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2142 + Incremental dispatch cost of extracting gas from the field + 2000000000 + true + + + 2354 + 397 + 3 + 22 + Production Volume + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 1743 + Volume of gas in Production Cost band + 2000000000 + true + + + 2355 + 397 + 3 + 23 + Production Tranches + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2521 + Number of production tranches to generate (must be > 1 to auto-generate) + 400000 + true + + + 2356 + 397 + 3 + 24 + Reset Production Volumes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2236 + If the production volumes should be reset in the current period. + 80 + true + + + 2357 + 397 + 3 + 25 + Withdrawal Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1937 + Maximum amount of gas that can be withdrawn from the field in any interval when defining a gas field ratchet. + true + + + 2358 + 397 + 3 + 26 + Withdrawal Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1744 + Maximum amount of gas that can be withdrawn from the field. + true + + + 2359 + 397 + 3 + 27 + Withdrawal Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1977 + Gas withdrawal factor for gas field. + true + + + 2360 + 397 + 3 + 28 + External Injection + 100 + 0 + 1 + 0 + 2 + 0 + false + false + false + false + 1 + 1460 + External injection into the gas field + true + + + 2361 + 397 + 3 + 29 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2362 + 397 + 3 + 30 + Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1968 + Carrying rate for gas field per year + true + + + 2363 + 397 + 3 + 31 + Initial Inventory Price + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2074 + Price linked to initial inventory + true + + + 2364 + 397 + 3 + 32 + Inventory Charge + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Charge per unit of inventory each day + true + + + 2365 + 397 + 3 + 33 + Ratchet Type + 0 + 0 + In (0,1,2) + 2;"Linear Convex";1;"Linear";0;"Step" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2037 + Indicates how the gas field ratchets are represented + true + + + 2366 + 397 + 3 + 34 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Field + 100 + true + + + 2367 + 397 + 9 + 35 + Max Ramp + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in gas field per interval + 80 + true + + + 2368 + 397 + 9 + 35 + Max Ramp Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum rate of change in gas field in an hour + 80 + true + + + 2369 + 397 + 9 + 35 + Max Ramp Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum rate of change in gas field in a day + 80 + true + + + 2370 + 397 + 9 + 35 + Max Ramp Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum rate of change in gas field in a week + 80 + true + + + 2371 + 397 + 9 + 35 + Max Ramp Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum rate of change in gas field in a month + 80 + true + + + 2372 + 397 + 9 + 35 + Max Ramp Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum rate of change in gas field in a year + 80 + true + + + 2373 + 397 + 9 + 36 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas from the field + 80 + true + + + 2374 + 397 + 9 + 36 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1561 + Maximum hourly production of gas from the field + 80 + true + + + 2375 + 397 + 9 + 36 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 1 + false + false + false + false + 1 + 950 + Maximum production of gas from the field in any day + 80 + true + + + 2376 + 397 + 9 + 36 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production of gas from the field in any week + 80 + true + + + 2377 + 397 + 9 + 36 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production of gas from the field in any month + 80 + true + + + 2378 + 397 + 9 + 36 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production of gas from the field in any year + 80 + true + + + 2379 + 397 + 9 + 37 + Min Production + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas from the field + 80 + true + + + 2380 + 397 + 9 + 37 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1572 + Minimum hourly production of gas from the field + 80 + true + + + 2381 + 397 + 9 + 37 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 1 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas from the field + 80 + true + + + 2382 + 397 + 9 + 37 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas from the field + 80 + true + + + 2383 + 397 + 9 + 37 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas from the field + 80 + true + + + 2384 + 397 + 9 + 37 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas from the field + 80 + true + + + 2385 + 397 + 9 + 38 + Target + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Gas Field Target + 80 + true + + + 2386 + 397 + 9 + 38 + Target Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + End of hour gas field target + 80 + true + + + 2387 + 397 + 9 + 38 + Target Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + End of day gas field target + 80 + true + + + 2388 + 397 + 9 + 38 + Target Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + End of week gas field target + 80 + true + + + 2389 + 397 + 9 + 38 + Target Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + End of month gas field target + 80 + true + + + 2390 + 397 + 9 + 38 + Target Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + End of year gas field target + 80 + true + + + 2391 + 397 + 9 + 39 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1187 + Penalty for violating the target + 80 + true + + + 2392 + 397 + 9 + 40 + Min Production Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2428 + Min Production Target Percent for gas fields + 80 + true + + + 2393 + 397 + 9 + 41 + Max Production Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2429 + Max Production Target Percent for gas fields + 80 + true + + + 2394 + 397 + 7 + 42 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2395 + 397 + 7 + 43 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2396 + 397 + 7 + 44 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2397 + 397 + 7 + 45 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Field Max Production during the outage + 1000000 + true + + + 2398 + 397 + 7 + 46 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2399 + 397 + 7 + 47 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2400 + 397 + 7 + 48 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2401 + 397 + 7 + 49 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2402 + 397 + 7 + 50 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2403 + 397 + 8 + 51 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 2404 + 397 + 8 + 52 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2405 + 397 + 8 + 53 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas field project, for expansion planning. + 8 + true + + + 2406 + 397 + 8 + 54 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas field + 8 + true + + + 2407 + 397 + 8 + 55 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of developing the gas field + 8009 + true + + + 2408 + 397 + 8 + 56 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2409 + 397 + 8 + 57 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas field (period over which fixed costs are recovered). + 8 + true + + + 2410 + 397 + 8 + 58 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 2411 + 397 + 8 + 59 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2412 + 397 + 8 + 60 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Field production + 8009 + false + + + 2413 + 397 + 12 + 61 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2414 + 397 + 12 + 62 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2415 + 397 + 12 + 63 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2416 + 400 + 1 + 1 + Min Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Field in the blend + 100 + true + + + 2417 + 400 + 1 + 2 + Max Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Field in the blend + 100 + true + + + 2418 + 400 + 1 + 3 + Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of gas field contributing to a gas node + true + + + 2419 + 401 + 1 + 1 + Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of gas field contributing to a gas basin + true + + + 2420 + 402 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of gas field + true + + + 2421 + 403 + 1 + 1 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 2422 + 404 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas field end volume + true + + + 2423 + 404 + 3 + 2 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas field production in the constraint + true + + + 2424 + 404 + 3 + 3 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas field end volume in the constraint + true + + + 2425 + 404 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2426 + 404 + 8 + 5 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2427 + 405 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas field end volume + true + + + 2428 + 405 + 3 + 2 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas field production + true + + + 2429 + 405 + 3 + 3 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas field end volume + true + + + 2430 + 405 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2431 + 405 + 8 + 5 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2432 + 406 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Plant for the generation of outages + 101000000 + true + + + 2433 + 406 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2434 + 406 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2435 + 406 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2436 + 406 + 2 + 5 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2437 + 406 + 2 + 6 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this gas plant receives capacity payments. + 8 + false + + + 2438 + 406 + 9 + 7 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas + 80 + true + + + 2439 + 406 + 9 + 7 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1561 + Maximum hourly production of gas + 80 + true + + + 2440 + 406 + 9 + 7 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 1 + false + false + false + false + 1 + 950 + Maximum daily production of gas + 80 + true + + + 2441 + 406 + 9 + 7 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum weekly production of gas + 80 + true + + + 2442 + 406 + 9 + 7 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum monthly production of gas + 80 + true + + + 2443 + 406 + 9 + 7 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum annual production of gas + 80 + true + + + 2444 + 406 + 9 + 8 + Min Production + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas + 80 + true + + + 2445 + 406 + 9 + 8 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1572 + Minimum hourly production of gas + 80 + true + + + 2446 + 406 + 9 + 8 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 1 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas + 80 + true + + + 2447 + 406 + 9 + 8 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas + 80 + true + + + 2448 + 406 + 9 + 8 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas + 80 + true + + + 2449 + 406 + 9 + 8 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas + 80 + true + + + 2450 + 406 + 9 + 9 + Max Ramp + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in gas production per interval + 80 + false + + + 2451 + 406 + 9 + 9 + Max Ramp Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum rate of change in gas production in an hour + 80 + false + + + 2452 + 406 + 9 + 9 + Max Ramp Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum rate of change in gas production in a day + 80 + false + + + 2453 + 406 + 9 + 9 + Max Ramp Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum rate of change in gas production in a week + 80 + false + + + 2454 + 406 + 9 + 9 + Max Ramp Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum rate of change in gas production in a month + 80 + false + + + 2455 + 406 + 9 + 9 + Max Ramp Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum rate of change in gas production in a year + 80 + false + + + 2456 + 406 + 9 + 9 + Max Ramp Up Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2822 + Sets a limit on the rate at which the gas plant can increase production from one hour to the next + 80 + false + + + 2457 + 406 + 9 + 9 + Max Ramp Up Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2823 + Sets a limit on the rate at which the gas plant can increase production from one day to the next + 80 + false + + + 2458 + 406 + 9 + 9 + Max Ramp Up Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2824 + Sets a limit on the rate at which the gas plant can increase production from one week to the next + 80 + false + + + 2459 + 406 + 9 + 9 + Max Ramp Up Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2825 + Sets a limit on the rate at which the gas plant can increase production from one month to the next + 80 + false + + + 2460 + 406 + 9 + 9 + Max Ramp Up Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2826 + Sets a limit on the rate at which the gas plant can increase production from one year to the next + 80 + false + + + 2461 + 406 + 9 + 9 + Max Ramp Down Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2827 + Sets a limit on the rate at which the gas plant can decrease production from one hour to the next + 80 + false + + + 2462 + 406 + 9 + 9 + Max Ramp Down Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2828 + Sets a limit on the rate at which the gas plant can decrease production from one day to the next + 80 + false + + + 2463 + 406 + 9 + 9 + Max Ramp Down Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2829 + Sets a limit on the rate at which the gas plant can decrease production from one week to the next + 80 + false + + + 2464 + 406 + 9 + 9 + Max Ramp Down Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2830 + Sets a limit on the rate at which the gas plant can decrease production from one month to the next + 80 + false + + + 2465 + 406 + 9 + 9 + Max Ramp Down Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2831 + Sets a limit on the rate at which the gas plant can decrease production from one year to the next + 80 + false + + + 2466 + 406 + 3 + 10 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of Gas Plant units in service + 800000 + true + + + 2467 + 406 + 3 + 11 + Min Stable Level + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 501 + Minimum allowed gas production when operating + 1000000081 + true + + + 2468 + 406 + 3 + 12 + Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 665 + Rated capacity of units + 81 + false + + + 2469 + 406 + 3 + 13 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + false + + + 2470 + 406 + 3 + 14 + Load Point + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate. + 1000 + false + + + 2471 + 406 + 3 + 15 + Heat Rate + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Average heat rate (total fuel divided by total generation) + 1001 + false + + + 2472 + 406 + 3 + 16 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + false + + + 2473 + 406 + 3 + 17 + Heat Rate Incr + 72 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + false + + + 2474 + 406 + 3 + 18 + Processing Rate + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1737 + Processing ratio to convert raw natural gas to pipeline quality + true + + + 2475 + 406 + 3 + 19 + Processing Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1738 + Incremental cost of processing gas + true + + + 2476 + 406 + 3 + 20 + Dispatch Processing Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2380 + This replaces the processing charge for the optimization, but on the output side the Processing Charge is used in the cost calculations. + true + + + 2477 + 406 + 3 + 21 + Consumption + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1437 + The amount of pipeline quality gas consumed in processing + true + + + 2478 + 406 + 3 + 22 + Energy Usage + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption of Gas Plant + true + + + 2479 + 406 + 3 + 23 + Retail Electric Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2515 + Retail price of electric power used by the gas plant + true + + + 2480 + 406 + 3 + 24 + VO&M Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000000 + true + + + 2481 + 406 + 3 + 25 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2482 + 406 + 3 + 26 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Plant + 100 + true + + + 2483 + 406 + 3 + 27 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 2484 + 406 + 3 + 28 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 2485 + 406 + 3 + 29 + Run Up Rate + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while increasing gas production from zero to [Min Stable Level]. + 80000000 + true + + + 2486 + 406 + 3 + 30 + Start Profile + 100 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for increasing gas production from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 2487 + 406 + 3 + 31 + Start Profile Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2639 + Penalty for violation of [Start Profile]. + 80 + true + + + 2488 + 406 + 3 + 32 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 2489 + 406 + 3 + 33 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 2490 + 406 + 3 + 34 + Run Down Rate + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1020 + Ramp rate that applies while running the unit down from [Min Stable Level] to zero + 200000000 + true + + + 2491 + 406 + 3 + 35 + Shutdown Profile + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 933 + Detailed regime for running the unit down from [Min Stable Level] when [Run Down Rate] is non-constant. + 200000000 + true + + + 2492 + 406 + 3 + 36 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 2493 + 406 + 3 + 37 + Max Ramp Up + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Sets a limit on the rate at which the gas plant can increase production from one interval to the next + 80 + true + + + 2494 + 406 + 3 + 38 + Ramp Up Point + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Gas production point for use with multi-band Max Ramp Up constraints + 80 + true + + + 2495 + 406 + 3 + 39 + Ramp Up Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 2496 + 406 + 3 + 40 + Max Ramp Up Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 2497 + 406 + 3 + 41 + Max Ramp Down + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Sets a limit on the rate at which the gas plant can decrease production from one interval to the next + 80 + true + + + 2498 + 406 + 3 + 42 + Ramp Down Point + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Gas production point for use with multi-band Max Ramp Down constraints + 80 + true + + + 2499 + 406 + 3 + 43 + Ramp Down Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 2500 + 406 + 3 + 44 + Max Ramp Down Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 2501 + 406 + 7 + 45 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2502 + 406 + 7 + 46 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + false + + + 2503 + 406 + 7 + 47 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2504 + 406 + 7 + 48 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2505 + 406 + 7 + 49 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Plant Max Production during the outage + 1000000 + true + + + 2506 + 406 + 7 + 50 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2507 + 406 + 7 + 51 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2508 + 406 + 7 + 52 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2509 + 406 + 7 + 53 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2510 + 406 + 7 + 54 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2511 + 406 + 8 + 55 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2512 + 406 + 8 + 56 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2513 + 406 + 8 + 57 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2514 + 406 + 8 + 58 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Gas Plant + 8 + true + + + 2515 + 406 + 8 + 59 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the Gas Plant + 8009 + true + + + 2516 + 406 + 8 + 60 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2517 + 406 + 8 + 61 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Gas Plant (period over which fixed costs are recovered). + 8 + true + + + 2518 + 406 + 8 + 62 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2519 + 406 + 8 + 63 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2520 + 406 + 8 + 64 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2521 + 406 + 8 + 65 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2522 + 406 + 8 + 66 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the Gas Plant + 88 + true + + + 2523 + 406 + 8 + 67 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2524 + 406 + 8 + 68 + Max Units Retired in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2525 + 406 + 8 + 69 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2526 + 406 + 8 + 70 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2527 + 406 + 8 + 71 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Plant production + 8009 + false + + + 2528 + 406 + 8 + 72 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the plant for capacity + 4000008 + false + + + 2529 + 406 + 11 + 73 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2530 + 406 + 11 + 74 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2531 + 406 + 12 + 75 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2532 + 406 + 12 + 76 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2533 + 406 + 12 + 77 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2534 + 411 + 1 + 1 + Min Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Plant in the blend + 100 + true + + + 2535 + 411 + 1 + 2 + Max Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Plant in the blend + 100 + true + + + 2536 + 412 + 1 + 1 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 2537 + 413 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas node production + true + + + 2538 + 413 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Gas Plant capacity factor + true + + + 2539 + 413 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + false + + + 2540 + 413 + 3 + 4 + Energy Usage Coefficient + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Gas Plant + true + + + 2541 + 413 + 3 + 5 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas production in the constraint + true + + + 2542 + 413 + 3 + 6 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + false + + + 2543 + 413 + 6 + 7 + Installed Capacity Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 2544 + 413 + 8 + 8 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2545 + 413 + 8 + 9 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2546 + 413 + 8 + 10 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2547 + 413 + 8 + 11 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2548 + 413 + 8 + 12 + Capacity Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 2549 + 413 + 8 + 13 + Capacity Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 2550 + 413 + 8 + 14 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2551 + 413 + 8 + 15 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 2552 + 413 + 8 + 16 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 2553 + 414 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas node production + true + + + 2554 + 414 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Gas Plant capacity factor + true + + + 2555 + 414 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + true + + + 2556 + 414 + 3 + 4 + Energy Usage Coefficient + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Gas Plant + true + + + 2557 + 414 + 6 + 5 + Installed Capacity Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 2558 + 414 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2559 + 414 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2560 + 414 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2561 + 414 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2562 + 414 + 8 + 10 + Capacity Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 2563 + 414 + 8 + 11 + Capacity Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 2564 + 414 + 8 + 12 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2565 + 414 + 8 + 13 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 2566 + 414 + 8 + 14 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 2567 + 415 + 1 + 1 + Energy Usage Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1886 + Coefficient of the Decision Variable in the Gas Plant Energy Usage definition equation + true + + + 2568 + 416 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 2569 + 416 + 2 + 2 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 2570 + 416 + 2 + 3 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 2571 + 416 + 2 + 4 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 2572 + 416 + 2 + 5 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 2573 + 416 + 2 + 6 + Decomposition Method + 0 + 0 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 2574 + 416 + 2 + 7 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 2575 + 416 + 2 + 8 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 2576 + 416 + 2 + 9 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 2577 + 416 + 2 + 10 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 2578 + 416 + 2 + 11 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 2579 + 416 + 2 + 12 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 2580 + 416 + 2 + 13 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2581 + 416 + 2 + 14 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2582 + 416 + 2 + 15 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2583 + 416 + 2 + 16 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2584 + 416 + 3 + 17 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Pipeline is in service + false + + + 2585 + 416 + 3 + 18 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Pipeline is available for flow. + true + + + 2586 + 416 + 3 + 19 + Max Daily Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2031 + Max daily total gas release for the pipeline + false + + + 2587 + 416 + 3 + 20 + Max Daily Flow Back + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2702 + Max daily total gas release back for the pipeline + false + + + 2588 + 416 + 3 + 21 + Is Bidirectional + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2033 + Indicates if the pipeline allows flow in both directions + 800000 + true + + + 2589 + 416 + 3 + 22 + Diameter + 23 + 0.762 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1796 + Gas pipeline diameter + false + + + 2590 + 416 + 3 + 23 + Roughness + 0 + 150 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1797 + Gas pipeline roughness constant + false + + + 2591 + 416 + 3 + 24 + Length + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1798 + Length of the Gas Pipeline + false + + + 2592 + 416 + 3 + 25 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 639 + Efficiency of Gas Pipeline pump + false + + + 2593 + 416 + 3 + 26 + Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1268 + Incremental cost of extracting gas from the pipeline + 2000000000 + true + + + 2594 + 416 + 3 + 27 + Dispatch Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2349 + Dispatch cost of extracting gas at the pipeline receiving node + 2000000000 + true + + + 2595 + 416 + 3 + 28 + Flow Charge Level + 100 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2376 + Level corresponding to Flow Charge + 2000000000 + true + + + 2596 + 416 + 3 + 29 + Flow Charge Level Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2788 + Level factor corresponding to Flow Charge + 2000000000 + true + + + 2597 + 416 + 3 + 30 + Flow Charge Back + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1639 + Incremental cost of extracting gas at the pipeline sending node + 2000000000 + true + + + 2598 + 416 + 3 + 31 + Dispatch Flow Charge Back + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2350 + Dispatch cost of extracting gas at the pipeline sending node + 2000000000 + true + + + 2599 + 416 + 3 + 32 + Flow Charge Back Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2377 + Level corresponding to Flow Charge Back + 2000000000 + true + + + 2600 + 416 + 3 + 33 + Flow Charge Back Level Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2789 + Level factor corresponding to Flow Charge Back + 2000000000 + true + + + 2601 + 416 + 3 + 34 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Volume of gas stored in the pipeline at the beginning of the horizon + 80000 + true + + + 2602 + 416 + 3 + 35 + Max Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 466 + Maximum volume of gas stored in the pipeline + 4 + true + + + 2603 + 416 + 3 + 36 + Min Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 510 + Minimum volume of gas stored in the pipeline + 4 + true + + + 2604 + 416 + 3 + 37 + Imbalance Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1655 + The charge applicable to the volume imbalance + 2000000000 + true + + + 2605 + 416 + 3 + 38 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2606 + 416 + 3 + 39 + Consumption Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1814 + Proportion of the electricity consumption allocated to the receiving gas node + false + + + 2607 + 416 + 3 + 40 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1602 + Reservation charge for gas pipeline + true + + + 2608 + 416 + 3 + 41 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1965 + Reservation volume for gas pipeline + true + + + 2609 + 416 + 3 + 42 + Loss Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Loss rate for gas pipeline flow + 200000 + true + + + 2610 + 416 + 3 + 43 + Initial Pressure + 89 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2421 + Pressure of gas stored in the pipeline at the beginning of the horizon + 80000 + true + + + 2611 + 416 + 3 + 44 + Min Volume Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2422 + Minimum percentage of max volume that must be stored in the Gas Pipeline to maintain pressure + true + + + 2612 + 416 + 3 + 45 + Min Pressure Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2423 + Minimum percentage of max pressure that must be stored in the Gas Pipeline to maintain pressure + true + + + 2613 + 416 + 3 + 46 + Max Pressure + 89 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2424 + Maximum pressure of gas stored in the pipeline + true + + + 2614 + 416 + 3 + 47 + Entitlement Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2503 + Indicates whether maximum flow entitlement is at the input node (gross) or at the output node (net). + true + + + 2615 + 416 + 3 + 48 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the gas pipeline energy consumption curve. + false + + + 2616 + 416 + 3 + 49 + Energy Consumed Flow Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2122 + Flow level defining the gas pipeline energy consumption curve. + false + + + 2617 + 416 + 9 + 50 + Max Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 429 + Maximum quantity of gas that can be extracted from the pipeline + 5 + true + + + 2618 + 416 + 9 + 50 + Max Flow Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1584 + Maximum quantity of gas that can be extracted from the pipeline each hour + 4 + true + + + 2619 + 416 + 9 + 50 + Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum quantity of gas that can be extracted from the pipeline each day + 4 + true + + + 2620 + 416 + 9 + 50 + Max Flow Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1586 + Maximum quantity of gas that can be extracted from the pipeline each week + 4 + true + + + 2621 + 416 + 9 + 50 + Max Flow Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1587 + Maximum quantity of gas that can be extracted from the pipeline each month + 4 + true + + + 2622 + 416 + 9 + 50 + Max Flow Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1588 + Maximum quantity of gas that can be extracted from the pipeline each year + 4 + true + + + 2623 + 416 + 9 + 51 + Min Flow + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 481 + Minimum quantity of gas that can be extracted at the pipeline receiving node + 5 + true + + + 2624 + 416 + 9 + 51 + Min Flow Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2355 + Minimum quantity of gas that can be extracted at the pipeline receiving node each hour + 4 + true + + + 2625 + 416 + 9 + 51 + Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum quantity of gas that can be extracted at the pipeline receiving node each day + 4 + true + + + 2626 + 416 + 9 + 51 + Min Flow Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2357 + Minimum quantity of gas that can be extracted at the pipeline receiving node each week + 4 + true + + + 2627 + 416 + 9 + 51 + Min Flow Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2358 + Minimum quantity of gas that can be extracted at the pipeline receiving node each month + 4 + true + + + 2628 + 416 + 9 + 51 + Min Flow Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2359 + Minimum quantity of gas that can be extracted at the pipeline receiving node each year + 4 + true + + + 2629 + 416 + 9 + 52 + Max Flow Back + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1633 + Maximum quantity of gas that can be extracted from the pipeline sending node + 4 + true + + + 2630 + 416 + 9 + 52 + Max Flow Back Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1634 + Maximum quantity of gas that can be extracted at the pipeline sending node each hour + 4 + true + + + 2631 + 416 + 9 + 52 + Max Flow Back Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1635 + Maximum quantity of gas that can be extracted at the pipeline sending node each day + 4 + true + + + 2632 + 416 + 9 + 52 + Max Flow Back Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1636 + Maximum quantity of gas that can be extracted at the pipeline sending node each week + 4 + true + + + 2633 + 416 + 9 + 52 + Max Flow Back Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1637 + Maximum quantity of gas that can be extracted at the pipeline sending node each month + 4 + true + + + 2634 + 416 + 9 + 52 + Max Flow Back Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1638 + Minimum quantity of gas that can be extracted at the pipeline sending node each year + 4 + true + + + 2635 + 416 + 9 + 53 + Min Flow Back + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2360 + Minimum quantity of gas that can be extracted from the pipeline sending node + 4 + true + + + 2636 + 416 + 9 + 53 + Min Flow Back Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2361 + Minimum quantity of gas that can be extracted at the pipeline sending node each hour + 4 + true + + + 2637 + 416 + 9 + 53 + Min Flow Back Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2362 + Minimum quantity of gas that can be extracted at the pipeline sending node each day + 4 + true + + + 2638 + 416 + 9 + 53 + Min Flow Back Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2363 + Minimum quantity of gas that can be extracted at the pipeline sending node each week + 4 + true + + + 2639 + 416 + 9 + 53 + Min Flow Back Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2364 + Minimum quantity of gas that can be extracted at the pipeline sending node each month + 4 + true + + + 2640 + 416 + 9 + 53 + Min Flow Back Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2365 + Minimum quantity of gas that can be extracted at the pipeline sending node each year + 4 + true + + + 2641 + 416 + 9 + 54 + Max Flow Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1164 + Penalty for violating the [Max Flow] constraints. + 80 + true + + + 2642 + 416 + 9 + 55 + Min Flow Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 286 + Penalty for violating the [Min Flow] constraints. + 80 + true + + + 2643 + 416 + 9 + 56 + Max Flow Back Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2661 + Penalty for violating the [Max Flow Back] constraints. + 80 + true + + + 2644 + 416 + 9 + 57 + Min Flow Back Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2660 + Penalty for violating the [Min Flow Back] constraints. + 80 + true + + + 2645 + 416 + 7 + 58 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2646 + 416 + 7 + 59 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2647 + 416 + 7 + 60 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2648 + 416 + 7 + 61 + Outage Max Flow + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1640 + Pipeline Max Flow during the outage + 1000000 + true + + + 2649 + 416 + 7 + 62 + Outage Max Flow Back + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1641 + Pipeline Max Flow Back during the outage + 1000000 + true + + + 2650 + 416 + 7 + 63 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2651 + 416 + 7 + 64 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2652 + 416 + 7 + 65 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2653 + 416 + 7 + 66 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2654 + 416 + 7 + 67 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2655 + 416 + 8 + 68 + Expansion Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2034 + Indicates if the gas pipeline is eligible for expansion planning + 8 + true + + + 2656 + 416 + 8 + 69 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2657 + 416 + 8 + 70 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas pipeline project, for expansion planning. + 8 + true + + + 2658 + 416 + 8 + 71 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas pipeline + 8 + true + + + 2659 + 416 + 8 + 72 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the gas pipeline + 8009 + true + + + 2660 + 416 + 8 + 73 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2661 + 416 + 8 + 74 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas pipeline (period over which fixed costs are recovered). + 8 + true + + + 2662 + 416 + 8 + 75 + Retirement Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2035 + Indicates if the gas pipeline is eligible for retirement planning + 88 + true + + + 2663 + 416 + 8 + 76 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas pipeline + 88 + true + + + 2664 + 416 + 8 + 77 + Expansion Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2032 + Expansion Max Flow Daily total gas release for the pipeline + 8 + true + + + 2665 + 416 + 8 + 78 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 2666 + 416 + 8 + 79 + Annual Expansion Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2667 + Annual Expansion Max Flow Daily total gas release for the pipeline + 8 + true + + + 2667 + 416 + 8 + 80 + Monthly Expansion Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2976 + Monthly Expansion Max Flow Daily total gas release for the pipeline + 8 + true + + + 2668 + 416 + 8 + 81 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2669 + 416 + 8 + 82 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Pipeline operation + 8009 + false + + + 2670 + 416 + 12 + 83 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2671 + 416 + 12 + 84 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2672 + 416 + 12 + 85 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2673 + 422 + 1 + 1 + Outage Max Flow + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1640 + Pipeline Max Flow during the outage + 4 + true + + + 2674 + 422 + 1 + 2 + Outage Max Flow Back + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1641 + Pipeline Max Flow Back during the outage + 4 + true + + + 2675 + 423 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas in storage. + true + + + 2676 + 423 + 3 + 2 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas pipeline flow in the constraint + true + + + 2677 + 423 + 3 + 3 + Flow Forward Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of gas pipeline flow at the receiving node + true + + + 2678 + 423 + 3 + 4 + Flow Back Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of gas pipeline flow at the sending node + true + + + 2679 + 423 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2680 + 423 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2681 + 423 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2682 + 423 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2683 + 424 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas in storage + true + + + 2684 + 424 + 3 + 2 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas pipeline flow + true + + + 2685 + 424 + 3 + 3 + Flow Forward Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of gas pipeline flow at the receiving node + true + + + 2686 + 424 + 3 + 4 + Flow Back Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of gas pipeline flow at the sending node + true + + + 2687 + 424 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2688 + 424 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2689 + 424 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2690 + 424 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2691 + 425 + 1 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient on gas pipeline flow + true + + + 2692 + 426 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2693 + 426 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2694 + 426 + 2 + 3 + Report Marginal Resources + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2623 + If marginal resources are reported for the gas node in the solution + true + + + 2695 + 426 + 3 + 4 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Node is in service + 800000 + true + + + 2696 + 426 + 3 + 5 + Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1268 + Incremental cost of flowing gas through the node + 2000000000 + true + + + 2697 + 426 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2698 + 426 + 9 + 7 + Max Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 429 + Maximum flow through the gas node + 5 + true + + + 2699 + 426 + 9 + 7 + Max Flow Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1584 + Maximum flow through the gas node each hour + 80 + true + + + 2700 + 426 + 9 + 7 + Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow through the gas node each day + 80 + true + + + 2701 + 426 + 9 + 7 + Max Flow Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1586 + Maximum flow through the gas node each week + 80 + true + + + 2702 + 426 + 9 + 7 + Max Flow Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1587 + Maximum flow through the gas node each month + 80 + true + + + 2703 + 426 + 9 + 7 + Max Flow Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1588 + Maximum flow through the gas node each year + 80 + true + + + 2704 + 426 + 3 + 8 + Gas Security + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1811 + Proportion of local Gas Demand that must be covered by Gas Storage at the Gas Node + false + + + 2705 + 426 + 9 + 9 + Min Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2394 + Minimum heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2706 + 426 + 9 + 9 + Min Heat Value Hour + 0 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2395 + Minimum hourly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2707 + 426 + 9 + 9 + Min Heat Value Day + 0 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2396 + Minimum daily heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2708 + 426 + 9 + 9 + Min Heat Value Week + 0 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2397 + Minimum weekly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2709 + 426 + 9 + 9 + Min Heat Value Month + 0 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2398 + Minimum monthly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2710 + 426 + 9 + 9 + Min Heat Value Year + 0 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2399 + Minimum annual heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2711 + 426 + 9 + 10 + Max Heat Value + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2400 + Maximum heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2712 + 426 + 9 + 10 + Max Heat Value Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2401 + Maximum hourly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2713 + 426 + 9 + 10 + Max Heat Value Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2402 + Maximum daily heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2714 + 426 + 9 + 10 + Max Heat Value Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2403 + Maximum weekly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2715 + 426 + 9 + 10 + Max Heat Value Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2404 + Maximum monthly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2716 + 426 + 9 + 10 + Max Heat Value Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2405 + Maximum annual heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2717 + 426 + 9 + 11 + Max Terminal Limit + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2757 + Maximum number of Gas Transports delivering to a Gas Node. + 80 + true + + + 2718 + 426 + 8 + 12 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 2719 + 426 + 8 + 13 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2720 + 426 + 8 + 14 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2721 + 426 + 8 + 15 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas node + 8 + true + + + 2722 + 426 + 8 + 16 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the gas node + 8009 + true + + + 2723 + 426 + 8 + 17 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2724 + 426 + 8 + 18 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas node (period over which fixed costs are recovered). + 8 + true + + + 2725 + 426 + 8 + 19 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2726 + 426 + 8 + 20 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 2727 + 426 + 8 + 21 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2728 + 426 + 8 + 22 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2729 + 426 + 8 + 23 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas node + 88 + true + + + 2730 + 426 + 8 + 24 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2731 + 426 + 8 + 25 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2732 + 426 + 8 + 26 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2733 + 426 + 12 + 27 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2734 + 426 + 12 + 28 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2735 + 426 + 12 + 29 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2736 + 431 + 1 + 1 + Sequence + 0 + 0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 2709 + Sequence number of the Gas node in the Gas path + true + + + 2737 + 431 + 1 + 2 + Voyage Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + true + true + true + false + 1 + 1841 + Time taken for the voyage from one Gas Node on the Gas path to the next Gas Node + true + + + 2738 + 432 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 2739 + 432 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Gas consumption for each unit of consumption + true + + + 2740 + 432 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Gas production for each unit of production + true + + + 2741 + 432 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Gas consumption for each unit operating + 1000000000 + true + + + 2742 + 432 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Gas consumption for each installed unit + 4 + true + + + 2743 + 434 + 3 + 1 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas Node flow in the constraint + true + + + 2744 + 434 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2745 + 434 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2746 + 434 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2747 + 434 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2748 + 434 + 3 + 6 + Heat Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2413 + Coefficient of gas node heat value + true + + + 2749 + 435 + 3 + 1 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas node flow + true + + + 2750 + 435 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2751 + 435 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2752 + 435 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2753 + 435 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2754 + 436 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 2755 + 436 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 2756 + 436 + 2 + 3 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 2757 + 436 + 2 + 4 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 2758 + 436 + 2 + 5 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 2759 + 436 + 2 + 6 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 2760 + 436 + 2 + 7 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 2761 + 436 + 2 + 8 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 2762 + 436 + 2 + 9 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 2763 + 436 + 2 + 10 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 2764 + 436 + 2 + 11 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 2765 + 436 + 2 + 12 + Initial Value Inclusion + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2271 + If initial value in the gas storage is included in optimization. + 80 + true + + + 2766 + 436 + 2 + 13 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Storage for the generation of outages + 101000000 + true + + + 2767 + 436 + 2 + 14 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2768 + 436 + 2 + 15 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2769 + 436 + 2 + 16 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2770 + 436 + 2 + 17 + Use Additive Ratchet + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2210 + If additive ratchet use is enforced. + 80 + true + + + 2771 + 436 + 2 + 18 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2772 + 436 + 3 + 19 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Storage is in service + false + + + 2773 + 436 + 3 + 20 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Storage is available + true + + + 2774 + 436 + 3 + 21 + Max Volume + 100 + 1E+30 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 466 + Maximum volume of gas allowed in storage + 5 + true + + + 2775 + 436 + 3 + 22 + Min Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 510 + Minimum volume of gas allowed in storage + 4 + true + + + 2776 + 436 + 3 + 23 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of gas in the storage + 80001 + true + + + 2777 + 436 + 3 + 24 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1246 + Incremental cost of withdrawing gas from the storage + 2000000000 + true + + + 2778 + 436 + 3 + 25 + Dispatch Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2381 + Incremental dispatch cost of withdrawing gas from the storage + 2000000000 + true + + + 2779 + 436 + 3 + 26 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1252 + Incremental cost of injecting gas into the storage + 2000000000 + true + + + 2780 + 436 + 3 + 27 + Dispatch Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2695 + Incremental dispatch cost of injecting gas into the storage + 2000000000 + true + + + 2781 + 436 + 3 + 28 + Injection Withdrawal Charge Level + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2744 + Percentage of volume that correspond to bands of Injection Withdrawal Charge or Dispatch Injection Withdrawal Charge + true + + + 2782 + 436 + 3 + 29 + Injection Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1936 + Maximum amount of gas that can be injected into the storage in any interval when defining a gas storage ratchet. + 80 + true + + + 2783 + 436 + 3 + 30 + Withdrawal Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1937 + Maximum amount of gas that can be withdrawn from the storage in any interval when defining a gas storage ratchet. + 80 + true + + + 2784 + 436 + 3 + 31 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1602 + Reservation charge for gas storage + true + + + 2785 + 436 + 3 + 32 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1965 + Reservation volume for gas storage + true + + + 2786 + 436 + 3 + 33 + Injection Fuel Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1966 + Fuel injection rate for gas storage + true + + + 2787 + 436 + 3 + 34 + Withdrawal Fuel Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1967 + Fuel withdrawal rate for gas storage + true + + + 2788 + 436 + 3 + 35 + Loss Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to leakage, etc + 200000 + true + + + 2789 + 436 + 3 + 36 + Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1968 + Carrying rate for gas storage per year + true + + + 2790 + 436 + 3 + 37 + Ratchet Type + 0 + 0 + In (0,1,2) + 2;"Linear Convex";1;"Linear";0;"Step" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2037 + Indicates how the gas storage ratchets are represented + true + + + 2791 + 436 + 3 + 38 + Initial Inventory Price + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2074 + Price linked to initial inventory + true + + + 2792 + 436 + 3 + 39 + Inventory Charge + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Charge per unit of inventory each day + true + + + 2793 + 436 + 3 + 40 + External Injection + 100 + 0 + 1 + 0 + 2 + 0 + false + false + false + false + 1 + 1460 + External injection into the gas storage + true + + + 2794 + 436 + 3 + 41 + Min Temperature Withdrawal + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2244 + Minimum temperature at which the gas storage is allowed to withdraw gas + true + + + 2795 + 436 + 3 + 42 + Max Temperature Withdrawal + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2245 + Maximum temperature at which the gas storage is allowed to withdraw gas + true + + + 2796 + 436 + 3 + 43 + Min Temperature Injection + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2246 + Minimum temperature at which the gas storage is allowed to inject gas + true + + + 2797 + 436 + 3 + 44 + Max Temperature Injection + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2247 + Maximum temperature at which the gas storage is allowed to inject gas + true + + + 2798 + 436 + 3 + 45 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2799 + 436 + 3 + 46 + Initial Heat Value + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2433 + Initial heat value of the gas stored in the gas storage + true + + + 2800 + 436 + 3 + 47 + Initial Carbon Content + 102 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2407 + Initial carbon content of the gas stored in the gas storage + true + + + 2801 + 436 + 3 + 48 + Entitlement Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2503 + Indicates whether maximum injection or withdrawal entitlement does not include loss (gross) or includes loss (net). + true + + + 2802 + 436 + 3 + 49 + Power Consumption + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2784 + power consumption of Gas Storage + true + + + 2803 + 436 + 3 + 50 + Volume Power Consumption + 116 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2785 + constant of proportionality for power consumption of Gas Storage current volume + true + + + 2804 + 436 + 3 + 51 + Max Storage Power Consumption + 116 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2786 + constant of proportionality for power consumption of Gas Storage max volume + true + + + 2805 + 436 + 3 + 52 + Injection Energy Consumption + 117 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2787 + constant of proportionality for energy consumption of Gas Storage injection + true + + + 2806 + 436 + 3 + 53 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the gas storage energy consumption curve. + false + + + 2807 + 436 + 3 + 54 + Energy Consumed Withdrawal Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2131 + Withdrawal level defining the gas storage energy consumption curve. + false + + + 2808 + 436 + 9 + 55 + Max Withdrawal + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of gas that can be withdrawn from the storage + 80 + true + + + 2809 + 436 + 9 + 55 + Max Withdrawal Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of gas that can be withdrawn from the storage in a hour + 80 + true + + + 2810 + 436 + 9 + 55 + Max Withdrawal Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1247 + Maximum amount of gas that can be withdrawn from the storage in day + 80 + true + + + 2811 + 436 + 9 + 55 + Max Withdrawal Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of gas that can be withdrawn from the storage in a week + 80 + true + + + 2812 + 436 + 9 + 55 + Max Withdrawal Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of gas that can be withdrawn from the storage in a month + 80 + true + + + 2813 + 436 + 9 + 55 + Max Withdrawal Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of gas that can be withdrawn from the storage in a year + 80 + true + + + 2814 + 436 + 9 + 56 + Max Injection + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of gas that can be injected into the storage + 80 + true + + + 2815 + 436 + 9 + 56 + Max Injection Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of gas that can be injected into the storage in a hour + 80 + true + + + 2816 + 436 + 9 + 56 + Max Injection Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of gas that can be injected into the storage in a day + 80 + true + + + 2817 + 436 + 9 + 56 + Max Injection Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of gas that can be injected into the storage in a week + 80 + true + + + 2818 + 436 + 9 + 56 + Max Injection Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of gas that can be injected into the storage in a month + 80 + true + + + 2819 + 436 + 9 + 56 + Max Injection Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of gas that can be injected into the storage in a year + 80 + true + + + 2820 + 436 + 9 + 57 + Min Withdrawal + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1258 + Amount of gas that must be withdrawn from storage + 80 + true + + + 2821 + 436 + 9 + 57 + Min Withdrawal Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of gas that must be withdrawn from storage each hour + 80 + true + + + 2822 + 436 + 9 + 57 + Min Withdrawal Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of gas that must be withdrawn from storage in a day + 80 + true + + + 2823 + 436 + 9 + 57 + Min Withdrawal Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of gas that must be withdrawn from storage in a week + 80 + true + + + 2824 + 436 + 9 + 57 + Min Withdrawal Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of gas that must be withdrawn from storage in a month + 80 + true + + + 2825 + 436 + 9 + 57 + Min Withdrawal Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of gas that must be withdrawn from storage in a year + 80 + true + + + 2826 + 436 + 9 + 58 + Min Injection + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1263 + Amount of gas that must be injected into the storage + 80 + true + + + 2827 + 436 + 9 + 58 + Min Injection Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of gas that must be injected into the storage each hour + 80 + true + + + 2828 + 436 + 9 + 58 + Min Injection Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of gas that must be injected into the storage in a day + 80 + true + + + 2829 + 436 + 9 + 58 + Min Injection Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of gas that must be injected into the storage in a week + 80 + true + + + 2830 + 436 + 9 + 58 + Min Injection Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of gas that must be injected into the storage in a month + 80 + true + + + 2831 + 436 + 9 + 58 + Min Injection Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of gas that must be injected into the storage in a year + 80 + true + + + 2832 + 436 + 9 + 59 + Max Ramp + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in storage per interval + 80 + true + + + 2833 + 436 + 9 + 59 + Max Ramp Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum rate of change in storage in an hour + 80 + true + + + 2834 + 436 + 9 + 59 + Max Ramp Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum rate of change in storage in a day + 80 + true + + + 2835 + 436 + 9 + 59 + Max Ramp Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum rate of change in storage in a week + 80 + true + + + 2836 + 436 + 9 + 59 + Max Ramp Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum rate of change in storage in a month + 80 + true + + + 2837 + 436 + 9 + 59 + Max Ramp Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum rate of change in storage in a year + 80 + true + + + 2838 + 436 + 9 + 60 + Target + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 80 + true + + + 2839 + 436 + 9 + 60 + Target Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 80 + true + + + 2840 + 436 + 9 + 60 + Target Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 80 + true + + + 2841 + 436 + 9 + 60 + Target Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 2842 + 436 + 9 + 60 + Target Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 80 + true + + + 2843 + 436 + 9 + 60 + Target Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 80 + true + + + 2844 + 436 + 9 + 61 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 80 + true + + + 2845 + 436 + 9 + 62 + Target Penalty Under + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2378 + Penalty for violating the Min Storage Target. + 80 + true + + + 2846 + 436 + 3 + 63 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption associated with releases from the Gas Storage + false + + + 2847 + 436 + 9 + 64 + Min Storage Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2075 + Minimum Storage Target Percent for gas storage + 80 + true + + + 2848 + 436 + 9 + 65 + Max Storage Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2076 + Max Storage Target Percent for gas storage + 80 + true + + + 2849 + 436 + 9 + 66 + Withdrawal Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1744 + Scalar to set the maximum amount of gas that can be withdrawn from the storage + 80 + true + + + 2850 + 436 + 9 + 67 + Withdrawal Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 1745 + Storage volume for which withdrawal is allowed + 80 + true + + + 2851 + 436 + 9 + 68 + Withdrawal Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1977 + Fuel withdrawal factor for gas storage + true + + + 2852 + 436 + 9 + 69 + Injection Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1746 + Scalar to set the maximum amount of gas that can be injected into the storage + 80 + true + + + 2853 + 436 + 9 + 70 + Injection Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 1747 + Storage volume for which injection is allowed + 80 + true + + + 2854 + 436 + 9 + 71 + Injection Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1976 + Fuel injection factor for gas storage + true + + + 2855 + 436 + 7 + 72 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2856 + 436 + 7 + 73 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2857 + 436 + 7 + 74 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2858 + 436 + 7 + 75 + Outage Max Withdrawal + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2353 + Storage Max Withdrawal during the outage + 1000000 + true + + + 2859 + 436 + 7 + 76 + Outage Max Injection + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2354 + Storage Max Injection during the outage + 1000000 + true + + + 2860 + 436 + 7 + 77 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2861 + 436 + 7 + 78 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2862 + 436 + 7 + 79 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2863 + 436 + 7 + 80 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2864 + 436 + 7 + 81 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2865 + 436 + 8 + 82 + Expansion Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2029 + Indicates if the gas storage is eligible for expansion planning + 8 + true + + + 2866 + 436 + 8 + 83 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2867 + 436 + 8 + 84 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas storage project, for expansion planning. + 8 + true + + + 2868 + 436 + 8 + 85 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas storage + 8 + true + + + 2869 + 436 + 8 + 86 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 44 + Cost of building the gas storage + 8009 + true + + + 2870 + 436 + 8 + 87 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2871 + 436 + 8 + 88 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas storage (period over which fixed costs are recovered). + 8 + true + + + 2872 + 436 + 8 + 89 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2030 + Indicates if the gas storage is eligible for retirement planning + 8 + true + + + 2873 + 436 + 8 + 90 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas storage + 88 + true + + + 2874 + 436 + 8 + 91 + Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2028 + Expansion max volume associated with the Gas Storage + 8 + true + + + 2875 + 436 + 8 + 92 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 2876 + 436 + 8 + 93 + Annual Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2668 + Annual Expansion max volume associated with the Gas Storage + 8 + true + + + 2877 + 436 + 8 + 94 + Monthly Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2977 + Monthly Expansion max volume associated with the Gas Storage + 8 + true + + + 2878 + 436 + 8 + 95 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2879 + 436 + 8 + 96 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost in the gas storage operation + 8009 + false + + + 2880 + 436 + 11 + 97 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2881 + 436 + 11 + 98 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2882 + 436 + 11 + 99 + Trajectory Non-anticipativity + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 2883 + 436 + 11 + 100 + Trajectory Non-anticipativity Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100000000 + true + + + 2884 + 436 + 11 + 101 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 2885 + 436 + 12 + 102 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2886 + 436 + 12 + 103 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2887 + 436 + 12 + 104 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2888 + 443 + 1 + 1 + Node Type + 0 + 0 + In (0,1,2) + 0;"Both";1;"Injection Only";2;"Withdrawal Only" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2085 + Using this input property, a Gas Node defined in the Gas Node collection of a Gas Storage can act as injection only, withdrawal only or both. + 800000 + true + + + 2889 + 447 + 1 + 1 + Outage Max Withdrawal + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2353 + Gas Storage Max Withdrawal during the outage + 4 + true + + + 2890 + 447 + 1 + 2 + Outage Max Injection + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2354 + Gas Storage Max Injection during the outage + 4 + true + + + 2891 + 448 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + true + + + 2892 + 448 + 3 + 2 + Withdrawal Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of gas storage withdrawal in the constraint + true + + + 2893 + 448 + 3 + 3 + Injection Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of gas storage injection in the constraint + true + + + 2894 + 448 + 3 + 4 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas storage end volume in the constraint + true + + + 2895 + 448 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2896 + 448 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2897 + 448 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2898 + 448 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2899 + 449 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 2900 + 449 + 3 + 2 + Withdrawal Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of gas storage withdrawal + true + + + 2901 + 449 + 3 + 3 + Injection Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of gas storage injection + true + + + 2902 + 449 + 3 + 4 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas storage end volume + true + + + 2903 + 449 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2904 + 449 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2905 + 449 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2906 + 449 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2907 + 450 + 2 + 1 + Demand Type + 0 + 0 + In (0,1,2) + 0;"Input";1;"Temperature";2;"Heating Degree Days" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2000 + Function structure for demand type inputs + true + + + 2908 + 450 + 3 + 2 + Demand + 100 + 0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 133 + Demand for gas + 400 + true + + + 2909 + 450 + 3 + 3 + Shortage Price + 88 + 1000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1270 + Notional price of gas shortage + 40000000 + true + + + 2910 + 450 + 3 + 4 + Shortage Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2230 + Level corresponding to the Shortage Price + true + + + 2911 + 450 + 3 + 5 + Excess Price + 88 + -100 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1271 + Notional price of gas oversupply + 40000000 + true + + + 2912 + 450 + 3 + 6 + Excess Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2231 + Level corresponding to the Excess Price + true + + + 2913 + 450 + 3 + 7 + Usage Factor Base + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2001 + Scalar demand value regardless of heat + true + + + 2914 + 450 + 3 + 8 + Usage Factor Heat + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2002 + Scalar heat value regardless of demand + true + + + 2915 + 450 + 3 + 9 + Customer Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2003 + Number of customers (that have demand values) + true + + + 2916 + 450 + 3 + 10 + Usage Factor Heat Point + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2005 + Scalar temperature or HDD levels for piecewise linear function + true + + + 2917 + 450 + 3 + 11 + Weather Data Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2012 + Weather data factor for gas demand function + true + + + 2918 + 450 + 3 + 12 + Weather Data Variable + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2013 + Weather data variable for gas demand function + true + + + 2919 + 450 + 3 + 13 + Unaccounted Demand + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2351 + Percentage of unaccounted gas demand + 400 + true + + + 2920 + 450 + 4 + 14 + Bid Quantity + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + 400000 + true + + + 2921 + 450 + 4 + 15 + Bid Price + 88 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Value of gas in band + 400000 + true + + + 2922 + 450 + 4 + 16 + Bid Slope + 0 + 0 + <0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2522 + Demand bid slope for modeling elasticity. Must be entered to auto-generate steps. + 400000 + true + + + 2923 + 450 + 4 + 17 + Bid Tranches + 0 + 5 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2523 + Number of bid points to generate when auto-generating tranches + 400000 + true + + + 2924 + 450 + 4 + 18 + Max Bid Quantity + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2524 + Maximum bid quantity when auto-generating steps + 400000 + true + + + 2925 + 450 + 12 + 19 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2926 + 450 + 12 + 20 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2927 + 450 + 12 + 21 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2928 + 456 + 1 + 1 + Demand Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1448 + Proportion of gas demand that occurs at the gas node + 400 + true + + + 2929 + 461 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of the gas demand + true + + + 2930 + 461 + 1 + 2 + Customer Count + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2003 + Customer count used to calculate company's share of gas demand + true + + + 2931 + 461 + 1 + 3 + Direct Demand + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2132 + Company's amount of direct gas demand + true + + + 2932 + 462 + 2 + 1 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2933 + 462 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2934 + 462 + 2 + 3 + Reduction Type + 0 + 0 + In (0,2) + 0;"Input";2;"Usage Factor" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2051 + Function structure for gas dsm program type inputs + true + + + 2935 + 462 + 3 + 4 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Share of demand reduction available + false + + + 2936 + 462 + 3 + 5 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas DSM Program is available + true + + + 2937 + 462 + 3 + 6 + Reduction Amount + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2025 + Demand reduction caused by gas dsm program + true + + + 2938 + 462 + 3 + 7 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 2939 + 462 + 3 + 8 + Variable Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2017 + Variable cost of gas dsm program + 2000000000 + true + + + 2940 + 462 + 3 + 9 + Usage Factor Base + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2001 + Scalar demand value regardless of heat + true + + + 2941 + 462 + 3 + 10 + Usage Factor Heat + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2002 + Scalar heat value regardless of demand + true + + + 2942 + 462 + 3 + 11 + Customer Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2003 + Number of customers (that have demand values) + true + + + 2943 + 462 + 3 + 12 + Usage Factor Heat Point + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2005 + Scalar temperature or HDD levels for piecewise linear function + true + + + 2944 + 462 + 3 + 13 + Weather Data Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2012 + Weather data factor for gas demand function + true + + + 2945 + 462 + 3 + 14 + Weather Data Variable + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2013 + Weather data variable for gas demand function + true + + + 2946 + 462 + 8 + 15 + Capital Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2018 + Capital cost of gas dsm program + 8000 + true + + + 2947 + 462 + 8 + 16 + Expansion Max Reduction + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2019 + Expansion max reduction offtake associated with the gas dsm program + true + + + 2948 + 462 + 8 + 17 + Expansion Program + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2020 + Indicates if Gas DSM program is eligible + true + + + 2949 + 462 + 8 + 18 + Eligibility Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2021 + Start date of Gas dsm program planning. + true + + + 2950 + 462 + 8 + 19 + Program Length + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2022 + Technical Life of Gas dsm program + true + + + 2951 + 462 + 8 + 20 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Gas dsm program (period over which fixed costs are recovered). + true + + + 2952 + 462 + 8 + 21 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + true + + + 2953 + 462 + 8 + 22 + Annual Expansion Max Reduction + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2669 + Annual Expansion max reduction offtake associated with the gas dsm program + true + + + 2954 + 462 + 8 + 23 + Monthly Expansion Max Reduction + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2978 + Monthly Expansion max reduction offtake associated with the gas dsm program + true + + + 2955 + 462 + 12 + 24 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2956 + 462 + 12 + 25 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2957 + 462 + 12 + 26 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2958 + 465 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + DSM Program's share of the gas demand + true + + + 2959 + 466 + 8 + 1 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2960 + 466 + 8 + 2 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2961 + 467 + 8 + 1 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2962 + 467 + 8 + 2 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2963 + 468 + 9 + 1 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas from the basin + 80 + true + + + 2964 + 468 + 9 + 1 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1561 + Maximum daily production of gas from the basin + 80 + true + + + 2965 + 468 + 9 + 1 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 1 + false + false + false + false + 1 + 950 + Maximum daily production of gas from the basin + 80 + true + + + 2966 + 468 + 9 + 1 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum weekly production of gas from the basin + 80 + true + + + 2967 + 468 + 9 + 1 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum monthly production of gas from the basin + 80 + true + + + 2968 + 468 + 9 + 1 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum annual production of gas from the basin + 80 + true + + + 2969 + 468 + 9 + 2 + Min Production + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas from the basin + 80 + true + + + 2970 + 468 + 9 + 2 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1572 + Minimum daily production of gas from the basin + 80 + true + + + 2971 + 468 + 9 + 2 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 1 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas from the basin + 80 + true + + + 2972 + 468 + 9 + 2 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas from the basin + 80 + true + + + 2973 + 468 + 9 + 2 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas from the basin + 80 + true + + + 2974 + 468 + 9 + 2 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas from the basin + 80 + true + + + 2975 + 468 + 12 + 3 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2976 + 468 + 12 + 4 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2977 + 468 + 12 + 5 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2978 + 471 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas basin production + true + + + 2979 + 471 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of gas field units built + true + + + 2980 + 471 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of gas field units built in the year + true + + + 2981 + 472 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas basin production + true + + + 2982 + 472 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of gas field units built + true + + + 2983 + 472 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of gas field units built in the year + true + + + 2984 + 473 + 8 + 1 + Max Capacity Reserves + 75 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + false + + + 2985 + 473 + 8 + 2 + Min Capacity Reserves + 75 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + false + + + 2986 + 473 + 8 + 3 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + false + + + 2987 + 473 + 8 + 4 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + false + + + 2988 + 473 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2989 + 473 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2990 + 473 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2991 + 490 + 2 + 1 + Price Setting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the gas contract can set price at the Gas Node + 4000000 + true + + + 2992 + 490 + 2 + 2 + Contract Type + 0 + 0 + In (0,1,2) + 0;"Swing";1;"Base";2;"Take-or-Pay" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1969 + Type of gas contract + true + + + 2993 + 490 + 2 + 3 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2994 + 490 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2995 + 490 + 2 + 5 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2996 + 490 + 9 + 6 + Quantity + 100 + 0 + 1 + 0 + 1 + 0 + true + false + false + false + 1 + 650 + Gas contract quantity + true + + + 2997 + 490 + 9 + 6 + Quantity Hour + 100 + 0 + 1 + 0 + 1 + 6 + true + false + true + false + 1 + 1559 + Total gas contract quantity in hour + true + + + 2998 + 490 + 9 + 6 + Quantity Day + 100 + 0 + 1 + 0 + 1 + 1 + true + true + true + false + 1 + 651 + Total gas contract quantity in day + true + + + 2999 + 490 + 9 + 6 + Quantity Week + 100 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 653 + Total gas contract quantity in week + true + + + 3000 + 490 + 9 + 6 + Quantity Month + 100 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 652 + Total gas contract quantity in month + true + + + 3001 + 490 + 9 + 6 + Quantity Year + 100 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 654 + Total gas contract quantity in year + true + + + 3002 + 490 + 9 + 7 + Min Quantity + 100 + 0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 2414 + Minimum total gas contract quantity in interval + true + + + 3003 + 490 + 9 + 7 + Min Quantity Hour + 100 + 0 + 1 + 0 + 0 + 6 + true + false + true + false + 1 + 2415 + Minimum total gas contract quantity in hour + true + + + 3004 + 490 + 9 + 7 + Min Quantity Day + 100 + 0 + 1 + 0 + 0 + 1 + true + false + true + false + 1 + 2416 + Minimum total gas contract quantity in day + true + + + 3005 + 490 + 9 + 7 + Min Quantity Week + 100 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 2417 + Minimum total gas contract quantity in week + true + + + 3006 + 490 + 9 + 7 + Min Quantity Month + 100 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 2418 + Minimum total gas contract quantity in month + true + + + 3007 + 490 + 9 + 7 + Min Quantity Year + 100 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 2419 + Minimum total gas contract quantity in year + true + + + 3008 + 490 + 3 + 8 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Share of total Gas Contract available + false + + + 3009 + 490 + 3 + 9 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Contract is available for production + true + + + 3010 + 490 + 3 + 10 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 612 + Price of gas contract + true + + + 3011 + 490 + 3 + 11 + Price Collar Min + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2242 + Minimum price allowed for the gas contract + true + + + 3012 + 490 + 3 + 12 + Price Collar Max + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2243 + Maximum price allowed for the gas contract + true + + + 3013 + 490 + 3 + 13 + Dispatch Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2141 + Dispatch Price of Gas Contract + true + + + 3014 + 490 + 3 + 14 + Take-or-Pay Swing Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2740 + Price to charge for swing portion of Take or Pay contract + true + + + 3015 + 490 + 3 + 15 + Take-or-Pay Penalty Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2781 + Penalty price on the take violation for a Take or Pay contract + true + + + 3016 + 490 + 3 + 16 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1602 + Reservation charge for gas contract + true + + + 3017 + 490 + 3 + 17 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1965 + Reservation volume for gas contract + true + + + 3018 + 490 + 3 + 18 + Min Daily Take + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2239 + Min daily gas offtake associated with the contract + false + + + 3019 + 490 + 3 + 19 + Max Daily Take + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1985 + Max daily gas offtake associated with the contract + false + + + 3020 + 490 + 3 + 20 + Min Temperature + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2248 + Minimum temperature at which the gas contract is allowed to produce + true + + + 3021 + 490 + 3 + 21 + Max Temperature + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2249 + Maximum temperature at which the gas contract is allowed to produce + true + + + 3022 + 490 + 3 + 22 + Max Renomination + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1990 + Maximum number of renominations allowed per renomination window for Base Gas Contracts + true + + + 3023 + 490 + 3 + 23 + Min Days Between Renomination + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1991 + Minimum number of days between renominations of Base Gas Contracts + true + + + 3024 + 490 + 3 + 24 + Renomination Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2010 + User defined renomination windows for Base Gas Contracts + true + + + 3025 + 490 + 3 + 25 + Percentage of Demand + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2086 + Percentage that maximum daily take value (supply) will be adjusted according to + 400 + true + + + 3026 + 490 + 3 + 26 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Contract + 100 + true + + + 3027 + 490 + 8 + 27 + Expansion Contract + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1980 + Indicates if Gas Contract is eligible for expansion planning + 8 + true + + + 3028 + 490 + 8 + 28 + Retirement Contract + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2087 + Indicates if Gas Contract is eligible for retirement planning + 8 + true + + + 3029 + 490 + 8 + 29 + Contract Eligibility Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 1982 + Start date of Gas Contract expansion planning. + 8 + true + + + 3030 + 490 + 8 + 30 + Contract Length + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1984 + Technical Life of Gas Contract + 8 + true + + + 3031 + 490 + 8 + 31 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas contract (period over which fixed costs are recovered). + 8 + true + + + 3032 + 490 + 8 + 32 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3033 + 490 + 8 + 33 + Build Cost + 34 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of Gas Contract expansion + 8009 + true + + + 3034 + 490 + 8 + 34 + Expansion Quantity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 1986 + LT Max daily gas offtake associated with the contract + true + + + 3035 + 490 + 8 + 35 + Term Expansion Quantity Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2892 + LT Max daily gas offtake for the term based contract + true + + + 3036 + 490 + 8 + 36 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 3037 + 490 + 8 + 37 + Annual Expansion Quantity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2670 + LT Annual Max daily gas offtake associated with the contract + true + + + 3038 + 490 + 8 + 38 + Monthly Expansion Quantity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2975 + Maximum monthly LT expansion for the contract + true + + + 3039 + 490 + 8 + 39 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 3040 + 490 + 8 + 40 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost in the gas contract production + 8009 + false + + + 3041 + 490 + 8 + 41 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Gas Contract + 88 + true + + + 3042 + 490 + 8 + 42 + Min Expansion Quantity Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2973 + LT Min daily gas offtake associated with the contract being built + true + + + 3043 + 490 + 8 + 43 + Max Quantity Day Retired + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2971 + Maximum amount the contract can be retired in aggregate over the planning horizon + true + + + 3044 + 490 + 8 + 44 + Min Quantity Day Retired + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2972 + Minimum amount the contract must be retired in aggregate over the planning horizon + true + + + 3045 + 490 + 12 + 45 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Pass-through value (summed in summary) + true + + + 3046 + 490 + 12 + 46 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Pass-through value (summed in summary) + true + + + 3047 + 490 + 12 + 47 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Pass-through value (summed in summary) + true + + + 3048 + 495 + 1 + 1 + Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2084 + Price adder to gas nodes in contract + true + + + 3049 + 495 + 1 + 2 + Min Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Contract in the blend + 100 + true + + + 3050 + 495 + 1 + 3 + Max Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Contract in the blend + 100 + true + + + 3051 + 498 + 1 + 1 + Demand Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2133 + Supply provided to the company based on the company gas demand + true + + + 3052 + 498 + 1 + 2 + Averaging Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2134 + Indicates if the period is a start period for Demand Share + true + + + 3053 + 498 + 1 + 3 + Direct Supply + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2135 + Supply provided to the company + true + + + 3054 + 499 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas contract production + true + + + 3055 + 499 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of units built in Custom Constraint + true + + + 3056 + 499 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3057 + 499 + 8 + 4 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3058 + 499 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of the number of units retired in the year + true + + + 3059 + 500 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas contract production + true + + + 3060 + 500 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3061 + 500 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3062 + 501 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Gas transport for the generation of outages + 101000000 + true + + + 3063 + 501 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3064 + 501 + 2 + 3 + Formulate Round Trip + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2758 + If the Gas Transport should return to the Export node before setting out on the next voyage + true + + + 3065 + 501 + 2 + 4 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3066 + 501 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3067 + 501 + 2 + 6 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + false + + + 3068 + 501 + 3 + 7 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Transports is in service + false + + + 3069 + 501 + 3 + 8 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Transport is available for flow. + true + + + 3070 + 501 + 3 + 9 + Voyage Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1841 + Time taken for the voyage from Export Node to Import Node + true + + + 3071 + 501 + 3 + 10 + Loading Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1842 + Time taken to load gas into the transport + true + + + 3072 + 501 + 3 + 11 + Discharge Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1843 + Time taken to unload gas from the transport + true + + + 3073 + 501 + 3 + 12 + Min Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 510 + Minimum volume of gas the transport can carry + true + + + 3074 + 501 + 3 + 13 + Max Volume + 100 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 466 + Maximum volume of gas the transport can carry + true + + + 3075 + 501 + 3 + 14 + Shipping Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1844 + The per unit cost of shipping the gas on the transport + 2000000000 + true + + + 3076 + 501 + 3 + 15 + Charter Rate + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2790 + The charter cost of gas transport per delivery + 2000000000 + true + + + 3077 + 501 + 3 + 16 + Charter Rate Day + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2791 + The charter cost of gas transport per day + 2000000000 + true + + + 3078 + 501 + 3 + 17 + Boil off Rate + 70 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1845 + Rate of boil off of gas during the voyage + true + + + 3079 + 501 + 3 + 18 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas shipped by the Gas Transport + 100 + true + + + 3080 + 501 + 3 + 19 + Imports + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 294 + false + + + 3081 + 501 + 3 + 20 + Exports + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 192 + false + + + 3082 + 501 + 9 + 21 + Max Shipments + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1846 + Maximum number of voyages in each step in the simulation horizon + 80 + true + + + 3083 + 501 + 9 + 21 + Max Shipments Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1847 + Maximum hourly number of voyages + 80 + true + + + 3084 + 501 + 9 + 21 + Max Shipments Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + true + false + false + 1 + 1848 + Maximum daily number of voyages + 80 + true + + + 3085 + 501 + 9 + 21 + Max Shipments Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1849 + Maximum weekly number of voyages + 80 + true + + + 3086 + 501 + 9 + 21 + Max Shipments Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1850 + Maximum monthly number of voyages + 80 + true + + + 3087 + 501 + 9 + 21 + Max Shipments Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1851 + Maximum annual number of voyages + 80 + true + + + 3088 + 501 + 7 + 22 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the Gas Transport is unavailable due to forced outage + 1000000 + true + + + 3089 + 501 + 7 + 23 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the Gas Transport is unavailable due to maintenance + 1000000 + true + + + 3090 + 501 + 7 + 24 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3091 + 501 + 7 + 25 + Outage Max Volume + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2847 + Gas Transport Max Volume during the outage + 1000000 + false + + + 3092 + 501 + 7 + 26 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3093 + 501 + 7 + 27 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3094 + 501 + 7 + 28 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3095 + 501 + 7 + 29 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3096 + 501 + 7 + 30 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3097 + 501 + 8 + 31 + Expansion Transport + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2848 + Indicates if the gas Transport is eligible for expansion planning + 8 + true + + + 3098 + 501 + 8 + 32 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3099 + 501 + 8 + 33 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Gas Transport project, for expansion planning. + 8 + true + + + 3100 + 501 + 8 + 34 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Gas Transport + 8 + true + + + 3101 + 501 + 8 + 35 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the Gas Transport + 8009 + true + + + 3102 + 501 + 8 + 36 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas transport (period over which fixed costs are recovered). + 8 + true + + + 3103 + 501 + 8 + 37 + Retirement Transport + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2849 + Indicates if the gas transport is eligible for retirement planning + 88 + true + + + 3104 + 501 + 8 + 38 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas transport + 88 + true + + + 3105 + 501 + 8 + 39 + Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2028 + Expansion Max Volume is the volume up to which the capacity of the transport can be expanded + 8 + true + + + 3106 + 501 + 8 + 40 + Max Build Events + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 3107 + 501 + 8 + 41 + Annual Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2668 + Annual Expansion Max Volume for the Transports + 8 + true + + + 3108 + 501 + 12 + 42 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Pass-through value (summed in summary) + true + + + 3109 + 501 + 12 + 43 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Pass-through value (summed in summary) + true + + + 3110 + 501 + 12 + 44 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Pass-through value (averaged in summary) + true + + + 3111 + 507 + 1 + 1 + Port Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2792 + Cost of using Gas Node by gas transport per day + 2000000000 + true + + + 3112 + 508 + 1 + 1 + Port Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2792 + Cost of using gas node by gas transport per day + 2000000000 + true + + + 3113 + 508 + 1 + 2 + Initial Gas Delivered + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2890 + The amount of gas to be delivered to a gas node on the initial gas path + true + + + 3114 + 512 + 1 + 1 + Canal Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2793 + Cost of using all canals in gas path by gas transport + 2000000000 + true + + + 3115 + 513 + 1 + 1 + Voyage Progress + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 2891 + Percentage of voyage already completed + true + + + 3116 + 513 + 1 + 2 + Initial Volume + 100 + 1E+30 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 318 + Initial volume of gas being carried by the gas transport + true + + + 3117 + 514 + 1 + 1 + Outage Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1892 + Proportion of capacity during outage + 4 + true + + + 3118 + 515 + 3 + 1 + Shipments Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1873 + Coefficient of gas transport voyage count + true + + + 3119 + 516 + 3 + 1 + Shipments Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1873 + Coefficient of gas transport voyage count + true + + + 3120 + 520 + 2 + 1 + Release Type + 0 + 0 + In (0,1,2) + 0;"Swing";1;"Base";2;"Deal" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2040 + Function structure for capacity release type inputs + true + + + 3121 + 520 + 9 + 2 + Max Released Capacity + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2571 + Maximum capacity that can be released + 80 + true + + + 3122 + 520 + 9 + 2 + Max Released Capacity Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2572 + Maximum capacity that can be released in a hour + 80 + true + + + 3123 + 520 + 9 + 2 + Max Released Capacity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2573 + Maximum capacity that can be released in a day + 80 + true + + + 3124 + 520 + 9 + 2 + Max Released Capacity Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2574 + Maximum capacity that can be released in a week + 80 + true + + + 3125 + 520 + 9 + 2 + Max Released Capacity Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2575 + Maximum capacity that can be released in a month + 80 + true + + + 3126 + 520 + 9 + 2 + Max Released Capacity Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2576 + Maximum capacity that can be released in a year + 80 + true + + + 3127 + 520 + 9 + 3 + Min Released Capacity + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2577 + Minimum capacity that can be released + 80 + true + + + 3128 + 520 + 9 + 3 + Min Released Capacity Hour + 100 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2578 + Minimum capacity that can be released in hour + 80 + true + + + 3129 + 520 + 9 + 3 + Min Released Capacity Day + 100 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2579 + Minimum capacity that can be released in day + 80 + true + + + 3130 + 520 + 9 + 3 + Min Released Capacity Week + 100 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2580 + Minimum capacity that can be released in week + 80 + true + + + 3131 + 520 + 9 + 3 + Min Released Capacity Month + 100 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2581 + Minimum capacity that can be released in month + 80 + true + + + 3132 + 520 + 9 + 3 + Min Released Capacity Year + 100 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2582 + Minimum capacity that can be released in year + 80 + true + + + 3133 + 520 + 3 + 4 + Term Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2041 + Flag to indicate start of the capacity release term + true + + + 3134 + 520 + 3 + 5 + Revenue Basis + 88 + 0 + >=0 + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2042 + Revenue Basis for capacity release offer + true + + + 3135 + 520 + 3 + 6 + Revenue Adder + 88 + 0 + >=0 + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2043 + Revenue Adder for capacity release offer + true + + + 3136 + 520 + 3 + 7 + Entitlement Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2503 + Capacity Release Offer Entitlement type: Gross of pipeline fuel (inflow quantity) or Net of pipeline fuel (outflow quantity). + true + + + 3137 + 520 + 12 + 8 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3138 + 520 + 12 + 9 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3139 + 520 + 12 + 10 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3140 + 525 + 3 + 1 + Release Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of gas capacity release offers + true + + + 3141 + 526 + 3 + 1 + Release Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of gas capacity release offers + true + + + 3142 + 527 + 2 + 1 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3143 + 527 + 2 + 2 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3144 + 527 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3145 + 527 + 2 + 4 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this water plant receives capacity payments + 8 + false + + + 3146 + 527 + 3 + 5 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of Water Plant units in service + 800000 + true + + + 3147 + 527 + 3 + 6 + Max Capacity + 65 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 414 + Maximum production of Water Plant + 5 + true + + + 3148 + 527 + 3 + 7 + Min Stable Production + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1928 + Minimum production level + 1000000000 + true + + + 3149 + 527 + 3 + 8 + Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 665 + Rated capacity of units + 81 + true + + + 3150 + 527 + 3 + 9 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + true + + + 3151 + 527 + 3 + 10 + Aux Fixed + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 3152 + 527 + 3 + 11 + Aux Base + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 3153 + 527 + 3 + 12 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of generation + 200000 + true + + + 3154 + 527 + 3 + 13 + Load Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate + 1000 + true + + + 3155 + 527 + 3 + 14 + Heat Usage + 72 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1926 + Heat consumption of Water Plant + 2000000000 + true + + + 3156 + 527 + 3 + 15 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + false + + + 3157 + 527 + 3 + 16 + Heat Usage Incr + 72 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2525 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 3158 + 527 + 3 + 17 + Water Yield + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1795 + Yield rate of water for the Water Plant + 2000000000 + true + + + 3159 + 527 + 3 + 18 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 175 + Energy consumption of Water Plant + 2000000000 + true + + + 3160 + 527 + 3 + 19 + Retail Electric Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2515 + Retail price of electric power used by the water plant + true + + + 3161 + 527 + 3 + 20 + VO&M Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 849 + Variable operations and maintenance costs of the Water Plant + 2000000000 + true + + + 3162 + 527 + 3 + 21 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3163 + 527 + 7 + 22 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3164 + 527 + 7 + 23 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 3165 + 527 + 7 + 24 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3166 + 527 + 7 + 25 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3167 + 527 + 7 + 26 + Outage Max Production + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Plant Max Production during the outage + 1000000 + true + + + 3168 + 527 + 7 + 27 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3169 + 527 + 7 + 28 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3170 + 527 + 7 + 29 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3171 + 527 + 7 + 30 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3172 + 527 + 7 + 31 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3173 + 527 + 8 + 32 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 3174 + 527 + 8 + 33 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3175 + 527 + 8 + 34 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water Plant project, for expansion planning. + 8 + true + + + 3176 + 527 + 8 + 35 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water Plant + 8 + true + + + 3177 + 527 + 8 + 36 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of developing the Water Plant + 8009 + true + + + 3178 + 527 + 8 + 37 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3179 + 527 + 8 + 38 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water Plant (period over which fixed costs are recovered). + 8 + true + + + 3180 + 527 + 8 + 39 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3181 + 527 + 8 + 40 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3182 + 527 + 8 + 41 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3183 + 527 + 8 + 42 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3184 + 527 + 8 + 43 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water Plant + 88 + true + + + 3185 + 527 + 8 + 44 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3186 + 527 + 8 + 45 + Max Units Retired in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3187 + 527 + 8 + 46 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3188 + 527 + 8 + 47 + Capacity Price + 99 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the plant for capacity + 4000008 + true + + + 3189 + 527 + 11 + 48 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 3190 + 527 + 11 + 49 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 3191 + 527 + 12 + 50 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3192 + 527 + 12 + 51 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3193 + 527 + 12 + 52 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3194 + 533 + 1 + 1 + Outage Max Production + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 3195 + 534 + 3 + 1 + Production Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Water Plant Production + true + + + 3196 + 534 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Water Plant capacity factor + true + + + 3197 + 534 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + false + + + 3198 + 534 + 3 + 4 + Energy Usage Coefficient + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Water Plant + true + + + 3199 + 534 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 3200 + 534 + 6 + 6 + Installed Capacity Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 3201 + 534 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3202 + 534 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3203 + 534 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3204 + 534 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3205 + 534 + 8 + 11 + Capacity Built Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3206 + 534 + 8 + 12 + Capacity Retired Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3207 + 534 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3208 + 534 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3209 + 534 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3210 + 535 + 3 + 1 + Production Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Water Plant Production + true + + + 3211 + 535 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Water Plant capacity factor + true + + + 3212 + 535 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + true + + + 3213 + 535 + 3 + 4 + Energy Usage Coefficient + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Water Plant + true + + + 3214 + 535 + 6 + 5 + Installed Capacity Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 3215 + 535 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3216 + 535 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3217 + 535 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3218 + 535 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3219 + 535 + 8 + 10 + Capacity Built Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 3220 + 535 + 8 + 11 + Capacity Retired Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 3221 + 535 + 8 + 12 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 3222 + 535 + 8 + 13 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 3223 + 535 + 8 + 14 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 3224 + 536 + 1 + 1 + Energy Usage Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1886 + Coefficient of the Decision Variable in the Water Plant Energy Usage definition equation + true + + + 3225 + 537 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 3226 + 537 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3227 + 537 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3228 + 537 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3229 + 537 + 3 + 5 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Flag if the Water Pipeline is in service + 800000 + false + + + 3230 + 537 + 3 + 6 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Water Pipeline is available for flow. + true + + + 3231 + 537 + 3 + 7 + Is Bidirectional + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2033 + Indicates if the pipeline allows flow in both directions + 800000 + true + + + 3232 + 537 + 3 + 8 + Max Capacity + 65 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 414 + Maximum flow rate on the water pipeline + 5 + true + + + 3233 + 537 + 3 + 9 + Diameter + 23 + 0.762 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1796 + Water Pipeline diameter + true + + + 3234 + 537 + 3 + 10 + Roughness + 0 + 150 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1797 + Water Pipeline roughness constant + true + + + 3235 + 537 + 3 + 11 + Length + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1798 + Length of the Water Pipeline + true + + + 3236 + 537 + 3 + 12 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 639 + Efficiency of Water Pipeline pump + true + + + 3237 + 537 + 3 + 13 + VO&M Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 849 + Variable operations and maintenance costs of the Water Pipeline + 2000000000 + true + + + 3238 + 537 + 3 + 14 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3239 + 537 + 3 + 15 + Consumption Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1814 + Proportion of the electricity consumption allocated to the receiving water node + true + + + 3240 + 537 + 3 + 16 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the pipeline energy consumption curve. + true + + + 3241 + 537 + 3 + 17 + Energy Consumed Flow Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2122 + Flow level defining the water pipeline energy consumption curve. + true + + + 3242 + 537 + 3 + 18 + System Curve Coefficient A + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2250 + System curve coefficient A for the quadratic term + true + + + 3243 + 537 + 3 + 19 + System Curve Coefficient B + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2251 + System curve coefficient B for the linear term + true + + + 3244 + 537 + 3 + 20 + System Curve Coefficient C + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2252 + System curve coefficient C for the constant term + true + + + 3245 + 537 + 3 + 21 + Flow Rate Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2511 + Flow rate point for the system curve + true + + + 3246 + 537 + 3 + 22 + Head Point + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2512 + Head point for the system curve + true + + + 3247 + 537 + 7 + 23 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3248 + 537 + 7 + 24 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3249 + 537 + 7 + 25 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3250 + 537 + 7 + 26 + Outage Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Water pipeline Max Capacity during the outage + 1000000 + true + + + 3251 + 537 + 7 + 27 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3252 + 537 + 7 + 28 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3253 + 537 + 7 + 29 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3254 + 537 + 7 + 30 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3255 + 537 + 7 + 31 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3256 + 537 + 8 + 32 + Expansion Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2034 + Indicates if the water pipeline is eligible for expansion planning + 8 + true + + + 3257 + 537 + 8 + 33 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3258 + 537 + 8 + 34 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water pipeline project, for expansion planning. + 8 + true + + + 3259 + 537 + 8 + 35 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water pipeline + 8 + true + + + 3260 + 537 + 8 + 36 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Water pipeline + 8009 + true + + + 3261 + 537 + 8 + 37 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3262 + 537 + 8 + 38 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water pipeline (period over which fixed costs are recovered). + 8 + true + + + 3263 + 537 + 8 + 39 + Retirement Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2035 + Indicates if the water pipeline is eligible for retirement planning + 88 + true + + + 3264 + 537 + 8 + 40 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water pipeline + 88 + true + + + 3265 + 537 + 8 + 41 + Expansion Max Capacity + 65 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2379 + Expansion max daily total water release for the pipeline + 8 + true + + + 3266 + 537 + 12 + 42 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3267 + 537 + 12 + 43 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3268 + 537 + 12 + 44 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3269 + 542 + 1 + 1 + Outage Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 585 + Max Rating during the outage + 4 + true + + + 3270 + 543 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Water Pipeline flow + true + + + 3271 + 543 + 3 + 2 + Flow Forward Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Water Pipeline flow at the receiving node + true + + + 3272 + 543 + 3 + 3 + Flow Back Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Water Pipeline flow at the sending node + true + + + 3273 + 543 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3274 + 543 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3275 + 543 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3276 + 543 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3277 + 544 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Water Pipeline flow + true + + + 3278 + 544 + 3 + 2 + Flow Forward Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Water Pipeline flow at the receiving node + true + + + 3279 + 544 + 3 + 3 + Flow Back Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Water Pipeline flow at the sending node + true + + + 3280 + 544 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3281 + 544 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3282 + 544 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3283 + 544 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3284 + 545 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3285 + 545 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3286 + 545 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Water Node is in service + 800000 + true + + + 3287 + 545 + 3 + 4 + Water Security + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1799 + Proportion of local Water Demand that must be covered by Water Storage at the Water Node + false + + + 3288 + 545 + 3 + 5 + Flow Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1268 + Incremental cost of flowing water through the node + 2000000000 + true + + + 3289 + 545 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3290 + 545 + 8 + 7 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 3291 + 545 + 8 + 8 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3292 + 545 + 8 + 9 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of water node project, for expansion planning. + 8 + true + + + 3293 + 545 + 8 + 10 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the water node + 8 + true + + + 3294 + 545 + 8 + 11 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the water node + 8009 + true + + + 3295 + 545 + 8 + 12 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3296 + 545 + 8 + 13 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the water node (period over which fixed costs are recovered). + 8 + true + + + 3297 + 545 + 8 + 14 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3298 + 545 + 8 + 15 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 3299 + 545 + 8 + 16 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3300 + 545 + 8 + 17 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3301 + 545 + 8 + 18 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the water node + 88 + true + + + 3302 + 545 + 8 + 19 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3303 + 545 + 8 + 20 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3304 + 545 + 8 + 21 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3305 + 545 + 12 + 22 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3306 + 545 + 12 + 23 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3307 + 545 + 12 + 24 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3308 + 550 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 3309 + 550 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Water consumption for each unit of consumption + true + + + 3310 + 550 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Water production for each unit of production + true + + + 3311 + 550 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Water consumption for each unit operating + 1000000000 + true + + + 3312 + 550 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Water consumption for each installed unit + 4 + true + + + 3313 + 552 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of water node flow + true + + + 3314 + 552 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3315 + 552 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3316 + 552 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3317 + 552 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3318 + 553 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of water node flow + true + + + 3319 + 553 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3320 + 553 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3321 + 553 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3322 + 553 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3323 + 554 + 2 + 1 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 3324 + 554 + 2 + 2 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 3325 + 554 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3326 + 554 + 2 + 4 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3327 + 554 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3328 + 554 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Water Storage is in service + 800000 + false + + + 3329 + 554 + 3 + 7 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Water Storage is available. + true + + + 3330 + 554 + 3 + 8 + Max Volume + 64 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 466 + Maximum volume of Water allowed in storage + 5 + true + + + 3331 + 554 + 3 + 9 + Min Volume + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 510 + Minimum volume of Water allowed in storage + 4 + true + + + 3332 + 554 + 3 + 10 + Initial Volume + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of Water in the storage + 80001 + true + + + 3333 + 554 + 3 + 11 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption associated with releases from the water storage + false + + + 3334 + 554 + 3 + 12 + Natural Inflow + 65 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 530 + Rate of inflow + true + + + 3335 + 554 + 3 + 13 + Loss Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to evaporation, leakage, etc + 200000 + true + + + 3336 + 554 + 3 + 14 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3337 + 554 + 3 + 15 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the water storage energy consumption curve. + true + + + 3338 + 554 + 3 + 16 + Energy Consumed Withdrawal Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2131 + Withdrawal level defining the water storage energy consumption curve. + true + + + 3339 + 554 + 3 + 17 + Max Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 435 + Max water storage level + 80001 + true + + + 3340 + 554 + 3 + 18 + System Curve Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2254 + Level for which system curve is specified + 80001 + true + + + 3341 + 554 + 3 + 19 + Cross Section Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2255 + Cross sectional area of the water storage + 80001 + true + + + 3342 + 554 + 3 + 20 + Reference Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2513 + Reference storage level + 80001 + true + + + 3343 + 554 + 3 + 21 + Reference Volume + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2514 + Reference volume of water in the storage + 80001 + true + + + 3344 + 554 + 9 + 22 + Target + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 80 + true + + + 3345 + 554 + 9 + 22 + Target Hour + 64 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 80 + true + + + 3346 + 554 + 9 + 22 + Target Day + 64 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 80 + true + + + 3347 + 554 + 9 + 22 + Target Week + 64 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 3348 + 554 + 9 + 22 + Target Month + 64 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 80 + true + + + 3349 + 554 + 9 + 22 + Target Year + 64 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 80 + true + + + 3350 + 554 + 9 + 23 + Target Penalty + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 80 + true + + + 3351 + 554 + 9 + 24 + Target Penalty Under + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2378 + Penalty for violating the Min Storage Target. + 80 + true + + + 3352 + 554 + 9 + 25 + Max Withdrawal + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of water that can be withdrawn from the storage + 80 + true + + + 3353 + 554 + 9 + 25 + Max Withdrawal Hour + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of water that can be withdrawn from the storage in a hour + 80 + true + + + 3354 + 554 + 9 + 25 + Max Withdrawal Day + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1247 + Maximum amount of water that can be withdrawn from the storage in day + 80 + true + + + 3355 + 554 + 9 + 25 + Max Withdrawal Week + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of water that can be withdrawn from the storage in a week + 80 + true + + + 3356 + 554 + 9 + 25 + Max Withdrawal Month + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of water that can be withdrawn from the storage in a month + 80 + true + + + 3357 + 554 + 9 + 25 + Max Withdrawal Year + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of water that can be withdrawn from the storage in a year + 80 + true + + + 3358 + 554 + 9 + 26 + Min Storage Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2075 + Minimum Storage Target Percent for water storage + 80 + true + + + 3359 + 554 + 9 + 27 + Max Storage Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2076 + Max Storage Target Percent for water storage + 80 + true + + + 3360 + 554 + 7 + 28 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3361 + 554 + 7 + 29 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3362 + 554 + 7 + 30 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3363 + 554 + 7 + 31 + Outage Max Withdrawal + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2353 + Storage Max Withdrawal during the outage + 1000000 + true + + + 3364 + 554 + 7 + 32 + Outage Max Injection + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2354 + Storage Max Injection during the outage + 1000000 + true + + + 3365 + 554 + 7 + 33 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3366 + 554 + 7 + 34 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3367 + 554 + 7 + 35 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3368 + 554 + 7 + 36 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3369 + 554 + 7 + 37 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3370 + 554 + 8 + 38 + Expansion Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2029 + Indicates if Water Storage is eligible for expansion planning + 8 + true + + + 3371 + 554 + 8 + 39 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3372 + 554 + 8 + 40 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water storage project, for expansion planning. + 8 + true + + + 3373 + 554 + 8 + 41 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water storage + 8 + true + + + 3374 + 554 + 8 + 42 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Water storage + 8009 + true + + + 3375 + 554 + 8 + 43 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3376 + 554 + 8 + 44 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water storage (period over which fixed costs are recovered). + 8 + true + + + 3377 + 554 + 8 + 45 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2030 + Indicates if Water Storage is eligible for retirement planning + 8 + true + + + 3378 + 554 + 8 + 46 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water storage + 88 + true + + + 3379 + 554 + 8 + 47 + Expansion Max Volume + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2028 + Expansion max volume associated with the Water Storage + 8 + true + + + 3380 + 554 + 11 + 48 + Trajectory Non-anticipativity + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 3381 + 554 + 11 + 49 + Trajectory Non-anticipativity Volume + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100000000 + true + + + 3382 + 554 + 11 + 50 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 3383 + 554 + 12 + 51 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3384 + 554 + 12 + 52 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3385 + 554 + 12 + 53 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3386 + 558 + 1 + 1 + Outage Max Withdrawal + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2353 + Water Storage Max Withdrawal during the outage + 4 + true + + + 3387 + 558 + 1 + 2 + Outage Max Injection + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2354 + Water Storage Max Injection during the outage + 4 + true + + + 3388 + 559 + 3 + 1 + Natural Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + false + + + 3389 + 559 + 3 + 2 + End Volume Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + true + + + 3390 + 559 + 3 + 3 + Release Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of water release + true + + + 3391 + 559 + 3 + 4 + Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of water inflow + true + + + 3392 + 559 + 3 + 5 + Ramp Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in water storage end volume + true + + + 3393 + 559 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3394 + 559 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3395 + 559 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3396 + 559 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3397 + 560 + 3 + 1 + Natural Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + true + + + 3398 + 560 + 3 + 2 + End Volume Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 3399 + 560 + 3 + 3 + Release Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of water release + true + + + 3400 + 560 + 3 + 4 + Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of water inflow + true + + + 3401 + 560 + 3 + 5 + Ramp Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in water storage end volume + true + + + 3402 + 560 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3403 + 560 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3404 + 560 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3405 + 560 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3406 + 561 + 3 + 1 + Demand + 65 + 0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 133 + Demand for water + 400 + true + + + 3407 + 561 + 3 + 2 + Shortage Price + 67 + 1000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1270 + Notional price of water shortage + 40000000 + true + + + 3408 + 561 + 3 + 3 + Excess Price + 67 + -100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1271 + Notional price of water oversupply + 40000000 + true + + + 3409 + 561 + 4 + 4 + Bid Quantity + 65 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + 400000 + true + + + 3410 + 561 + 4 + 5 + Bid Price + 67 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Value of water in band + 400000 + true + + + 3411 + 561 + 12 + 6 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3412 + 561 + 12 + 7 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3413 + 561 + 12 + 8 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3414 + 564 + 1 + 1 + Demand Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1448 + Proportion of water demand that occurs at the water node + 400 + true + + + 3415 + 565 + 8 + 1 + Max Capacity Reserves + 65 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + false + + + 3416 + 565 + 8 + 2 + Min Capacity Reserves + 65 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + false + + + 3417 + 565 + 8 + 3 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 3418 + 565 + 8 + 4 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 3419 + 565 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3420 + 565 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3421 + 565 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3422 + 575 + 2 + 1 + Configuration + 0 + 0 + In (0,1) + 0;"Parallel";1;"Series" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2256 + Water Pump configuration (series or parallel) + true + + + 3423 + 575 + 3 + 2 + Max Head + 23 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2261 + Maximum head of pump station + true + + + 3424 + 575 + 3 + 3 + Max Flow Rate + 65 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2260 + Maximum flow rate of pump station + true + + + 3425 + 575 + 3 + 4 + Max Power + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1756 + Maximum power of pump station + true + + + 3426 + 582 + 3 + 1 + Flow Rate Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2257 + Coefficient of Water Pump Station flow rate + true + + + 3427 + 582 + 3 + 2 + Head Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2258 + Coefficient of Water Pump Station head + true + + + 3428 + 582 + 3 + 3 + Power Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2259 + Coefficient of Water Pump Station power + true + + + 3429 + 583 + 3 + 1 + Flow Rate Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2257 + Coefficient of Water Pump Station flow rate + true + + + 3430 + 583 + 3 + 2 + Head Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2258 + Coefficient of Water Pump Station head + true + + + 3431 + 583 + 3 + 3 + Power Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2259 + Coefficient of Water Pump Station power + true + + + 3432 + 584 + 3 + 1 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 3433 + 584 + 3 + 2 + Efficiency + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 1209 + Water Pump efficiency + true + + + 3434 + 584 + 3 + 3 + Max Flow Rate + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2260 + Max Flow Rate + true + + + 3435 + 584 + 3 + 4 + Max Head + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2261 + Max pump head + true + + + 3436 + 584 + 3 + 5 + Pump Curve Coefficient A + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2262 + Pump Curve Coefficient A for the quadratic term + true + + + 3437 + 584 + 3 + 6 + Pump Curve Coefficient B + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2263 + Pump Curve Coefficient B for the linear term + true + + + 3438 + 584 + 3 + 7 + Pump Curve Coefficient C + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2264 + Pump Curve Coefficient C for the constant term + true + + + 3439 + 584 + 3 + 8 + Flow Rate Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2511 + Flow rate point for the pump curve + true + + + 3440 + 584 + 3 + 9 + Head Point + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2512 + Head point for the pump curve + true + + + 3441 + 584 + 3 + 10 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 3442 + 584 + 3 + 11 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 3443 + 584 + 3 + 12 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a pump must be run after being started + 1000000080 + true + + + 3444 + 584 + 3 + 13 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a pump must be off after being shut down + 1000000080 + true + + + 3445 + 584 + 3 + 14 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a pump can be run after being started + 1000000080 + true + + + 3446 + 584 + 3 + 15 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a pump can be off after being shut down + 1000000080 + true + + + 3447 + 584 + 3 + 16 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 3448 + 584 + 3 + 17 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Number of units that should be committed + 1000000080 + true + + + 3449 + 584 + 3 + 18 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the pump has been up for at time zero + 1000080000 + true + + + 3450 + 584 + 3 + 19 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the pump has been down for at time zero + 1000080000 + true + + + 3451 + 584 + 9 + 20 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 3452 + 584 + 9 + 20 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 3453 + 584 + 9 + 20 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 3454 + 584 + 9 + 20 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 3455 + 584 + 9 + 20 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 3456 + 584 + 9 + 20 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 3457 + 584 + 9 + 21 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints + 1080000080 + true + + + 3458 + 584 + 7 + 22 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 818 + Number of units out of service + 1000000 + true + + + 3459 + 587 + 3 + 1 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 3460 + 588 + 9 + 1 + Energy Target + 80 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1861 + Vehicle stored energy target + 80 + true + + + 3461 + 588 + 9 + 1 + Energy Target Hour + 80 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1862 + End of hour vehicle stored energy target + 80 + true + + + 3462 + 588 + 9 + 1 + Energy Target Day + 80 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1863 + End of day vehicle stored energy target + 80 + true + + + 3463 + 588 + 9 + 1 + Energy Target Week + 80 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1864 + End of week vehicle stored energy target + 80 + true + + + 3464 + 588 + 9 + 1 + Energy Target Month + 80 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1865 + End of month vehicle stored energy target + 80 + true + + + 3465 + 588 + 9 + 1 + Energy Target Year + 80 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1866 + End of year vehicle stored energy target + 80 + true + + + 3466 + 588 + 9 + 2 + Energy Target Penalty + 52 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1867 + Penalty for violating the vehicle stored energy target. + 80 + true + + + 3467 + 588 + 2 + 3 + Fixed Load Global + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 1 + 0 + false + false + false + false + 1 + 2465 + If [Fixed Load] applies across all Vehicles or unit-by-unit + true + + + 3468 + 588 + 2 + 4 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3469 + 588 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3470 + 588 + 2 + 6 + End Effects Method + 0 + 2 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period energy. + 4 + true + + + 3471 + 588 + 2 + 7 + Simultaneous Charge and Discharge + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2632 + Vehicle can charge and discharge simultaneously + 80 + true + + + 3472 + 588 + 2 + 8 + Non-physical Charge Penalty + 47 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2870 + Penalty applied to non-physical charging of the vehicle. A value of -1 means none is allowed. + 4 + true + + + 3473 + 588 + 2 + 9 + Non-physical Discharge Penalty + 47 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2871 + Penalty applied to non-physical discharging of the vehicle. A value of -1 means none is allowed. + 4 + true + + + 3474 + 588 + 3 + 10 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of vehicles + 800001 + true + + + 3475 + 588 + 3 + 11 + Capacity + 80 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of the vehicle + 5 + true + + + 3476 + 588 + 3 + 12 + Efficiency + 82 + 200 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Electric vehicle efficiency + 1000 + true + + + 3477 + 588 + 3 + 13 + Demand + 81 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + true + false + 1 + 133 + Travel demand for vehicle + true + + + 3478 + 588 + 3 + 14 + Initial SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1670 + Initial state of charge + 5 + true + + + 3479 + 588 + 3 + 15 + Max SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1666 + Allowable maximum state of charge + 5 + true + + + 3480 + 588 + 3 + 16 + Min SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1667 + Allowable minimum state of charge + 5 + true + + + 3481 + 588 + 3 + 17 + Max Charge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2109 + Maximum charge rate + 5 + true + + + 3482 + 588 + 3 + 18 + Max Discharge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2110 + Maximum discharge rate + 5 + true + + + 3483 + 588 + 3 + 19 + Self Discharge Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2710 + Percentage of stored energy lost per hour due to self-discharge. + 200000 + true + + + 3484 + 588 + 9 + 20 + Max Cycles + 62 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1832 + Number of cycles allowed each interval + 80 + true + + + 3485 + 588 + 9 + 20 + Max Cycles Hour + 62 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1833 + Number of cycles allowed each hour + 80 + true + + + 3486 + 588 + 9 + 20 + Max Cycles Day + 62 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1834 + Number of cycles allowed each day + 80 + true + + + 3487 + 588 + 9 + 20 + Max Cycles Week + 62 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1835 + Number of cycles allowed each week + 80 + true + + + 3488 + 588 + 9 + 20 + Max Cycles Month + 62 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1836 + Number of cycles allowed each month + 80 + true + + + 3489 + 588 + 9 + 20 + Max Cycles Year + 62 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1837 + Number of cycles allowed each year + 80 + true + + + 3490 + 588 + 3 + 21 + Charge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 3491 + 588 + 3 + 22 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 3492 + 588 + 3 + 23 + Auxiliary Consumption + 79 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + true + false + 1 + 2974 + Axuiliary energy consumption for vehicle + true + + + 3493 + 588 + 3 + 24 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 3494 + 588 + 3 + 25 + VO&M Charge + 90 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 3495 + 588 + 3 + 26 + Fixed Load + 79 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed charging load + true + + + 3496 + 588 + 3 + 27 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3497 + 588 + 3 + 28 + Capacity Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1960 + Degradation in capacity with age in number of cycles + 4 + true + + + 3498 + 588 + 3 + 29 + Charge Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2979 + Degradation in charge efficiency with age in number of cycles + 4 + true + + + 3499 + 588 + 3 + 30 + Discharge Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2980 + Degradation in discharge efficiency with age in number of cycles + 4 + true + + + 3500 + 588 + 3 + 31 + Initial Age + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Age of the vehicle battery in number of cycles at the start of the simulation horizon + 80000 + true + + + 3501 + 588 + 8 + 32 + Purchase Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2451 + Cost of purchasing the vehicle + 8009 + true + + + 3502 + 588 + 8 + 33 + Disposal Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2452 + Cost of disposing of the vehicle + 8 + true + + + 3503 + 588 + 8 + 34 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the vehicle + 8 + true + + + 3504 + 588 + 8 + 35 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3505 + 588 + 8 + 36 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the vehicle (period over which fixed costs are recovered) + 9 + true + + + 3506 + 588 + 8 + 37 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3507 + 588 + 8 + 38 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3508 + 588 + 8 + 39 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3509 + 588 + 8 + 40 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3510 + 588 + 8 + 41 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3511 + 588 + 8 + 42 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3512 + 588 + 8 + 43 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3513 + 588 + 8 + 44 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3514 + 588 + 12 + 45 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3515 + 588 + 12 + 46 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3516 + 588 + 12 + 47 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3517 + 591 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 744 + Time the vehicle is at the charging station + true + + + 3518 + 592 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Fleet share of Vehicle + true + + + 3519 + 593 + 1 + 1 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Proportion of energy provided by the Commodity + true + + + 3520 + 594 + 1 + 1 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 3521 + 594 + 1 + 2 + Distance Coefficient + 81 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2458 + Coefficient of distance travelled by the vehicle + true + + + 3522 + 594 + 1 + 3 + Load Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load drawn by vehicle charging + true + + + 3523 + 594 + 1 + 4 + Generation Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation from vehicle to grid + true + + + 3524 + 594 + 1 + 5 + Energy Coefficient + 80 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1859 + Coefficient of energy stored in the vehicle + true + + + 3525 + 595 + 1 + 1 + Distance Coefficient + 81 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2458 + Coefficient of distance travelled by the vehicle + true + + + 3526 + 596 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3527 + 596 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3528 + 596 + 3 + 3 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of chargers + 800001 + true + + + 3529 + 596 + 3 + 4 + Max Charge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2109 + Maximum charge rate + 5 + true + + + 3530 + 596 + 3 + 5 + Deferrable Load + 12 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 2125 + Proportion of charging load that can be deferred + true + + + 3531 + 596 + 3 + 6 + Deferment Period + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2128 + Length of time load is deferred where zero means one interval + true + + + 3532 + 596 + 3 + 7 + Max Discharge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2110 + Maximum discharge rate + 5 + true + + + 3533 + 596 + 3 + 8 + Charge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 3534 + 596 + 3 + 9 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 3535 + 596 + 3 + 10 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge + 2000000000 + true + + + 3536 + 596 + 3 + 11 + Max Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 436 + Maximum charging load across all units + true + + + 3537 + 596 + 3 + 12 + Min Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 486 + Minimum charging load across all units + true + + + 3538 + 596 + 3 + 13 + Fixed Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed charging load across all units + true + + + 3539 + 596 + 3 + 14 + Max Generation + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 431 + Maximum generation across all units + true + + + 3540 + 596 + 3 + 15 + Min Generation + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 483 + Minimum generation across all units + true + + + 3541 + 596 + 3 + 16 + Fixed Generation + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 198 + Fixed generation across all units + true + + + 3542 + 596 + 3 + 17 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3543 + 596 + 8 + 18 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 3544 + 596 + 8 + 19 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 3545 + 596 + 8 + 20 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning + 8 + true + + + 3546 + 596 + 8 + 21 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 3547 + 596 + 8 + 22 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3548 + 596 + 8 + 23 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 3549 + 596 + 8 + 24 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3550 + 596 + 8 + 25 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3551 + 596 + 8 + 26 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3552 + 596 + 8 + 27 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3553 + 596 + 8 + 28 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3554 + 596 + 8 + 29 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3555 + 596 + 8 + 30 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3556 + 596 + 8 + 31 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3557 + 596 + 12 + 32 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3558 + 596 + 12 + 33 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3559 + 596 + 12 + 34 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3560 + 602 + 12 + 1 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3561 + 602 + 12 + 2 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3562 + 602 + 12 + 3 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3563 + 605 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company ownership share of the Fleet + true + + + 3564 + 606 + 2 + 1 + Load Includes Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 353 + Flag if input load includes transmission losses + 200000 + true + + + 3565 + 606 + 3 + 2 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 349 + Own load + load contracts + 100000 + true + + + 3566 + 606 + 5 + 3 + Strategic + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 766 + Percentage of company generation that acts strategically + 40 + true + + + 3567 + 606 + 5 + 4 + Mark-up Bias + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 409 + Bias given towards high revenue periods in mark-ups (cost recovery algorithm) + 40 + true + + + 3568 + 606 + 5 + 5 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound company net profit risk + 4000000000 + true + + + 3569 + 606 + 5 + 6 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 3570 + 606 + 5 + 7 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 3571 + 606 + 7 + 8 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 3572 + 606 + 7 + 9 + Min Maintenance + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1452 + Generation capacity that must be scheduled on maintenance + 1000000 + true + + + 3573 + 606 + 7 + 10 + Max Maintenance Factor + 12 + 100 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1456 + Maximum generation capacity allowed to be scheduled on maintenance as a proportion of installed capacity + 1000000 + true + + + 3574 + 606 + 7 + 11 + Min Maintenance Factor + 12 + 0 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1457 + Generation capacity that must be scheduled on maintenance as a proportion of installed capacity + 1000000 + true + + + 3575 + 606 + 12 + 12 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3576 + 606 + 12 + 13 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3577 + 606 + 12 + 14 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3578 + 610 + 1 + 1 + Allocation + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3 + Emission rights allocation + 2000 + true + + + 3579 + 610 + 1 + 1 + Allocation Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1581 + Emission rights allocation + 2000 + true + + + 3580 + 610 + 1 + 1 + Allocation Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 4 + Emission rights allocation + 2000 + true + + + 3581 + 610 + 1 + 1 + Allocation Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 6 + Emission rights allocation + 2000 + true + + + 3582 + 610 + 1 + 1 + Allocation Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 5 + Emission rights allocation + 2000 + true + + + 3583 + 610 + 1 + 1 + Allocation Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 7 + Emission rights allocation + 2000 + true + + + 3584 + 612 + 1 + 1 + Load Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of region load the company is responsible for + 100000 + true + + + 3585 + 614 + 1 + 1 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the company + true + + + 3586 + 614 + 1 + 2 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports + true + + + 3587 + 616 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's ownership share of Facility + 40 + true + + + 3588 + 617 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of market trades + 40 + true + + + 3589 + 618 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of company generation + true + + + 3590 + 618 + 3 + 2 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of company committed generation capacity + 1000000004 + true + + + 3591 + 618 + 3 + 3 + Contract Volume Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 110 + Coefficient of company contract volume + 40 + true + + + 3592 + 618 + 3 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 3593 + 618 + 3 + 5 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 3594 + 618 + 5 + 6 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3595 + 618 + 5 + 7 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3596 + 618 + 5 + 8 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3597 + 619 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of company generation + true + + + 3598 + 619 + 3 + 2 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of company committed generation capacity + true + + + 3599 + 619 + 3 + 3 + Contract Volume Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 110 + Coefficient of company contract volume + true + + + 3600 + 619 + 3 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 3601 + 619 + 3 + 5 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 3602 + 619 + 5 + 6 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3603 + 619 + 5 + 7 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3604 + 619 + 5 + 8 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3605 + 620 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of inventory balance + true + + + 3606 + 620 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period inventory + 400000000 + true + + + 3607 + 620 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal inventory trajectory from one simulation phase to the next + 400000000 + true + + + 3608 + 620 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition inventory target penalty function 'a' term + 400000000 + true + + + 3609 + 620 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition inventory target penalty function 'b' term + 400000000 + true + + + 3610 + 620 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition inventory target penalty function 'c' term + 400000000 + true + + + 3611 + 620 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition inventory target penalty function 'x' term + 400000000 + true + + + 3612 + 620 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of inventory bounds when the decomposition implies possible violations + 400000000 + true + + + 3613 + 620 + 2 + 9 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 3614 + 620 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3615 + 620 + 2 + 11 + Build Cost Multiplier + 0 + 0 + In (0,2) + 0;"None";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 3616 + 620 + 3 + 12 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of Commodity 'units' where zero switches the Commodity out of the simulation + 800001 + true + + + 3617 + 620 + 3 + 13 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Price of the Commodity for the given level of Net Consumption + 1 + true + + + 3618 + 620 + 9 + 14 + Max Consumption + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2273 + Maximum consumption per interval + true + + + 3619 + 620 + 9 + 14 + Max Consumption Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2274 + Maximum consumption per hour + true + + + 3620 + 620 + 9 + 14 + Max Consumption Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2275 + Maximum consumption per day + true + + + 3621 + 620 + 9 + 14 + Max Consumption Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2276 + Maximum consumption per week + true + + + 3622 + 620 + 9 + 14 + Max Consumption Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2277 + Maximum consumption per month + true + + + 3623 + 620 + 9 + 14 + Max Consumption Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2278 + Maximum consumption per year + true + + + 3624 + 620 + 9 + 14 + Max Consumption Custom + 86 + 1E+30 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2279 + Maximum consumption over custom timeframe + true + + + 3625 + 620 + 9 + 15 + Max Consumption Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2280 + Penalty for violation of [Max Consumption] constraints + true + + + 3626 + 620 + 9 + 16 + Min Consumption + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2283 + Minimum consumption per interval + true + + + 3627 + 620 + 9 + 16 + Min Consumption Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2284 + Minimum consumption per hour + true + + + 3628 + 620 + 9 + 16 + Min Consumption Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2285 + Minimum consumption per day + true + + + 3629 + 620 + 9 + 16 + Min Consumption Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2286 + Minimum consumption per week + true + + + 3630 + 620 + 9 + 16 + Min Consumption Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2287 + Minimum consumption per month + true + + + 3631 + 620 + 9 + 16 + Min Consumption Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2288 + Minimum consumption per year + true + + + 3632 + 620 + 9 + 16 + Min Consumption Custom + 86 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2289 + Minimum consumption over custom timeframe + true + + + 3633 + 620 + 9 + 17 + Min Consumption Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2290 + Penalty for violation of [Min Consumption] constraints + true + + + 3634 + 620 + 9 + 18 + Max Production + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production per interval + true + + + 3635 + 620 + 9 + 18 + Max Production Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production per hour + true + + + 3636 + 620 + 9 + 18 + Max Production Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production per day + true + + + 3637 + 620 + 9 + 18 + Max Production Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production per week + true + + + 3638 + 620 + 9 + 18 + Max Production Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production per month + true + + + 3639 + 620 + 9 + 18 + Max Production Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production per year + true + + + 3640 + 620 + 9 + 18 + Max Production Custom + 86 + 1E+30 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2281 + Maximum production over custom timeframe + true + + + 3641 + 620 + 9 + 19 + Max Production Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1361 + Penalty for violation of [Max Production] constraints + true + + + 3642 + 620 + 9 + 20 + Min Production + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production per interval + true + + + 3643 + 620 + 9 + 20 + Min Production Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production per hour + true + + + 3644 + 620 + 9 + 20 + Min Production Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production per day + true + + + 3645 + 620 + 9 + 20 + Min Production Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production per week + true + + + 3646 + 620 + 9 + 20 + Min Production Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production per month + true + + + 3647 + 620 + 9 + 20 + Min Production Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production per year + true + + + 3648 + 620 + 9 + 20 + Min Production Custom + 86 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2291 + Minimum production over custom timeframe + true + + + 3649 + 620 + 9 + 21 + Min Production Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2292 + Penalty for violation of [Min Production] constraints + true + + + 3650 + 620 + 10 + 22 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3651 + 620 + 10 + 23 + Max Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 3652 + 620 + 10 + 24 + Min Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 3653 + 620 + 10 + 25 + Opening Inventory + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1591 + Initial amount of the Commodity in inventory + true + + + 3654 + 620 + 10 + 26 + Delivery + 86 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Amount of the Commodity added to inventory + true + + + 3655 + 620 + 10 + 27 + Injection Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2507 + Proportion of injected commodity reaching storage net of losses + true + + + 3656 + 620 + 10 + 28 + Withdrawal Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2508 + Proportion of commodity withdrawn from storage net of losses + true + + + 3657 + 620 + 10 + 29 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of deliveries of the Commodity to inventory + true + + + 3658 + 620 + 10 + 30 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost of keeping the Commodity in inventory + true + + + 3659 + 620 + 10 + 31 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity + true + + + 3660 + 620 + 10 + 32 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1252 + Cost of adding the Commodity to inventory + true + + + 3661 + 620 + 10 + 33 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Cost of taking the Commodity out of inventory + true + + + 3662 + 620 + 10 + 34 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of the Commodity that can be taken from inventory in any interval + 400000000 + true + + + 3663 + 620 + 10 + 34 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of the Commodity that can be taken from inventory in a hour + 400000000 + true + + + 3664 + 620 + 10 + 34 + Max Withdrawal Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of the Commodity that can be taken from inventory in a day + 400000000 + true + + + 3665 + 620 + 10 + 34 + Max Withdrawal Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of the Commodity that can be taken from inventory in a week + 400000000 + true + + + 3666 + 620 + 10 + 34 + Max Withdrawal Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of the Commodity that can be taken from inventory in a month + 400000000 + true + + + 3667 + 620 + 10 + 34 + Max Withdrawal Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of the Commodity that can be taken from inventory in a year + 400000000 + true + + + 3668 + 620 + 10 + 35 + Max Injection + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of the Commodity that can be put into inventory in any interval + 400000000 + true + + + 3669 + 620 + 10 + 35 + Max Injection Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of the Commodity that can be put into inventory in any hour + 400000000 + true + + + 3670 + 620 + 10 + 35 + Max Injection Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of the Commodity that can be put into inventory in any day + 400000000 + true + + + 3671 + 620 + 10 + 35 + Max Injection Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of the Commodity that can be put into inventory in any week + 400000000 + true + + + 3672 + 620 + 10 + 35 + Max Injection Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of the Commodity that can be put into inventory in any month + 400000000 + true + + + 3673 + 620 + 10 + 35 + Max Injection Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of the Commodity that can be put into inventory in any year + 400000000 + true + + + 3674 + 620 + 10 + 36 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1258 + Amount of the Commodity that must be taken from inventory each interval + 400000000 + true + + + 3675 + 620 + 10 + 36 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of the Commodity that must be taken from inventory each hour + 400000000 + true + + + 3676 + 620 + 10 + 36 + Min Withdrawal Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of the Commodity that must be taken from inventory each day + 400000000 + true + + + 3677 + 620 + 10 + 36 + Min Withdrawal Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of the Commodity that must be taken from inventory each week + 400000000 + true + + + 3678 + 620 + 10 + 36 + Min Withdrawal Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of the Commodity that must be taken from inventory each month + 400000000 + true + + + 3679 + 620 + 10 + 36 + Min Withdrawal Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of the Commodity that must be taken from inventory each year + 400000000 + true + + + 3680 + 620 + 10 + 37 + Min Injection + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1263 + Amount of the Commodity that must be added to inventory in any interval + 400000000 + true + + + 3681 + 620 + 10 + 37 + Min Injection Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of the Commodity that must be added to inventory in any hour + 400000000 + true + + + 3682 + 620 + 10 + 37 + Min Injection Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of the Commodity that must be added to inventory in any day + 400000000 + true + + + 3683 + 620 + 10 + 37 + Min Injection Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of the Commodity that must be added to inventory in any week + 400000000 + true + + + 3684 + 620 + 10 + 37 + Min Injection Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of the Commodity that must be added to inventory in any month + 400000000 + true + + + 3685 + 620 + 10 + 37 + Min Injection Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of the Commodity that must be added to inventory in any year + 400000000 + true + + + 3686 + 620 + 10 + 38 + Max Inventory Change + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2333 + Maximum rate of change in inventory in any interval + 400000000 + true + + + 3687 + 620 + 10 + 38 + Max Inventory Change Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2334 + Maximum rate of change in inventory in any hour + 400000000 + true + + + 3688 + 620 + 10 + 38 + Max Inventory Change Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2335 + Maximum rate of change in inventory in any day + 400000000 + true + + + 3689 + 620 + 10 + 38 + Max Inventory Change Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2336 + Maximum rate of change in inventory in any week + 400000000 + true + + + 3690 + 620 + 10 + 38 + Max Inventory Change Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2337 + Maximum rate of change in inventory in any month + 400000000 + true + + + 3691 + 620 + 10 + 38 + Max Inventory Change Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2338 + Maximum rate of change in inventory in any year + 400000000 + true + + + 3692 + 620 + 10 + 39 + Max Inventory Change Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2339 + Penalty for violating the [Max Ramp] constraints + 400000000 + true + + + 3693 + 620 + 10 + 40 + Target + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Target level of inventory at the end of the interval + 400000000 + true + + + 3694 + 620 + 10 + 40 + Target Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + Target level of inventory at the end of the hour + 400000000 + true + + + 3695 + 620 + 10 + 40 + Target Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + Target level of inventory at the end of the day + 400000000 + true + + + 3696 + 620 + 10 + 40 + Target Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + Target level of inventory at the end of the week + 400000000 + true + + + 3697 + 620 + 10 + 40 + Target Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + Target level of inventory at the end of the month + 400000000 + true + + + 3698 + 620 + 10 + 40 + Target Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + Target level of inventory at the end of the year + 400000000 + true + + + 3699 + 620 + 10 + 40 + Target Custom + 86 + 0 + >=0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2542 + Target level of inventory at the end of the horizon + 400000000 + true + + + 3700 + 620 + 10 + 41 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target inventory + 400000000 + true + + + 3701 + 620 + 5 + 42 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 3702 + 620 + 5 + 43 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 3703 + 620 + 5 + 44 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 3704 + 620 + 8 + 45 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 3705 + 620 + 8 + 46 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 3706 + 620 + 8 + 47 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 3707 + 620 + 8 + 48 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 3708 + 620 + 8 + 49 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3709 + 620 + 8 + 50 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 3710 + 620 + 8 + 51 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3711 + 620 + 8 + 52 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3712 + 620 + 8 + 53 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3713 + 620 + 8 + 54 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3714 + 620 + 8 + 55 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3715 + 620 + 8 + 56 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3716 + 620 + 8 + 57 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3717 + 620 + 8 + 58 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3718 + 620 + 8 + 59 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 3719 + 620 + 11 + 60 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 3720 + 620 + 11 + 61 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 3721 + 620 + 12 + 62 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3722 + 620 + 12 + 63 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3723 + 620 + 12 + 64 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3724 + 624 + 3 + 1 + Consumption Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption in the Constraint + true + + + 3725 + 624 + 3 + 2 + Production Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production in the Constraint + true + + + 3726 + 624 + 10 + 3 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 3727 + 624 + 10 + 4 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 3728 + 624 + 10 + 5 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 3729 + 624 + 10 + 6 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 3730 + 624 + 10 + 7 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 3731 + 624 + 5 + 8 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3732 + 624 + 5 + 9 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3733 + 624 + 5 + 10 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3734 + 624 + 8 + 11 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3735 + 624 + 8 + 12 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3736 + 624 + 8 + 13 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3737 + 624 + 8 + 14 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3738 + 624 + 8 + 15 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3739 + 624 + 8 + 16 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3740 + 624 + 8 + 17 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3741 + 624 + 8 + 18 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3742 + 624 + 8 + 19 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3743 + 625 + 3 + 1 + Consumption Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption in the Objective + true + + + 3744 + 625 + 3 + 2 + Production Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production + true + + + 3745 + 625 + 10 + 3 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 3746 + 625 + 10 + 4 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 3747 + 625 + 10 + 5 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 3748 + 625 + 10 + 6 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 3749 + 625 + 10 + 7 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 3750 + 625 + 5 + 8 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3751 + 625 + 5 + 9 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3752 + 625 + 5 + 10 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3753 + 625 + 8 + 11 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3754 + 625 + 8 + 12 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3755 + 625 + 8 + 13 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3756 + 625 + 8 + 14 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3757 + 625 + 8 + 15 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3758 + 625 + 8 + 16 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3759 + 625 + 8 + 17 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3760 + 625 + 8 + 18 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3761 + 625 + 8 + 19 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3762 + 626 + 1 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Process is modeled + 800001 + true + + + 3763 + 626 + 1 + 2 + Capacity + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of production measured in units of the primary output + true + + + 3764 + 626 + 1 + 3 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Ratio of primary output production to primary input consumption + true + + + 3765 + 626 + 1 + 4 + Processing Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1738 + Unit cost of production charged per unit of the primary output + true + + + 3766 + 626 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3767 + 626 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3768 + 626 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3769 + 629 + 1 + 1 + Conversion Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2366 + Primary Input units per unit of Primary Output + true + + + 3770 + 630 + 1 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient in production definition of the number of units operating at the Facility + true + + + 3771 + 630 + 1 + 2 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient in production definition of the capacity of operating units at the Facility + true + + + 3772 + 630 + 1 + 3 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient in production definition of the available capacity at the Facility + true + + + 3773 + 630 + 1 + 4 + Operating Minimum Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2347 + Coefficient in production definition of the minimum operating level at the Facility + true + + + 3774 + 630 + 1 + 5 + Unit Maximum + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2348 + Maximum production as proportion of primary output + true + + + 3775 + 631 + 1 + 1 + Denominator + 0 + 0 + In (0,1) + 0;"Input";1;"Output" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2464 + The denominator for the Ratio property where "Input" refers to the Primary Input and "Output" refers to the Primary Output + true + + + 3776 + 631 + 1 + 2 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Secondary input consumption as a proportion of primary input consumption + true + + + 3777 + 632 + 1 + 1 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Secondary output production as a proportion of primary output production + true + + + 3778 + 632 + 1 + 2 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient in production definition of the number of units operating at the Facility + true + + + 3779 + 632 + 1 + 3 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient in production definition of the capacity of operating units at the Facility + true + + + 3780 + 632 + 1 + 4 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient in production definition of the available capacity at the Facility + true + + + 3781 + 632 + 1 + 5 + Operating Minimum Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2347 + Coefficient in production definition of the minimum operating level at the Facility + true + + + 3782 + 632 + 1 + 6 + Unit Maximum + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2348 + Maximum production as proportion of primary output + true + + + 3783 + 633 + 1 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Process production in the Constraint + true + + + 3784 + 633 + 1 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Process production in the Constraint + true + + + 3785 + 634 + 1 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Process consumption + true + + + 3786 + 634 + 1 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Process production + true + + + 3787 + 635 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the facility for the generation of outages + 101000000 + true + + + 3788 + 635 + 2 + 2 + Dispatchable + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2895 + A dispatchable facility operates anywhere within its technical limits whereas a non-dispatchable facility operates at its maximum available rating at all times + 800000 + true + + + 3789 + 635 + 2 + 3 + Min Operating Level Global + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2502 + If [Min Operating Level/Factor] applies across all units at the Facility or unit-by-unit + true + + + 3790 + 635 + 2 + 4 + Fixed Production Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2461 + Method of interpreting zero values of the [Fixed Production] property. + 80 + true + + + 3791 + 635 + 2 + 5 + Fixed Production Global + 0 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2466 + If [Fixed Production] applies across all units at the Facility or unit-by-unit + true + + + 3792 + 635 + 2 + 6 + Max Efficiency Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2443 + Maximum number of tranches in the efficiency piecewise linear approximation + 1000 + true + + + 3793 + 635 + 2 + 7 + Formulate Non-convex + 0 + 2 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order + 1000 + true + + + 3794 + 635 + 2 + 8 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 3795 + 635 + 2 + 9 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3796 + 635 + 2 + 10 + Build Cost Multiplier + 0 + 0 + In (0,1) + 0;"None";1;"Production Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 3797 + 635 + 3 + 11 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of existing units + 800001 + true + + + 3798 + 635 + 3 + 12 + Max Operating Level + 94 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 2293 + Maximum unit operating capacity + 5 + true + + + 3799 + 635 + 3 + 13 + Min Operating Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2295 + Minimum unit level required when operating as a proportion of the maximum + 1000000080 + true + + + 3800 + 635 + 3 + 14 + Min Operating Level + 94 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2470 + Minimum unit production level required when operating + 1000000080 + true + + + 3801 + 635 + 3 + 15 + Consumption Base + 93 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1428 + Primary Process consumption at notional zero production + 1000 + true + + + 3802 + 635 + 3 + 16 + Consumption Incr + 123 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1429 + Primary Process consumption function first-order term + 1000 + true + + + 3803 + 635 + 3 + 17 + Consumption Incr2 + 124 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2837 + Primary Process consumption function second-order term + 1000 + true + + + 3804 + 635 + 3 + 18 + Consumption Incr3 + 125 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2838 + Primary Process consumption function third-order term + 1000 + true + + + 3805 + 635 + 3 + 19 + Efficiency Point + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1340 + Operating level associated with [Efficiency Incr] + 1000 + true + + + 3806 + 635 + 3 + 20 + Efficiency Incr + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Primary Process marginal efficiency at the given [Efficiency Point] + 1000 + true + + + 3807 + 635 + 3 + 21 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1209 + Primary Process average efficiency at the given [Efficiency Point] + 1000 + true + + + 3808 + 635 + 3 + 22 + VO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 3809 + 635 + 3 + 23 + FO&M Charge + 108 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3810 + 635 + 3 + 24 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running a unit when operating + 20000000 + true + + + 3811 + 635 + 3 + 25 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 3812 + 635 + 3 + 26 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 3813 + 635 + 3 + 27 + Start Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1749 + Flag if start is allowed in the given time period + 1000000080 + true + + + 3814 + 635 + 3 + 28 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 3815 + 635 + 3 + 29 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 3816 + 635 + 3 + 30 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 3817 + 635 + 3 + 31 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 3818 + 635 + 3 + 32 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 3819 + 635 + 3 + 33 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 3820 + 635 + 3 + 34 + Warm Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2496 + Number of hours required to warm up the Facility + 1000000080 + true + + + 3821 + 635 + 3 + 35 + Warm Up Operating Level + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2498 + Unit operating level when in the warm up period + 1000000080 + true + + + 3822 + 635 + 3 + 36 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 3823 + 635 + 3 + 37 + Fixed Production + 0 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2304 + Fixed (exact) production + 80 + true + + + 3824 + 635 + 3 + 38 + Fixed Production Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2462 + Penalty for violation of [Fixed Production] + 80 + true + + + 3825 + 635 + 3 + 39 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Fixed (exact) number of units operating + 1000000080 + true + + + 3826 + 635 + 3 + 40 + Ramp Up Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 3827 + 635 + 3 + 41 + Ramp Down Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 3828 + 635 + 3 + 42 + Max Ramp Up + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 3829 + 635 + 3 + 43 + Max Ramp Up Factor + 12 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2468 + Maximum ramp up rate expressed as a proportion of the maximum operating level + 80 + true + + + 3830 + 635 + 3 + 44 + Max Ramp Up Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 660 + Penalty for violating [Max Ramp Up] constraint + 80 + true + + + 3831 + 635 + 3 + 45 + Max Ramp Down + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 3832 + 635 + 3 + 46 + Max Ramp Down Factor + 12 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2469 + Maximum ramp down rate expressed as a proportion of the maximum operating level + 80 + true + + + 3833 + 635 + 3 + 47 + Max Ramp Down Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 656 + Penalty for violating [Max Ramp Down] constraint + 80 + true + + + 3834 + 635 + 3 + 48 + Initial Production + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2460 + Production at time zero + 80000 + true + + + 3835 + 635 + 3 + 49 + Initial Units Operating + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2300 + Number of units operating at time zero + 1000080000 + true + + + 3836 + 635 + 3 + 50 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the unit has been up for at time zero + 1000080000 + true + + + 3837 + 635 + 3 + 51 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the unit has been down for at time zero + 1000080000 + true + + + 3838 + 635 + 9 + 52 + Max Production + 94 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production + 80 + true + + + 3839 + 635 + 9 + 52 + Max Production Hour + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production in hour + 80 + true + + + 3840 + 635 + 9 + 52 + Max Production Day + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production in day + 80 + true + + + 3841 + 635 + 9 + 52 + Max Production Week + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production in week + 80 + true + + + 3842 + 635 + 9 + 52 + Max Production Month + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production in month + 80 + true + + + 3843 + 635 + 9 + 52 + Max Production Year + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production in year + 80 + true + + + 3844 + 635 + 9 + 53 + Min Production + 94 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production + 80 + true + + + 3845 + 635 + 9 + 53 + Min Production Hour + 94 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production in hour + 80 + true + + + 3846 + 635 + 9 + 53 + Min Production Day + 94 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production in day + 80 + true + + + 3847 + 635 + 9 + 53 + Min Production Week + 94 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production in week + 80 + true + + + 3848 + 635 + 9 + 53 + Min Production Month + 94 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production in month + 80 + true + + + 3849 + 635 + 9 + 53 + Min Production Year + 94 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production in year + 80 + true + + + 3850 + 635 + 9 + 54 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor in the interval + 80 + true + + + 3851 + 635 + 9 + 54 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 3852 + 635 + 9 + 54 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 3853 + 635 + 9 + 54 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 3854 + 635 + 9 + 54 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 3855 + 635 + 9 + 54 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 3856 + 635 + 9 + 55 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor in the interval + 80 + true + + + 3857 + 635 + 9 + 55 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 3858 + 635 + 9 + 55 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 3859 + 635 + 9 + 55 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 3860 + 635 + 9 + 55 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 3861 + 635 + 9 + 55 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 3862 + 635 + 9 + 56 + Max Production Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1361 + Penalty applied to violations of [Max Production] and [Max Capacity Factor] constraints + 80 + true + + + 3863 + 635 + 9 + 57 + Min Production Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2292 + Penalty applied to violations of [Min Production] and [Min Capacity Factor] constraints + 80 + true + + + 3864 + 635 + 9 + 58 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 3865 + 635 + 9 + 58 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 3866 + 635 + 9 + 58 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 3867 + 635 + 9 + 58 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 3868 + 635 + 9 + 58 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 3869 + 635 + 9 + 58 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 3870 + 635 + 9 + 59 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints + 1080000080 + true + + + 3871 + 635 + 5 + 60 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 3872 + 635 + 5 + 61 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 3873 + 635 + 5 + 62 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 3874 + 635 + 7 + 63 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 3875 + 635 + 7 + 64 + Forced Outage + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 3876 + 635 + 7 + 65 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 3877 + 635 + 7 + 66 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 3878 + 635 + 7 + 67 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3879 + 635 + 7 + 68 + Maintenance + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 392 + Capacity lost to maintenance + 1000000 + false + + + 3880 + 635 + 7 + 69 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 3881 + 635 + 7 + 70 + Outage Operating Level + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2301 + Unit rating during outage + 1000000 + true + + + 3882 + 635 + 7 + 71 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 3883 + 635 + 7 + 72 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3884 + 635 + 7 + 73 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3885 + 635 + 7 + 74 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3886 + 635 + 7 + 75 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3887 + 635 + 8 + 76 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 3888 + 635 + 8 + 77 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 3889 + 635 + 8 + 78 + One-time Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1958 + One-time cost associated with the project + 8 + true + + + 3890 + 635 + 8 + 79 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3891 + 635 + 8 + 80 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 3892 + 635 + 8 + 81 + Commission Date + 0 + 1 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the facility was commissioned for use with [Technical Life] + 8 + true + + + 3893 + 635 + 8 + 82 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 3894 + 635 + 8 + 83 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3895 + 635 + 8 + 84 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 3896 + 635 + 8 + 85 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3897 + 635 + 8 + 86 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3898 + 635 + 8 + 87 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3899 + 635 + 8 + 88 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3900 + 635 + 8 + 89 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3901 + 635 + 8 + 90 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3902 + 635 + 8 + 91 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3903 + 635 + 8 + 92 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3904 + 635 + 8 + 93 + Build Set Size + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1453 + Expansion must occur in sets of this many units where zero indicates any set size + 88 + true + + + 3905 + 635 + 8 + 94 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 3906 + 635 + 11 + 95 + Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 968 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 3907 + 635 + 11 + 96 + Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 969 + Window of time over which to enforce unit commitment non-anticipativity constraints + 1100000000 + true + + + 3908 + 635 + 11 + 97 + Production Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2302 + Price for violating production non-anticipativity constraints + 100000000 + true + + + 3909 + 635 + 11 + 98 + Production Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2303 + Window of time over which to enforce production non-anticipativity constraints + 100000000 + true + + + 3910 + 635 + 11 + 99 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 3911 + 635 + 11 + 100 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 3912 + 635 + 12 + 101 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3913 + 635 + 12 + 102 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3914 + 635 + 12 + 103 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3915 + 646 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 3916 + 646 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Consumption for each unit of production + true + + + 3917 + 646 + 3 + 3 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Consumption for each unit operating + 1000000000 + true + + + 3918 + 646 + 6 + 4 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Consumption for each installed unit + 4 + true + + + 3919 + 647 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Facility + true + + + 3920 + 648 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption in the Constraint + true + + + 3921 + 648 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production in the Constraint + true + + + 3922 + 648 + 3 + 3 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor + true + + + 3923 + 648 + 3 + 4 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + 1000000000 + true + + + 3924 + 648 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 3925 + 648 + 3 + 6 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + 80000000 + true + + + 3926 + 648 + 3 + 7 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 3927 + 648 + 3 + 8 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the unit has been off + 1000000000 + true + + + 3928 + 648 + 3 + 9 + Ramp Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 3929 + 648 + 3 + 10 + Ramp Up Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 3930 + 648 + 3 + 11 + Ramp Down Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 3931 + 648 + 3 + 12 + Ramp Up Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 3932 + 648 + 3 + 13 + Ramp Down Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 3933 + 648 + 5 + 14 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3934 + 648 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3935 + 648 + 5 + 16 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3936 + 648 + 6 + 17 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 3937 + 648 + 6 + 18 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 3938 + 648 + 6 + 19 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 3939 + 648 + 6 + 20 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient of capacity of operating units + 1000000004 + true + + + 3940 + 648 + 7 + 21 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 3941 + 648 + 7 + 22 + Maintenance Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 3942 + 648 + 8 + 23 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3943 + 648 + 8 + 24 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3944 + 648 + 8 + 25 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3945 + 648 + 8 + 26 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3946 + 648 + 8 + 27 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3947 + 648 + 8 + 28 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3948 + 648 + 8 + 29 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3949 + 648 + 8 + 30 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3950 + 648 + 8 + 31 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3951 + 649 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption in the Objective + true + + + 3952 + 649 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production + true + + + 3953 + 649 + 3 + 3 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor + true + + + 3954 + 649 + 3 + 4 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + 1000000000 + true + + + 3955 + 649 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 3956 + 649 + 3 + 6 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + 80000000 + true + + + 3957 + 649 + 3 + 7 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 3958 + 649 + 3 + 8 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the unit has been off + 1000000000 + true + + + 3959 + 649 + 3 + 9 + Ramp Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 3960 + 649 + 3 + 10 + Ramp Up Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 3961 + 649 + 3 + 11 + Ramp Down Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 3962 + 649 + 3 + 12 + Ramp Up Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 3963 + 649 + 3 + 13 + Ramp Down Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 3964 + 649 + 5 + 14 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3965 + 649 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3966 + 649 + 5 + 16 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3967 + 649 + 6 + 17 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 3968 + 649 + 6 + 18 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 3969 + 649 + 6 + 19 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 3970 + 649 + 6 + 20 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient of capacity of operating units + 1000000004 + true + + + 3971 + 649 + 7 + 21 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 3972 + 649 + 7 + 22 + Maintenance Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 3973 + 649 + 8 + 23 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3974 + 649 + 8 + 24 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3975 + 649 + 8 + 25 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3976 + 649 + 8 + 26 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3977 + 649 + 8 + 27 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3978 + 649 + 8 + 28 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3979 + 649 + 8 + 29 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3980 + 649 + 8 + 30 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3981 + 649 + 8 + 31 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3982 + 650 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption + true + + + 3983 + 650 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production + true + + + 3984 + 650 + 3 + 3 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor + true + + + 3985 + 650 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient of the number of units operating + true + + + 3986 + 650 + 3 + 5 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient of the number of unit started + true + + + 3987 + 650 + 3 + 6 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient of number of units shutdown + true + + + 3988 + 650 + 3 + 7 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + true + + + 3989 + 650 + 6 + 8 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 3990 + 650 + 6 + 9 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 3991 + 650 + 7 + 10 + Outage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2563 + Coefficient of capacity on outage + 4 + true + + + 3992 + 650 + 7 + 11 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 4 + true + + + 3993 + 650 + 8 + 12 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3994 + 650 + 8 + 13 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3995 + 650 + 8 + 14 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3996 + 650 + 8 + 15 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3997 + 650 + 8 + 16 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 3998 + 650 + 8 + 17 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 3999 + 650 + 8 + 18 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 4000 + 650 + 8 + 19 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 4001 + 651 + 6 + 1 + Duration + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 1476 + Duration of the maintenance event. + 4 + true + + + 4002 + 651 + 6 + 2 + Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + true + false + 1 + 1687 + Window of time over which the maintenance is allowed. + 80 + true + + + 4003 + 651 + 6 + 3 + Start Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1749 + Flag if the maintenance event is allowed to start in the period. + 80 + true + + + 4004 + 651 + 6 + 4 + End Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1750 + Flag if the maintenance event is allowed to end in the period. + 80 + true + + + 4005 + 651 + 6 + 5 + Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 117 + Cost of the maintenance event. + 2000000000 + true + + + 4006 + 651 + 6 + 6 + Crew + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1688 + Maintenance event crew requirements. + 2000000000 + true + + + 4007 + 651 + 6 + 7 + Equipment + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1689 + Maintenance event equipment requirements. + 2000000000 + true + + + 4008 + 651 + 6 + 8 + Lead Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1751 + Minimum number of hours lead time between the start of this event and the end of any Prerequisites. + 80 + true + + + 4009 + 651 + 6 + 9 + Mutually Exclusive + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 998 + If this maintenance event must occur independently of others. + 80 + false + + + 4010 + 651 + 6 + 10 + Penalty Cost + 14 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 603 + Cost of not scheduling this maintenance event. + 2000000000 + true + + + 4011 + 651 + 6 + 11 + Min Occurrence + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1696 + Number of times this event must occurs in the Horizon. + 80 + true + + + 4012 + 651 + 6 + 11 + Min Occurrence Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1697 + Number of times this event must occur each hour. + 80 + true + + + 4013 + 651 + 6 + 11 + Min Occurrence Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1698 + Number of times this event must occur each day. + 80 + true + + + 4014 + 651 + 6 + 11 + Min Occurrence Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1699 + Number of times this event must occur each week. + 80 + true + + + 4015 + 651 + 6 + 11 + Min Occurrence Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1700 + Number of times this event must occur each month. + 80 + true + + + 4016 + 651 + 6 + 11 + Min Occurrence Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1701 + Number of times this event must occur each year. + 80 + true + + + 4017 + 651 + 11 + 12 + Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 4018 + 651 + 12 + 13 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4019 + 651 + 12 + 14 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4020 + 651 + 12 + 15 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4021 + 655 + 1 + 1 + Hours Active Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1691 + Coefficient of number of hours the maintenance is active. + true + + + 4022 + 655 + 1 + 2 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1692 + Coefficient of maintenance cost incurred. + true + + + 4023 + 655 + 1 + 3 + Crew Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1693 + Coefficient of maintenance event crew usage. + true + + + 4024 + 655 + 1 + 4 + Equipment Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1694 + Coefficient of maintenance event equipment usage. + true + + + 4025 + 655 + 1 + 5 + Start Hour Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1800 + Coefficient of the hour in the simulation the maintenance event started + false + + + 4026 + 655 + 1 + 6 + Start Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1839 + Coefficient on the number of maintenances started + true + + + 4027 + 656 + 1 + 1 + Hours Active Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1691 + Coefficient of number of hours the maintenance is active + true + + + 4028 + 656 + 1 + 2 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1692 + Coefficient of maintenance cost incurred + true + + + 4029 + 656 + 1 + 3 + Crew Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1693 + Coefficient of maintenance event crew usage + true + + + 4030 + 656 + 1 + 4 + Equipment Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1694 + Coefficient of maintenance event equipment usage + true + + + 4031 + 656 + 1 + 5 + Start Hour Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1800 + Coefficient of the hour in the simulation the maintenance event started + true + + + 4032 + 656 + 1 + 6 + Start Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1839 + Coefficient on the number of maintenances started + true + + + 4033 + 657 + 3 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Network is in service + 800000 + true + + + 4034 + 657 + 12 + 2 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4035 + 657 + 12 + 3 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4036 + 657 + 12 + 4 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4037 + 666 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 4038 + 666 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4039 + 666 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Node is in service + 800000 + true + + + 4040 + 666 + 3 + 4 + Flow Charge + 96 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1268 + Unit cost of flowing the Commodity through the Flow Node + true + + + 4041 + 666 + 3 + 5 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 4042 + 666 + 9 + 6 + Max Flow + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow through the Flow Node each interval + 5 + true + + + 4043 + 666 + 9 + 6 + Max Flow Hour + 94 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1584 + Maximum flow through the Flow Node each hour + 4 + true + + + 4044 + 666 + 9 + 6 + Max Flow Day + 94 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow through the Flow Node each day + 4 + true + + + 4045 + 666 + 9 + 6 + Max Flow Week + 94 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1586 + Maximum flow through the Flow Node each week + 4 + true + + + 4046 + 666 + 9 + 6 + Max Flow Month + 94 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1587 + Maximum flow through the Flow Node each month + 4 + true + + + 4047 + 666 + 9 + 6 + Max Flow Year + 94 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1588 + Maximum flow through the Flow Node each year + 4 + true + + + 4048 + 666 + 9 + 7 + Min Flow + 94 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 481 + Minimum flow through the Flow Node each interval + 5 + true + + + 4049 + 666 + 9 + 7 + Min Flow Hour + 94 + -1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 2355 + Minimum flow through the Flow Node each hour + 4 + true + + + 4050 + 666 + 9 + 7 + Min Flow Day + 94 + -1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum flow through the Flow Node each day + 4 + true + + + 4051 + 666 + 9 + 7 + Min Flow Week + 94 + -1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 2357 + Minimum flow through the Flow Node each week + 4 + true + + + 4052 + 666 + 9 + 7 + Min Flow Month + 94 + -1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 2358 + Minimum flow through the Flow Node each month + 4 + true + + + 4053 + 666 + 9 + 7 + Min Flow Year + 94 + -1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 2359 + Minimum flow through the Flow Node each year + 4 + true + + + 4054 + 666 + 8 + 8 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Flow Node + 8009 + true + + + 4055 + 666 + 8 + 9 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Flow Node + 88 + true + + + 4056 + 666 + 8 + 10 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 4057 + 666 + 8 + 11 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Flow Node project, for expansion planning. + 8 + true + + + 4058 + 666 + 8 + 12 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Flow Node + 8 + true + + + 4059 + 666 + 8 + 13 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 4060 + 666 + 8 + 14 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Flow Node (period over which fixed costs are recovered). + 8 + true + + + 4061 + 666 + 8 + 15 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 4062 + 666 + 8 + 16 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4063 + 666 + 8 + 17 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 4064 + 666 + 8 + 18 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4065 + 666 + 8 + 19 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4066 + 666 + 8 + 20 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4067 + 666 + 8 + 21 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4068 + 666 + 8 + 22 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4069 + 666 + 8 + 23 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4070 + 666 + 12 + 24 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4071 + 666 + 12 + 25 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4072 + 666 + 12 + 26 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4073 + 669 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Flow Node + true + + + 4074 + 671 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Node flow + true + + + 4075 + 671 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption at the Flow Node in the Constraint + true + + + 4076 + 671 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production at the Flow Node in the Constraint + true + + + 4077 + 671 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4078 + 671 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4079 + 671 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4080 + 671 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4081 + 672 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Node flow + true + + + 4082 + 672 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption at the Flow Node + true + + + 4083 + 672 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production at the Flow Node + true + + + 4084 + 672 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 4085 + 672 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 4086 + 672 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 4087 + 672 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 4088 + 673 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the flow path for the generation of outages + 101000000 + true + + + 4089 + 673 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 4090 + 673 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 4091 + 673 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4092 + 673 + 2 + 5 + Traversal Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 801 + Time taken for flows to traverse the Flow Path + true + + + 4093 + 673 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Path is in service + 800000 + true + + + 4094 + 673 + 3 + 7 + Flow Charge + 96 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1268 + Unit cost of flowing the Commodity over the Flow Path + 2000000000 + true + + + 4095 + 673 + 3 + 8 + Bundle Size + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2384 + Size of bundles flowed on the Flow Path + true + + + 4096 + 673 + 3 + 9 + Min Operating Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2295 + Minimum operating level when operating + true + + + 4097 + 673 + 3 + 10 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1209 + Proportion of flow received net of any losses + true + + + 4098 + 673 + 3 + 11 + Initial Flow + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1174 + Initial flow with optional delay time + true + + + 4099 + 673 + 3 + 12 + Initial Flow Delay + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2739 + Delay on the Initial Flow in this band + true + + + 4100 + 673 + 3 + 13 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 4101 + 673 + 9 + 14 + Max Flow + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow on the Flow Path in any interval + 5 + true + + + 4102 + 673 + 9 + 14 + Max Flow Hour + 94 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1584 + Maximum flow on the Flow Path in any hour + 4 + true + + + 4103 + 673 + 9 + 14 + Max Flow Day + 94 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow on the Flow Path in any day + 4 + true + + + 4104 + 673 + 9 + 14 + Max Flow Week + 94 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1586 + Maximum flow on the Flow Path in any week + 4 + true + + + 4105 + 673 + 9 + 14 + Max Flow Month + 94 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1587 + Maximum flow on the Flow Path in any month + 4 + true + + + 4106 + 673 + 9 + 14 + Max Flow Year + 94 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1588 + Maximum flow on the Flow Path in any year + 4 + true + + + 4107 + 673 + 9 + 15 + Min Flow + 94 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 481 + Minimum flow on the Flow Path in any interval + 5 + true + + + 4108 + 673 + 9 + 15 + Min Flow Hour + 94 + -1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 2355 + Minimum flow on the Flow Path in any hour + 4 + true + + + 4109 + 673 + 9 + 15 + Min Flow Day + 94 + -1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum flow on the Flow Path in any day + 4 + true + + + 4110 + 673 + 9 + 15 + Min Flow Week + 94 + -1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 2357 + Minimum flow on the Flow Path in any week + 4 + true + + + 4111 + 673 + 9 + 15 + Min Flow Month + 94 + -1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 2358 + Minimum flow on the Flow Path in any month + 4 + true + + + 4112 + 673 + 9 + 15 + Min Flow Year + 94 + -1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 2359 + Minimum flow on the Flow Path in any year + 4 + true + + + 4113 + 673 + 7 + 16 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 4114 + 673 + 7 + 17 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 4115 + 673 + 7 + 18 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 4116 + 673 + 7 + 19 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 4117 + 673 + 7 + 20 + Outage Max Rating + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Flow Path Max Flow during the outage + 1000000 + true + + + 4118 + 673 + 7 + 21 + Outage Min Rating + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Flow Path Min Flow during the outage + 1000000 + true + + + 4119 + 673 + 7 + 22 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 4120 + 673 + 7 + 23 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 4121 + 673 + 7 + 24 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 4122 + 673 + 7 + 25 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 4123 + 673 + 7 + 26 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 4124 + 673 + 8 + 27 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Flow Path + 8009 + true + + + 4125 + 673 + 8 + 28 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Flow Path + 88 + true + + + 4126 + 673 + 8 + 29 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 4127 + 673 + 8 + 30 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Flow Path project, for expansion planning. + 8 + true + + + 4128 + 673 + 8 + 31 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Flow Path + 8 + true + + + 4129 + 673 + 8 + 32 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 4130 + 673 + 8 + 33 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Flow Path (period over which fixed costs are recovered). + 8 + true + + + 4131 + 673 + 8 + 34 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 4132 + 673 + 8 + 35 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4133 + 673 + 8 + 36 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4134 + 673 + 8 + 37 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4135 + 673 + 8 + 38 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4136 + 673 + 8 + 39 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4137 + 673 + 8 + 40 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4138 + 673 + 8 + 41 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4139 + 673 + 8 + 42 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4140 + 673 + 12 + 43 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4141 + 673 + 12 + 44 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4142 + 673 + 12 + 45 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4143 + 678 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Flow Path + true + + + 4144 + 679 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Path flow + true + + + 4145 + 679 + 3 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Flow Path flow at the receiving node + true + + + 4146 + 679 + 3 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Flow Path flow at the sending node + true + + + 4147 + 679 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 4148 + 679 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 4149 + 679 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 4150 + 679 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 4151 + 680 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Path flow + true + + + 4152 + 680 + 3 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Flow Path flow at the receiving node + true + + + 4153 + 680 + 3 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Flow Path flow at the sending node + true + + + 4154 + 680 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 4155 + 680 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 4156 + 680 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 4157 + 680 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 4158 + 681 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of inventory balance + true + + + 4159 + 681 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 168 + Method used to value or constrain end-of-period inventory + 400000000 + true + + + 4160 + 681 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal inventory trajectory from one simulation phase to the next + 400000000 + true + + + 4161 + 681 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition inventory target penalty function 'a' term + 400000000 + true + + + 4162 + 681 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition inventory target penalty function 'b' term + 400000000 + true + + + 4163 + 681 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition inventory target penalty function 'c' term + 400000000 + true + + + 4164 + 681 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition inventory target penalty function 'x' term + 400000000 + true + + + 4165 + 681 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of inventory bounds when the decomposition implies possible violations + 400000000 + true + + + 4166 + 681 + 2 + 9 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 4167 + 681 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4168 + 681 + 2 + 11 + Build Cost Multiplier + 0 + 0 + In (0,2) + 0;"None";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 4169 + 681 + 3 + 12 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Flow Storage is modeled + 800001 + true + + + 4170 + 681 + 3 + 13 + Max Inventory + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 4171 + 681 + 3 + 14 + Min Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 4172 + 681 + 3 + 15 + Opening Inventory + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1591 + Initial amount of the Commodity in inventory + true + + + 4173 + 681 + 3 + 16 + Delivery + 86 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Amount of the Commodity added to inventory + true + + + 4174 + 681 + 3 + 17 + Injection Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2507 + Proportion of injected commodity reaching storage net of losses + true + + + 4175 + 681 + 3 + 18 + Withdrawal Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2508 + Proportion of commodity withdrawn from storage net of losses + true + + + 4176 + 681 + 3 + 19 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of deliveries of the Commodity to inventory + true + + + 4177 + 681 + 3 + 20 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost of keeping the Commodity in inventory + true + + + 4178 + 681 + 3 + 21 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity + true + + + 4179 + 681 + 3 + 22 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1252 + Cost of adding the Commodity to inventory + true + + + 4180 + 681 + 3 + 23 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Cost of taking the Commodity out of inventory + true + + + 4181 + 681 + 3 + 24 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 4182 + 681 + 9 + 25 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of the Commodity that can be taken from inventory in any interval + 400000000 + true + + + 4183 + 681 + 9 + 25 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of the Commodity that can be taken from inventory in a hour + 400000000 + true + + + 4184 + 681 + 9 + 25 + Max Withdrawal Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of the Commodity that can be taken from inventory in a day + 400000000 + true + + + 4185 + 681 + 9 + 25 + Max Withdrawal Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of the Commodity that can be taken from inventory in a week + 400000000 + true + + + 4186 + 681 + 9 + 25 + Max Withdrawal Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of the Commodity that can be taken from inventory in a month + 400000000 + true + + + 4187 + 681 + 9 + 25 + Max Withdrawal Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of the Commodity that can be taken from inventory in a year + 400000000 + true + + + 4188 + 681 + 9 + 26 + Max Injection + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of the Commodity that can be put into inventory in any interval + 400000000 + true + + + 4189 + 681 + 9 + 26 + Max Injection Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of the Commodity that can be put into inventory in any hour + 400000000 + true + + + 4190 + 681 + 9 + 26 + Max Injection Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of the Commodity that can be put into inventory in any day + 400000000 + true + + + 4191 + 681 + 9 + 26 + Max Injection Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of the Commodity that can be put into inventory in any week + 400000000 + true + + + 4192 + 681 + 9 + 26 + Max Injection Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of the Commodity that can be put into inventory in any month + 400000000 + true + + + 4193 + 681 + 9 + 26 + Max Injection Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of the Commodity that can be put into inventory in any year + 400000000 + true + + + 4194 + 681 + 9 + 27 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1258 + Amount of the Commodity that must be taken from inventory each interval + 400000000 + true + + + 4195 + 681 + 9 + 27 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of the Commodity that must be taken from inventory each hour + 400000000 + true + + + 4196 + 681 + 9 + 27 + Min Withdrawal Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of the Commodity that must be taken from inventory each day + 400000000 + true + + + 4197 + 681 + 9 + 27 + Min Withdrawal Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of the Commodity that must be taken from inventory each week + 400000000 + true + + + 4198 + 681 + 9 + 27 + Min Withdrawal Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of the Commodity that must be taken from inventory each month + 400000000 + true + + + 4199 + 681 + 9 + 27 + Min Withdrawal Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of the Commodity that must be taken from inventory each year + 400000000 + true + + + 4200 + 681 + 9 + 28 + Min Injection + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1263 + Amount of the Commodity that must be added to inventory in any interval + 400000000 + true + + + 4201 + 681 + 9 + 28 + Min Injection Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of the Commodity that must be added to inventory in any hour + 400000000 + true + + + 4202 + 681 + 9 + 28 + Min Injection Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of the Commodity that must be added to inventory in any day + 400000000 + true + + + 4203 + 681 + 9 + 28 + Min Injection Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of the Commodity that must be added to inventory in any week + 400000000 + true + + + 4204 + 681 + 9 + 28 + Min Injection Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of the Commodity that must be added to inventory in any month + 400000000 + true + + + 4205 + 681 + 9 + 28 + Min Injection Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of the Commodity that must be added to inventory in any year + 400000000 + true + + + 4206 + 681 + 9 + 29 + Max Inventory Change + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2333 + Maximum rate of change in inventory in any interval + 400000000 + true + + + 4207 + 681 + 9 + 29 + Max Inventory Change Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2334 + Maximum rate of change in inventory in any hour + 400000000 + true + + + 4208 + 681 + 9 + 29 + Max Inventory Change Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2335 + Maximum rate of change in inventory in any day + 400000000 + true + + + 4209 + 681 + 9 + 29 + Max Inventory Change Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2336 + Maximum rate of change in inventory in any week + 400000000 + true + + + 4210 + 681 + 9 + 29 + Max Inventory Change Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2337 + Maximum rate of change in inventory in any month + 400000000 + true + + + 4211 + 681 + 9 + 29 + Max Inventory Change Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2338 + Maximum rate of change in inventory in any year + 400000000 + true + + + 4212 + 681 + 9 + 30 + Max Inventory Change Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2339 + Penalty for violating the [Max Ramp] constraints + 400000000 + true + + + 4213 + 681 + 9 + 31 + Max Cycles + 62 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1832 + Number of cycles allowed each interval + 400000000 + true + + + 4214 + 681 + 9 + 31 + Max Cycles Hour + 62 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1833 + Number of cycles allowed each hour + 400000000 + true + + + 4215 + 681 + 9 + 31 + Max Cycles Day + 62 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1834 + Number of cycles allowed each day + 400000000 + true + + + 4216 + 681 + 9 + 31 + Max Cycles Week + 62 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1835 + Number of cycles allowed each week + 400000000 + true + + + 4217 + 681 + 9 + 31 + Max Cycles Month + 62 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1836 + Number of cycles allowed each month + 400000000 + true + + + 4218 + 681 + 9 + 31 + Max Cycles Year + 62 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1837 + Number of cycles allowed each year + 400000000 + true + + + 4219 + 681 + 9 + 32 + Target + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Target level of inventory at the end of the interval + 400000000 + true + + + 4220 + 681 + 9 + 32 + Target Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + Target level of inventory at the end of the hour + 400000000 + true + + + 4221 + 681 + 9 + 32 + Target Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + Target level of inventory at the end of the day + 400000000 + true + + + 4222 + 681 + 9 + 32 + Target Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + Target level of inventory at the end of the week + 400000000 + true + + + 4223 + 681 + 9 + 32 + Target Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + Target level of inventory at the end of the month + 400000000 + true + + + 4224 + 681 + 9 + 32 + Target Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + Target level of inventory at the end of the year + 400000000 + true + + + 4225 + 681 + 9 + 33 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target inventory + 400000000 + true + + + 4226 + 681 + 8 + 34 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 4227 + 681 + 8 + 35 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 4228 + 681 + 8 + 36 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 4229 + 681 + 8 + 37 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 4230 + 681 + 8 + 38 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 4231 + 681 + 8 + 39 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 4232 + 681 + 8 + 40 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 4233 + 681 + 8 + 41 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4234 + 681 + 8 + 42 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4235 + 681 + 8 + 43 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4236 + 681 + 8 + 44 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4237 + 681 + 8 + 45 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4238 + 681 + 8 + 46 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4239 + 681 + 8 + 47 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4240 + 681 + 8 + 48 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4241 + 681 + 11 + 49 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 4242 + 681 + 11 + 50 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 4243 + 681 + 12 + 51 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4244 + 681 + 12 + 52 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4245 + 681 + 12 + 53 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4246 + 685 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Flow Storage + true + + + 4247 + 686 + 3 + 1 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 4248 + 686 + 3 + 2 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 4249 + 686 + 3 + 3 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 4250 + 686 + 3 + 4 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 4251 + 686 + 3 + 5 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 4252 + 686 + 6 + 6 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 4253 + 686 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4254 + 686 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4255 + 686 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4256 + 686 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4257 + 686 + 8 + 11 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4258 + 686 + 8 + 12 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4259 + 686 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4260 + 686 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4261 + 686 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4262 + 687 + 3 + 1 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 4263 + 687 + 3 + 2 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 4264 + 687 + 3 + 3 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 4265 + 687 + 3 + 4 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 4266 + 687 + 3 + 5 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 4267 + 687 + 6 + 6 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 4268 + 687 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4269 + 687 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4270 + 687 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4271 + 687 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4272 + 687 + 8 + 11 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4273 + 687 + 8 + 12 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4274 + 687 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4275 + 687 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4276 + 687 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4277 + 688 + 5 + 1 + Strategic + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 766 + Percentage of entity production that acts strategically + 40 + true + + + 4278 + 688 + 5 + 2 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound entity net profit risk + 4000000000 + true + + + 4279 + 688 + 5 + 3 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 4280 + 688 + 5 + 4 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 4281 + 688 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4282 + 688 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4283 + 688 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4284 + 692 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of consumption from facilities associated with the entity + true + + + 4285 + 692 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of production from facilities associated with the entity + true + + + 4286 + 692 + 5 + 3 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4287 + 692 + 5 + 4 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4288 + 692 + 5 + 5 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4289 + 693 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of consumption from facilities associated with the entity + true + + + 4290 + 693 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of production from facilities associated with the entity + true + + + 4291 + 693 + 5 + 3 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4292 + 693 + 5 + 4 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4293 + 693 + 5 + 5 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4294 + 694 + 2 + 1 + Is Forward + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 337 + Flag if the market is a 'forward' market versus a 'real-time' market. + 4000000 + true + + + 4295 + 694 + 2 + 2 + Is Marginal + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 338 + Flag if the market sets price on a marginal price basis; rather than block-by-block settlement. + 4000000 + true + + + 4296 + 694 + 2 + 3 + Demand Curve + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 136 + Flag if the input multi-band Price/Quantity pairs are points on a demand curve; or incremental demand blocks. + 100 + true + + + 4297 + 694 + 2 + 4 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Market can set price + 4000000 + true + + + 4298 + 694 + 2 + 5 + Supply Settlement Model + 0 + 1 + In (0,1,2) + 0;"Natural";1;"Buy";2;"Sell" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1622 + Model used to determine price paid to suppliers + 4000000 + true + + + 4299 + 694 + 2 + 6 + Demand Settlement Model + 0 + 2 + In (0,1,2) + 0;"Natural";1;"Buy";2;"Sell" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1623 + Model used to determine price paid by purchasers. + 4000000 + true + + + 4300 + 694 + 3 + 7 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Market is in service + 800000 + true + + + 4301 + 694 + 3 + 8 + Demand + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 133 + Fixed demand (exact amount of sales to the Market) + true + + + 4302 + 694 + 3 + 9 + Shortage Price + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1270 + Penalty price for supply shortage + true + + + 4303 + 694 + 3 + 10 + Supply + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2324 + Fixed supply (exact amount of supply from the Market) + true + + + 4304 + 694 + 3 + 11 + Surplus Price + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2325 + Penalty price for excess supply + true + + + 4305 + 694 + 3 + 12 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 612 + Price point on market demand function + 400001 + true + + + 4306 + 694 + 3 + 13 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 904 + Scalar on market price + 4000000 + true + + + 4307 + 694 + 3 + 14 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 905 + Increment to market price + 4000000 + true + + + 4308 + 694 + 3 + 15 + Price Cap + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on Market Price when using fixed Demand/Supply + 4000000 + true + + + 4309 + 694 + 3 + 16 + Price Floor + 88 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on Market Price when using fixed Demand/Supply + 4000000 + true + + + 4310 + 694 + 3 + 17 + Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 650 + Quantity point in market demand function + 400000 + true + + + 4311 + 694 + 3 + 18 + Base Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 28 + Expected clearing point on market demand function + 400000 + true + + + 4312 + 694 + 3 + 19 + Sell Unit + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 734 + Size of block for sales (time independent) + 400000 + true + + + 4313 + 694 + 3 + 20 + Sell Block + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 729 + Size of block for sales + 400000 + true + + + 4314 + 694 + 3 + 20 + Sell Block Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1569 + Size of block for sales across each hour + 400000 + true + + + 4315 + 694 + 3 + 20 + Sell Block Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 730 + Size of block for sales across each day + 400000 + true + + + 4316 + 694 + 3 + 20 + Sell Block Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 732 + Size of block for sales across each week + 400000 + true + + + 4317 + 694 + 3 + 20 + Sell Block Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 731 + Size of block for sales across each month + 400000 + true + + + 4318 + 694 + 3 + 20 + Sell Block Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 733 + Size of block for sales across each year + 400000 + true + + + 4319 + 694 + 3 + 21 + Sell Block Fixed Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1444 + Fixed cost of block sales + 8000 + true + + + 4320 + 694 + 3 + 22 + Buy Unit + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 50 + Size of block for purchases (time independent) + 400000 + true + + + 4321 + 694 + 3 + 23 + Buy Block + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 45 + Size of block for purchases + 400000 + true + + + 4322 + 694 + 3 + 23 + Buy Block Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1570 + Size of block for purchases across each hour + 400000 + true + + + 4323 + 694 + 3 + 23 + Buy Block Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 46 + Size of block for purchases across each day + 400000 + true + + + 4324 + 694 + 3 + 23 + Buy Block Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 48 + Size of block for purchases across each week + 400000 + true + + + 4325 + 694 + 3 + 23 + Buy Block Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 47 + Size of block for purchases across each month + 400000 + true + + + 4326 + 694 + 3 + 23 + Buy Block Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 49 + Size of block for purchases across each year + 400000 + true + + + 4327 + 694 + 3 + 24 + Buy Block Fixed Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1443 + Fixed cost of block purchases + 8000 + true + + + 4328 + 694 + 3 + 25 + Bid-Ask Spread + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 36 + Market bid-ask spread + 400000 + true + + + 4329 + 694 + 3 + 26 + Bid Spread + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 35 + Spread on sales to the market + 400000 + true + + + 4330 + 694 + 3 + 27 + Ask Spread + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 16 + Spread on purchases from the market + 400000 + true + + + 4331 + 694 + 9 + 28 + Max Sales + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 455 + Maximum sales to the market + 80 + true + + + 4332 + 694 + 9 + 28 + Max Sales Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2476 + Maximum sales to the market each hour + 80 + true + + + 4333 + 694 + 9 + 28 + Max Sales Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2477 + Maximum sales to the market each day + 80 + true + + + 4334 + 694 + 9 + 28 + Max Sales Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2478 + Maximum sales to the market each week + 80 + true + + + 4335 + 694 + 9 + 28 + Max Sales Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2479 + Maximum sales to the market each month + 80 + true + + + 4336 + 694 + 9 + 28 + Max Sales Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2480 + Maximum sales to the market each year + 80 + true + + + 4337 + 694 + 9 + 29 + Max Purchases + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 445 + Maximum purchase from the market + 80 + true + + + 4338 + 694 + 9 + 29 + Max Purchases Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2481 + Maximum purchase from the market each hour + 80 + true + + + 4339 + 694 + 9 + 29 + Max Purchases Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2482 + Maximum purchase from the market each day + 80 + true + + + 4340 + 694 + 9 + 29 + Max Purchases Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2483 + Maximum purchase from the market each week + 80 + true + + + 4341 + 694 + 9 + 29 + Max Purchases Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2484 + Maximum purchase from the market each month + 80 + true + + + 4342 + 694 + 9 + 29 + Max Purchases Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2485 + Maximum purchase from the market each year + 80 + true + + + 4343 + 694 + 9 + 30 + Min Sales + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 500 + Minimum sales to the market + 80 + true + + + 4344 + 694 + 9 + 30 + Min Sales Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2486 + Minimum sales to the market each hour + 80 + true + + + 4345 + 694 + 9 + 30 + Min Sales Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2487 + Minimum sales to the market each day + 80 + true + + + 4346 + 694 + 9 + 30 + Min Sales Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2488 + Minimum sales to the market each week + 80 + true + + + 4347 + 694 + 9 + 30 + Min Sales Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2489 + Minimum sales to the market each month + 80 + true + + + 4348 + 694 + 9 + 30 + Min Sales Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2490 + Minimum sales to the market each year + 80 + true + + + 4349 + 694 + 9 + 31 + Min Purchases + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 491 + Minimum purchase from the market + 80 + true + + + 4350 + 694 + 9 + 31 + Min Purchases Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2491 + Minimum purchase from the market each hour + 80 + true + + + 4351 + 694 + 9 + 31 + Min Purchases Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2492 + Minimum purchase from the market each day + 80 + true + + + 4352 + 694 + 9 + 31 + Min Purchases Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2493 + Minimum purchase from the market each week + 80 + true + + + 4353 + 694 + 9 + 31 + Min Purchases Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2494 + Minimum purchase from the market each month + 80 + true + + + 4354 + 694 + 9 + 31 + Min Purchases Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2495 + Minimum purchase from the market each year + 80 + true + + + 4355 + 694 + 6 + 32 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the market purchases to generation capacity for capacity reserves. + C + true + + + 4356 + 694 + 6 + 33 + Load Obligation + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Contribution of the market sales to the load obligation for capacity reserves. + C + true + + + 4357 + 694 + 12 + 34 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4358 + 694 + 12 + 35 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4359 + 694 + 12 + 36 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4360 + 697 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Entities share of the market trades + 40 + true + + + 4361 + 698 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Coefficient of market sales + true + + + 4362 + 698 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Coefficient of market purchases + true + + + 4363 + 698 + 1 + 3 + Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1733 + Coefficient of market sales revenues + true + + + 4364 + 698 + 1 + 4 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1692 + Coefficient of market purchase costs + true + + + 4365 + 699 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Coefficient of market sales + true + + + 4366 + 699 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Coefficient of market purchases + true + + + 4367 + 699 + 1 + 3 + Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1733 + Coefficient of market sales revenues + true + + + 4368 + 699 + 1 + 4 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1692 + Coefficient of market purchase costs + true + + + 4369 + 700 + 2 + 1 + Sense + 0 + 0 + In (-1,0,1) + -1;"<=";0;"=";1;">=" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Constraint sense (less than or equal to, equal to, greater than or equal to) + 80 + true + + + 4370 + 700 + 2 + 2 + LHS Type + 0 + 0 + In (0,1,2) + 0;"SUM";1;"MAXSUM";2;"MAX" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1455 + Action applied over left-hand side coefficients + 80 + true + + + 4371 + 700 + 2 + 3 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 4372 + 700 + 2 + 4 + Condition Logic + 0 + 0 + In (0,1) + 0;"And";1;"Or" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 89 + Logic used in combining conditions associated with the constraint + 800080 + true + + + 4373 + 700 + 2 + 5 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the constraint is modelled in the LT Plan phase. + 800080 + true + + + 4374 + 700 + 2 + 6 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the constraint is modelled in the PASA phase. + 800080 + true + + + 4375 + 700 + 2 + 7 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the constraint is modelled in the MT Schedule phase. + 800080 + true + + + 4376 + 700 + 2 + 8 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the constraint is modelled in the ST Schedule phase. + 800080 + true + + + 4377 + 700 + 2 + 9 + Include in Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 306 + If the constraint is enforced in the unconstrained phase of uniform pricing. + 800080 + true + + + 4378 + 700 + 2 + 10 + Unit Commitment Mode + 0 + 0 + In (0,1,2) + 0;"Enforced";1;"Relax Before";2;"Relax After" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2656 + Controls how the constraint is handled during unit commitment + 1000000000 + true + + + 4379 + 700 + 2 + 11 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Constraint penalty function can set price + 4000000 + true + + + 4380 + 700 + 2 + 12 + Decomposition Method + 0 + 0 + In (0,1) + 0;"Quantity";1;"Price" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to decompose constraints between LT Plan/MT Schedule and MT Schedule/ST Schedule + 200 + true + + + 4381 + 700 + 2 + 13 + Feasibility Repair Weight + 0 + 0.01 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1117 + Weight applied to relaxing the constraint in feasibility repair. Lower values mean less penalty to relax the constraint. -1 means the constraint cannot be relaxed. + 80 + true + + + 4382 + 700 + 2 + 14 + Wildcard Mode + 0 + 1 + In (0,1,2) + 0;"Do Not Copy";1;"Auto";2;"Always Copy" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1684 + Controls whether or not the Constraint is copied when it is associated with a wildcard membership. + 80 + true + + + 4383 + 700 + 2 + 15 + Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2654 + Scale the constraint by dividing left and right hand sides by this factor + 80 + true + + + 4384 + 700 + 1 + 16 + RHS + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 700 + Constraint RHS constant + 80 + true + + + 4385 + 700 + 1 + 16 + RHS Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1578 + Right hand side each hour + 80 + true + + + 4386 + 700 + 1 + 16 + RHS Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 702 + Right hand side each day (000) + 80 + true + + + 4387 + 700 + 1 + 16 + RHS Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 704 + Right hand side each week (000) + 80 + true + + + 4388 + 700 + 1 + 16 + RHS Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 703 + Right hand side each month (000) + 80 + true + + + 4389 + 700 + 1 + 16 + RHS Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 705 + Right hand side each year (000) + 80 + true + + + 4390 + 700 + 1 + 16 + RHS Custom + 0 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 1077 + Right hand side value over any custom period (000) + 80 + true + + + 4391 + 700 + 1 + 17 + RHS Constant + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2316 + Right hand side RPN constant + 80 + true + + + 4392 + 700 + 1 + 18 + Penalty Quantity + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 605 + Penalty quantity + 80 + true + + + 4393 + 700 + 1 + 19 + Penalty Price + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 604 + Price for violating the constraint where the special value of -1 indicates that no violation is allowed. + 80 + true + + + 4394 + 700 + 1 + 20 + Min RHS + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 499 + Minimum allowed value when RHS is calculated dynamically + 80 + true + + + 4395 + 700 + 1 + 21 + Max RHS + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 454 + Maximum allowed value when RHS is calculated dynamically + 80 + true + + + 4396 + 700 + 12 + 22 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4397 + 700 + 12 + 23 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4398 + 700 + 12 + 24 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4399 + 703 + 1 + 1 + RHS Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 701 + RHS coefficient added when the condition is active + true + + + 4400 + 703 + 1 + 2 + Price Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1380 + Coefficient of price in condition + true + + + 4401 + 704 + 2 + 1 + Sense + 0 + 1 + In (1,2) + 1;"Minimize";2;"Maximize" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Objective sense (Minimize,Maximize) + true + + + 4402 + 704 + 2 + 2 + Priority + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2096 + Priority of the objective when doing hierarchical multi-objective optimization + true + + + 4403 + 704 + 2 + 3 + Weight + 0 + 1 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2097 + Weight of the objective when doing blended multi-objective optimization + true + + + 4404 + 704 + 2 + 4 + Relative Tolerance + 0 + 0 + Between 0 And 1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2098 + Allowable relative degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 4405 + 704 + 2 + 5 + Absolute Tolerance + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2099 + Allowable degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 4406 + 704 + 2 + 6 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the objective is modeled in the LT Plan phase. + true + + + 4407 + 704 + 2 + 7 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the objective is modeled in the PASA phase. + true + + + 4408 + 704 + 2 + 8 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the objective is modeled in the MT Schedule phase. + true + + + 4409 + 704 + 2 + 9 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the objective is modeled in the ST Schedule phase. + true + + + 4410 + 704 + 2 + 10 + Include in Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 306 + If the objective is modeled in the unconstrained phase of uniform pricing. + true + + + 4411 + 704 + 1 + 11 + Constant + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2089 + Is the constant term in objective a'x +b + true + + + 4412 + 704 + 1 + 11 + Constant Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2090 + Objective constant each hour + true + + + 4413 + 704 + 1 + 11 + Constant Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2091 + Objective constant each day (000's) + true + + + 4414 + 704 + 1 + 11 + Constant Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2092 + Objective constant each week (000's) + true + + + 4415 + 704 + 1 + 11 + Constant Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2093 + Objective constant each month (000's) + true + + + 4416 + 704 + 1 + 11 + Constant Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2094 + Objective constant each year (000's) + true + + + 4417 + 704 + 1 + 11 + Constant Custom + 0 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2095 + Objective constant value over any custom period (000's) + true + + + 4418 + 704 + 12 + 12 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4419 + 704 + 12 + 13 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4420 + 704 + 12 + 14 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4421 + 707 + 2 + 1 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the generic decision variable is modelled in the LT Plan phase. + 800000 + true + + + 4422 + 707 + 2 + 2 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the generic decision variable is modelled in the PASA phase. + 800000 + true + + + 4423 + 707 + 2 + 3 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the generic decision variable is modelled in the MT Schedule phase. + 800000 + true + + + 4424 + 707 + 2 + 4 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the generic decision variable is modelled in the ST Schedule phase. + 800000 + true + + + 4425 + 707 + 1 + 5 + Objective Function Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 1351 + Objective function value of the generic decision variable + 2000000000 + true + + + 4426 + 707 + 1 + 5 + Objective Function Coefficient Hour + 0 + 0 + 1 + 0 + 0 + 6 + true + false + true + false + 1 + 1726 + Objective function value of the generic decision variable in each hour + 2000000000 + true + + + 4427 + 707 + 1 + 5 + Objective Function Coefficient Day + 0 + 0 + 1 + 0 + 0 + 1 + true + false + true + false + 1 + 1727 + Objective function value of the generic decision variable in each day + 2000000000 + true + + + 4428 + 707 + 1 + 5 + Objective Function Coefficient Week + 0 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 1728 + Objective function value of the generic decision variable in each week + 2000000000 + true + + + 4429 + 707 + 1 + 5 + Objective Function Coefficient Month + 0 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 1729 + Objective function value of the generic decision variable in each month + 2000000000 + true + + + 4430 + 707 + 1 + 5 + Objective Function Coefficient Year + 0 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 1730 + Objective function value of the generic decision variable in each year + 2000000000 + true + + + 4431 + 707 + 1 + 6 + Lower Bound + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1494 + Lower bound of the generic decision variable + 80 + true + + + 4432 + 707 + 1 + 7 + Upper Bound + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1495 + Upper bound of the generic decision variable + 80 + true + + + 4433 + 707 + 11 + 8 + Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 4434 + 707 + 11 + 9 + Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1858 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 4435 + 707 + 12 + 10 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4436 + 707 + 12 + 11 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4437 + 707 + 12 + 12 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4438 + 710 + 1 + 1 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value + true + + + 4439 + 710 + 1 + 2 + Value Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1619 + Coefficient of Decision Variable value squared + true + + + 4440 + 711 + 1 + 1 + Value Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value in definition Constraint + true + + + 4441 + 712 + 1 + 1 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value + true + + + 4442 + 712 + 1 + 2 + Value Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1619 + Coefficient of Decision Variable value squared + true + + + 4443 + 713 + 1 + 1 + Sense + 0 + 0 + In (-1,0,1) + -1;"<=";0;"=";1;">=" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Constraint sense (≤,=,≥) + 80 + true + + + 4444 + 713 + 1 + 2 + Max Tranches + 0 + 10 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2162 + Number of tranches to be used for piece-wise linear approximation + true + + + 4445 + 713 + 1 + 3 + Polynomial Coefficients + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2163 + Coefficients defining the polynomial + true + + + 4446 + 713 + 1 + 4 + Constant Term + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2164 + Constant Term + true + + + 4447 + 713 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4448 + 713 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4449 + 713 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4450 + 718 + 1 + 1 + Filename + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 193 + Data file used in the simulation + true + + + 4451 + 718 + 1 + 2 + Base Profile + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 27 + Base profile for use in creating new profiles + true + + + 4452 + 718 + 1 + 3 + Energy + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 173 + Energy of the created profile + true + + + 4453 + 718 + 1 + 4 + Maximum + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 467 + Maximum value of the created profile + true + + + 4454 + 718 + 1 + 5 + Minimum + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1874 + Minimum value of the created profile + true + + + 4455 + 718 + 1 + 6 + Holiday + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 270 + Flag for holiday period that must be preserved + true + + + 4456 + 718 + 1 + 7 + Min Value + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 508 + Minimum value allowed after application of the growing algorithm. + true + + + 4457 + 718 + 1 + 8 + Max Value + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 464 + Maximum value allowed after application of the growing algorithm. + true + + + 4458 + 720 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the variable + 100000000 + true + + + 4459 + 720 + 2 + 2 + Sampling Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Auto";2;"User" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 720 + Sampling method applied to the variable + 100000000 + true + + + 4460 + 720 + 2 + 3 + Sampling Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1127 + Frequency of temporal sampling of period type [Sampling Period Type] where zero means no sampling. + 100000000 + true + + + 4461 + 720 + 2 + 4 + Sampling Period Type + 0 + 0 + In (0,1,2,3,4,6) + 0;"interval";6;"hour";1;"day";2;"week";3;"month";4;"year" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1616 + Period type of temporal sampling where number of periods between samples is [Sampling Frequency]. + 100000000 + true + + + 4462 + 720 + 2 + 5 + Distribution Type + 0 + 0 + In (0,1) + 0;"Normal";1;"Lognormal" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 152 + Distribution type for error terms + 100000000 + true + + + 4463 + 720 + 2 + 6 + Condition + 0 + 4 + In (-2,-1,0,1,2,4) + 4;"None";-2;"<";-1;"<=";0;"=";1;">=";2;">" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1378 + Conditional value type + 800000 + true + + + 4464 + 720 + 2 + 7 + Condition Logic + 0 + 0 + In (0,1) + 0;"And";1;"Or" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 89 + Logic used in combining conditional variables + 800000 + true + + + 4465 + 720 + 2 + 8 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the condition is allowed to be active in the LT Plan phase. + 800000 + true + + + 4466 + 720 + 2 + 9 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the condition is allowed to be active in the PASA phase. + 800000 + true + + + 4467 + 720 + 2 + 10 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the condition is allowed to be active in the MT Schedule phase. + 800000 + true + + + 4468 + 720 + 2 + 11 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the condition is allowed to be active in the ST Schedule phase. + 800000 + true + + + 4469 + 720 + 2 + 12 + Formulate Value + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2318 + Flag if the Value is formulated as a decision variable + 800000 + true + + + 4470 + 720 + 1 + 13 + Profile + 0 + 0 + 1 + 0 + 1 + 0 + false + true + true + true + 1 + 628 + Sample profile of variable values + 100000000 + true + + + 4471 + 720 + 1 + 13 + Profile Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + true + 1 + 1580 + Sample profile of variable values + 100000000 + true + + + 4472 + 720 + 1 + 13 + Profile Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + true + 1 + 629 + Sample profile of variable values + 100000000 + true + + + 4473 + 720 + 1 + 13 + Profile Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + true + 1 + 631 + Sample profile of variable values + 100000000 + true + + + 4474 + 720 + 1 + 13 + Profile Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + true + 1 + 630 + Sample profile of variable values + 100000000 + true + + + 4475 + 720 + 1 + 13 + Profile Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + true + 1 + 632 + Sample profile of variable values + 100000000 + true + + + 4476 + 720 + 1 + 14 + Min Value + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 508 + Minimum allowed sample value + 100000000 + true + + + 4477 + 720 + 1 + 15 + Max Value + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 464 + Maximum allowed sample value + 100000000 + true + + + 4478 + 720 + 1 + 16 + Probability + 12 + 50 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 623 + Probability of exceedance (POE) + 100000000 + true + + + 4479 + 720 + 1 + 17 + Error Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 183 + Percentage standard deviation of errors + 100000000 + true + + + 4480 + 720 + 1 + 18 + Abs Error Std Dev + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 926 + Absolute value of standard deviation of errors + 100000000 + true + + + 4481 + 720 + 1 + 19 + Min Value Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 509 + Percentage standard deviation of minimum value + 100000000 + true + + + 4482 + 720 + 1 + 20 + Max Value Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 465 + Percentage standard deviation of maximum value + 100000000 + true + + + 4483 + 720 + 1 + 21 + Auto Correlation + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 18 + Correlation of error between time intervals + 100000000 + true + + + 4484 + 720 + 1 + 22 + Mean Reversion + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 469 + Mean reversion parameter in differential equation + 100000000 + true + + + 4485 + 720 + 1 + 23 + ARIMA alpha + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 984 + ARIMA autoregressive parameter + 100000000 + true + + + 4486 + 720 + 1 + 24 + ARIMA beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 985 + ARIMA moving-average parameter + 100000000 + true + + + 4487 + 720 + 1 + 25 + ARIMA d + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1008 + ARIMA differencing parameter + 100000000 + true + + + 4488 + 720 + 1 + 26 + Jump Frequency + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1764 + Jump frequency in jump-diffusion model + 100000000 + true + + + 4489 + 720 + 1 + 27 + Jump Magnitude + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1765 + Jump magnitude in jump-diffusion model + 100000000 + true + + + 4490 + 720 + 1 + 28 + Jump Error Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1766 + Percentage standard deviation of jump magnitude errors + 100000000 + true + + + 4491 + 720 + 1 + 29 + GARCH alpha + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1767 + Weight on the square of the return in GARCH(1,1) + 100000000 + true + + + 4492 + 720 + 1 + 30 + GARCH beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1768 + Weight on the variance in GARCH(1,1) + 100000000 + true + + + 4493 + 720 + 1 + 31 + GARCH omega + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1769 + Long-run weighted variance in GARCH(1,1) + 100000000 + true + + + 4494 + 720 + 1 + 32 + Lookup x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1005 + Lookup table for x-axis value + 100 + true + + + 4495 + 720 + 1 + 33 + Lookup y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1006 + Lookup table for y-axis value + 100 + true + + + 4496 + 720 + 1 + 34 + Lookup Unit + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1010 + Unit of the y values in the lookup table + 100 + true + + + 4497 + 720 + 1 + 35 + Sampling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1477 + Flag if random sampling should occur in the period + 100000000 + true + + + 4498 + 720 + 1 + 36 + Step Hour Active From + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1613 + First hour of each step the Condition is allowed to be active + 800000 + true + + + 4499 + 720 + 1 + 37 + Step Hours Active + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1614 + Number of hours the Condition is allowed to be active from the first active hour in the step + 800000 + true + + + 4500 + 720 + 1 + 38 + Compound Index + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 914 + Rate of escalation + true + + + 4501 + 720 + 1 + 38 + Compound Index Hour + 12 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1579 + Rate of escalation per hour + true + + + 4502 + 720 + 1 + 38 + Compound Index Day + 12 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1083 + Rate of escalation per day + true + + + 4503 + 720 + 1 + 38 + Compound Index Week + 12 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1084 + Rate of escalation per week + true + + + 4504 + 720 + 1 + 38 + Compound Index Month + 12 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1085 + Rate of escalation per month + true + + + 4505 + 720 + 1 + 38 + Compound Index Year + 12 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1086 + Rate of escalation per year + true + + + 4506 + 722 + 1 + 1 + Expected Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1499 + Coefficient of the variable expected value in the constraint + true + + + 4507 + 722 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the variable value in the constraint + true + + + 4508 + 722 + 1 + 3 + Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1500 + Coefficient of the variable sample error + true + + + 4509 + 722 + 1 + 4 + Positive Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1501 + Coefficient of the positive sample error + true + + + 4510 + 722 + 1 + 5 + Negative Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1502 + Coefficient of the negative sample error + true + + + 4511 + 723 + 1 + 1 + Expected Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1499 + Coefficient of the variable expected value + true + + + 4512 + 723 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the variable sample value + true + + + 4513 + 723 + 1 + 3 + Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1500 + Coefficient of the variable sample error + true + + + 4514 + 723 + 1 + 4 + Positive Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1501 + Coefficient of the positive sample error + true + + + 4515 + 723 + 1 + 5 + Negative Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1502 + Coefficient of the negative sample error + true + + + 4516 + 724 + 1 + 1 + Correlation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 116 + Cross correlation + 100000000 + true + + + 4517 + 724 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the Variable Value in the definition of this Variable + true + + + 4518 + 725 + 1 + 1 + Activity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2818 + Coefficient of the left-hand-side of the Variable Condition expression + true + + + 4519 + 726 + 1 + 1 + Include + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + true + false + 1 + 296 + If the timeslice includes the period + 800000 + true + + + 4520 + 728 + 2 + 1 + Full Branches Sample Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2797 + Flag if the Full Branches historical year start are automatically selected by sample reduction. + 800000 + true + + + 4521 + 728 + 2 + 2 + Hanging Branches Sample Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1996 + Flag if the Hanging Branches historical year start are automatically selected by sample reduction. + 800000 + true + + + 4522 + 728 + 1 + 3 + FCF Constant + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1485 + Future Cost Function: objective function constant term + true + + + 4523 + 728 + 1 + 4 + FCF Sample Map + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2798 + Future Cost Function: historical sample to full branch sample map + true + + + 4524 + 728 + 1 + 5 + Sample Weight + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1497 + Sampling: Weight applied to samples + 100000000 + true + + + 4525 + 728 + 1 + 6 + Tree Period Type + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"interval";6;"hour";1;"day";2;"week";3;"month";4;"year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1605 + Scenario Tree: Period type for stage positions + 100000000 + true + + + 4526 + 728 + 1 + 7 + Tree Position Exp Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1489 + Scenario Tree: Controls the end positions of each stage + 100000000 + true + + + 4527 + 728 + 1 + 8 + Tree Leaves Exp Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1490 + Scenario Tree: Controls the number of samples in each stage + 100000000 + true + + + 4528 + 728 + 1 + 9 + Tree Stages Position Incr + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2570 + Scenario Tree: Increment to the position of each stage + 100000000 + true + + + 4529 + 728 + 1 + 10 + Tree Stages Position + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1491 + Scenario Tree: Position of each stage + 100000000 + true + + + 4530 + 728 + 1 + 11 + Tree Stages Leaves + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1492 + Scenario Tree: Number of leaves in each stage + 100000000 + true + + + 4531 + 728 + 1 + 12 + Tree Stages Hanging Branches + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1672 + Scenario Tree: Number of hanging branches in each stage + 100000000 + true + + + 4532 + 728 + 1 + 13 + Deterministic Stages + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1826 + Scenario Tree: Number of deterministic stages + 100000000 + true + + + 4533 + 728 + 1 + 14 + Full Branches Historical Year Start + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2500 + Scenario Tree: First year of historical data for full branches + 100000000 + true + + + 4534 + 728 + 1 + 15 + Hanging Branches Historical Year Start + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1911 + Scenario Tree: First year of historical data for hanging branches + 100000000 + true + + + 4535 + 728 + 1 + 16 + Hanging Branches Weight + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1946 + Scenario Tree: Weights for the hanging branches + 100000000 + true + + + 4536 + 728 + 1 + 17 + Hanging Branches Block Count + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1912 + Number of blocks (time periods) modelled after the hanging branch begins. + 100000000 + true + + + 4537 + 728 + 1 + 18 + Slicing Block + 0 + 0 + In (0,-1) + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 1487 + Defines blocks of time that should be kept together when performing time slicing e.g. for load duration curves + true + + + 4538 + 728 + 1 + 19 + Sampled Period + 0 + 0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2707 + Selects periods for Sampled Chronology in MT Schedule + true + + + 4539 + 728 + 1 + 20 + Sampled Year + 0 + 0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 2228 + Year selection for LT Plan. Sampling will occur only for selected years. + true + + + 4540 + 728 + 1 + 21 + Sampling File + 0 + 0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 2875 + Input file for Sampled Chronology in LT plan and/or MT Schedule + true + + + 4541 + 728 + 1 + 22 + PTDF File + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2800 + Input file for PTDF values + true + + + 4542 + 732 + 3 + 1 + Temperature + 77 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2009 + Temperature value in each level + true + + + 4543 + 732 + 3 + 2 + Heating Degree Days + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2007 + Value for heating degree days + true + + + 4544 + 732 + 3 + 3 + Wind Speed + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2011 + Wind speed value + true + + + 4545 + 732 + 12 + 4 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4546 + 732 + 12 + 5 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4547 + 732 + 12 + 6 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4548 + 738 + 1 + 1 + Read Order + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 907 + Order in which to read scenario data (last read scenario has highest priority) + true + + + 1 + - + 1 + + + 2 + Settings + 5 + + + 3 + Production + 2 + + + 4 + Offers and Bids + 10 + + + 5 + Risk + 7 + + + 6 + Capacity + 3 + + + 7 + Reliability + 12 + + + 8 + Expansion + 4 + + + 9 + Constraints + 9 + + + 10 + Storage + 11 + + + 11 + Stochastic + 8 + + + 12 + Pass-through + 6 + + + 0 + - + - + 0 + + + 1 + MW + MW + MW + MW + MW + MW + MW + unit of load + 26 + + + 2 + GWh + GWh + GWh + GWh + GWh + GWh + GWh + 1000 units of electric energy + 24 + + + 3 + MWh + MWh + MWh + MWh + MWh + MWh + MWh + unit of electric energy + 59 + + + 4 + kV + kV + 37 + + + 5 + s + s + 42 + + + 6 + h + h + 25 + + + 7 + day + day + 58 + + + 8 + yr + yr + 55 + + + 9 + MW/min + MW/min + 27 + + + 10 + pu + pu + 28 + + + 11 + ° + ° + 30 + + + 12 + % + % + 32 + + + 13 + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + logic switches + 46 + + + 14 + $ + $ + $ + $ + $ + $ + $ + unit of currency + 1 + + + 15 + MMBTu + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of energy + 2 + + + 16 + BBTu + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 energy units + 3 + + + 17 + MMBTU + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of fuel + 4 + + + 18 + TJ + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 units of fuel + 5 + + + 19 + kg + kg + lb + kg + lb + kg + lb + unit of emission + 6 + + + 20 + tonne + tonne + ton + tonne + ton + tonne + ton + 1000 units of emission + 7 + + + 21 + MMBTu + GJ + Btu + GJ + Btu + GJ + Btu + unit of heat rate numerator + 45 + + + 22 + MWh + MWh + kWh + MWh + kWh + MWh + kWh + unit of heat rate denominator + 44 + + + 23 + m + m + ft + m + ft + m + ft + unit of distance + 34 + + + 24 + GWh + GWh + GWh + 1000 m³ + 1000 ft³ + CMD + AF + unit of storage + 39 + + + 25 + MW + MW + MW + m³/s + ft³/s. + m³/s + AF/hr + unit of water flow + 40 + + + 26 + GWh + GWh + GWh + 1000 m³ + 1000 ft³ + CMD + AF + unit of hydro release + 52 + + + 27 + MW + MW + =unit of hydro efficiency numerator OLD + 50 + + + 28 + MW + MW + unit of hydro efficiency denominator OLD + 51 + + + 29 + $/MMBTU + $/GJ + =[unit of currency]/[unit of fuel] + 8 + + + 30 + $/kg + $/kg + =[unit of currency]/[unit of emission] + 9 + + + 31 + $/kW/yr + $/kW/yr + =[unit of currency]/kW/yr + 10 + + + 32 + $/MW + $/MW + =[unit of currency]/[unit of load] + 11 + + + 33 + $/MWh + $/MWh + =[unit of currency]/[unit of electric energy] + 12 + + + 34 + $000 + $000 + =[unit of currency]000 + 15 + + + 35 + MMBTU/h + GJ/h + =[unit of fuel]/h + 16 + + + 36 + MMBTu/MWh + GJ/MWh + =[unit of heat rate numerator]/[unit of heat rate denominator] + 17 + + + 37 + MMBTu/MMBTU + GJ/GJ + =[unit of energy]/[unit of fuel] + 18 + + + 38 + MMBTu/MWh² + GJ/MWh² + =[unit of heat rate numerator]/[unit of heat rate denominator]² + 19 + + + 39 + kg/MMBTU + kg/GJ + =[unit of emission]/[unit of fuel] + 21 + + + 40 + kg/MWh + kg/MWh + =[unit of emission]/[unit of electric energy] + 22 + + + 41 + $/GWh + $/GWh + =[unit of currency]/[1000 units of electric energy] + 33 + + + 42 + + + =[unit of distance]² + 35 + + + 43 + $/degree + $/° + =[unit of currency]/° + 38 + + + 44 + MMBTu/MWh³ + GJ/MWh³ + =[unit of heat rate numerator]/[unit of heat rate denominator]³ + 41 + + + 45 + /MW + MW/MW + =[unit of hydro efficiency numerator OLD]/[unit of hydro efficiency denominator OLD] + 49 + + + 46 + $/GWh + $/GWh + =[unit of currency]/[unit of hydro release] + 53 + + + 47 + $/kW + $/kW + =[unit of currency]/kW + 56 + + + 48 + $/hr + $/h + =[unit of currency]/hr + 57 + + + 49 + $/kW/month + $/kW/month + =[unit of currency]/kW/month + 61 + + + 50 + $/kW/week + $/kW/week + =[unit of currency]/kW/week + 62 + + + 51 + $/kW/day + $/kW/day + =[unit of currency]/kW/day + 63 + + + 52 + $/kWh + $/kWh + =[unit of currency]/kWh + 206 + + + 53 + rad + rad + 64 + + + 54 + $/MW + $/MW + =[unit of currency]/[unit of water flow] + 65 + + + 55 + month + month + 66 + + + 56 + $/MWh/MWh + $/MWh2 + =[unit of currency]/[unit of electric energy]/[unit of electric energy] + 67 + + + 57 + min + min + 69 + + + 58 + TJ + TJ + MMBtu + TJ + MMBtu + TJ + MMBtu + unit of gas volume + 75 + + + 59 + GJ + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of gas energy + 74 + + + 60 + $/GJ + $/GJ + =[unit of currency]/[unit of gas energy] + 72 + + + 61 + $/MMBTu + $/GJ + =[unit of currency]/[unit of energy] + 76 + + + 62 + cycles + cycles + 77 + + + 63 + kg/GJ + kg/GJ + =[unit of emission]/[unit of gas energy] + 78 + + + 64 + + + gal. + + gal. + + gal. + unit of water volume + 79 + + + 65 + m³/day + m³/day + =[unit of water volume]/day + 80 + + + 66 + kWh/m³ + kWh/m³ + =kWh/[unit of water volume] + 81 + + + 67 + $/m³ + $/m³ + =[unit of currency]/[unit of water volume] + 82 + + + 68 + m³/MWh + m³/MWh + =[unit of water volume]/[unit of electric energy] + 83 + + + 69 + kWh/TJ + kWh/TJ + =kWh/[unit of gas volume] + 84 + + + 70 + %/day + %/day + 85 + + + 71 + kg/m³ + kg/m³ + =[unit of emission]/[unit of water volume] + 87 + + + 72 + MMBTu/m³ + GJ/m³ + =[unit of energy]/[unit of water volume] + 88 + + + 73 + $/MMBTu/day + $/GJ/day + =[unit of currency]/[unit of energy]/day + 89 + + + 74 + $/MMBTu/day + $/mmBTU/day + =[unit of currency]/[unit of energy]/day + 90 + + + 75 + GJ + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of gas energy output + 202 + + + 76 + TJ + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 units of gas energy output + 203 + + + 77 + °C + °C + °F + °C + °F + °C + °F + unit of temperature + 204 + + + 78 + $/MMBTu/month + $/GJ/month + =[unit of currency]/[unit of energy]/month + 207 + + + 79 + kW + kW + 209 + + + 80 + kWh + kWh + 208 + + + 81 + km + km + m + km + m + km + m + electric vehicle efficiency denominator + 210 + + + 82 + Wh/km + Wh/km + =Wh/[electric vehicle efficiency denominator] + 211 + + + 83 + c + c + c + c + c + c + c + 1/100th unit of currency + 212 + + + 84 + c/kWh + c/kWh + =[1/100th unit of currency]/kWh + 213 + + + 85 + MJ + MJ + 214 + + + 86 + ~ + ~ + 215 + + + 87 + 1000·~ + 1000·~ + 228 + + + 88 + $/~ + $/~ + =[unit of currency]/~ + 216 + + + 89 + pa + pa + psi + pa + psi + pa + psi + unit of pressure + 217 + + + 90 + $/km + $/km + =[unit of currency]/[electric vehicle efficiency denominator] + 218 + + + 91 + kg/km + kg/km + =[unit of emission]/[electric vehicle efficiency denominator] + 219 + + + 92 + kg/kWh + kg/kWh + =[unit of emission]/kWh + 220 + + + 93 + ~ + ~ + 221 + + + 94 + ~ + ~ + 222 + + + 95 + $/~ + $/~ + =[unit of currency]/~ + 223 + + + 96 + $/~ + $/~ + =[unit of currency]/~ + 224 + + + 97 + MW·s + MW·s + 225 + + + 98 + GW·s + GW·s + 226 + + + 99 + $/m³/day/yr + $/m³/day/yr + =[unit of currency]/[unit of water volume]/day/yr + 227 + + + 100 + 1000·~ + 1000·~ + ~ + 1000·~ + ~ + 1000·~ + ~ + custom unit of gas volume + 229 + + + 101 + kWh/1000·~ + kWh/1000·~ + =kWh/[custom unit of gas volume] + 230 + + + 102 + kg/~ + kg/~ + =[unit of emission]/[custom unit of gas volume] + 231 + + + 103 + $/1000·~/month + $/~/month + =[unit of currency]/[custom unit of gas volume]/month + 232 + + + 104 + $/1000·~/day + $/~/day + =[unit of currency]/[custom unit of gas volume]/day + 233 + + + 105 + ~/MWh + ~/MWh + =~/MWh + 234 + + + 106 + ~/GJ + ~/GJ + =~/[unit of heat rate numerator] + 235 + + + 107 + ~/MW + ~/MW + =~/MW + 236 + + + 108 + $/~/yr + $/~/yr + =[unit of currency]/~/yr + 237 + + + 109 + MWh/~ + MWh/~ + =MWh/~ + 238 + + + 110 + MMBTu/~ + GJ/~ + =[unit of energy]/~ + 239 + + + 111 + GJ/~ + GJ/~ + =[unit of gas energy output]/~ + 240 + + + 112 + m³/~ + m³/~ + =[unit of water volume]/~ + 241 + + + 113 + MMBTU/~ + GJ/~ + =[unit of fuel]/~ + 242 + + + 114 + kg/~ + kg/~ + =[unit of emission]/~ + 243 + + + 115 + ~/min + ~/min + =~/min + 244 + + + 116 + MW/1000·~ + MW/1000·~ + =MW/1000·~ + 245 + + + 117 + MWh/1000·~ + MWh/1000·~ + =MWh/1000·~ + 246 + + + 118 + MW + MW + MW + MW + kW + MW + kW + unit of hydro efficiency numerator + 247 + + + 119 + MW + MW + MW + m³/s + ft³/s + m³/s + AF/hr + unit of hydro efficiency denominator + 248 + + + 120 + MW/MW + MW/MW + =[unit of hydro efficiency numerator]/[unit of hydro efficiency denominator] + 249 + + + 121 + MVA + MVA + unit of measurement for apparent power + 250 + + + 122 + MVAr + MVAr + unit of measurement for reactive power + 251 + + + 123 + ~/~ + ~/~ + 252 + + + 124 + ~/~² + ~/~² + 253 + + + 125 + ~/~³ + ~/~³ + 254 + + + 1 + 1 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 2 + 1 + 3 + 2 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 3 + 1 + 3 + 3 + Min Generation + Min Generation + 1 + 1 + false + true + false + false + true + false + true + true + 483 + 483 + Minimum Generation in the period + true + + + 4 + 1 + 3 + 4 + Min Stable Level Violation + Min Stable Level Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2633 + 2633 + Violation of [Min Stable Level] constraint. + true + + + 5 + 1 + 3 + 5 + Min Stable Level Violation Cost + Min Stable Level Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2634 + 2634 + Cost of [Min Stable Level] violations. + true + + + 6 + 1 + 3 + 6 + Max Generation + Max Generation + 1 + 1 + false + true + false + false + true + false + true + true + 431 + 431 + Maximum Generation in the period + true + + + 7 + 1 + 3 + 7 + Units Generating + Units Generating + 0 + 0 + true + false + false + false + true + false + true + true + 816 + 816 + Number of units generating + true + + + 8 + 1 + 3 + 8 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 9 + 1 + 3 + 9 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 10 + 1 + 3 + 10 + Committed Capacity + Committed Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2936 + 2936 + Capacity of committed units + true + + + 11 + 1 + 3 + 11 + Dispatchable Capacity + Dispatchable Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 149 + Capacity of committed units between technical limits + true + + + 12 + 1 + 3 + 12 + Undispatched Capacity + Undispatched Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 803 + Capacity on-line but undispatched + true + + + 13 + 1 + 3 + 13 + Undispatched Pump Capacity + Undispatched Pump Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2852 + 2852 + Pump capacity online but undispatched + true + + + 14 + 1 + 3 + 14 + Unused Capacity + Unused Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2853 + 2853 + Unused capacity (Rating x Units - Generation) + true + + + 15 + 1 + 3 + 15 + Unused Pump Capacity + Unused Pump Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2854 + 2854 + Unused pump capacity (Pump Load x Pump Units - station pumping load) + true + + + 16 + 1 + 3 + 16 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 17 + 1 + 3 + 17 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 18 + 1 + 3 + 18 + Min Up Time Violation + Min Up Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2598 + 2598 + Violation of min up time constraint. + true + + + 19 + 1 + 3 + 19 + Min Up Time Violation Cost + Min Up Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2599 + 2599 + Cost of violating min up time constraint. + true + + + 20 + 1 + 3 + 20 + Max Up Time Violation + Max Up Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2600 + 2600 + Violation of maximum up time constraint. + true + + + 21 + 1 + 3 + 21 + Max Up Time Violation Cost + Max Up Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2601 + 2601 + Cost of violating maximum up time constraint. + true + + + 22 + 1 + 3 + 22 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 23 + 1 + 3 + 23 + Min Down Time Violation + Min Down Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2602 + 2602 + Violation of min down time constraint. + true + + + 24 + 1 + 3 + 24 + Min Down Time Violation Cost + Min Down Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2603 + 2603 + Cost of violating min up time constraint. + true + + + 25 + 1 + 3 + 25 + Max Down Time Violation + Max Down Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2621 + 2621 + Violation of maximum down time constraint. + true + + + 26 + 1 + 3 + 26 + Max Down Time Violation Cost + Max Down Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2622 + 2622 + Cost of violating maximum down time constraint. + true + + + 27 + 1 + 3 + 27 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity generating + true + + + 28 + 1 + 3 + 28 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 29 + 1 + 3 + 29 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 30 + 1 + 3 + 30 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 31 + 1 + 3 + 31 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 32 + 1 + 3 + 32 + Hours Curtailed + Hours Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1058 + 1058 + Number of hours that non-positive-priced generation has been curtailed. + true + + + 33 + 1 + 3 + 33 + Capacity Curtailed + Energy Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1163 + 2344 + Amount of non-positive-priced generation curtailed. + true + + + 34 + 1 + 3 + 34 + Curtailment Factor + Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 1061 + 1061 + Proportion of non-positive-priced generation curtailed. + true + + + 35 + 1 + 3 + 35 + Ramp + Ramp + 9 + 9 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 36 + 1 + 3 + 36 + Ramp Up + Ramp Up + 1 + 1 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 37 + 1 + 3 + 37 + Max Ramp Up + Max Ramp Up + 9 + 9 + true + true + false + false + true + false + true + true + 448 + 448 + Maximum ramp up rate that applies at the given load point + true + + + 38 + 1 + 3 + 38 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 39 + 1 + 3 + 39 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 40 + 1 + 3 + 40 + Ramp Up Price + Ramp Up Price + 32 + 32 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint. + true + + + 41 + 1 + 3 + 41 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation. + true + + + 42 + 1 + 3 + 42 + Ramp Up Violation + Ramp Up Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint. + true + + + 43 + 1 + 3 + 43 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations. + true + + + 44 + 1 + 3 + 44 + Ramp Down + Ramp Down + 1 + 1 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 45 + 1 + 3 + 45 + Max Ramp Down + Max Ramp Down + 9 + 9 + true + true + false + false + true + false + true + true + 447 + 447 + Maximum ramp down rate that applies at the given load point + true + + + 46 + 1 + 3 + 46 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 47 + 1 + 3 + 47 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 48 + 1 + 3 + 48 + Ramp Down Price + Ramp Down Price + 32 + 32 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint. + true + + + 49 + 1 + 3 + 49 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation. + true + + + 50 + 1 + 3 + 50 + Ramp Down Violation + Ramp Down Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint. + true + + + 51 + 1 + 3 + 51 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations. + true + + + 52 + 1 + 3 + 52 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 53 + 1 + 3 + 53 + Fixed Load Violation + Fixed Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1168 + 1168 + Violation of [Fixed Load] constraint. + true + + + 54 + 1 + 3 + 54 + Fixed Load Violation Hours + Fixed Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1045 + 1045 + Number of hours that [Fixed Load] is violated. + true + + + 55 + 1 + 3 + 55 + Fixed Load Violation Cost + Fixed Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1042 + 1042 + Cost of [Fixed Load] violations. + true + + + 56 + 1 + 3 + 56 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 57 + 1 + 3 + 57 + Min Load Violation + Min Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1169 + 1169 + Violation of [Min Load] constraint. + true + + + 58 + 1 + 3 + 58 + Min Load Violation Hours + Min Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1046 + 1046 + Number of hours that [Min Load] is violated. + true + + + 59 + 1 + 3 + 59 + Min Load Violation Cost + Min Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1047 + 1047 + Cost of [Min Load] violations. + true + + + 60 + 1 + 3 + 60 + Max Load Violation + Max Load Violation + 1 + 1 + true + true + false + false + true + false + true + true + 2604 + 2604 + Violation of [Max Load] constraint. + true + + + 61 + 1 + 3 + 61 + Max Load Violation Cost + Max Load Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2605 + 2605 + Cost of [Max Load] violations. + true + + + 62 + 1 + 3 + 62 + Max Energy Violation + Max Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1192 + 1192 + Violation of [Max Energy] or [Max Capacity Factor] constraints. + true + + + 63 + 1 + 3 + 63 + Max Energy Violation Cost + Max Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1193 + 1193 + Cost of [Max Energy] or [Max Capacity Factor] constraint violations. + true + + + 64 + 1 + 3 + 64 + Min Energy Violation + Min Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1194 + 1194 + Violation of [Min Energy] or [Min Capacity Factor] constraints. + true + + + 65 + 1 + 3 + 65 + Min Energy Violation Cost + Min Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1195 + 1195 + Cost of [Min Energy] or [Min Capacity Factor] constraint violations. + true + + + 66 + 1 + 3 + 66 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints. + true + + + 67 + 1 + 3 + 67 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations. + true + + + 68 + 1 + 3 + 68 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise reserve + true + + + 69 + 1 + 3 + 69 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 70 + 1 + 3 + 70 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 71 + 1 + 3 + 71 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 72 + 1 + 3 + 72 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 73 + 1 + 3 + 73 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 74 + 1 + 3 + 74 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 75 + 1 + 3 + 75 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of additional generation that could be unloaded + true + + + 76 + 1 + 3 + 76 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 77 + 1 + 3 + 77 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 78 + 1 + 3 + 78 + Dispatched Capacity Available + Dispatched Capacity Available + 1 + 2 + true + true + false + false + true + false + true + true + 2204 + 2204 + The available capacity during unit commitment + false + + + 79 + 1 + 3 + 79 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 80 + 1 + 3 + 80 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 81 + 1 + 3 + 81 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 82 + 1 + 3 + 82 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 83 + 1 + 3 + 83 + Storage Release + Storage Release + 25 + 24 + true + true + false + false + true + false + true + true + 2780 + 2780 + Release from the Head Storage to the generator + true + + + 84 + 1 + 3 + 84 + Natural Inflow + Natural Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 530 + 530 + Natural inflow to the generator + true + + + 85 + 1 + 3 + 85 + Controllable Inflow + Controllable Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 2779 + 2779 + Controllable natural inflow to the generator + true + + + 86 + 1 + 3 + 86 + Uncontrolled Inflow + Uncontrolled Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 2777 + 2777 + Uncontrolled natural inflow to the generator + true + + + 87 + 1 + 3 + 87 + Spill + Spill + 25 + 24 + true + true + false + false + true + false + true + true + 758 + 758 + Spill to "the sea" + true + + + 88 + 1 + 3 + 88 + Units Pumping + Units Pumping + 0 + 0 + true + false + false + false + true + false + true + true + 1228 + 1228 + Number of units operating in pump mode + true + + + 89 + 1 + 3 + 89 + Pump Units Started + Pump Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 1322 + 1322 + Number of units stared in pump mode + true + + + 90 + 1 + 3 + 90 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by a unit in pumping mode + true + + + 91 + 1 + 3 + 91 + Pump Load Violation + Pump Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2606 + 2606 + Violation of maximum pump load constraint. + true + + + 92 + 1 + 3 + 92 + Pump Load Violation Cost + Pump Load Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2607 + 2607 + Cost of violating maximum pump load constraint. + true + + + 93 + 1 + 3 + 93 + Pump Operating Hours + Pump Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1642 + 1642 + Number of hours the unit is operating in pump mode + true + + + 94 + 1 + 3 + 94 + Net Sum Generation + Net Sum Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2374 + 2374 + Generation sum of pump load and generation + false + + + 95 + 1 + 3 + 95 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 96 + 1 + 3 + 96 + Fixed Pump Load + Fixed Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 1328 + 1328 + Fixed pump load + true + + + 97 + 1 + 3 + 97 + Fixed Pump Load Violation + Fixed Pump Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1331 + 1331 + Violation of [Fixed Pump Load] constraint. + true + + + 98 + 1 + 3 + 98 + Fixed Pump Load Violation Hours + Fixed Pump Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1330 + 1330 + Number of hours that [Fixed Pump Load] is violated. + true + + + 99 + 1 + 3 + 99 + Fixed Pump Load Violation Cost + Fixed Pump Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1332 + 1332 + Cost of [Fixed Pump Load] violations. + true + + + 100 + 1 + 3 + 100 + Water Release + Water Release + 25 + 24 + true + true + false + false + true + false + true + true + 854 + 854 + Water release from hydro generation + true + + + 101 + 1 + 3 + 101 + Water Pumped + Water Pumped + 25 + 24 + true + true + false + false + true + false + true + true + 853 + 853 + Water pumped in pumping mode + true + + + 102 + 1 + 3 + 102 + Units Sync Cond + Units Sync Cond + 0 + 0 + true + false + false + false + true + false + true + true + 1643 + 1643 + Number of units operating in synchronous condenser mode + true + + + 103 + 1 + 3 + 103 + Sync Cond Load + Sync Cond Load + 1 + 2 + true + true + false + false + true + false + true + true + 772 + 772 + Load drawn by a unit in synchronous condenser mode + true + + + 104 + 1 + 3 + 104 + Sync Cond Operating Hours + Sync Cond Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1644 + 1644 + Number of hours the unit is operating in synchronous condenser mode + true + + + 105 + 1 + 3 + 105 + Fuel Price + Fuel Price + 29 + 29 + true + true + false + false + true + false + true + true + 225 + 225 + Fuel price (when not using Fuels collection) + true + + + 106 + 1 + 3 + 106 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 107 + 1 + 3 + 107 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 108 + 1 + 3 + 108 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 109 + 1 + 3 + 109 + VO&M Charge + VO&M Charge + 33 + 33 + true + true + false + false + true + false + true + true + 849 + 849 + Variable operation and maintenance charge + true + + + 110 + 1 + 3 + 110 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 111 + 1 + 3 + 111 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 112 + 1 + 3 + 112 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 113 + 1 + 3 + 113 + Generation Credit Revenue + Generation Credit Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2766 + 2766 + Total revenue derived from generation credits + true + + + 114 + 1 + 3 + 114 + Generation Credit Price + Generation Credit Price + 33 + 33 + true + true + false + false + true + false + true + true + 2767 + 2767 + Average price of the generation credits + true + + + 115 + 1 + 3 + 115 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Cost of pump energy + true + + + 116 + 1 + 3 + 116 + Sync Cond Cost + Sync Cond Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1649 + 1649 + Cost of synchronous condenser energy + true + + + 117 + 1 + 3 + 117 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 118 + 1 + 3 + 118 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 119 + 1 + 3 + 119 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of generation + true + + + 120 + 1 + 3 + 120 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 121 + 1 + 3 + 121 + Start & Shutdown Penalty Cost + Start & Shutdown Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1183 + 1183 + Penalty cost of unit start up and shutdown + true + + + 122 + 1 + 3 + 122 + Start Profile Violation + Start Profile Violation + 1 + 1 + true + true + false + false + true + false + true + true + 2640 + 2640 + Violation of [Start Profile] constraint. + true + + + 123 + 1 + 3 + 123 + Start Profile Violation Cost + Start Profile Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2641 + 2641 + Cost of [Start Profile] violations. + true + + + 124 + 1 + 3 + 124 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + false + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 125 + 1 + 3 + 125 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 126 + 1 + 3 + 126 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 127 + 1 + 3 + 127 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 128 + 1 + 3 + 128 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 129 + 1 + 3 + 129 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 130 + 1 + 3 + 130 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 131 + 1 + 3 + 131 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 132 + 1 + 3 + 132 + Heat Rate + Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 260 + 260 + Average heat rate (total fuel divided by total generation) + true + + + 133 + 1 + 3 + 133 + Marginal Heat Rate + Marginal Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal generation level + true + + + 134 + 1 + 3 + 134 + Average Heat Rate + Average Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate + true + + + 135 + 1 + 3 + 135 + Efficiency + Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of generation + true + + + 136 + 1 + 3 + 136 + Marginal Fuel Cost + Marginal Fuel Cost + 33 + 33 + true + true + false + false + true + false + true + true + 1776 + 1776 + Short-run marginal cost fuel component + true + + + 137 + 1 + 3 + 137 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 138 + 1 + 3 + 138 + Average Cost + Average Cost + 33 + 33 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of generation + true + + + 139 + 1 + 3 + 139 + Average Total Cost + Average Total Cost + 33 + 33 + true + true + false + false + true + false + true + true + 1374 + 1374 + Average [Total Generation Cost] + true + + + 140 + 1 + 3 + 140 + Offer Base + Offer Base + 1 + 2 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for incr/decr style offer + true + + + 141 + 1 + 3 + 141 + Offer No Load Cost + Offer No Load Cost + 48 + 48 + true + false + false + false + true + false + true + true + 568 + 568 + Fixed dispatch cost component of generator offer. + true + + + 142 + 1 + 3 + 142 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band + true + + + 143 + 1 + 3 + 143 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 144 + 1 + 3 + 144 + Cost Price + Cost Price + 33 + 33 + true + true + true + false + true + false + true + true + 119 + 119 + Marginal cost of energy in band + true + + + 145 + 1 + 3 + 145 + Mark-up + Mark-up + 33 + 33 + true + true + true + false + true + false + true + true + 408 + 408 + Mark-up above marginal cost + true + + + 146 + 1 + 3 + 146 + Bid-Cost Mark-up + Bid-Cost Mark-up + 12 + 12 + true + true + true + false + true + false + true + true + 32 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + true + + + 147 + 1 + 3 + 147 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 148 + 1 + 3 + 148 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 149 + 1 + 3 + 149 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 150 + 1 + 3 + 150 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + true + true + false + true + true + 377 + 377 + Transmission marginal loss factor (MLF or TLF) + true + + + 151 + 1 + 3 + 151 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 152 + 1 + 3 + 152 + Pump Bid Base + Pump Bid Base + 1 + 2 + true + true + false + false + true + false + true + true + 1301 + 1301 + Base pump load for balancing bid + true + + + 153 + 1 + 3 + 153 + Pump Bid Quantity + Pump Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 1303 + 1303 + Pump load bid quantity in band + true + + + 154 + 1 + 3 + 154 + Pump Bid Price + Pump Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 1302 + 1302 + Bid price of pump load in band + true + + + 155 + 1 + 3 + 155 + Pump Bid Cleared + Pump Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1304 + 1304 + Quantity cleared in pump load bid band + true + + + 156 + 1 + 3 + 156 + Cleared Pump Bid Price + Cleared Pump Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1305 + 1305 + Price of marginal pump load bid band + true + + + 157 + 1 + 3 + 157 + Cleared Pump Bid Cost + Cleared Pump Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1307 + 1307 + Area cleared under generator pump bid curve + true + + + 158 + 1 + 3 + 158 + Pump Price Paid + Pump Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 1306 + 1306 + Price paid for pump load + true + + + 159 + 1 + 3 + 159 + Sync Cond Price Paid + Sync Cond Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 1650 + 1650 + Price paid for synchronous condenser load + true + + + 160 + 1 + 3 + 160 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 161 + 1 + 3 + 161 + Spark Spread + Spark Spread + 33 + 33 + true + true + false + false + true + false + true + true + 1062 + 1062 + Difference between price received and cost of fuel used to generate. + true + + + 162 + 1 + 3 + 162 + Clean Spark Spread + Clean Spark Spread + 33 + 33 + true + true + false + false + true + false + true + true + 1064 + 1064 + Difference between price received and cost of fuel used to generate accounting for incremental cost of emissions. + true + + + 163 + 1 + 3 + 163 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue + true + + + 164 + 1 + 3 + 164 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 165 + 1 + 3 + 165 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 166 + 1 + 3 + 166 + Heat Market Revenue + Heat Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 256 + 256 + Revenue from heat markets + true + + + 167 + 1 + 3 + 167 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 168 + 1 + 3 + 168 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 169 + 1 + 3 + 169 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before mark-up models. + true + + + 170 + 1 + 3 + 170 + Shadow Pool Revenue + Shadow Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1146 + 1146 + Pool revenue before mark-up models. + true + + + 171 + 1 + 3 + 171 + Shadow Price Received + Shadow Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 400 + 400 + Price received before uplift or mark-up models. + true + + + 172 + 1 + 3 + 172 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 173 + 1 + 3 + 173 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint applied to this Generator. + true + + + 174 + 1 + 3 + 174 + Scheduled Generation + Scheduled Generation + 1 + 2 + true + true + false + false + false + false + true + true + 721 + 721 + Generation in the unconstrained schedule (uniform pricing only) + true + + + 175 + 1 + 3 + 175 + Scheduled Revenue + Scheduled Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 724 + 724 + Revenue from scheduled generation (uniform pricing only) + true + + + 176 + 1 + 3 + 176 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 177 + 1 + 3 + 177 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 178 + 1 + 3 + 178 + Scheduled Generation Cost + Scheduled Generation Cost + 14 + 34 + true + true + false + true + false + false + true + true + 722 + 722 + Cost of generation in the unconstrained schedule (uniform pricing only) + true + + + 179 + 1 + 3 + 179 + Scheduled Offer Cost + Scheduled Offer Cost + 14 + 34 + true + true + false + true + false + false + true + true + 723 + 723 + Area cleared under generator offer curve in unconstrained schedule (uniform pricing only) + true + + + 180 + 1 + 3 + 180 + Scheduled Start & Shutdown Cost + Scheduled Start & Shutdown Cost + 14 + 34 + true + true + false + false + false + false + true + true + 725 + 725 + Cost of unit start ups and shut downs in the unconstrained schedule + true + + + 181 + 1 + 3 + 181 + CHP Generation + CHP Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1049 + 1049 + Combined heat and power generation from heat mode + true + + + 182 + 1 + 3 + 182 + Condense Mode Generation + Condense Mode Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1050 + 1050 + Combined heat and power generation from condense mode + true + + + 183 + 1 + 3 + 183 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Total Heat Production from Generator (including Ancillary Boiler) + true + + + 184 + 1 + 3 + 184 + CHP Heat Production + CHP Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 1051 + 1051 + Heat production from CHP mode + true + + + 185 + 1 + 3 + 185 + Boiler Heat Production + Boiler Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 41 + 41 + Heat production from Ancillary Boiler + true + + + 186 + 1 + 3 + 186 + Heat Fuel Offtake + Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 254 + 254 + Total Fuel Offtake for Heat Production + true + + + 187 + 1 + 3 + 187 + CHP Power Fuel Offtake + CHP Power Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1052 + 1052 + Fuel Offtake proportion for Electricity production + true + + + 188 + 1 + 3 + 188 + CHP Heat Fuel Offtake + CHP Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1053 + 1053 + Fuel Offtake proportion for Heat production + true + + + 189 + 1 + 3 + 189 + CHP Heat Surrogate Fuel Offtake + CHP Heat Surrogate Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1054 + 1054 + Fuel Offtake proportion for Heat production (estimated as input user) + true + + + 190 + 1 + 3 + 190 + Boiler Fuel Offtake + Boiler Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1055 + 1055 + Fuel Offtake of Ancillary Boiler + true + + + 191 + 1 + 3 + 191 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Cost of heat production + true + + + 192 + 1 + 3 + 192 + Heat Revenue + Heat Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 267 + 267 + Revenue from heat production + true + + + 193 + 1 + 3 + 193 + Max Heat + Max Heat + 15 + 16 + true + true + false + true + true + false + true + true + 1514 + 1514 + Maximum heat allowed in storage + true + + + 194 + 1 + 3 + 194 + Max Heat Violation + Max Heat Violation + 15 + 16 + true + true + false + true + true + false + true + true + 2608 + 2608 + Amount above Generator Max Heat + true + + + 195 + 1 + 3 + 195 + Max Heat Violation Cost + Max Heat Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2609 + 2609 + Cost of Generator Max Heat violoation + true + + + 196 + 1 + 3 + 196 + Min Heat + Min Heat + 15 + 16 + true + true + false + true + true + false + true + true + 1515 + 1515 + Minimum heat allowed in storage + true + + + 197 + 1 + 3 + 197 + Opening Heat + Opening Heat + 15 + 16 + true + true + false + false + true + false + true + true + 1513 + 1513 + Initial heat in the storage + true + + + 198 + 1 + 3 + 198 + Closing Heat + Closing Heat + 15 + 16 + true + true + false + false + true + false + true + true + 1517 + 1517 + Heat in storage at the end of the period + true + + + 199 + 1 + 3 + 199 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from storage + true + + + 200 + 1 + 3 + 200 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into storage + true + + + 201 + 1 + 3 + 201 + Net Heat Withdrawal + Net Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1542 + 1542 + Net of withdrawal and injection + true + + + 202 + 1 + 3 + 202 + Heat Loss + Heat Loss + 15 + 16 + true + true + false + true + true + false + true + true + 1516 + 1516 + Rate at which heat is lost from storage + true + + + 203 + 1 + 3 + 203 + Heat Withdrawal Cost + Heat Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1543 + 1543 + Cost of withdrawing heat from storage + true + + + 204 + 1 + 3 + 204 + Heat Injection Cost + Heat Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1544 + 1544 + Cost of injecting heat into storage + true + + + 205 + 1 + 3 + 205 + Heat Shadow Price + Heat Shadow Price + 61 + 61 + true + true + false + false + true + false + true + true + 1545 + 1545 + Shadow price of heat in storage + true + + + 206 + 1 + 3 + 206 + Water Offtake + Water Offtake + 64 + 64 + true + true + false + false + true + false + true + true + 1801 + 1801 + Water recycled through the generator (e.g. for cooling) + true + + + 207 + 1 + 3 + 207 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + false + true + false + true + true + 1803 + 1803 + Water consumed by the generator (e.g. evaporative cooling losses) + true + + + 208 + 1 + 3 + 208 + Water Cost + Water Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1809 + 1809 + Cost of water consumed + true + + + 209 + 1 + 3 + 209 + Water Price Paid + Water Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 1808 + 1808 + Price paid for water consumption + true + + + 210 + 1 + 3 + 210 + Energy Utilisation Factor + Energy Utilisation Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2088 + 2088 + Portion of available technical capacity dispatched + true + + + 211 + 1 + 3 + 211 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served at the Gas Node attached to the generator + true + + + 212 + 1 + 6 + 212 + Max Capacity + Max Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 414 + 414 + Maximum generating capacity of each unit + true + + + 213 + 1 + 6 + 213 + Min Capacity + Min Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 2804 + 2804 + Minimum generating capacity of each unit + true + + + 214 + 1 + 6 + 214 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 215 + 1 + 6 + 215 + Rating + Rating + 1 + 1 + true + true + false + false + true + false + true + true + 665 + 665 + Rated capacity of units + true + + + 216 + 1 + 6 + 216 + Raw Rating + Raw Rating + 1 + 1 + true + true + false + false + true + false + true + true + 1872 + 1872 + Rated output capacity of units without considering outages or degradation + true + + + 217 + 1 + 6 + 217 + Rated Capacity + Rated Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + true + + + 218 + 1 + 6 + 218 + Rating Violation + Rating Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2637 + 2637 + Violation of Rating constraint + true + + + 219 + 1 + 6 + 219 + Rating Violation Cost + Rating Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2638 + 2638 + Cost of Rating violation + true + + + 220 + 1 + 6 + 220 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the generator to capacity reserves + true + + + 221 + 1 + 6 + 221 + Net Firm Capacity + Net Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 2701 + 2701 + Firm Capacity net of maintenance and degradation + true + + + 222 + 1 + 6 + 222 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + false + true + false + false + 1012 + 1012 + Contribution to regional capacity reserves + true + + + 223 + 1 + 7 + 223 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 224 + 1 + 7 + 224 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity lost to maintenance + true + + + 225 + 1 + 7 + 225 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 226 + 1 + 7 + 226 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 227 + 1 + 7 + 227 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 228 + 1 + 7 + 228 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 229 + 1 + 7 + 229 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 230 + 1 + 7 + 230 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 231 + 1 + 7 + 231 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 232 + 1 + 7 + 232 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 233 + 1 + 7 + 233 + Outage Hours + Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2561 + 2561 + Number of hours on outage + true + + + 234 + 1 + 7 + 234 + Outage Rate + Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 2562 + 2562 + Proportion of installed capacity on outage + true + + + 235 + 1 + 7 + 235 + Operating or Forced Outage Hours + Operating or Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1821 + 1821 + Number of hours operating or on forced outage + false + + + 236 + 1 + 7 + 236 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 237 + 1 + 7 + 237 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for generation + true + + + 238 + 1 + 8 + 238 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 239 + 1 + 8 + 239 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 240 + 1 + 8 + 240 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 241 + 1 + 8 + 241 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 242 + 1 + 8 + 242 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 243 + 1 + 8 + 243 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the generator for capacity + true + + + 244 + 1 + 8 + 244 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 245 + 1 + 8 + 245 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 246 + 1 + 8 + 246 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 247 + 1 + 8 + 247 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 248 + 1 + 8 + 248 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 249 + 1 + 8 + 249 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 250 + 1 + 8 + 250 + Shadow Capacity Built + Shadow Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1823 + 1823 + Capacity built (Max Capacity x Units Built) before Competition models. + true + + + 251 + 1 + 8 + 251 + Age + Age + 8 + 8 + true + true + false + false + true + false + false + false + 1373 + 1373 + Average age of generating units + true + + + 252 + 1 + 8 + 252 + Recovery Price + Recovery Price + 33 + 33 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of generator expansion + true + + + 253 + 1 + 8 + 253 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by operating the generator + true + + + 254 + 1 + 12 + 254 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 255 + 1 + 12 + 255 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 256 + 1 + 12 + 256 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 257 + 5 + 3 + 1 + Transition Cost + Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1139 + 1139 + Cost required for a Generator transition + true + + + 258 + 5 + 3 + 2 + Transition Count + Transition Count + 0 + 0 + true + true + false + false + true + false + true + true + 1882 + 1882 + The number of transitions in the given period + true + + + 259 + 7 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 260 + 7 + 1 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the generator + true + + + 261 + 7 + 1 + 3 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 262 + 7 + 1 + 4 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 263 + 7 + 1 + 5 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used including transport charges + true + + + 264 + 7 + 1 + 6 + Transport Charge + Transport Charge + 29 + 29 + true + true + false + true + true + false + true + true + 800 + 800 + Transport charge (added to base fuel price) + true + + + 265 + 7 + 1 + 7 + Transport Cost + Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 996 + 996 + Cost of transporting fuel to the generator + true + + + 266 + 7 + 1 + 8 + Transition Cost + Transition Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1139 + 1139 + Cost of transitioning to or from this Fuel. + true + + + 267 + 7 + 1 + 9 + Marginal Heat Rate + Marginal Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal generation level + true + + + 268 + 7 + 1 + 10 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 269 + 7 + 1 + 11 + Hours Available + Hours Available + 6 + 6 + true + true + false + false + true + false + true + true + 275 + 275 + If the fuel is available for use by the generator + true + + + 270 + 7 + 1 + 12 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + MW offer in band + true + + + 271 + 7 + 1 + 13 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 272 + 7 + 1 + 14 + Cost Price + Cost Price + 33 + 33 + true + true + true + false + true + false + true + true + 119 + 119 + Marginal cost of energy in band + true + + + 273 + 7 + 1 + 15 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + MW cleared in band + true + + + 274 + 7 + 1 + 16 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours the Fuel is in use by the Generator + true + + + 275 + 8 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 276 + 8 + 1 + 2 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 277 + 8 + 1 + 3 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Total cost of fuel used including transport charges + true + + + 278 + 8 + 1 + 4 + Transport Cost + Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 996 + 996 + Cost of transporting fuel to the generator + true + + + 279 + 9 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the generator + true + + + 280 + 9 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the generator + true + + + 281 + 9 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the generator + true + + + 282 + 12 + 3 + 1 + Participation Factor + Participation Factor + 0 + 0 + true + true + false + false + false + false + false + true + 1840 + 1840 + Generation Participation Factor at the node + false + + + 283 + 16 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the generator + true + + + 284 + 16 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the generator + true + + + 285 + 16 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the generator + true + + + 286 + 17 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the generator + true + + + 287 + 17 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the generator + true + + + 288 + 17 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the generator + true + + + 289 + 18 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 290 + 20 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the generator + true + + + 291 + 20 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the generator + true + + + 292 + 20 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas storage to the generator + true + + + 293 + 21 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the generator + true + + + 294 + 21 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the generator + true + + + 295 + 21 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the generator + true + + + 296 + 22 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the generator + true + + + 297 + 22 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the generator + true + + + 298 + 22 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the generator + true + + + 299 + 24 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 300 + 24 + 3 + 2 + Dispatchable Capacity + Dispatchable Energy + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 2341 + On-line capacity + true + + + 301 + 24 + 3 + 3 + Undispatched Capacity + Undispatched Energy + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 2342 + Capacity on-line but undispatched + true + + + 302 + 24 + 3 + 4 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 303 + 24 + 3 + 5 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 304 + 24 + 3 + 6 + Heat Fuel Offtake + Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 254 + 254 + Fuel used for heat production + true + + + 305 + 24 + 3 + 7 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 306 + 24 + 3 + 8 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 307 + 24 + 3 + 9 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 308 + 24 + 3 + 10 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 309 + 24 + 3 + 11 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 310 + 24 + 3 + 12 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by a unit in pumping mode + true + + + 311 + 24 + 3 + 13 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 312 + 24 + 3 + 14 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 313 + 24 + 3 + 15 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 314 + 24 + 3 + 16 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 315 + 24 + 3 + 17 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 316 + 24 + 3 + 18 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 317 + 24 + 3 + 19 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Heat production + true + + + 318 + 24 + 3 + 20 + Boiler Heat Production + Boiler Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 41 + 41 + Heat production from auxiliary boiler + true + + + 319 + 24 + 3 + 21 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 320 + 24 + 3 + 22 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 321 + 24 + 3 + 23 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 322 + 24 + 3 + 24 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 323 + 24 + 3 + 25 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 324 + 24 + 3 + 26 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 325 + 24 + 3 + 27 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Pool cost + true + + + 326 + 24 + 3 + 28 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 327 + 24 + 3 + 29 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 328 + 24 + 3 + 30 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Cost of heat production + true + + + 329 + 24 + 3 + 31 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of generation + true + + + 330 + 24 + 3 + 32 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts + true + + + 331 + 24 + 3 + 33 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 332 + 24 + 3 + 34 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 333 + 24 + 3 + 35 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 334 + 24 + 3 + 36 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 335 + 24 + 3 + 37 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 336 + 24 + 3 + 38 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 337 + 24 + 3 + 39 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 338 + 24 + 3 + 40 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue + true + + + 339 + 24 + 3 + 41 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 340 + 24 + 3 + 42 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 341 + 24 + 3 + 43 + Heat Revenue + Heat Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 267 + 267 + Revenue from heat production + true + + + 342 + 24 + 3 + 44 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 343 + 24 + 3 + 45 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 344 + 24 + 3 + 46 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 345 + 24 + 3 + 47 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 346 + 24 + 3 + 48 + Scheduled Generation + Scheduled Generation + 1 + 2 + true + true + false + false + false + false + true + true + 721 + 721 + Generation in the unconstrained schedule (uniform pricing only) + true + + + 347 + 24 + 3 + 49 + Scheduled Revenue + Scheduled Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 724 + 724 + Revenue from scheduled generation (uniform pricing only) + true + + + 348 + 24 + 3 + 50 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 349 + 24 + 3 + 51 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 350 + 24 + 3 + 52 + Scheduled Generation Cost + Scheduled Generation Cost + 14 + 34 + true + true + false + true + false + false + true + true + 722 + 722 + Cost of generation in the unconstrained schedule (uniform pricing only) + true + + + 351 + 24 + 3 + 53 + Scheduled Offer Cost + Scheduled Offer Cost + 14 + 34 + true + true + false + true + false + false + true + true + 723 + 723 + Area cleared under generator offer curve in unconstrained schedule (uniform pricing only) + true + + + 352 + 24 + 3 + 54 + Scheduled Start & Shutdown Cost + Scheduled Start & Shutdown Cost + 14 + 34 + true + true + false + false + false + false + true + true + 725 + 725 + Cost of unit start ups and shut downs in the unconstrained schedule + true + + + 353 + 24 + 6 + 55 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 354 + 24 + 6 + 56 + Rated Capacity + Rated Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 663 + 663 + Rated capacity (Rating x Units) + true + + + 355 + 24 + 6 + 57 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 356 + 24 + 7 + 58 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + false + true + true + 392 + 392 + Capacity out on maintenance + true + + + 357 + 24 + 7 + 59 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 358 + 24 + 8 + 60 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 359 + 24 + 8 + 61 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 360 + 24 + 8 + 62 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 361 + 24 + 8 + 63 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments to the generator + true + + + 362 + 24 + 8 + 64 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 363 + 24 + 8 + 65 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of units retired + true + + + 364 + 25 + 3 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + false + false + 1437 + 1437 + Consumption of the Commodity by the Generator + true + + + 365 + 26 + 3 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + false + false + 624 + 624 + Production of the Commodity by the Generator + true + + + 366 + 29 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Capacity sold to market + true + + + 367 + 29 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from capacity market + true + + + 368 + 29 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 369 + 29 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 370 + 30 + 1 + 1 + Sales + Sales + 0 + 0 + true + true + false + false + true + false + true + true + 718 + 718 + Heat sold into the market + true + + + 371 + 30 + 1 + 2 + Revenue + Revenue + 0 + 0 + true + true + false + false + true + false + true + true + 696 + 696 + Revenue from heat sales + true + + + 372 + 40 + 3 + 1 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 373 + 40 + 3 + 2 + Tax + Tax + 88 + 88 + true + true + false + false + true + false + true + true + 785 + 785 + Fuel tax + true + + + 374 + 40 + 3 + 3 + Total Price + Total Price + 88 + 88 + true + true + false + false + true + false + true + true + 792 + 792 + Fuel price including tax + true + + + 375 + 40 + 3 + 4 + Time-weighted Price + Time-weighted Price + 88 + 88 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price of fuel. + true + + + 376 + 40 + 3 + 5 + Offtake + Offtake + 86 + 87 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 377 + 40 + 3 + 6 + Max Offtake + Max Offtake + 86 + 86 + false + true + false + true + true + false + true + true + 939 + 939 + Maximum fuel offtake per interval + true + + + 378 + 40 + 3 + 7 + Min Offtake + Min Offtake + 86 + 86 + false + true + false + true + true + false + true + true + 944 + 944 + Minimum fuel offtake per interval + true + + + 379 + 40 + 3 + 8 + Max Inventory + Max Inventory + 87 + 87 + true + true + false + true + true + false + true + true + 1589 + 1589 + Maximum fuel allowed in stockpile + true + + + 380 + 40 + 3 + 9 + Min Inventory + Min Inventory + 87 + 87 + true + true + false + true + true + false + true + true + 1590 + 1590 + Minimum fuel required in stockpile + true + + + 381 + 40 + 3 + 10 + Opening Inventory + Opening Inventory + 87 + 87 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial fuel in the stockpile + true + + + 382 + 40 + 3 + 11 + Closing Inventory + Closing Inventory + 87 + 87 + true + true + false + false + true + false + true + true + 1593 + 1593 + Final fuel in stockpile + true + + + 383 + 40 + 3 + 12 + Delivery + Delivery + 86 + 87 + true + true + false + true + true + false + true + true + 1592 + 1592 + Fuel delivered to the stockpile + true + + + 384 + 40 + 3 + 13 + Withdrawal + Withdrawal + 86 + 87 + true + true + false + true + true + false + true + true + 1391 + 1391 + Fuel withdrawn from the stockpile + true + + + 385 + 40 + 3 + 14 + Net Withdrawal + Net Withdrawal + 86 + 87 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net of withdrawal and delivery + true + + + 386 + 40 + 3 + 15 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used excluding taxation + true + + + 387 + 40 + 3 + 16 + Tax Cost + Tax Cost + 14 + 34 + true + true + false + true + true + false + true + true + 897 + 897 + Total taxation paid on fuel used + true + + + 388 + 40 + 3 + 17 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of deliveries to the stockpile + true + + + 389 + 40 + 3 + 18 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost applied to closing inventory in the stockpile + true + + + 390 + 40 + 3 + 19 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost applied to unused inventory capacity in the stockpile + true + + + 391 + 40 + 3 + 20 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawing fuel from stockpile + true + + + 392 + 40 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 393 + 40 + 3 + 22 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total cost of fuel used + true + + + 394 + 40 + 3 + 23 + Shadow Price + Shadow Price + 88 + 14 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of fuel (if defined as input, sets the internal price for fuel) + true + + + 395 + 40 + 3 + 24 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the fuel + true + + + 396 + 40 + 3 + 25 + Average Heat Rate + Average Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate of generation with the fuel + true + + + 397 + 40 + 3 + 26 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served at the Gas Node attached to the fuel + true + + + 398 + 40 + 6 + 27 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed generation capacity + true + + + 399 + 40 + 12 + 28 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 400 + 40 + 12 + 29 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 401 + 40 + 12 + 30 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 402 + 43 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the fuel + true + + + 403 + 43 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the fuel + true + + + 404 + 43 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the fuel + true + + + 405 + 44 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the fuel + true + + + 406 + 44 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the fuel + true + + + 407 + 44 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the fuel + true + + + 408 + 45 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the fuel + true + + + 409 + 45 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the fuel + true + + + 410 + 45 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the fuel + true + + + 411 + 47 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the fuel + true + + + 412 + 47 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the fuel + true + + + 413 + 47 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas storage to the fuel + true + + + 414 + 48 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the fuel + true + + + 415 + 48 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the fuel + true + + + 416 + 48 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the fuel + true + + + 417 + 49 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the fuel + true + + + 418 + 49 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the fuel + true + + + 419 + 49 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the fuel + true + + + 420 + 51 + 3 + 1 + Consumption + Consumption + 86 + 87 + true + true + false + true + true + false + true + true + 1437 + 1437 + Fuel consumption by the Facility + true + + + 421 + 53 + 1 + 1 + Sales + Sales + 86 + 87 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 422 + 53 + 1 + 2 + Purchases + Purchases + 86 + 87 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 423 + 53 + 1 + 3 + Net Sales + Net Sales + 86 + 87 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 424 + 53 + 1 + 4 + Net Purchases + Net Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 425 + 53 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 426 + 53 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 427 + 53 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 428 + 53 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 429 + 57 + 3 + 1 + Offtake + Offtake + 86 + 87 + true + true + true + true + true + false + true + true + 577 + 577 + Fuel offtake associated with the contract + true + + + 430 + 57 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of fuel used under contract + true + + + 431 + 57 + 3 + 3 + Price + Price + 88 + 88 + true + true + true + false + true + false + true + true + 612 + 612 + Contract price + true + + + 432 + 57 + 3 + 4 + Take-or-Pay Price + Take-or-Pay Price + 88 + 88 + true + true + false + false + true + false + true + true + 777 + 777 + Contract take-or-pay price + true + + + 433 + 57 + 3 + 5 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with fuel scarcity + true + + + 434 + 57 + 3 + 6 + Take-or-Pay Shadow Price + Take-or-Pay Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 783 + 783 + Shadow price associated with take-or-pay commitment + true + + + 435 + 57 + 3 + 7 + Take-or-Pay Violation + Take-or-Pay Violation + 86 + 87 + true + true + false + true + true + false + true + true + 1439 + 1439 + Violation of take-or-pay constraint + true + + + 436 + 57 + 3 + 8 + Take-or-Pay Violation Cost + Take-or-Pay Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1440 + 1440 + Cost of take-or-pay constraint violation + true + + + 437 + 57 + 3 + 9 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Total fixed operations and maintenance costs + true + + + 438 + 57 + 3 + 10 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 439 + 57 + 12 + 11 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 440 + 57 + 12 + 12 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 441 + 57 + 12 + 13 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 442 + 65 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 443 + 65 + 3 + 2 + Units Operating + Units Operating + 0 + 0 + true + false + false + false + true + false + true + true + 2049 + 2049 + Number of units operating + true + + + 444 + 65 + 3 + 3 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 445 + 65 + 3 + 4 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 446 + 65 + 3 + 5 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load drawn by the facility + true + + + 447 + 65 + 3 + 6 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of maximum load being used + true + + + 448 + 65 + 3 + 7 + Max Load + Max Load + 1 + 1 + true + true + false + false + true + false + true + true + 436 + 436 + Maximum load of each unit + true + + + 449 + 65 + 3 + 8 + Production Rate + Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 627 + 1743 + Rate of production/volume of production + true + + + 450 + 65 + 3 + 9 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of energy conversion process + true + + + 451 + 65 + 3 + 10 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 452 + 65 + 3 + 11 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 453 + 65 + 3 + 12 + Ramp + Ramp + 9 + 9 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 454 + 65 + 3 + 13 + Ramp Up + Ramp Up + 1 + 1 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 455 + 65 + 3 + 14 + Max Ramp Up + Max Ramp Up + 9 + 9 + true + true + false + false + true + false + true + true + 448 + 448 + Maximum ramp up rate that applies at the given load point + true + + + 456 + 65 + 3 + 15 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 457 + 65 + 3 + 16 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 458 + 65 + 3 + 17 + Ramp Up Price + Ramp Up Price + 32 + 32 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint. + true + + + 459 + 65 + 3 + 18 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation. + true + + + 460 + 65 + 3 + 19 + Ramp Up Violation + Ramp Up Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint. + true + + + 461 + 65 + 3 + 20 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations. + true + + + 462 + 65 + 3 + 21 + Ramp Down + Ramp Down + 1 + 1 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 463 + 65 + 3 + 22 + Max Ramp Down + Max Ramp Down + 9 + 9 + true + true + false + false + true + false + true + true + 447 + 447 + Maximum ramp down rate that applies at the given load point + true + + + 464 + 65 + 3 + 23 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 465 + 65 + 3 + 24 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 466 + 65 + 3 + 25 + Ramp Down Price + Ramp Down Price + 32 + 32 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint. + true + + + 467 + 65 + 3 + 26 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation. + true + + + 468 + 65 + 3 + 27 + Ramp Down Violation + Ramp Down Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint. + true + + + 469 + 65 + 3 + 28 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations. + true + + + 470 + 65 + 3 + 29 + Max Production Violation + Max Production Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] or [Max Capacity Factor] constraints + true + + + 471 + 65 + 3 + 30 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] or [Max Capacity Factor] constraint violations + true + + + 472 + 65 + 3 + 31 + Min Production Violation + Min Production Violation + 0 + 0 + true + true + false + false + true + false + true + true + 2309 + 2309 + Violation of [Min Production] or [Min Capacity Factor] constraints + true + + + 473 + 65 + 3 + 32 + Min Production Violation Cost + Min Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2311 + 2311 + Cost of [Min Production] or [Min Capacity Factor] constraint violations + true + + + 474 + 65 + 3 + 33 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints. + true + + + 475 + 65 + 3 + 34 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations. + true + + + 476 + 65 + 3 + 35 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost of electric load + true + + + 477 + 65 + 3 + 36 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 478 + 65 + 3 + 37 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 479 + 65 + 3 + 38 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of production + true + + + 480 + 65 + 3 + 39 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 481 + 65 + 3 + 40 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including VO&M, start and shutdown costs + true + + + 482 + 65 + 3 + 41 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including VO&M, start and shutdown costs, and ramp costs + true + + + 483 + 65 + 3 + 42 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 1803 + 1803 + Water consumed by the Power2X facility + true + + + 484 + 65 + 3 + 43 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 485 + 65 + 3 + 44 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 486 + 65 + 3 + 45 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 487 + 65 + 3 + 46 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 488 + 65 + 3 + 47 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 489 + 65 + 3 + 48 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 490 + 65 + 3 + 49 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by the electric load + true + + + 491 + 65 + 3 + 50 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Quantity cleared in band + true + + + 492 + 65 + 3 + 51 + Cleared Bid Price + Cleared Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 493 + 65 + 3 + 52 + Cleared Bid Cost + Cleared Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2551 + 2551 + Area cleared under the Power2X bid curve + true + + + 494 + 65 + 3 + 53 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 495 + 65 + 3 + 54 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 496 + 65 + 3 + 55 + Shadow Price + Shadow Price + 29 + 29 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of production + true + + + 497 + 65 + 3 + 56 + Recovery Price + Recovery Price + 33 + 33 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price + true + + + 498 + 65 + 3 + 57 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by operating the Power2X + true + + + 499 + 65 + 6 + 58 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Load x Units) + true + + + 500 + 65 + 7 + 59 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service due to maintenance + true + + + 501 + 65 + 7 + 60 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 502 + 65 + 7 + 61 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 503 + 65 + 7 + 62 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 504 + 65 + 7 + 63 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 505 + 65 + 7 + 64 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 506 + 65 + 7 + 65 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 507 + 65 + 8 + 66 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 508 + 65 + 8 + 67 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Load x Units Built) + true + + + 509 + 65 + 8 + 68 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 510 + 65 + 8 + 69 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 511 + 65 + 8 + 70 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 512 + 65 + 8 + 71 + Levelized Cost + Levelized Cost + 29 + 29 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of the commodity produced + true + + + 513 + 65 + 12 + 72 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 514 + 65 + 12 + 73 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 515 + 65 + 12 + 74 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 516 + 80 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of BESS units installed + true + + + 517 + 80 + 3 + 2 + Energy + Energy + 3 + 3 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored in the BESS + true + + + 518 + 80 + 3 + 3 + SoC + SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1660 + 1660 + State of Charge + true + + + 519 + 80 + 3 + 4 + Available SoC + Available SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1661 + 1661 + SoC less minimum SoC + true + + + 520 + 80 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + generation (battery discharge) + true + + + 521 + 80 + 3 + 6 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + load (battery recharge) + true + + + 522 + 80 + 3 + 7 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 523 + 80 + 3 + 8 + Charging + Charging + 1 + 2 + true + true + false + false + true + false + true + true + 2113 + 2113 + Charge rate/energy + true + + + 524 + 80 + 3 + 9 + Discharging + Discharging + 1 + 2 + true + true + false + false + true + false + true + true + 2114 + 2114 + Discharge rate/energy + true + + + 525 + 80 + 3 + 10 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Total recharge and discharge losses + true + + + 526 + 80 + 3 + 11 + Self Discharge Losses + Self Discharge Losses + 25 + 24 + true + true + false + false + true + false + true + true + 2711 + 2711 + Losses due to self-discharge + true + + + 527 + 80 + 3 + 12 + Total Losses + Total Losses + 1 + 2 + true + true + false + false + true + false + true + true + 2712 + 2712 + Sum of self discharge, recharge and discharge losses. + true + + + 528 + 80 + 3 + 13 + Hours Charging + Hours Charging + 6 + 6 + true + true + false + false + true + false + true + true + 1662 + 1662 + Number of hours in charging state + true + + + 529 + 80 + 3 + 14 + Hours Discharging + Hours Discharging + 6 + 6 + true + true + false + false + true + false + true + true + 1663 + 1663 + Number of hours in discharging state + true + + + 530 + 80 + 3 + 15 + Hours Idle + Hours Idle + 6 + 6 + true + true + false + false + true + false + true + true + 1664 + 1664 + Number of hours in idle state + true + + + 531 + 80 + 3 + 16 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 532 + 80 + 3 + 17 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 533 + 80 + 3 + 18 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 534 + 80 + 3 + 19 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 535 + 80 + 3 + 20 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 536 + 80 + 3 + 21 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 537 + 80 + 3 + 22 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 538 + 80 + 3 + 23 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operations and maintenance cost + true + + + 539 + 80 + 3 + 24 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 540 + 80 + 3 + 25 + Capacity Factor + Capacity Factor + 12 + 12 + false + true + false + false + true + false + true + true + 58 + 58 + Proportion of battery discharge capacity utilized + true + + + 541 + 80 + 3 + 26 + Load Factor + Load Factor + 12 + 12 + false + true + false + false + true + false + true + true + 876 + 876 + Proportion of battery recharge load utilized + true + + + 542 + 80 + 3 + 27 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 543 + 80 + 3 + 28 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by load + true + + + 544 + 80 + 3 + 29 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Generation revenue + true + + + 545 + 80 + 3 + 30 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Load cost + true + + + 546 + 80 + 3 + 31 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 547 + 80 + 3 + 32 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 548 + 80 + 3 + 33 + Offer Base + Offer Base + 1 + 2 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for incr/decr style offer + true + + + 549 + 80 + 3 + 34 + Offer No Load Cost + Offer No Load Cost + 48 + 48 + true + false + false + false + true + false + true + true + 568 + 568 + Fixed dispatch cost component of generator offer. + true + + + 550 + 80 + 3 + 35 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band + true + + + 551 + 80 + 3 + 36 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 552 + 80 + 3 + 37 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 553 + 80 + 3 + 38 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 554 + 80 + 3 + 39 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 555 + 80 + 3 + 40 + Bid Base + Bid Base + 1 + 2 + true + true + false + false + true + false + true + true + 2547 + 2547 + Base load for balancing bid + true + + + 556 + 80 + 3 + 41 + Bid Quantity + Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 34 + 34 + Load bid quantity in band + true + + + 557 + 80 + 3 + 42 + Bid Price + Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 33 + 33 + Bid price of load in band + true + + + 558 + 80 + 3 + 43 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Quantity cleared in load bid band + true + + + 559 + 80 + 3 + 44 + Cleared Bid Price + Cleared Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal load bid band + true + + + 560 + 80 + 3 + 45 + Cleared Bid Cost + Cleared Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2551 + 2551 + Area cleared under the Battery bid curve + true + + + 561 + 80 + 3 + 46 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 562 + 80 + 3 + 47 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit + true + + + 563 + 80 + 3 + 48 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Marginal value of energy held in storage + true + + + 564 + 80 + 3 + 49 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before mark-up models + true + + + 565 + 80 + 3 + 50 + Shadow Load + Shadow Load + 1 + 2 + true + true + false + false + true + false + true + true + 1142 + 1142 + Load before mark-up models + true + + + 566 + 80 + 3 + 51 + Shadow Generation Revenue + Shadow Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2690 + 2690 + Generation revenue before mark-up models + true + + + 567 + 80 + 3 + 52 + Shadow Cost to Load + Shadow Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 1141 + 1141 + Cost to load before mark-up models + true + + + 568 + 80 + 3 + 53 + Shadow Price Received + Shadow Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 400 + 400 + Price received before uplift or mark-up models + true + + + 569 + 80 + 3 + 54 + Shadow Price Paid + Shadow Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 2691 + 2691 + Price paid before uplift or mark-up models + true + + + 570 + 80 + 3 + 55 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 571 + 80 + 3 + 56 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint applied to this Battery + true + + + 572 + 80 + 3 + 57 + Scheduled Generation + Scheduled Generation + 1 + 2 + true + true + false + false + false + false + true + true + 721 + 721 + Generation in the unconstrained schedule (uniform pricing only) + true + + + 573 + 80 + 3 + 58 + Scheduled Revenue + Scheduled Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 724 + 724 + Revenue from scheduled generation (uniform pricing only) + true + + + 574 + 80 + 3 + 59 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 575 + 80 + 3 + 60 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 576 + 80 + 3 + 61 + Undispatched Generation Capacity + Undispatched Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2855 + 2855 + Generation (discharging) capacity undispatched + true + + + 577 + 80 + 3 + 62 + Undispatched Load Capacity + Undispatched Load Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2856 + 2856 + Charging (load) capacity undispatched + true + + + 578 + 80 + 3 + 63 + Unused Generation Capacity + Unused Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2857 + 2857 + Unused generation capacity (Max Power x Units - Generation) + true + + + 579 + 80 + 3 + 64 + Unused Load Capacity + Unused Load Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2858 + 2858 + Unused load capacity (Max Load x Units - Load) + true + + + 580 + 80 + 3 + 65 + Energy Target Violation + Energy Target Violation + 3 + 3 + true + true + false + false + true + false + true + true + 2964 + 2964 + Violation of the [Energy Target] constraint. + true + + + 581 + 80 + 3 + 66 + Energy Target Violation Cost + Energy Target Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2965 + 2965 + Cost of [Energy Target] constraint violations. + true + + + 582 + 80 + 3 + 67 + Non-physical Charge Adjustments + Non-physical Charge Adjustments + 25 + 24 + true + true + false + false + true + false + true + true + 2872 + 2872 + Non-physical charge adjustments required to maintain feasible states of charge. + true + + + 583 + 80 + 3 + 68 + Non-physical Discharge Adjustments + Non-physical Discharge Adjustments + 25 + 24 + true + true + false + false + true + false + true + true + 2873 + 2873 + Non-physical discharge adjustments required to maintain feasible states of charge. + true + + + 584 + 80 + 6 + 69 + Installed Capacity + Installed Capacity + 3 + 3 + true + true + false + false + true + true + true + true + 320 + 320 + Installed battery capacity + true + + + 585 + 80 + 6 + 70 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Installed generation capacity + true + + + 586 + 80 + 6 + 71 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Contribution of the battery generation to capacity reserves + true + + + 587 + 80 + 7 + 72 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 588 + 80 + 7 + 73 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 589 + 80 + 7 + 74 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 590 + 80 + 7 + 75 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 591 + 80 + 7 + 76 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 592 + 80 + 7 + 77 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 593 + 80 + 7 + 78 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Power lost to forced outage + true + + + 594 + 80 + 7 + 79 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 595 + 80 + 7 + 80 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 596 + 80 + 8 + 81 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of BESS units built in this year + true + + + 597 + 80 + 8 + 82 + Capacity Built + Capacity Built + 3 + 3 + true + true + false + false + true + false + false + false + 54 + 54 + Battery capacity built + true + + + 598 + 80 + 8 + 83 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 599 + 80 + 8 + 84 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a BESS unit + true + + + 600 + 80 + 8 + 85 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 601 + 80 + 8 + 86 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of BESS units retired in this year + true + + + 602 + 80 + 8 + 87 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a BESS unit + true + + + 603 + 80 + 8 + 88 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 604 + 80 + 12 + 89 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 605 + 80 + 12 + 90 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 606 + 80 + 12 + 91 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 607 + 83 + 3 + 1 + Distribution Factor + Distribution Factor + 0 + 0 + true + true + false + false + false + false + false + true + 2713 + 2713 + Proportion of battery charge and discharge at the node + false + + + 608 + 85 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + generation (battery discharge) + true + + + 609 + 85 + 3 + 2 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + load (battery recharge) + true + + + 610 + 85 + 3 + 3 + Energy + Energy + 3 + 3 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored in the BESS + true + + + 611 + 85 + 3 + 4 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 612 + 85 + 3 + 5 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Total recharge and discharge losses + true + + + 613 + 85 + 3 + 6 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 614 + 85 + 3 + 7 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 615 + 85 + 3 + 8 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 616 + 85 + 3 + 9 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 617 + 85 + 3 + 10 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 618 + 85 + 3 + 11 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 619 + 85 + 3 + 12 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operations and maintenance cost + true + + + 620 + 85 + 3 + 13 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 621 + 85 + 3 + 14 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 622 + 85 + 3 + 15 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Generation revenue + true + + + 623 + 85 + 3 + 16 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Load cost + true + + + 624 + 85 + 3 + 17 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 625 + 85 + 3 + 18 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 626 + 85 + 3 + 19 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 627 + 85 + 6 + 20 + Installed Capacity + Installed Capacity + 3 + 3 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 628 + 85 + 6 + 21 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Installed generation capacity + true + + + 629 + 85 + 6 + 22 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Contribution of the battery generation to capacity reserves + true + + + 630 + 85 + 8 + 23 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of BESS units built in this year + true + + + 631 + 85 + 8 + 24 + Capacity Built + Capacity Built + 3 + 3 + true + true + false + false + true + false + false + false + 54 + 54 + Battery capacity built + true + + + 632 + 85 + 8 + 25 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 633 + 85 + 8 + 26 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a BESS unit + true + + + 634 + 85 + 8 + 27 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 635 + 85 + 8 + 28 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of BESS units retired in this year + true + + + 636 + 85 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a BESS unit + true + + + 637 + 89 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Capacity sold to market + true + + + 638 + 89 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from capacity market + true + + + 639 + 89 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 640 + 89 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 641 + 93 + 3 + 1 + Max Volume + Max Volume + 24 + 24 + true + true + false + false + true + false + true + true + 466 + 466 + Maximum volume + true + + + 642 + 93 + 3 + 2 + Min Volume + Min Volume + 24 + 24 + true + true + false + false + true + false + true + true + 510 + 510 + Minimum volume + true + + + 643 + 93 + 3 + 3 + Initial Volume + Initial Volume + 24 + 24 + true + true + false + false + true + false + true + true + 318 + 318 + Storage volume at the start of the period + true + + + 644 + 93 + 3 + 4 + End Volume + End Volume + 24 + 24 + true + true + false + false + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 645 + 93 + 3 + 5 + Initial Level + Initial Level + 23 + 23 + true + true + false + false + true + false + true + true + 316 + 316 + Initial level + true + + + 646 + 93 + 3 + 6 + End Level + End Level + 23 + 23 + true + true + false + false + true + false + true + true + 169 + 169 + Storage level at the end of the period + true + + + 647 + 93 + 3 + 7 + Hours Full + Hours Full + 6 + 6 + true + true + false + false + true + false + true + true + 1710 + 1710 + Number of hours the storage is full + true + + + 648 + 93 + 3 + 8 + Working Volume + Working Volume + 24 + 24 + true + true + false + true + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 649 + 93 + 3 + 9 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization on end volume + true + + + 650 + 93 + 3 + 10 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 651 + 93 + 3 + 11 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 652 + 93 + 3 + 12 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 653 + 93 + 3 + 13 + Inflow + Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 312 + 312 + Inflow + true + + + 654 + 93 + 3 + 14 + Release + Release + 25 + 24 + true + true + false + false + true + false + true + true + 676 + 676 + Total releases from storage + true + + + 655 + 93 + 3 + 15 + Natural Inflow + Natural Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 530 + 530 + Rate of natural inflow + true + + + 656 + 93 + 3 + 16 + Generator Release + Generator Release + 25 + 24 + true + true + false + false + true + false + true + true + 250 + 250 + Release for generation + true + + + 657 + 93 + 3 + 17 + Downstream Release + Downstream Release + 25 + 24 + true + true + false + false + true + false + true + true + 154 + 154 + Release downstream via waterways + true + + + 658 + 93 + 3 + 18 + Spill + Spill + 25 + 24 + true + true + false + false + true + false + true + true + 758 + 758 + Spill to "the sea" + true + + + 659 + 93 + 3 + 19 + Spill Cost + Spill Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2655 + 2655 + Spill Penalty multiplied by the Spill amount + true + + + 660 + 93 + 3 + 20 + Loss + Loss + 25 + 24 + true + true + false + false + true + false + true + true + 372 + 372 + Loss due to evaporation, leakage, etc + true + + + 661 + 93 + 3 + 21 + Inflow Rate + Inflow Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1875 + 1875 + Inflow + true + + + 662 + 93 + 3 + 22 + Release Rate + Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1876 + 1876 + Total releases from storage + true + + + 663 + 93 + 3 + 23 + Natural Inflow Rate + Natural Inflow Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1877 + 1877 + Rate of natural inflow + true + + + 664 + 93 + 3 + 24 + Generator Release Rate + Generator Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1878 + 1878 + Release for generation + true + + + 665 + 93 + 3 + 25 + Downstream Release Rate + Downstream Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1879 + 1879 + Release downstream via waterways + true + + + 666 + 93 + 3 + 26 + Spill Rate + Spill Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1880 + 1880 + Spill to "the sea" + true + + + 667 + 93 + 3 + 27 + Downstream Efficiency + Downstream Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 153 + 153 + Aggregate efficiency of generation down the river chain + true + + + 668 + 93 + 3 + 28 + Max Potential Energy + Max Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2615 + 2615 + Potential energy of storage at max volume + true + + + 669 + 93 + 3 + 29 + Min Potential Energy + Min Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2616 + 2616 + Potential energy of storage at min volume + true + + + 670 + 93 + 3 + 30 + Initial Potential Energy + Initial Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2617 + 2617 + Potential energy of initial volume + true + + + 671 + 93 + 3 + 31 + End Potential Energy + End Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 1659 + 1659 + Potential energy of end volume + true + + + 672 + 93 + 3 + 32 + Inflow Energy + Inflow Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2583 + 2583 + Potential energy of inflows + true + + + 673 + 93 + 3 + 33 + Release Energy + Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2584 + 2584 + Potential energy of releases + true + + + 674 + 93 + 3 + 34 + Natural Inflow Energy + Natural Inflow Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2585 + 2585 + Potential energy of natural inflows + true + + + 675 + 93 + 3 + 35 + Generator Release Energy + Generator Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2586 + 2586 + Potential energy of generator releases + true + + + 676 + 93 + 3 + 36 + Downstream Release Energy + Downstream Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2587 + 2587 + Potential energy of downstream releases + true + + + 677 + 93 + 3 + 37 + Spill Energy + Spill Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2588 + 2588 + Potential energy of spill to "the sea" + true + + + 678 + 93 + 3 + 38 + Shadow Price + Shadow Price + 46 + 46 + true + true + false + false + true + false + true + true + 742 + 742 + Marginal value of water held in storage + true + + + 679 + 93 + 3 + 39 + Marginal Value + Marginal Value + 33 + 33 + true + true + false + false + true + false + true + true + 406 + 406 + Marginal energy value of water held in storage + true + + + 680 + 93 + 3 + 40 + Marginal Cost + Marginal Cost + 33 + 33 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal energy cost of water released from the storage + true + + + 681 + 93 + 3 + 41 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation from exporting generators + true + + + 682 + 93 + 3 + 42 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by exporting generators running in pumping mode + true + + + 683 + 93 + 3 + 43 + Efficiency + Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of generation + true + + + 684 + 93 + 3 + 44 + Max Volume Violation + Max Volume Violation + 3 + 2 + true + true + false + false + true + false + true + true + 2718 + 2718 + Violation of the Max Volume constraint + true + + + 685 + 93 + 3 + 45 + Max Volume Violation Cost + Max Volume Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2719 + 2719 + Cost of Max Volume constraint violations + true + + + 686 + 93 + 3 + 46 + Min Volume Violation + Min Volume Violation + 3 + 2 + true + true + false + false + true + false + true + true + 2720 + 2720 + Violation of the Min Volume constraint + true + + + 687 + 93 + 3 + 47 + Min Volume Violation Cost + Min Volume Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2721 + 2721 + Cost of Min Volume constraint violations + true + + + 688 + 93 + 3 + 48 + Min Release Violation + Min Release Violation + 25 + 24 + true + true + false + false + true + false + true + true + 1949 + 1949 + Violation of the [Min Release] constraint. + true + + + 689 + 93 + 3 + 49 + Min Release Violation Hours + Min Release Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1950 + 1950 + Number of hours the [Min Release] constraint is violated. + true + + + 690 + 93 + 3 + 50 + Min Release Violation Cost + Min Release Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1951 + 1951 + Cost of [Min Release] constraint violations. + true + + + 691 + 93 + 3 + 51 + Max Release Violation + Max Release Violation + 25 + 24 + true + true + false + false + true + false + true + true + 1952 + 1952 + Violation of the [Max Release] and [Max Generator Release] constraint. + true + + + 692 + 93 + 3 + 52 + Max Release Violation Hours + Max Release Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1953 + 1953 + Number of hours the [Max Release] or [Max Generator Release] constraint is violated. + true + + + 693 + 93 + 3 + 53 + Max Release Violation Cost + Max Release Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1954 + 1954 + Cost of [Max Release] and [Max Generator Release] constraint violations. + true + + + 694 + 93 + 3 + 54 + Ramp + Ramp + 24 + 24 + true + true + false + false + true + false + true + true + 655 + 655 + Change in storage end volume. + true + + + 695 + 93 + 3 + 55 + Ramp Price + Ramp Price + 46 + 46 + true + true + false + false + true + false + true + true + 659 + 659 + Incremental value of additional ramping capability. + true + + + 696 + 93 + 3 + 56 + Ramp Violation + Ramp Violation + 24 + 24 + true + true + false + false + true + false + true + true + 661 + 661 + Violation of the [Max Ramp] constraint. + true + + + 697 + 93 + 3 + 57 + Ramp Violation Hours + Ramp Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1065 + 1065 + Number of hours the [Max Ramp] constraint is violated. + true + + + 698 + 93 + 3 + 58 + Ramp Violation Cost + Ramp Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1066 + 1066 + Cost of [Max Ramp] constraint violations. + true + + + 699 + 93 + 3 + 59 + Target Violation + Target Violation + 24 + 24 + true + true + false + false + true + false + true + true + 1188 + 1188 + Violation of the [Target] constraint. + true + + + 700 + 93 + 3 + 60 + Target Violation Cost + Target Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1189 + 1189 + Cost of [Target] constraint violations. + true + + + 701 + 93 + 3 + 61 + Non-physical Inflow + Non-physical Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 1067 + 1067 + Non-physical inflow required to maintain feasible storage volumes. + true + + + 702 + 93 + 3 + 62 + Non-physical Spill + Non-physical Spill + 25 + 24 + true + true + false + false + true + false + true + true + 1068 + 1068 + Non-physical spill required to maintain feasible storage volumes. + true + + + 703 + 93 + 12 + 63 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 704 + 93 + 12 + 64 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 705 + 93 + 12 + 65 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 706 + 101 + 3 + 1 + Flow + Flow + 25 + 24 + true + true + false + false + true + false + true + true + 205 + 205 + Flow on waterway + true + + + 707 + 101 + 3 + 2 + Max Flow + Max Flow + 25 + 25 + true + true + false + false + true + false + true + true + 429 + 429 + Maximum flow limit + true + + + 708 + 101 + 3 + 3 + Min Flow + Min Flow + 25 + 25 + true + true + false + false + true + false + true + true + 481 + 481 + Minimum flow limit + true + + + 709 + 101 + 3 + 4 + Hours Flowing + Hours Flowing + 6 + 6 + true + true + false + false + true + false + true + true + 1711 + 1711 + Number of hours the waterway is flowing + true + + + 710 + 101 + 3 + 5 + Shadow Price + Shadow Price + 54 + 54 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price on max flow constraint + true + + + 711 + 101 + 3 + 6 + Max Flow Violation Hours + Max Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1069 + 1069 + Number of hours the [Max Flow] limit is violated. + true + + + 712 + 101 + 3 + 7 + Max Flow Violation + Max Flow Violation + 25 + 24 + true + true + false + false + true + false + true + true + 430 + 430 + Violation of max flow constraint + true + + + 713 + 101 + 3 + 8 + Max Flow Violation Cost + Max Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1073 + 1073 + Cost of [Max Flow] violations. + true + + + 714 + 101 + 3 + 9 + Min Flow Violation Hours + Min Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1071 + 1071 + Number of hours the [Min Flow] limit is violated. + true + + + 715 + 101 + 3 + 10 + Min Flow Violation + Min Flow Violation + 25 + 24 + true + true + false + false + true + false + true + true + 482 + 482 + Violation of min flow constraint + true + + + 716 + 101 + 3 + 11 + Min Flow Violation Cost + Min Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1074 + 1074 + Cost of [Min Flow] violations. + true + + + 717 + 101 + 3 + 12 + Ramp + Ramp + 25 + 24 + true + true + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 718 + 101 + 3 + 13 + Max Ramp + Max Ramp + 25 + 25 + true + false + false + false + true + false + true + true + 446 + 446 + Maximum change in flow (MW or cumecs per hour) + true + + + 719 + 101 + 3 + 14 + Ramp Violation Hours + Ramp Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1065 + 1065 + Number of hours the [Max Ramp] constraint is violated. + true + + + 720 + 101 + 3 + 15 + Ramp Violation + Ramp Violation + 25 + 24 + true + true + false + false + true + false + true + true + 661 + 661 + Violation of flow ramp constraint + true + + + 721 + 101 + 3 + 16 + Ramp Violation Cost + Ramp Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1066 + 1066 + Cost of [Max Ramp] constraint violations. + true + + + 722 + 101 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 723 + 101 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 724 + 101 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 725 + 108 + 3 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission + true + + + 726 + 108 + 3 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 727 + 108 + 3 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 728 + 108 + 3 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 729 + 108 + 3 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 730 + 108 + 3 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 731 + 108 + 3 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 732 + 108 + 3 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 733 + 108 + 3 + 9 + Price + Price + 30 + 30 + true + true + false + false + true + false + true + true + 612 + 612 + Price charged per unit of emission (accounting only) + true + + + 734 + 108 + 3 + 10 + Shadow Price + Shadow Price + 30 + 30 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price (marginal cost) of emissions + true + + + 735 + 108 + 3 + 11 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of emissions charged at "Price" (if defined, otherwise at "Shadow Price") + true + + + 736 + 108 + 3 + 12 + Max Production Violation + Max Production Violation + 19 + 20 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] constraints. + true + + + 737 + 108 + 3 + 13 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] violations. + true + + + 738 + 108 + 12 + 14 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 739 + 108 + 12 + 15 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 740 + 108 + 12 + 16 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 741 + 111 + 1 + 1 + Generation Production + Generation Production + 19 + 20 + true + true + false + true + true + false + true + true + 1606 + 1606 + Net production of the emission from generation + true + + + 742 + 111 + 1 + 2 + Unit Start Production + Unit Start Production + 19 + 20 + true + true + false + true + true + false + true + true + 1607 + 1607 + Net production of the emission from unit start up + true + + + 743 + 111 + 1 + 3 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 744 + 111 + 1 + 4 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 745 + 111 + 1 + 5 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 746 + 111 + 1 + 6 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Incremental cost of emissions abatement + true + + + 747 + 111 + 1 + 7 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 748 + 111 + 1 + 8 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 749 + 111 + 1 + 9 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 750 + 111 + 1 + 10 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 751 + 111 + 1 + 11 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 752 + 111 + 1 + 12 + Incremental Production Rate + Incremental Production Rate + 40 + 40 + true + true + false + false + true + false + true + true + 1626 + 1626 + Incremental rate of emission production by the generator + true + + + 753 + 111 + 1 + 13 + Incremental Cost + Incremental Cost + 33 + 33 + true + true + false + false + true + false + true + true + 918 + 918 + Incremental cost of the emission to the generator + true + + + 754 + 111 + 1 + 14 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Effective SRMC of generation including emission shadow price + true + + + 755 + 112 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 756 + 112 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 757 + 112 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 758 + 112 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 759 + 112 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 760 + 112 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 761 + 112 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 762 + 112 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 763 + 112 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 764 + 114 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 765 + 114 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Gross production of the emission + true + + + 766 + 114 + 1 + 3 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 767 + 114 + 1 + 4 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Emission abatement cost + true + + + 768 + 114 + 1 + 5 + Field Production Cost + Field Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2776 + 2776 + Gas Field Production emission cost + true + + + 769 + 116 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 770 + 116 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Gross production of the emission + true + + + 771 + 116 + 1 + 3 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 772 + 116 + 1 + 4 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 773 + 120 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission + true + + + 774 + 120 + 1 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 775 + 121 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission by the Vehicle + true + + + 776 + 123 + 3 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission by the Facility + true + + + 777 + 123 + 3 + 2 + Removal + Removal + 19 + 20 + true + true + false + true + true + false + true + true + 1441 + 1441 + Emissions removed by the Facility + true + + + 778 + 124 + 1 + 1 + Sales + Sales + 19 + 20 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 779 + 124 + 1 + 2 + Purchases + Purchases + 19 + 20 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 780 + 124 + 1 + 3 + Net Sales + Net Sales + 19 + 20 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 781 + 124 + 1 + 4 + Net Purchases + Net Purchases + 19 + 20 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 782 + 124 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 783 + 124 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 784 + 124 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 785 + 124 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 786 + 127 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Flag if emission abatement technology is installed + true + + + 787 + 127 + 3 + 2 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 788 + 127 + 3 + 3 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Emission input to the abatement technology + true + + + 789 + 127 + 3 + 4 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 790 + 127 + 3 + 5 + Net Emissions + Net Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1433 + 1433 + Emissions net of abatement + true + + + 791 + 127 + 3 + 6 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of emission abatement + true + + + 792 + 127 + 3 + 7 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost per unit of emission removed + true + + + 793 + 127 + 3 + 8 + Running Cost + Running Cost + 14 + 34 + true + true + false + true + true + false + true + true + 978 + 978 + Fixed cost of running emission abatement when generators are on-line + true + + + 794 + 127 + 3 + 9 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 795 + 127 + 3 + 10 + Consumables Cost + Consumables Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1434 + 1434 + Total cost of consumables + true + + + 796 + 127 + 3 + 11 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Total fixed operations and maintenance costs + true + + + 797 + 127 + 3 + 12 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed, semi-fixed and variable costs + true + + + 798 + 127 + 3 + 13 + Abatement Value + Abatement Value + 14 + 34 + true + true + false + true + true + false + true + true + 1435 + 1435 + Value of emissions abated + true + + + 799 + 127 + 3 + 14 + Abatement Net Cost + Abatement Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1436 + 1436 + Net of [Total Cost] and [Abatement Value] + true + + + 800 + 127 + 7 + 15 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Flag if emission abatement technology is out-of-service + true + + + 801 + 127 + 12 + 16 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 802 + 127 + 12 + 17 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 803 + 127 + 12 + 18 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 804 + 131 + 3 + 1 + Consumption + Consumption + 17 + 18 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumable used + true + + + 805 + 131 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of consumable used + true + + + 806 + 132 + 3 + 1 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Emission input to the abatement technology for this emission + true + + + 807 + 132 + 3 + 2 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated for this emission + true + + + 808 + 132 + 3 + 3 + Net Emissions + Net Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1433 + 1433 + Emissions net of abatement for this emission + true + + + 809 + 132 + 3 + 4 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of emission abatement for this emission + true + + + 810 + 132 + 3 + 5 + Abatement Value + Abatement Value + 14 + 34 + true + true + false + true + true + false + true + true + 1435 + 1435 + Value of emissions abated for this emission + true + + + 811 + 140 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation on physical contract + true + + + 812 + 140 + 3 + 2 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load on physical contract + true + + + 813 + 140 + 3 + 3 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 814 + 140 + 3 + 4 + Capacity Factor + Capacity Factor + 12 + 12 + false + true + false + false + true + false + true + true + 58 + 58 + Proportion of generation capacity utilized + true + + + 815 + 140 + 3 + 5 + Load Factor + Load Factor + 12 + 12 + false + true + false + false + true + false + true + true + 876 + 876 + Proportion of load obligation serviced + true + + + 816 + 140 + 3 + 6 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 817 + 140 + 3 + 7 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by load + true + + + 818 + 140 + 3 + 8 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of cleared generation offers + true + + + 819 + 140 + 3 + 9 + Load Revenue + Load Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 357 + 357 + Revenue from cleared load bids + true + + + 820 + 140 + 3 + 10 + Net Generation Cost + Net Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 540 + 540 + Net cost of cleared generation offers and load bids + true + + + 821 + 140 + 3 + 11 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Mark-to-market revenue from generation (Price Received * Generation) + true + + + 822 + 140 + 3 + 12 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Mark-to-market cost to load (Price Received × Load) + true + + + 823 + 140 + 3 + 13 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 824 + 140 + 3 + 14 + Fixed Cost + Fixed Cost + 14 + 34 + true + true + false + false + true + false + true + true + 194 + 194 + Fixed cost of contract capacity + true + + + 825 + 140 + 6 + 15 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Contribution of generation to system capacity reserves + true + + + 826 + 140 + 6 + 16 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Load obligation for capacity reserves. + true + + + 827 + 140 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 828 + 140 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 829 + 140 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 830 + 148 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Purchaser load + true + + + 831 + 148 + 3 + 2 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for energy + true + + + 832 + 148 + 3 + 3 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost of energy purchases + true + + + 833 + 148 + 3 + 4 + Bid Quantity + Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 834 + 148 + 3 + 5 + Bid Price + Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 33 + 33 + Value of energy in band + true + + + 835 + 148 + 3 + 6 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 836 + 148 + 3 + 7 + Cleared Bid Price + Cleared Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 837 + 148 + 3 + 8 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 838 + 148 + 3 + 9 + Load Factor + Load Factor + 12 + 12 + true + true + false + false + true + false + true + true + 876 + 876 + Proportion of load bids cleared + true + + + 839 + 148 + 3 + 10 + Max Energy Violation + Max Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1192 + 1192 + Violation of [Max Energy] or [Max Load Factor] constraints. + true + + + 840 + 148 + 3 + 11 + Max Energy Violation Cost + Max Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1193 + 1193 + Cost of [Max Energy] or [Max Load Factor] constraint violations. + true + + + 841 + 148 + 3 + 12 + Min Energy Violation + Min Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1194 + 1194 + Violation of [Min Energy] or [Min Load Factor] constraints. + true + + + 842 + 148 + 3 + 13 + Min Energy Violation Cost + Min Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1195 + 1195 + Cost of [Min Energy] or [Min Load Factor] constraint violations. + true + + + 843 + 148 + 3 + 14 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 844 + 148 + 3 + 15 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 692 + 692 + Revenue earned from interruptible load provision + true + + + 845 + 148 + 6 + 16 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Load obligation for capacity reserves. + true + + + 846 + 148 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 847 + 148 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 848 + 148 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 849 + 156 + 3 + 1 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 850 + 156 + 3 + 2 + Sharing + Sharing + 1 + 2 + true + true + false + false + true + false + true + true + 2882 + 2882 + Reserve provision from other regions/zones + true + + + 851 + 156 + 3 + 3 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Risk + true + + + 852 + 156 + 3 + 4 + Shortage + Shortage + 1 + 2 + true + true + false + false + true + false + true + true + 746 + 746 + Reserve shortfall + true + + + 853 + 156 + 3 + 5 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage. + true + + + 854 + 156 + 3 + 6 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1076 + 1076 + Cost of Reserve Shortage. + true + + + 855 + 156 + 3 + 7 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 856 + 156 + 3 + 8 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 857 + 156 + 3 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Reserve cost paid to reserve providers + true + + + 858 + 156 + 3 + 10 + Price + Price + 32 + 32 + true + true + false + false + true + false + true + true + 612 + 612 + Price + true + + + 859 + 156 + 3 + 11 + Time-weighted Price + Time-weighted Price + 29 + 29 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price of reserve. + true + + + 860 + 156 + 3 + 12 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Total available reserve response + true + + + 861 + 156 + 12 + 13 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 862 + 156 + 12 + 14 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 863 + 156 + 12 + 15 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 864 + 159 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 865 + 159 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 866 + 159 + 1 + 3 + Spinning Reserve Provision + Spinning Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1310 + 1310 + Reserve provision by spinning reserve + true + + + 867 + 159 + 1 + 4 + Sync Cond Reserve Provision + Sync Cond Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1311 + 1311 + Reserve provision by units in synchronous condenser mode + true + + + 868 + 159 + 1 + 5 + Pump Dispatchable Load Provision + Pump Dispatchable Load Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1312 + 1312 + Reserve provision by pump dispatchable load + true + + + 869 + 159 + 1 + 6 + Non-spinning Reserve Provision + Non-spinning Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1313 + 1313 + Reserve provision by off-line units + true + + + 870 + 159 + 1 + 7 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 871 + 159 + 1 + 8 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 872 + 159 + 1 + 9 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 873 + 160 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Generator contingency to Risk. + true + + + 874 + 160 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Generator contingency constraint. + true + + + 875 + 161 + 1 + 1 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Reserve cost allocated + true + + + 876 + 162 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 877 + 162 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 878 + 162 + 1 + 3 + Revenue + Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 879 + 163 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 880 + 163 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 881 + 163 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 882 + 163 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 883 + 163 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 884 + 164 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Battery contingency to Risk. + true + + + 885 + 164 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Battery contingency constraint. + true + + + 886 + 165 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 887 + 165 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve + true + + + 888 + 165 + 1 + 3 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 889 + 165 + 1 + 4 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 890 + 165 + 1 + 5 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 891 + 165 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Reserve cost + true + + + 892 + 167 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Region load to the Risk + true + + + 893 + 168 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Zone load to the Risk + true + + + 894 + 169 + 1 + 1 + Sharing + Sharing + 1 + 2 + true + true + false + false + true + false + true + true + 2882 + 2882 + Amount of reserve shared on the line + true + + + 895 + 170 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Line contingency to Risk. + true + + + 896 + 170 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Line contingency constraint. + true + + + 897 + 171 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Reserve sold into the market + true + + + 898 + 171 + 1 + 2 + Purchases + Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 648 + 648 + Reserve bought from the market + true + + + 899 + 171 + 1 + 3 + Net Sales + Net Sales + 1 + 2 + true + true + false + false + true + false + true + true + 553 + 553 + Net reserve sold into the market + true + + + 900 + 171 + 1 + 4 + Net Purchases + Net Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 549 + 549 + Net reserve purchases from the market + true + + + 901 + 171 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from reserve sales in the market + true + + + 902 + 171 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of reserve purchases from the market + true + + + 903 + 171 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue from reserve sales in the market + true + + + 904 + 171 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net cost of reserve purchases from the market + true + + + 905 + 175 + 1 + 1 + Firm Capacity Contribution + Firm Capacity Contribution + 1 + 1 + true + true + true + false + true + false + true + true + 2161 + 2161 + Firm Capacity Contribution + true + + + 906 + 175 + 12 + 2 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to a solution. + true + + + 907 + 175 + 12 + 3 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to a solution + true + + + 908 + 175 + 12 + 4 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to a solution + true + + + 909 + 180 + 1 + 1 + Quantity + Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 650 + 650 + Contract quantity + true + + + 910 + 180 + 1 + 2 + Floor Price + Floor Price + 33 + 33 + true + true + false + false + true + false + true + true + 204 + 204 + Contract floor price + true + + + 911 + 180 + 1 + 3 + Cap Price + Cap Price + 33 + 33 + true + true + false + false + true + false + true + true + 53 + 53 + Contract cap price + true + + + 912 + 180 + 1 + 4 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price the contract is settled at + true + + + 913 + 180 + 1 + 5 + Shortfall + Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 1078 + 1078 + Shortfall of generation to meet contract + true + + + 914 + 180 + 1 + 6 + Settlement Quantity + Settlement Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 740 + 740 + Quantity of contract settled + true + + + 915 + 180 + 1 + 7 + Settlement + Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 738 + 738 + Settlement + true + + + 916 + 180 + 1 + 8 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the Financial Contract is active. + true + + + 917 + 185 + 1 + 1 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price the contract is settled at + true + + + 918 + 185 + 1 + 2 + Shortfall + Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 1078 + 1078 + Shortfall of generation to meet contract + true + + + 919 + 185 + 1 + 3 + Settlement Quantity + Settlement Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 740 + 740 + Quantity of contract settled + true + + + 920 + 185 + 1 + 4 + Settlement + Settlement + 14 + 34 + true + true + false + false + true + false + true + true + 738 + 738 + Settlement + true + + + 921 + 189 + 1 + 1 + Elasticity + Elasticity + 56 + 56 + true + true + false + false + false + false + true + true + 1273 + 1273 + Price elasticity of demand + true + + + 922 + 189 + 1 + 2 + Demand Intercept + Demand Intercept + 33 + 33 + true + true + false + false + false + false + true + true + 139 + 139 + Demand function vertical intercept + true + + + 923 + 189 + 1 + 3 + Demand Slope + Demand Slope + 56 + 56 + true + true + false + false + false + false + true + true + 142 + 142 + Long-run demand function slope + true + + + 924 + 189 + 1 + 4 + Perfect Competition Demand + Perfect Competition Demand + 1 + 2 + true + true + false + false + false + false + true + true + 1405 + 1405 + Demand in the perfect competition solution + true + + + 925 + 189 + 1 + 5 + Perfect Competition Production + Perfect Competition Production + 1 + 2 + true + true + false + false + false + false + true + true + 1413 + 1413 + Production in the perfect competition solution + true + + + 926 + 189 + 1 + 6 + Perfect Competition Net Import + Perfect Competition Net Import + 1 + 2 + true + true + false + false + false + false + true + true + 1408 + 1408 + Net import in the perfect competition solution + true + + + 927 + 189 + 1 + 7 + Perfect Competition Price + Perfect Competition Price + 33 + 33 + true + true + false + false + false + false + true + true + 1406 + 1406 + Price in the perfect competition solution + true + + + 928 + 189 + 1 + 8 + Perfect Competition Producer Revenue + Perfect Competition Producer Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 1414 + 1414 + Producer revenue in the perfect competition solution + true + + + 929 + 189 + 1 + 9 + Perfect Competition Consumer Surplus + Perfect Competition Consumer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1411 + 1411 + Consumer surplus in the perfect competition solution + true + + + 930 + 189 + 1 + 10 + Perfect Competition Producer Surplus + Perfect Competition Producer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1412 + 1412 + Producer surplus in the perfect competition solution + true + + + 931 + 189 + 1 + 11 + Demand + Demand + 1 + 2 + true + true + false + false + false + false + true + true + 133 + 133 + Demand in the Nash-Cournot equilibrium solution + true + + + 932 + 189 + 1 + 12 + Production + Production + 1 + 2 + true + true + false + false + false + false + true + true + 624 + 624 + Production in the Nash-Cournot equilibrium solution + true + + + 933 + 189 + 1 + 13 + Net Import + Net Import + 1 + 2 + true + true + false + false + false + false + true + true + 1407 + 1407 + Net import in the Nash-Cournot equilibrium solution + true + + + 934 + 189 + 1 + 14 + Price + Price + 33 + 33 + true + true + false + false + false + false + true + true + 612 + 612 + Price in the Nash-Cournot equilibrium solution + true + + + 935 + 189 + 1 + 15 + Producer Revenue + Producer Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 1415 + 1415 + Producer revenue in the Nash-Cournot equilibrium solution + true + + + 936 + 189 + 1 + 16 + Consumer Surplus + Consumer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1409 + 1409 + Consumer surplus in the Nash-Cournot equilibrium solution + true + + + 937 + 189 + 1 + 17 + Producer Surplus + Producer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1410 + 1410 + Producer surplus in the Nash-Cournot equilibrium solution + true + + + 938 + 193 + 1 + 1 + RSI + RSI + 0 + 0 + true + false + false + false + true + false + true + true + 712 + 712 + Residual Supply Index + true + + + 939 + 193 + 1 + 2 + Utility Generation + Utility Generation + 1 + 1 + true + false + false + false + true + false + true + true + 839 + 839 + Utility Generation + true + + + 940 + 193 + 1 + 3 + Utility Available Capacity + Utility Available Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 837 + 837 + Utility Available Capacity + true + + + 941 + 193 + 1 + 4 + Non Utility Generation + Non Utility Generation + 1 + 1 + true + false + false + false + true + false + true + true + 561 + 561 + Non Utility Generation + true + + + 942 + 193 + 1 + 5 + Non Utility Available Capacity + Non Utility Available Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 559 + 559 + Non Utility Available Capacity + true + + + 943 + 193 + 1 + 6 + Non Utility Contract Volume + Non Utility Contract Volume + 1 + 1 + true + false + false + false + true + false + true + true + 560 + 560 + Non Utility Contract Volume + true + + + 944 + 193 + 1 + 7 + Total Internal Capacity + Total Internal Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 791 + 791 + Total Internal Capacity + true + + + 945 + 193 + 1 + 8 + Total Import Capacity + Total Import Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 790 + 790 + Total Import Capacity + true + + + 946 + 193 + 1 + 9 + Total Supply Capacity + Total Supply Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 793 + 793 + Total Supply Capacity (Total Internal Capacity + Total Import Capacity) + true + + + 947 + 193 + 1 + 10 + Largest Suppliers Capacity + Largest Suppliers Capacity + 0 + 0 + true + false + false + false + true + false + true + true + 342 + 342 + Largest Supplier's Capacity + true + + + 948 + 193 + 1 + 11 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 288 + 288 + Import Capacity + true + + + 949 + 193 + 1 + 12 + Demand + Demand + 0 + 0 + true + false + false + false + true + false + true + true + 133 + 133 + Demand + true + + + 950 + 193 + 1 + 13 + Lerner Index + Lerner Index + 0 + 0 + true + true + false + false + true + false + true + true + 344 + 344 + Lerner Index (P-C)/P + true + + + 951 + 193 + 1 + 14 + Bounded Lerner Index + Bounded Lerner Index + 0 + 0 + true + true + false + false + true + false + true + true + 43 + 43 + Lerner Index (P-C)/P + true + + + 952 + 193 + 1 + 15 + Bid-Cost Mark-up + Bid-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 32 + 32 + Bid-Cost Mark-up (P-C)/C + true + + + 953 + 193 + 1 + 16 + Price-Cost Mark-up + Price-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 614 + 614 + Price-Cost Mark-up (P-C)/C + true + + + 954 + 193 + 1 + 17 + Load Unhedged + Load Unhedged + 0 + 0 + true + false + false + false + true + false + true + true + 360 + 360 + PCT Load Unhedged + true + + + 955 + 193 + 1 + 18 + Load Capacity Ratio + Load Capacity Ratio + 0 + 0 + true + false + false + false + true + false + true + true + 350 + 350 + Ratio of load to the total internal capacity plus import capability + true + + + 956 + 193 + 1 + 19 + Capacity Factor + Capacity Factor + 0 + 0 + true + false + false + false + true + false + true + true + 58 + 58 + Capacity Factor + true + + + 957 + 193 + 1 + 20 + Load Variation + Load Variation + 0 + 0 + true + false + false + false + true + false + true + true + 362 + 362 + Load Variation + true + + + 958 + 193 + 1 + 21 + Summer Period + Summer Period + 0 + 0 + true + false + false + false + true + false + true + true + 768 + 768 + Summer Period Flag + true + + + 959 + 193 + 1 + 22 + Peak Period + Peak Period + 0 + 0 + true + false + false + false + true + false + true + true + 600 + 600 + Peak Period Flag + true + + + 960 + 197 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Supply capacity from the line. + true + + + 961 + 198 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Supply capacity from the interfaces. + true + + + 962 + 199 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Total supply capacity from the company. + true + + + 963 + 199 + 1 + 2 + Bid-Cost Mark-up + Bid-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 32 + 32 + Bid cost mark-up applied to generators in the company + true + + + 964 + 200 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 965 + 200 + 3 + 2 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 966 + 200 + 3 + 3 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load + true + + + 967 + 200 + 3 + 4 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed (or embedded) generation + true + + + 968 + 200 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 969 + 200 + 3 + 6 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 970 + 200 + 3 + 7 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 971 + 200 + 3 + 8 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 972 + 200 + 3 + 9 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 973 + 200 + 3 + 10 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 974 + 200 + 3 + 11 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 975 + 200 + 3 + 12 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 976 + 200 + 3 + 13 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 977 + 200 + 3 + 14 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 978 + 200 + 3 + 15 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 979 + 200 + 3 + 16 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 980 + 200 + 3 + 17 + Heat Plant Load + Heat Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2833 + 2833 + Heat Plant electric load + true + + + 981 + 200 + 3 + 18 + Gas Plant Load + Gas Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2834 + 2834 + Gas Plant electric load + true + + + 982 + 200 + 3 + 19 + Gas Storage Load + Gas Storage Load + 1 + 2 + true + true + false + false + true + false + true + true + 2861 + 2861 + Gas Storage electric load + true + + + 983 + 200 + 3 + 20 + Water Plant Load + Water Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2835 + 2835 + Water Plant electric load + true + + + 984 + 200 + 3 + 21 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 985 + 200 + 3 + 22 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 986 + 200 + 3 + 23 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 987 + 200 + 3 + 24 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 988 + 200 + 3 + 25 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 989 + 200 + 3 + 26 + Facility Generation + Facility Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2844 + 2844 + Generation from connected Facilities + true + + + 990 + 200 + 3 + 27 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 991 + 200 + 3 + 28 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 992 + 200 + 3 + 29 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 993 + 200 + 3 + 30 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 994 + 200 + 3 + 31 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Exports - Imports + true + + + 995 + 200 + 3 + 32 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 996 + 200 + 3 + 33 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 997 + 200 + 3 + 34 + Unserved Energy Hours + Unserved Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 282 + 282 + Number of hours of unserved energy (USE) + true + + + 998 + 200 + 3 + 35 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 999 + 200 + 3 + 36 + Max Unserved Energy + Max Unserved Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2014 + 2014 + Maximum unserved energy + true + + + 1000 + 200 + 3 + 37 + Unserved Energy Factor + Unserved Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2015 + 2015 + Proportion of energy unserved + true + + + 1001 + 200 + 3 + 38 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 1002 + 200 + 3 + 39 + Dump Energy Hours + Dump Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1088 + 1088 + Number of hours of dump energy + true + + + 1003 + 200 + 3 + 40 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1004 + 200 + 3 + 41 + Max Dump Energy + Max Dump Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2909 + 2909 + Maximum dump energy + true + + + 1005 + 200 + 3 + 42 + Dump Energy Factor + Dump Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2921 + 2921 + Proportion of energy dumped + true + + + 1006 + 200 + 3 + 43 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy + true + + + 1007 + 200 + 3 + 44 + Committed Capacity + Committed Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2936 + 2936 + Capacity of committed units + true + + + 1008 + 200 + 3 + 45 + No Cost Generation Capacity + No Cost Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 1165 + 1165 + Capacity available at no cost + true + + + 1009 + 200 + 3 + 46 + Hours Generation Curtailed + Hours Generation Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1166 + 1166 + Number of hours that non-positive-priced generation has been curtailed + true + + + 1010 + 200 + 3 + 47 + Generation Capacity Curtailed + Generation Capacity Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1167 + 1167 + Amount of non-positive-priced generation curtailed + true + + + 1011 + 200 + 3 + 48 + Max Generation Curtailed + Max Generation Curtailed + 1 + 1 + true + true + false + false + true + false + true + true + 2922 + 2922 + Maximum generation curtailed + true + + + 1012 + 200 + 3 + 49 + Generation Curtailment Factor + Generation Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2934 + 2934 + Proportion of generation curtailed + true + + + 1013 + 200 + 3 + 50 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 1014 + 200 + 3 + 51 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 1015 + 200 + 3 + 52 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 1016 + 200 + 3 + 53 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 1017 + 200 + 3 + 54 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 1018 + 200 + 3 + 55 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 1019 + 200 + 3 + 56 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 1020 + 200 + 3 + 57 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of generation that could be unloaded + true + + + 1021 + 200 + 3 + 58 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 1022 + 200 + 3 + 59 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 1023 + 200 + 3 + 60 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 1024 + 200 + 3 + 61 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 1025 + 200 + 3 + 62 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Total variable cost of generation + true + + + 1026 + 200 + 3 + 63 + Generator Pump Cost + Generator Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 249 + 249 + Cost of load to pump storage generators + true + + + 1027 + 200 + 3 + 64 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Cost of generating unit starts and shutdowns + true + + + 1028 + 200 + 3 + 65 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 1029 + 200 + 3 + 66 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1030 + 200 + 3 + 67 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 1031 + 200 + 3 + 68 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 1032 + 200 + 3 + 69 + Generator FO&M Cost + Generator FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 888 + 888 + Total fixed operations and maintenance costs + true + + + 1033 + 200 + 3 + 70 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs (fixed O&amp;M, equity, debt) + true + + + 1034 + 200 + 3 + 71 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Highest short-run marginal cost of running generators + true + + + 1035 + 200 + 3 + 72 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Price + true + + + 1036 + 200 + 3 + 73 + Uplift + Uplift + 33 + 33 + true + true + false + false + true + false + true + true + 826 + 826 + Uplift to uniform price due to no load cost and start costs + true + + + 1037 + 200 + 3 + 74 + Price-Cost Mark-up + Price-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 614 + 614 + Price Cost Mark-up (P-C)/C + true + + + 1038 + 200 + 3 + 75 + Time-weighted Price + Time-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price + true + + + 1039 + 200 + 3 + 76 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load weighted average price + true + + + 1040 + 200 + 3 + 77 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1041 + 200 + 3 + 78 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 1042 + 200 + 3 + 79 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1043 + 200 + 3 + 80 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Total transmission rental + true + + + 1044 + 200 + 3 + 81 + Settlement Surplus + Settlement Surplus + 14 + 34 + true + true + false + true + true + false + true + true + 741 + 741 + Difference between cost to load and generator revenue + true + + + 1045 + 200 + 3 + 82 + Interregional Transmission Losses + Interregional Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 326 + 326 + Total inter-regional losses assigned to region + true + + + 1046 + 200 + 3 + 83 + Intraregional Transmission Losses + Intraregional Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 329 + 329 + Total losses on all intraregional lines + true + + + 1047 + 200 + 3 + 84 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Contract volume + true + + + 1048 + 200 + 3 + 85 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on contracts + true + + + 1049 + 200 + 3 + 86 + Net Cost to Load + Net Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 538 + 538 + Cost to load of their energy purchases net of contracts + true + + + 1050 + 200 + 3 + 87 + DSP Bid Quantity + DSP Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 156 + 156 + Bid quantity for demand-side participation + true + + + 1051 + 200 + 3 + 88 + DSP Bid Price + DSP Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 155 + 155 + Bid price for demand-side participation + true + + + 1052 + 200 + 3 + 89 + DSP Bid Cleared + DSP Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1398 + 1398 + Quantity cleared in demand-side participation bid band + true + + + 1053 + 200 + 3 + 90 + Cleared DSP Bid Price + Cleared DSP Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1400 + 1400 + Price of marginal demand-side participation bid band + true + + + 1054 + 200 + 3 + 91 + Cleared DSP Bid Cost + Cleared DSP Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1401 + 1401 + Value of cleared demand-side participation bids + true + + + 1055 + 200 + 3 + 92 + Cost of Curtailment + Cost of Curtailment + 14 + 34 + true + true + false + true + true + false + true + true + 118 + 118 + Cost of demand-side participation bids cleared + true + + + 1056 + 200 + 3 + 93 + Generator Net Pool Revenue + Generator Net Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 245 + 245 + Generator pool revenue net of contracts and pump load cost + true + + + 1057 + 200 + 3 + 94 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 1058 + 200 + 3 + 95 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 1059 + 200 + 3 + 96 + Generator Net Revenue + Generator Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 247 + 247 + Generator net revenue (producer surplus) + true + + + 1060 + 200 + 3 + 97 + Shadow Load + Shadow Load + 1 + 2 + true + true + false + false + true + false + true + true + 1142 + 1142 + Load before uplift or Competition models. + true + + + 1061 + 200 + 3 + 98 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 1062 + 200 + 3 + 99 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Price before uplift or mark-ups models. + true + + + 1063 + 200 + 3 + 100 + Shadow Cost to Load + Shadow Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 1141 + 1141 + Cost to load of their energy purchases based on [Shadow Price]. + true + + + 1064 + 200 + 3 + 101 + Generator Monopoly Rent + Generator Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 244 + 244 + Generator monopoly rent from competitive bidding + true + + + 1065 + 200 + 3 + 102 + Utility Monopoly Rent + Utility Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 840 + 840 + Generator monopoly rent from competitive bidding + true + + + 1066 + 200 + 3 + 103 + Non-Utility Monopoly Rent + Non-Utility Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 563 + 563 + Generator monopoly rent from competitive bidding + true + + + 1067 + 200 + 3 + 104 + Utility Contract Settlement + Utility Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 838 + 838 + Utility generator contract settlement + true + + + 1068 + 200 + 3 + 105 + Non-Utility Contract Settlement + Non-Utility Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 562 + 562 + Non-utility generator contract settlement + true + + + 1069 + 200 + 3 + 106 + Utility Net Revenue + Utility Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 841 + 841 + Utility generator net revenue (producer surplus) + true + + + 1070 + 200 + 3 + 107 + Non-Utility Net Revenue + Non-Utility Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 564 + 564 + Non-utility generator net revenue (producer surplus) + true + + + 1071 + 200 + 3 + 108 + Constrained On Cost + Constrained On Cost + 14 + 34 + true + true + false + true + true + false + true + true + 93 + 93 + Constrained on cost + true + + + 1072 + 200 + 3 + 109 + Constrained Off Cost + Constrained Off Cost + 14 + 34 + true + true + false + true + true + false + true + true + 91 + 91 + Constrained off cost + true + + + 1073 + 200 + 3 + 110 + Generator Net Profit + Generator Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 246 + 246 + Net profit from generators in region + true + + + 1074 + 200 + 3 + 111 + Net Market Profit + Net Market Profit + 14 + 34 + true + true + false + true + true + false + true + true + 1445 + 1445 + Net profit from all market nodes + true + + + 1075 + 200 + 3 + 112 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1076 + 200 + 3 + 113 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1077 + 200 + 3 + 114 + Net Cost of Exports + Net Cost of Exports + 14 + 34 + true + true + false + true + true + false + true + true + 537 + 537 + Net cost of exports + true + + + 1078 + 200 + 3 + 115 + Wheeling Revenue + Wheeling Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1036 + 1036 + Wheeling revenue on exports from the region + true + + + 1079 + 200 + 3 + 116 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost + true + + + 1080 + 200 + 3 + 117 + Intraregional Transmission Rental + Intraregional Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 330 + 330 + Total transmission rental on intraregional lines + true + + + 1081 + 200 + 3 + 118 + Interregional Transmission Rental + Interregional Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 327 + 327 + Share of interregional transmission rentals + true + + + 1082 + 200 + 3 + 119 + Transmission Control Rental + Transmission Control Rental + 14 + 34 + true + true + false + true + true + false + true + true + 795 + 795 + Rental from penalties on changes in flow control angles and DC line flows + true + + + 1083 + 200 + 3 + 120 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the region. + true + + + 1084 + 200 + 3 + 121 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the region. + true + + + 1085 + 200 + 3 + 122 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange in the region (Financial Exports - Financial Imports). + true + + + 1086 + 200 + 3 + 123 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region. + true + + + 1087 + 200 + 3 + 124 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region. + true + + + 1088 + 200 + 3 + 125 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1089 + 200 + 6 + 126 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + true + + + 1090 + 200 + 6 + 127 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Total installed generation capacity + true + + + 1091 + 200 + 6 + 128 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Region Firm Generation Capacity is based on the Firm Capacity of all the generators in the region. + true + + + 1092 + 200 + 6 + 129 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1093 + 200 + 6 + 130 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1094 + 200 + 6 + 131 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1095 + 200 + 6 + 132 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity from the Region + true + + + 1096 + 200 + 6 + 133 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Total export capacity from the Region + true + + + 1097 + 200 + 6 + 134 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1098 + 200 + 6 + 135 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 1099 + 200 + 6 + 136 + Max Capacity Reserves + Max Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 1100 + 200 + 6 + 137 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1101 + 200 + 6 + 138 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 1102 + 200 + 6 + 139 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 1103 + 200 + 6 + 140 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + true + + + 1104 + 200 + 6 + 141 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1105 + 200 + 6 + 142 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 1106 + 200 + 6 + 143 + Available Capacity Reserves + Available Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 1629 + 1629 + Capacity Reserves based on Available Capacity + true + + + 1107 + 200 + 6 + 144 + Available Capacity Margin + Available Capacity Margin + 12 + 12 + true + true + false + false + true + false + true + true + 1630 + 1630 + Capacity Reserve Margin based on Available Capacity + true + + + 1108 + 200 + 6 + 145 + Dispatchable Capacity + Dispatchable Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 149 + 149 + On-line capacity + true + + + 1109 + 200 + 6 + 146 + Undispatched Capacity + Undispatched Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 803 + 803 + Capacity on-line but undispatched + true + + + 1110 + 200 + 7 + 147 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1111 + 200 + 7 + 148 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + false + true + true + 392 + 392 + Capacity out on maintenance + true + + + 1112 + 200 + 7 + 149 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 1113 + 200 + 7 + 150 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1114 + 200 + 7 + 151 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1115 + 200 + 7 + 152 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + true + true + true + true + 394 + 394 + Maintenance factor + true + + + 1116 + 200 + 7 + 153 + EENS + EENS + 3 + 3 + true + true + false + false + true + true + false + false + 161 + 161 + Expected energy not served (summary type "Sum") + true + + + 1117 + 200 + 7 + 154 + EDNS + EDNS + 1 + 1 + true + true + false + false + true + true + false + false + 160 + 160 + Expected Demand Not Served (summary type "Average") + true + + + 1118 + 200 + 7 + 155 + LOLE + LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 365 + 365 + Number of days of outage (summary type "Sum") + true + + + 1119 + 200 + 7 + 156 + LOLP + LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 366 + 366 + Loss of load probability (summary type "Average") + true + + + 1120 + 200 + 7 + 157 + Multi-area LOLE + Multi-area LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 1736 + 1736 + Number of days of outage including assistants from other connected regions (summary type "Sum") + true + + + 1121 + 200 + 7 + 158 + Multi-area LOLP + Multi-area LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 1735 + 1735 + Loss of load probability considering assistance from other connected regions + true + + + 1122 + 200 + 8 + 159 + Planning Peak Load + Planning Peak Load + 1 + 1 + true + true + false + false + true + false + false + false + 608 + 608 + Peak load in the current capacity optimization period (e.g. year) + true + + + 1123 + 200 + 8 + 160 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 1124 + 200 + 8 + 161 + Generation Capacity Retired + Generation Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 233 + 233 + Generation capacity retired + true + + + 1125 + 200 + 8 + 162 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Additional import capacity from the Region due to transmission expansion. + true + + + 1126 + 200 + 8 + 163 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Reduction in import capacity from the Region due to transmission retirements. + true + + + 1127 + 200 + 8 + 164 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Additional export capacity from the Region due to transmission expansion. + true + + + 1128 + 200 + 8 + 165 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Reduction in export capacity from the Region due to transmission retirements. + true + + + 1129 + 200 + 8 + 166 + Capacity Shortage + Capacity Shortage + 1 + 1 + true + true + false + false + true + false + false + false + 70 + 70 + Capacity shortage (below Min Capacity Reserves) + true + + + 1130 + 200 + 8 + 167 + Capacity Excess + Capacity Excess + 1 + 1 + true + true + false + false + true + false + false + false + 56 + 56 + Capacity excess (above Max Capacity Reserves) + true + + + 1131 + 200 + 8 + 168 + Capacity Shadow Price + Capacity Shadow Price + 31 + 31 + true + true + false + false + true + false + false + false + 68 + 68 + Shadow price of capacity + true + + + 1132 + 200 + 8 + 169 + LRMC + LRMC + 33 + 33 + false + true + false + false + true + false + false + false + 1034 + 1034 + Long-run marginal cost of production + true + + + 1133 + 200 + 8 + 170 + Capacity Payments + Capacity Payments + 14 + 34 + true + true + false + true + true + false + true + true + 883 + 883 + Payments made for capacity + true + + + 1134 + 200 + 8 + 171 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the region + true + + + 1135 + 200 + 8 + 172 + Capacity Shortage Cost + Capacity Shortage Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1225 + 1225 + Cost of capacity shortage priced at [Capacity Shortage Price]. + true + + + 1136 + 200 + 8 + 173 + Capacity Excess Cost + Capacity Excess Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1226 + 1226 + Cost of capacity excess priced at [Capacity Excess Price]. + true + + + 1137 + 200 + 8 + 174 + Total Generator Revenue + Total Generator Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1140 + 1140 + Total generator revenue including capacity payments. + true + + + 1138 + 200 + 8 + 175 + Generator Build Cost + Generator Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 241 + 241 + Cost of units built + true + + + 1139 + 200 + 8 + 176 + Generator Retirement Cost + Generator Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 251 + 251 + Cost of units retired + true + + + 1140 + 200 + 8 + 177 + Transmission Build Cost + Transmission Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 794 + 794 + Cost of transmission lines built + true + + + 1141 + 200 + 8 + 178 + Transmission Retirement Cost + Transmission Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 799 + 799 + Cost of transmission lines retired + true + + + 1142 + 200 + 8 + 179 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 1143 + 200 + 8 + 180 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 1144 + 200 + 8 + 181 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 1145 + 200 + 8 + 182 + Shadow Generation Capacity Built + Shadow Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1824 + 1824 + Generation capacity built before Competition models. + true + + + 1146 + 200 + 12 + 183 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1147 + 200 + 12 + 184 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1148 + 200 + 12 + 185 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1149 + 205 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Emissions + true + + + 1150 + 205 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 1151 + 205 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 1152 + 205 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 1153 + 205 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 1154 + 205 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1155 + 205 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 1156 + 205 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 1157 + 205 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 1158 + 209 + 1 + 1 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability between the regions in the reference direction. + true + + + 1159 + 209 + 1 + 2 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability between the regions in the counter-reference direction. + true + + + 1160 + 209 + 1 + 3 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports from region + true + + + 1161 + 209 + 1 + 4 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports to region + true + + + 1162 + 209 + 1 + 5 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Net interchange to region (exports - imports) + true + + + 1163 + 209 + 1 + 6 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the region + true + + + 1164 + 209 + 1 + 7 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the region + true + + + 1165 + 209 + 1 + 8 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) from parent region to child region. + true + + + 1166 + 209 + 1 + 9 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region + true + + + 1167 + 209 + 1 + 10 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region + true + + + 1168 + 209 + 1 + 11 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 1169 + 209 + 1 + 12 + Wheeling Cost + Wheeling Cost + 14 + 14 + true + true + false + false + true + false + true + true + 860 + 860 + Wheeling cost on exports to the region + true + + + 1170 + 230 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Total load + true + + + 1171 + 230 + 3 + 2 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1172 + 230 + 3 + 3 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 1173 + 230 + 3 + 4 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 1174 + 230 + 3 + 5 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 1175 + 230 + 3 + 6 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1176 + 230 + 3 + 7 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 1177 + 230 + 3 + 8 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1178 + 230 + 3 + 9 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy. + true + + + 1179 + 230 + 3 + 10 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation,start, shutdown, and emissions costs + true + + + 1180 + 230 + 3 + 11 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Energy price + true + + + 1181 + 230 + 3 + 12 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1182 + 230 + 3 + 13 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1183 + 230 + 3 + 14 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 1184 + 230 + 3 + 15 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1185 + 230 + 3 + 16 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1186 + 230 + 3 + 17 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1187 + 230 + 3 + 18 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Total customer load + true + + + 1188 + 230 + 3 + 19 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net generation value + true + + + 1189 + 230 + 3 + 20 + ORDC System Lambda + ORDC System Lambda + 33 + 33 + true + true + false + false + true + false + true + true + 2682 + 2682 + Max value of Energy Charge over all Nodes + true + + + 1190 + 230 + 3 + 21 + ORDC Online Price Adder + ORDC Online Price Adder + 33 + 33 + true + true + false + false + true + false + true + true + 2683 + 2683 + ORDC Online Price Adder + true + + + 1191 + 230 + 3 + 22 + ORDC Offline Price Adder + ORDC Offline Price Adder + 33 + 33 + true + true + false + false + true + false + true + true + 2684 + 2684 + ORDC Offline Price Adder + true + + + 1192 + 230 + 12 + 23 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1193 + 230 + 12 + 24 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1194 + 230 + 12 + 25 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1195 + 237 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 1196 + 237 + 3 + 2 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 1197 + 237 + 3 + 3 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load + true + + + 1198 + 237 + 3 + 4 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed generation + true + + + 1199 + 237 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1200 + 237 + 3 + 6 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 1201 + 237 + 3 + 7 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 1202 + 237 + 3 + 8 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 1203 + 237 + 3 + 9 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 1204 + 237 + 3 + 10 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 1205 + 237 + 3 + 11 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 1206 + 237 + 3 + 12 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 1207 + 237 + 3 + 13 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 1208 + 237 + 3 + 14 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 1209 + 237 + 3 + 15 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 1210 + 237 + 3 + 16 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 1211 + 237 + 3 + 17 + Heat Plant Load + Heat Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2833 + 2833 + Heat Plant electric load + true + + + 1212 + 237 + 3 + 18 + Gas Plant Load + Gas Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2834 + 2834 + Gas Plant electric load + true + + + 1213 + 237 + 3 + 19 + Gas Storage Load + Gas Storage Load + 1 + 2 + true + true + false + false + true + false + true + true + 2861 + 2861 + Gas Storage electric load + true + + + 1214 + 237 + 3 + 20 + Water Plant Load + Water Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2835 + 2835 + Water Plant electric load + true + + + 1215 + 237 + 3 + 21 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 1216 + 237 + 3 + 22 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 1217 + 237 + 3 + 23 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 1218 + 237 + 3 + 24 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 1219 + 237 + 3 + 25 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 1220 + 237 + 3 + 26 + Facility Generation + Facility Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2844 + 2844 + Generation from connected Facilities + true + + + 1221 + 237 + 3 + 27 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1222 + 237 + 3 + 28 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 1223 + 237 + 3 + 29 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 1224 + 237 + 3 + 30 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 1225 + 237 + 3 + 31 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Exports - Imports + true + + + 1226 + 237 + 3 + 32 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 1227 + 237 + 3 + 33 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 1228 + 237 + 3 + 34 + Unserved Energy Hours + Unserved Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 282 + 282 + Number of hours of unserved energy (USE). + true + + + 1229 + 237 + 3 + 35 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1230 + 237 + 3 + 36 + Max Unserved Energy + Max Unserved Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2014 + 2014 + Maximum unserved energy + true + + + 1231 + 237 + 3 + 37 + Unserved Energy Factor + Unserved Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2015 + 2015 + Ratio of unserved energy to load + true + + + 1232 + 237 + 3 + 38 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 1233 + 237 + 3 + 39 + Dump Energy Hours + Dump Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1088 + 1088 + Number of hours of dump energy. + true + + + 1234 + 237 + 3 + 40 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1235 + 237 + 3 + 41 + Max Dump Energy + Max Dump Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2909 + 2909 + Maximum dump energy + true + + + 1236 + 237 + 3 + 42 + Dump Energy Factor + Dump Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2921 + 2921 + Proportion of energy dumped + true + + + 1237 + 237 + 3 + 43 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy. + true + + + 1238 + 237 + 3 + 44 + Committed Capacity + Committed Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2936 + 2936 + Capacity of committed units + true + + + 1239 + 237 + 3 + 45 + No Cost Generation Capacity + No Cost Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 1165 + 1165 + Capacity available at no cost + true + + + 1240 + 237 + 3 + 46 + Hours Generation Curtailed + Hours Generation Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1166 + 1166 + Number of hours that non-positive-priced generation has been curtailed + true + + + 1241 + 237 + 3 + 47 + Generation Capacity Curtailed + Generation Capacity Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1167 + 1167 + Amount of non-positive-priced generation curtailed + true + + + 1242 + 237 + 3 + 48 + Max Generation Curtailed + Max Generation Curtailed + 1 + 1 + true + true + false + false + true + false + true + true + 2922 + 2922 + Maximum generation curtailed + true + + + 1243 + 237 + 3 + 49 + Generation Curtailment Factor + Generation Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2934 + 2934 + Proportion of generation curtailed + true + + + 1244 + 237 + 3 + 50 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 1245 + 237 + 3 + 51 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 1246 + 237 + 3 + 52 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 1247 + 237 + 3 + 53 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 1248 + 237 + 3 + 54 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 1249 + 237 + 3 + 55 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 1250 + 237 + 3 + 56 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 1251 + 237 + 3 + 57 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of generation that could be unloaded + true + + + 1252 + 237 + 3 + 58 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 1253 + 237 + 3 + 59 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 1254 + 237 + 3 + 60 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 1255 + 237 + 3 + 61 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 1256 + 237 + 3 + 62 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Total variable cost of generation + true + + + 1257 + 237 + 3 + 63 + Generator Pump Cost + Generator Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 249 + 249 + Cost of load to pump storage generators + true + + + 1258 + 237 + 3 + 64 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Cost of generating unit starts and shutdowns + true + + + 1259 + 237 + 3 + 65 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 1260 + 237 + 3 + 66 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1261 + 237 + 3 + 67 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation and start and shutdown costs and emissions costs + true + + + 1262 + 237 + 3 + 68 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 1263 + 237 + 3 + 69 + Generator FO&M Cost + Generator FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 888 + 888 + Total fixed operations and maintenance costs + true + + + 1264 + 237 + 3 + 70 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs (fixed O&M, equity, debt) + true + + + 1265 + 237 + 3 + 71 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Highest short-run marginal cost of running generators + true + + + 1266 + 237 + 3 + 72 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Energy price + true + + + 1267 + 237 + 3 + 73 + Time-weighted Price + Time-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 789 + 789 + Time-weighted average price + true + + + 1268 + 237 + 3 + 74 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1269 + 237 + 3 + 75 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1270 + 237 + 3 + 76 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of locational marginal price + true + + + 1271 + 237 + 3 + 77 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of zonal price + true + + + 1272 + 237 + 3 + 78 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of the zonal price + true + + + 1273 + 237 + 3 + 79 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Average marginal loss factor of buses in the zone + true + + + 1274 + 237 + 3 + 80 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 1275 + 237 + 3 + 81 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1276 + 237 + 3 + 82 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Total transmission rental + true + + + 1277 + 237 + 3 + 83 + Settlement Surplus + Settlement Surplus + 14 + 34 + true + true + false + true + true + false + true + true + 741 + 741 + Difference between cost to load and generator revenue + true + + + 1278 + 237 + 3 + 84 + Cost of Curtailment + Cost of Curtailment + 14 + 34 + true + true + false + true + true + false + true + true + 118 + 118 + Cost of demand-side participation bids cleared + true + + + 1279 + 237 + 3 + 85 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 1280 + 237 + 3 + 86 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 1281 + 237 + 3 + 87 + Generator Net Revenue + Generator Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 247 + 247 + Generator net revenue (producer surplus) + true + + + 1282 + 237 + 3 + 88 + Generator Net Profit + Generator Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 246 + 246 + Net profit from generators in Zone + true + + + 1283 + 237 + 3 + 89 + Net Market Profit + Net Market Profit + 14 + 34 + true + true + false + true + true + false + true + true + 1445 + 1445 + Net profit from all market nodes + true + + + 1284 + 237 + 3 + 90 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1285 + 237 + 3 + 91 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1286 + 237 + 3 + 92 + Net Cost of Exports + Net Cost of Exports + 14 + 34 + true + true + false + true + true + false + true + true + 537 + 537 + Net cost of exports + true + + + 1287 + 237 + 3 + 93 + Wheeling Revenue + Wheeling Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1036 + 1036 + Wheeling revenue on exports from the zone + true + + + 1288 + 237 + 3 + 94 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost on imports to the zone + true + + + 1289 + 237 + 3 + 95 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the zone. + true + + + 1290 + 237 + 3 + 96 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the zone. + true + + + 1291 + 237 + 3 + 97 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange in the zone (Financial Exports - Financial Imports). + true + + + 1292 + 237 + 3 + 98 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the zone. + true + + + 1293 + 237 + 3 + 99 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the Zone. + true + + + 1294 + 237 + 3 + 100 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1295 + 237 + 6 + 101 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load across the current period + true + + + 1296 + 237 + 6 + 102 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Total installed generation capacity + true + + + 1297 + 237 + 6 + 103 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Installed capacity accounting for [Rating], [Rating Factor] and [Firm Capacity] + true + + + 1298 + 237 + 6 + 104 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1299 + 237 + 6 + 105 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1300 + 237 + 6 + 106 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1301 + 237 + 6 + 107 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity from the Zone + true + + + 1302 + 237 + 6 + 108 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Capacity export capability + true + + + 1303 + 237 + 6 + 109 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1304 + 237 + 6 + 110 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 1305 + 237 + 6 + 111 + Max Capacity Reserves + Max Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 1306 + 237 + 6 + 112 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1307 + 237 + 6 + 113 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 1308 + 237 + 6 + 114 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 1309 + 237 + 6 + 115 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 63 + 63 + Reserve margin + true + + + 1310 + 237 + 6 + 116 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1311 + 237 + 6 + 117 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 1312 + 237 + 6 + 118 + Available Capacity Reserves + Available Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 1629 + 1629 + Capacity Reserves based on Available Capacity + true + + + 1313 + 237 + 6 + 119 + Available Capacity Margin + Available Capacity Margin + 12 + 12 + true + true + false + false + true + false + true + true + 1630 + 1630 + Capacity Reserve Margin based on Available Capacity + true + + + 1314 + 237 + 6 + 120 + Dispatchable Capacity + Dispatchable Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 149 + 149 + On-line capacity + true + + + 1315 + 237 + 6 + 121 + Undispatched Capacity + Undispatched Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 803 + 803 + Capacity on-line but undispatched + true + + + 1316 + 237 + 7 + 122 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1317 + 237 + 7 + 123 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1318 + 237 + 7 + 124 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + false + true + false + false + 394 + 394 + Maintenance factor + true + + + 1319 + 237 + 7 + 125 + EENS + EENS + 3 + 3 + true + true + false + false + false + true + false + false + 161 + 161 + Expected energy not served (summary type "Sum") + true + + + 1320 + 237 + 7 + 126 + EDNS + EDNS + 1 + 1 + true + true + false + false + false + true + false + false + 160 + 160 + Expected demand not served (summary type "Average") + true + + + 1321 + 237 + 7 + 127 + LOLE + LOLE + 7 + 7 + true + true + false + false + false + true + false + false + 365 + 365 + Number of days of outage (summary type "Sum") + true + + + 1322 + 237 + 7 + 128 + LOLP + LOLP + 12 + 12 + true + true + false + false + false + true + false + false + 366 + 366 + Loss of load probability (summary type "Average") + true + + + 1323 + 237 + 7 + 129 + Multi-area LOLE + Multi-area LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 1736 + 1736 + Number of days of outage including assistants from other connected zones (summary type "Sum") + true + + + 1324 + 237 + 7 + 130 + Multi-area LOLP + Multi-area LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 1735 + 1735 + Loss of load probability including assistants from other connected zones (summary type "Average") + true + + + 1325 + 237 + 8 + 131 + Planning Peak Load + Planning Peak Load + 1 + 1 + true + true + false + false + true + false + false + false + 608 + 608 + Peak load in the current capacity optimization period (e.g. year) + true + + + 1326 + 237 + 8 + 132 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 1327 + 237 + 8 + 133 + Generation Capacity Retired + Generation Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 233 + 233 + Generation capacity retired + true + + + 1328 + 237 + 8 + 134 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Additional import capacity from the Zone due to transmission expansion. + true + + + 1329 + 237 + 8 + 135 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Reduction in import capacity from the Zone due to transmission retirements. + true + + + 1330 + 237 + 8 + 136 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Additional export capacity from the Zone due to transmission expansion + true + + + 1331 + 237 + 8 + 137 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Reduction in export capacity from the Zone due to transmission retirements + true + + + 1332 + 237 + 8 + 138 + Capacity Shortage + Capacity Shortage + 1 + 1 + true + true + false + false + true + false + false + false + 70 + 70 + Capacity Shortage (below Min Capacity Reserves) + true + + + 1333 + 237 + 8 + 139 + Capacity Excess + Capacity Excess + 1 + 1 + true + true + false + false + true + false + false + false + 56 + 56 + Capacity excess (above Max Capacity Reserves) + true + + + 1334 + 237 + 8 + 140 + Capacity Shadow Price + Capacity Shadow Price + 31 + 31 + true + true + false + false + true + false + false + false + 68 + 68 + Shadow price of capacity + true + + + 1335 + 237 + 8 + 141 + LRMC + LRMC + 33 + 33 + false + true + false + false + true + false + false + false + 1034 + 1034 + Long-run marginal cost of production + true + + + 1336 + 237 + 8 + 142 + Capacity Payments + Capacity Payments + 14 + 34 + true + true + false + false + true + false + true + true + 883 + 883 + Payments made for capacity + true + + + 1337 + 237 + 8 + 143 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the zone + true + + + 1338 + 237 + 8 + 144 + Capacity Shortage Cost + Capacity Shortage Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1225 + 1225 + Cost of capacity shortage priced at [Capacity Shortage Price]. + true + + + 1339 + 237 + 8 + 145 + Capacity Excess Cost + Capacity Excess Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1226 + 1226 + Cost of capacity excess priced at [Capacity Excess Price]. + true + + + 1340 + 237 + 8 + 146 + Total Generator Revenue + Total Generator Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1140 + 1140 + Total generator revenue including capacity payments. + true + + + 1341 + 237 + 8 + 147 + Generator Build Cost + Generator Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 241 + 241 + Cost of units built + true + + + 1342 + 237 + 8 + 148 + Generator Retirement Cost + Generator Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 251 + 251 + Cost of units retired + true + + + 1343 + 237 + 8 + 149 + Transmission Build Cost + Transmission Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 794 + 794 + Cost of transmission lines built + true + + + 1344 + 237 + 8 + 150 + Transmission Retirement Cost + Transmission Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 799 + 799 + Cost of transmission lines retired + true + + + 1345 + 237 + 8 + 151 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 1346 + 237 + 8 + 152 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 1347 + 237 + 8 + 153 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 1348 + 237 + 12 + 154 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1349 + 237 + 12 + 155 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1350 + 237 + 12 + 156 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1351 + 244 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Emissions + true + + + 1352 + 244 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 1353 + 244 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 1354 + 244 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 1355 + 244 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 1356 + 244 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1357 + 244 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 1358 + 244 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 1359 + 244 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 1360 + 252 + 1 + 1 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability between the zones in the reference direction. + true + + + 1361 + 252 + 1 + 2 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability between the zones in the counter-reference direction. + true + + + 1362 + 252 + 1 + 3 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the zone + true + + + 1363 + 252 + 1 + 4 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to parent zone from child zone. + true + + + 1364 + 252 + 1 + 5 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) from parent zone to child zone. + true + + + 1365 + 252 + 1 + 6 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the zone + true + + + 1366 + 252 + 1 + 7 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the zone + true + + + 1367 + 252 + 1 + 8 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1368 + 252 + 1 + 9 + Wheeling Cost + Wheeling Cost + 14 + 14 + true + true + false + false + true + false + true + true + 860 + 860 + Wheeling cost on exports to the zone + true + + + 1369 + 281 + 3 + 1 + GPF Loss Factor + GPF Loss Factor + 0 + 0 + true + false + false + false + false + false + false + true + 2805 + 2805 + Generator Penalty Factors(GPF) loss factor at the node + false + + + 1370 + 281 + 3 + 2 + PTDF Index + PTDF Index + 0 + 0 + true + true + false + false + false + false + false + true + 2806 + 2806 + Index of PTDF zone the node belongs to + false + + + 1371 + 281 + 3 + 3 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 1372 + 281 + 3 + 4 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 1373 + 281 + 3 + 5 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load at the node + true + + + 1374 + 281 + 3 + 6 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed (or embedded) generation at the node + true + + + 1375 + 281 + 3 + 7 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1376 + 281 + 3 + 8 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 1377 + 281 + 3 + 9 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 1378 + 281 + 3 + 10 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 1379 + 281 + 3 + 11 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Pump load + true + + + 1380 + 281 + 3 + 12 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 1381 + 281 + 3 + 13 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 1382 + 281 + 3 + 14 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 1383 + 281 + 3 + 15 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 1384 + 281 + 3 + 16 + Heat Plant Load + Heat Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2833 + 2833 + Heat Plant electric load + true + + + 1385 + 281 + 3 + 17 + Gas Plant Load + Gas Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2834 + 2834 + Gas Plant electric load + true + + + 1386 + 281 + 3 + 18 + Gas Storage Load + Gas Storage Load + 1 + 2 + true + true + false + false + true + false + true + true + 2861 + 2861 + Gas Storage electric load + true + + + 1387 + 281 + 3 + 19 + Water Plant Load + Water Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2835 + 2835 + Water Plant electric load + true + + + 1388 + 281 + 3 + 20 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 1389 + 281 + 3 + 21 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 1390 + 281 + 3 + 22 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 1391 + 281 + 3 + 23 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 1392 + 281 + 3 + 24 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 1393 + 281 + 3 + 25 + Facility Generation + Facility Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2844 + 2844 + Generation from connected Facilities + true + + + 1394 + 281 + 3 + 26 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1395 + 281 + 3 + 27 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 1396 + 281 + 3 + 28 + DSP Bid Quantity + DSP Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 156 + 156 + Demand-side participation bid quantity + true + + + 1397 + 281 + 3 + 29 + DSP Bid Price + DSP Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 155 + 155 + Demand-side participation bid price + true + + + 1398 + 281 + 3 + 30 + DSP Bid Cleared + DSP Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1398 + 1398 + Quantity cleared in demand-side participation bid band + true + + + 1399 + 281 + 3 + 31 + Cleared DSP Bid Price + Cleared DSP Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1400 + 1400 + Price of marginal demand-side participation bid band + true + + + 1400 + 281 + 3 + 32 + Cleared DSP Bid Cost + Cleared DSP Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1401 + 1401 + Value of cleared demand-side participation bids + true + + + 1401 + 281 + 3 + 33 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load served to customers at the node + true + + + 1402 + 281 + 3 + 34 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports to the node + true + + + 1403 + 281 + 3 + 35 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports from the node + true + + + 1404 + 281 + 3 + 36 + Net DC Export + Net DC Export + 1 + 2 + true + true + false + false + true + false + true + true + 929 + 929 + Export from the node on DC lines net of losses + true + + + 1405 + 281 + 3 + 37 + Net Injection + Net Injection + 1 + 2 + true + true + false + false + true + false + true + true + 542 + 542 + Net injection (exports - imports) + true + + + 1406 + 281 + 3 + 38 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1407 + 281 + 3 + 39 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1408 + 281 + 3 + 40 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Losses allocated to the node + true + + + 1409 + 281 + 3 + 41 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow through the node + true + + + 1410 + 281 + 3 + 42 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Locational marginal price + true + + + 1411 + 281 + 3 + 43 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of locational marginal price + true + + + 1412 + 281 + 3 + 44 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of locational marginal price + true + + + 1413 + 281 + 3 + 45 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of locational marginal price + true + + + 1414 + 281 + 3 + 46 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Marginal loss factor to slack bus(es) + true + + + 1415 + 281 + 3 + 47 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage + true + + + 1416 + 281 + 3 + 48 + Phase Angle + Phase Angle + 11 + 11 + true + false + false + false + true + false + true + true + 607 + 607 + Node phase angle + true + + + 1417 + 281 + 3 + 49 + Injection Mismatch + Injection Mismatch + 1 + 2 + true + true + false + false + true + false + true + true + 2067 + 2067 + Absolute value of mismatch of injection due to PTDF threshold. + true + + + 1418 + 281 + 3 + 50 + AC Mismatch + AC Mismatch + 121 + 121 + true + true + false + false + false + false + false + true + 2817 + 2817 + The magnitude of the complex power mismatch between the left- and right-hand sides of the AC power balance equation, as initialized using a PLEXOS economic dispatch + true + + + 1419 + 281 + 3 + 51 + DC Losses + DC Losses + 1 + 2 + true + false + false + false + false + false + false + true + 2863 + 2863 + DC Losses allocated to the node + false + + + 1420 + 281 + 3 + 52 + AC Branch Losses + AC Branch Losses + 1 + 2 + true + true + false + false + false + false + false + true + 2886 + 2886 + AC Branch Losses allocated to the node + false + + + 1421 + 281 + 6 + 53 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load across the current period + true + + + 1422 + 281 + 6 + 54 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Rated capacity (Rating x Units) + true + + + 1423 + 281 + 6 + 55 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Firm capacity provided by generators + true + + + 1424 + 281 + 6 + 56 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1425 + 281 + 6 + 57 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1426 + 281 + 6 + 58 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1427 + 281 + 6 + 59 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity to the Node. + true + + + 1428 + 281 + 6 + 60 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Total export capacity from the Node. + true + + + 1429 + 281 + 6 + 61 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1430 + 281 + 6 + 62 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves + true + + + 1431 + 281 + 6 + 63 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1432 + 281 + 6 + 64 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1433 + 281 + 7 + 65 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1434 + 281 + 7 + 66 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1435 + 281 + 7 + 67 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + false + true + false + false + 394 + 394 + Maintenance biasing factor + true + + + 1436 + 281 + 7 + 68 + EENS + EENS + 3 + 3 + true + true + false + false + false + true + false + false + 161 + 161 + Expected Energy Not Served (summary type "Sum") + true + + + 1437 + 281 + 7 + 69 + EDNS + EDNS + 1 + 1 + true + true + false + false + false + true + false + false + 160 + 160 + Expected Demand Not Served (summary type "Average") + true + + + 1438 + 281 + 7 + 70 + LOLE + LOLE + 7 + 7 + true + true + false + false + false + true + false + false + 365 + 365 + Loss Of Load Expected (summary type "Sum") + true + + + 1439 + 281 + 7 + 71 + LOLP + LOLP + 12 + 12 + true + true + false + false + false + true + false + false + 366 + 366 + Loss Of Load Probability (summary type "Average") + true + + + 1440 + 281 + 12 + 72 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1441 + 281 + 12 + 73 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1442 + 281 + 12 + 74 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1443 + 292 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 1444 + 292 + 1 + 2 + Purchases + Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 1445 + 292 + 1 + 3 + Net Sales + Net Sales + 1 + 2 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 1446 + 292 + 1 + 4 + Net Purchases + Net Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 1447 + 292 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 1448 + 292 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 1449 + 292 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 1450 + 292 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 1451 + 298 + 12 + 1 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1452 + 298 + 12 + 2 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1453 + 298 + 12 + 3 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1454 + 303 + 3 + 1 + Flow Path Ratio + Flow Path Ratio + 0 + 0 + true + false + false + false + false + false + false + true + 2807 + 2807 + Susceptance ratio between the line and the path + false + + + 1455 + 303 + 3 + 2 + Flow Price Complete + Flow Price Complete + 33 + 33 + true + false + false + false + false + false + false + true + 2808 + 2808 + Total shadow price from all binding constraints + false + + + 1456 + 303 + 3 + 3 + Formulate Upfront + Formulate Upfront + 0 + 0 + true + true + false + false + false + false + false + true + 976 + 976 + Flag if the thermal limits or non-physical losses should be formulated upfront(0,1) + false + + + 1457 + 303 + 3 + 4 + Is Power Flow Line + Is Power Flow Line + 0 + 0 + true + true + false + false + false + false + false + true + 2809 + 2809 + Flag if the line is a power flow modeled line (0,1) + false + + + 1458 + 303 + 3 + 5 + PTDF Index + PTDF Index + 0 + 0 + true + true + false + false + false + false + false + true + 2806 + 2806 + PTDF Index of the path the line belongs to + false + + + 1459 + 303 + 3 + 6 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Flag if the line is in service (0,1) + true + + + 1460 + 303 + 3 + 7 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow + true + + + 1461 + 303 + 3 + 8 + Flow Back + Flow Back + 1 + 2 + true + true + false + false + true + false + true + true + 206 + 206 + Flow on the line in the counter-reference direction + true + + + 1462 + 303 + 3 + 9 + Net Flow + Net Flow + 1 + 2 + false + true + false + false + true + false + true + true + 1816 + 1816 + Net Flow on the line + true + + + 1463 + 303 + 3 + 10 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the line + true + + + 1464 + 303 + 3 + 11 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the line + true + + + 1465 + 303 + 3 + 12 + Overload Export Limit + Overload Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2864 + 2864 + Maximum post-contingency flow allowed on the line + true + + + 1466 + 303 + 3 + 13 + Overload Import Limit + Overload Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2865 + 2865 + Minimum post-contingency flow allowed on the line + true + + + 1467 + 303 + 3 + 14 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1468 + 303 + 3 + 15 + Loading Back + Loading Back + 12 + 12 + false + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1469 + 303 + 3 + 16 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours line is congested in the reference direction in pre-contingency state + true + + + 1470 + 303 + 3 + 17 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours line is congested in the counter-reference direction + true + + + 1471 + 303 + 3 + 18 + Hours Congested Total + Hours Congested Total + 6 + 6 + true + true + false + false + true + false + true + true + 2878 + 2878 + Number of hours line is congested in the reference direction + true + + + 1472 + 303 + 3 + 19 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow/expansion price in pre-contingency state + true + + + 1473 + 303 + 3 + 20 + Shadow Price Back + Shadow Price Back + 32 + 32 + true + true + false + false + true + false + true + true + 743 + 743 + Shadow/expansion price for counter-reference direction flows + true + + + 1474 + 303 + 3 + 21 + Shadow Price Total + Shadow Price Total + 32 + 32 + true + true + false + false + true + false + true + true + 2879 + 2879 + Shadow/expansion price + true + + + 1475 + 303 + 3 + 22 + Violation Hours + Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 283 + 283 + If the line is flowing above is minimum or maximum rating + true + + + 1476 + 303 + 3 + 23 + Violation Back Hours + Violation Back Hours + 6 + 6 + false + true + false + false + true + false + true + true + 284 + 284 + Number of hours the flow limit is violated in the counter-reference direction. + true + + + 1477 + 303 + 3 + 24 + Violation + Violation + 1 + 2 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of flow limit + true + + + 1478 + 303 + 3 + 25 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the flow limit in the counter-reference direction. + true + + + 1479 + 303 + 3 + 26 + Violation Cost + Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 845 + 845 + Cost of violating flow limits + true + + + 1480 + 303 + 3 + 27 + Violation Cost Back + Violation Cost Back + 14 + 34 + false + true + false + true + true + false + true + true + 846 + 846 + Cost of violating the flow limit in the counter-reference direction. + true + + + 1481 + 303 + 3 + 28 + Ramp + Ramp + 1 + 1 + true + false + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 1482 + 303 + 3 + 29 + Ramp Cost + Ramp Cost + 14 + 34 + true + true + false + true + true + false + true + true + 869 + 869 + Cost of ramping + true + + + 1483 + 303 + 3 + 30 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow + true + + + 1484 + 303 + 3 + 31 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow + true + + + 1485 + 303 + 3 + 32 + Fixed Flow + Fixed Flow + 1 + 2 + true + true + false + false + true + false + true + true + 197 + 197 + Fixed flow on line + true + + + 1486 + 303 + 3 + 33 + Fixed Flow Violation + Fixed Flow Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1325 + 1325 + Violation of [Fixed Flow] constraint. + true + + + 1487 + 303 + 3 + 34 + Fixed Flow Violation Hours + Fixed Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1327 + 1327 + Number of hours that [Fixed Flow] is violated. + true + + + 1488 + 303 + 3 + 35 + Fixed Flow Violation Cost + Fixed Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1326 + 1326 + Cost of [Fixed Flow] violations. + true + + + 1489 + 303 + 3 + 36 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of energy exported + true + + + 1490 + 303 + 3 + 37 + Import Cost + Import Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1234 + 1234 + Cost of energy imported + true + + + 1491 + 303 + 3 + 38 + Export Revenue + Export Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1235 + 1235 + Revenue from energy exported + true + + + 1492 + 303 + 3 + 39 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from energy imported + true + + + 1493 + 303 + 3 + 40 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Rental / settlement surplus in pre-contingency state + true + + + 1494 + 303 + 3 + 41 + Rental Back + Rental Back + 14 + 34 + false + true + false + false + true + false + true + true + 679 + 679 + Rental / settlement surplus in the counter-reference direction + true + + + 1495 + 303 + 3 + 42 + Rental Total + Rental Total + 14 + 34 + true + true + false + true + true + false + true + true + 2880 + 2880 + Rental / settlement surplus + true + + + 1496 + 303 + 3 + 43 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost + true + + + 1497 + 303 + 3 + 44 + Wheeling Cost Back + Wheeling Cost Back + 14 + 34 + true + true + false + false + true + false + true + true + 861 + 861 + Wheeling cost of flows in the counter-reference direction + true + + + 1498 + 303 + 3 + 45 + Loss + Loss + 1 + 2 + true + true + false + false + true + false + true + true + 372 + 372 + Losses + true + + + 1499 + 303 + 3 + 46 + Loss Back + Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 374 + 374 + Losses on flows in the counter-reference direction + true + + + 1500 + 303 + 3 + 47 + Marginal Loss + Marginal Loss + 12 + 12 + true + true + false + false + true + false + true + true + 403 + 403 + Marginal loss + true + + + 1501 + 303 + 3 + 48 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Transmission marginal loss factor (MLF or TLF) for exports + true + + + 1502 + 303 + 3 + 49 + Non-physical Loss + Non-physical Loss + 1 + 2 + true + true + false + false + true + false + true + true + 2896 + 2896 + Non-physical losses in the reference direction + true + + + 1503 + 303 + 3 + 50 + Non-physical Loss Back + Non-physical Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 2897 + 2897 + Non-physical losses in the counter-reference direction + true + + + 1504 + 303 + 3 + 51 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage of the line + true + + + 1505 + 303 + 3 + 52 + Offer Base + Offer Base + 1 + 1 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for balancing offer + true + + + 1506 + 303 + 3 + 53 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band for reference direction flows + true + + + 1507 + 303 + 3 + 54 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price offered in band for reference direction flows + true + + + 1508 + 303 + 3 + 55 + Offer Quantity Back + Offer Quantity Back + 1 + 2 + true + true + true + false + true + false + true + true + 573 + 573 + Quantity offered in band for counter-reference direction flows + true + + + 1509 + 303 + 3 + 56 + Offer Price Back + Offer Price Back + 33 + 33 + true + true + true + false + true + false + true + true + 570 + 570 + Price offered in band for counter-reference direction flows + true + + + 1510 + 303 + 3 + 57 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 1511 + 303 + 3 + 58 + Offer Cleared Back + Offer Cleared Back + 1 + 2 + true + true + true + false + true + false + true + true + 567 + 567 + Quantity cleared in band + true + + + 1512 + 303 + 3 + 59 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 1513 + 303 + 3 + 60 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under offer curve + true + + + 1514 + 303 + 3 + 61 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1515 + 303 + 3 + 62 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 1516 + 303 + 3 + 63 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 1517 + 303 + 3 + 64 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 1518 + 303 + 6 + 65 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + false + + + 1519 + 303 + 6 + 66 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Net capacity reserves exported + true + + + 1520 + 303 + 6 + 67 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + false + false + 1012 + 1012 + Contribution of the line to region capacity reserves + true + + + 1521 + 303 + 6 + 68 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the line. + true + + + 1522 + 303 + 6 + 69 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the line in the counter-reference direction. + true + + + 1523 + 303 + 7 + 70 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units (circuits) out of service + true + + + 1524 + 303 + 7 + 71 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Total capacity out of service in the reference direction (discrete + distributed) + true + + + 1525 + 303 + 7 + 72 + Maintenance Back + Maintenance Back + 1 + 2 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 1526 + 303 + 7 + 73 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 1527 + 303 + 7 + 74 + Discrete Maintenance Back + Discrete Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 1528 + 303 + 7 + 75 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 1529 + 303 + 7 + 76 + Distributed Maintenance Back + Distributed Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 1530 + 303 + 7 + 77 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 1531 + 303 + 7 + 78 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1532 + 303 + 7 + 79 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 1533 + 303 + 7 + 80 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for transfer + true + + + 1534 + 303 + 8 + 81 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 1535 + 303 + 8 + 82 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 1536 + 303 + 8 + 83 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Export capacity gained from new builds + true + + + 1537 + 303 + 8 + 84 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Import capacity gained from new builds + true + + + 1538 + 303 + 8 + 85 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Export capacity lost to retirements + true + + + 1539 + 303 + 8 + 86 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Import capacity lost to retirements + true + + + 1540 + 303 + 8 + 87 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the line + true + + + 1541 + 303 + 8 + 88 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of building the line + true + + + 1542 + 303 + 8 + 89 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the line + true + + + 1543 + 303 + 12 + 90 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1544 + 303 + 12 + 91 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1545 + 303 + 12 + 92 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1546 + 319 + 3 + 1 + Flow Path Ratio + Flow Path Ratio + 0 + 0 + true + false + false + false + false + false + false + true + 2807 + 2807 + Susceptance ratio between the transformer and the path + false + + + 1547 + 319 + 3 + 2 + Flow Price Complete + Flow Price Complete + 33 + 33 + true + false + false + false + false + false + false + true + 2808 + 2808 + Total shadow price from all binding constraints + false + + + 1548 + 319 + 3 + 3 + Formulate Upfront + Formulate Upfront + 0 + 0 + true + true + false + false + false + false + false + true + 976 + 976 + Flag if the thermal limits or non-physical losses should be formulated upfront(0,1) + false + + + 1549 + 319 + 3 + 4 + Is Power Flow Transformer + Is Power Flow Transformer + 0 + 0 + true + true + false + false + false + false + false + true + 2810 + 2810 + Flag if the transformer is a power flow modeled transformer (0,1) + false + + + 1550 + 319 + 3 + 5 + PTDF Index + PTDF Index + 0 + 0 + true + true + false + false + false + false + false + true + 2806 + 2806 + PTDF Index of the path the transformer belongs to + false + + + 1551 + 319 + 3 + 6 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow through the transformer (sent out) + true + + + 1552 + 319 + 3 + 7 + Flow Back + Flow Back + 1 + 2 + false + true + false + false + true + false + true + true + 206 + 206 + Flow through the transformer in the counter-reference direction + true + + + 1553 + 319 + 3 + 8 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the transformer + true + + + 1554 + 319 + 3 + 9 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the line + true + + + 1555 + 319 + 3 + 10 + Overload Export Limit + Overload Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2864 + 2864 + Maximum post-contingency flow allowed on the transformer + true + + + 1556 + 319 + 3 + 11 + Overload Import Limit + Overload Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2865 + 2865 + Minimum post-contingency flow allowed on the line + true + + + 1557 + 319 + 3 + 12 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1558 + 319 + 3 + 13 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1559 + 319 + 3 + 14 + Loss + Loss + 1 + 2 + true + true + false + false + true + false + true + true + 372 + 372 + Losses (sent out) + true + + + 1560 + 319 + 3 + 15 + Loss Back + Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 374 + 374 + Losses on flows in the counter-reference direction + true + + + 1561 + 319 + 3 + 16 + Non-physical Loss + Non-physical Loss + 1 + 2 + true + true + false + false + true + false + true + true + 2896 + 2896 + Non-physical losses in the reference direction + true + + + 1562 + 319 + 3 + 17 + Non-physical Loss Back + Non-physical Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 2897 + 2897 + Non-physical losses in the counter-reference direction + true + + + 1563 + 319 + 3 + 18 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage of the transformer + true + + + 1564 + 319 + 3 + 19 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the Transformer is flowing at its [Rating] in pre-contingency state + true + + + 1565 + 319 + 3 + 20 + Hours Congested Total + Hours Congested Total + 6 + 6 + true + true + false + true + true + false + true + true + 2878 + 2878 + Number of hours the Transformer is flowing at its [Rating] + true + + + 1566 + 319 + 3 + 21 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow/expansion price in pre-contingency state + true + + + 1567 + 319 + 3 + 22 + Shadow Price Total + Shadow Price Total + 32 + 32 + true + true + false + false + true + false + true + true + 2879 + 2879 + Shadow/expansion price + true + + + 1568 + 319 + 3 + 23 + Violation Hours + Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 283 + 283 + Number of hours the Transformer Flow exceeds the [Rating]. + true + + + 1569 + 319 + 3 + 24 + Violation Back Hours + Violation Back Hours + 6 + 6 + false + true + false + false + true + false + true + true + 284 + 284 + Number of hours the flow limit is violated in the counter-reference direction. + true + + + 1570 + 319 + 3 + 25 + Violation + Violation + 1 + 2 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of flow limit + true + + + 1571 + 319 + 3 + 26 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the flow limit in the counter-reference direction. + true + + + 1572 + 319 + 3 + 27 + Violation Cost + Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 845 + 845 + Cost of violating flow limits + true + + + 1573 + 319 + 3 + 28 + Violation Cost Back + Violation Cost Back + 14 + 34 + false + true + false + true + true + false + true + true + 846 + 846 + Cost of violating the flow limit in the counter-reference direction. + true + + + 1574 + 319 + 3 + 29 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow + true + + + 1575 + 319 + 3 + 30 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow + true + + + 1576 + 319 + 3 + 31 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of energy exported + true + + + 1577 + 319 + 3 + 32 + Import Cost + Import Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1234 + 1234 + Cost of energy imported + true + + + 1578 + 319 + 3 + 33 + Export Revenue + Export Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1235 + 1235 + Revenue from energy exported + true + + + 1579 + 319 + 3 + 34 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from energy imported + true + + + 1580 + 319 + 3 + 35 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Transmission rent in pre-contingency state + true + + + 1581 + 319 + 3 + 36 + Rental Back + Rental Back + 14 + 34 + false + true + false + true + true + false + true + true + 679 + 679 + Rental / settlement surplus in the counter-reference direction + true + + + 1582 + 319 + 3 + 37 + Rental Total + Rental Total + 14 + 34 + true + true + false + true + true + false + true + true + 2880 + 2880 + Transmission rent + true + + + 1583 + 319 + 7 + 38 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Total capacity out of service in the reference direction (discrete + distributed) + true + + + 1584 + 319 + 7 + 39 + Maintenance Back + Maintenance Back + 1 + 2 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 1585 + 319 + 7 + 40 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 1586 + 319 + 7 + 41 + Discrete Maintenance Back + Discrete Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 1587 + 319 + 7 + 42 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 1588 + 319 + 7 + 43 + Distributed Maintenance Back + Distributed Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 1589 + 319 + 7 + 44 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 1590 + 319 + 7 + 45 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1591 + 319 + 7 + 46 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 1592 + 319 + 7 + 47 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for transfer + true + + + 1593 + 319 + 6 + 48 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the transformer. + true + + + 1594 + 319 + 6 + 49 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the transformer in the counter-reference direction. + true + + + 1595 + 319 + 6 + 50 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Rating (o.w. Max Flow) x Units) + false + + + 1596 + 319 + 12 + 51 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1597 + 319 + 12 + 52 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1598 + 319 + 12 + 53 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1599 + 326 + 3 + 1 + Angle + Angle + 11 + 11 + true + true + false + false + true + false + true + true + 14 + 14 + Angle (initial angle when used as input) + true + + + 1600 + 326 + 3 + 2 + Min Angle + Min Angle + 11 + 11 + true + true + false + false + true + false + true + true + 472 + 472 + Min angle set on the flow control + true + + + 1601 + 326 + 3 + 3 + Max Angle + Max Angle + 11 + 11 + true + true + false + false + true + false + true + true + 411 + 411 + Max angle set on the flow control + true + + + 1602 + 326 + 3 + 4 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Equivalent flow in reference direction due to phase shift + true + + + 1603 + 326 + 3 + 5 + Flow Back + Flow Back + 1 + 2 + true + true + false + false + true + false + true + true + 206 + 206 + Equivalent flow against reference direction due to phase shift + true + + + 1604 + 326 + 3 + 6 + Impedance + Impedance + 10 + 10 + true + true + false + false + true + false + true + true + 1782 + 1782 + Equivalent impedance + true + + + 1605 + 326 + 3 + 7 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + false + true + true + 276 + 276 + Number of hours the flow control is operating at maximum angle. + true + + + 1606 + 326 + 3 + 8 + Shadow Price + Shadow Price + 43 + 43 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow (expansion) price + true + + + 1607 + 326 + 3 + 9 + Rental + Rental + 14 + 34 + true + true + false + false + true + false + true + true + 678 + 678 + Rental + true + + + 1608 + 326 + 3 + 10 + Penalty + Penalty + 14 + 34 + true + true + false + false + true + false + true + true + 602 + 602 + Penalty incurred for shifting the angle + true + + + 1609 + 326 + 3 + 11 + Max Flow + Max Flow + 1 + 2 + true + true + false + false + false + false + false + true + 429 + 429 + Maximum flow that can flow on FC device + false + + + 1610 + 326 + 8 + 12 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Binary indicating if the unit was built + true + + + 1611 + 326 + 8 + 13 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the flow control + true + + + 1612 + 326 + 12 + 14 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1613 + 326 + 12 + 15 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1614 + 326 + 12 + 16 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1615 + 333 + 3 + 1 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow on the interface + true + + + 1616 + 333 + 3 + 2 + Flow Back + Flow Back + 1 + 2 + false + true + false + false + true + false + true + true + 206 + 206 + Flow on the interface in the counter-reference direction + true + + + 1617 + 333 + 3 + 3 + Net Flow + Net Flow + 1 + 2 + false + true + false + false + true + false + true + true + 1816 + 1816 + Net Flow on the interface + true + + + 1618 + 333 + 3 + 4 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the interface + true + + + 1619 + 333 + 3 + 5 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the interface + true + + + 1620 + 333 + 3 + 6 + Overload Export Limit + Overload Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2864 + 2864 + Maximum post-contingency flow allowed on the interface + true + + + 1621 + 333 + 3 + 7 + Overload Import Limit + Overload Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2865 + 2865 + Minimum post-contingency flow allowed on the interface + true + + + 1622 + 333 + 3 + 8 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1623 + 333 + 3 + 9 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1624 + 333 + 3 + 10 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the interface is congested in pre-contingency state + true + + + 1625 + 333 + 3 + 11 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the interface flow is congested in the counter-reference direction + true + + + 1626 + 333 + 3 + 12 + Hours Congested Total + Hours Congested Total + 6 + 6 + true + true + false + false + true + false + true + true + 2878 + 2878 + Number of hours interface is congested in the reference direction + true + + + 1627 + 333 + 3 + 13 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of interface limit in the reference direction in pre-contingency state + true + + + 1628 + 333 + 3 + 14 + Shadow Price Back + Shadow Price Back + 32 + 32 + false + true + false + false + true + false + true + true + 743 + 743 + Shadow price of interface limit in the counter-reference direction + true + + + 1629 + 333 + 3 + 15 + Shadow Price Total + Shadow Price Total + 32 + 32 + true + true + false + false + true + false + true + true + 2879 + 2879 + Shadow/expansion price + true + + + 1630 + 333 + 3 + 16 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Flowgate rental in pre-contingency state + true + + + 1631 + 333 + 3 + 17 + Rental Total + Rental Total + 14 + 34 + true + true + false + true + true + false + true + true + 2880 + 2880 + Flowgate rental + true + + + 1632 + 333 + 3 + 18 + Violation + Violation + 1 + 1 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of the interface limit. + true + + + 1633 + 333 + 3 + 19 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the interface limit in the counter-reference direction. + true + + + 1634 + 333 + 3 + 20 + Ramp + Ramp + 1 + 1 + true + false + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 1635 + 333 + 3 + 21 + Ramp Cost + Ramp Cost + 14 + 34 + true + true + false + true + true + false + true + true + 869 + 869 + Cost of ramping + true + + + 1636 + 333 + 3 + 22 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow on interface + true + + + 1637 + 333 + 3 + 23 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow on interface + true + + + 1638 + 333 + 3 + 24 + Fixed Flow + Fixed Flow + 1 + 2 + true + true + false + false + true + false + true + true + 197 + 197 + Fixed flow on interface + true + + + 1639 + 333 + 3 + 25 + Fixed Flow Violation + Fixed Flow Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1325 + 1325 + Violation of [Fixed Flow] constraint. + true + + + 1640 + 333 + 3 + 26 + Fixed Flow Violation Hours + Fixed Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1327 + 1327 + Number of hours that [Fixed Flow] is violated. + true + + + 1641 + 333 + 3 + 27 + Fixed Flow Violation Cost + Fixed Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1326 + 1326 + Cost of [Fixed Flow] violations. + true + + + 1642 + 333 + 3 + 28 + Offer Base + Offer Base + 1 + 1 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for balancing offer + true + + + 1643 + 333 + 3 + 29 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band for reference direction flows + true + + + 1644 + 333 + 3 + 30 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price offered in band for reference direction flows + true + + + 1645 + 333 + 3 + 31 + Offer Quantity Back + Offer Quantity Back + 1 + 2 + true + true + true + false + true + false + true + true + 573 + 573 + Quantity offered in band for counter-reference direction flows + true + + + 1646 + 333 + 3 + 32 + Offer Price Back + Offer Price Back + 33 + 33 + true + true + true + false + true + false + true + true + 570 + 570 + Price offered in band for counter-reference direction flows + true + + + 1647 + 333 + 3 + 33 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 1648 + 333 + 3 + 34 + Offer Cleared Back + Offer Cleared Back + 1 + 2 + true + true + true + false + true + false + true + true + 567 + 567 + Quantity cleared in band + true + + + 1649 + 333 + 3 + 35 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 1650 + 333 + 3 + 36 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under offer curve + true + + + 1651 + 333 + 6 + 37 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the interface. + true + + + 1652 + 333 + 6 + 38 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the interface in the counter-reference direction. + true + + + 1653 + 333 + 6 + 39 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the interface to region capacity reserves + true + + + 1654 + 333 + 6 + 40 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Reserve provided by lines in the interface + true + + + 1655 + 333 + 8 + 41 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (expansion of interface in both directions) + true + + + 1656 + 333 + 8 + 42 + Expansion Cost + Expansion Cost + 34 + 34 + true + true + false + false + true + false + false + false + 184 + 184 + Cost of expanding the interface by one megawatt + true + + + 1657 + 333 + 12 + 43 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1658 + 333 + 12 + 44 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1659 + 333 + 12 + 45 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1660 + 336 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from interface constraint + false + + + 1661 + 336 + 1 + 2 + Flow Coefficient + Flow Coefficient + 0 + 0 + true + false + false + false + false + false + false + true + 208 + 208 + Transformer flow coefficient + false + + + 1662 + 337 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from interface constraint + false + + + 1663 + 337 + 1 + 2 + Flow Coefficient + Flow Coefficient + 0 + 0 + true + false + false + false + false + false + false + true + 208 + 208 + Transformer flow coefficient + false + + + 1664 + 341 + 3 + 1 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + false + true + true + 276 + 276 + Number of hours that any monitored limit under the Contingency is binding. + true + + + 1665 + 341 + 3 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency shadow price + true + + + 1666 + 341 + 12 + 3 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1667 + 341 + 12 + 4 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1668 + 341 + 12 + 5 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1669 + 345 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from contingency constraint + false + + + 1670 + 346 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Contingency auto-detected Monitored Lines Post-Contingent Flows + false + + + 1671 + 346 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency auto-detected Monitored Lines Shadow price for contingency constraint + false + + + 1672 + 346 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from contingency constraint + false + + + 1673 + 347 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Post-Contingent Flows + true + + + 1674 + 347 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price for contingency constraint + true + + + 1675 + 347 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from contingency constraint + false + + + 1676 + 348 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from contingency constraint + false + + + 1677 + 349 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Post-Contingent Flows + true + + + 1678 + 349 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price for contingency constraint + true + + + 1679 + 349 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from contingency constraint + false + + + 1680 + 350 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Contingency auto-detected Monitored Transformers Post-Contingent Flows + false + + + 1681 + 350 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency auto-detected Monitored Transformers Shadow price for contingency constraint + false + + + 1682 + 350 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from contingency constraint + false + + + 1683 + 351 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Contingency auto-detected Monitored Interfaces Post-Contingent Flows + false + + + 1684 + 351 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency auto-detected Monitored Interfaces Shadow price for contingency constraint + false + + + 1685 + 352 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Post-Contingent Flows + true + + + 1686 + 352 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price for contingency constraint + true + + + 1687 + 353 + 3 + 1 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Price at the hub + true + + + 1688 + 353 + 3 + 2 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 1689 + 353 + 3 + 3 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 1690 + 353 + 3 + 4 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load their energy purchases + true + + + 1691 + 353 + 3 + 5 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1692 + 353 + 3 + 6 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1693 + 353 + 3 + 7 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1694 + 353 + 3 + 8 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of the hub price + true + + + 1695 + 353 + 3 + 9 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of the hub price + true + + + 1696 + 353 + 3 + 10 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of the hub price + true + + + 1697 + 353 + 12 + 11 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1698 + 353 + 12 + 12 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1699 + 353 + 12 + 13 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1700 + 358 + 1 + 1 + Quantity + Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 650 + 650 + Contract quantity + true + + + 1701 + 358 + 1 + 2 + Settlement + Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 738 + 738 + Settlement + true + + + 1702 + 358 + 1 + 3 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Settlement net of scheduled Price + true + + + 1703 + 358 + 1 + 4 + Source Price + Source Price + 33 + 33 + true + true + false + false + true + false + true + true + 1783 + 1783 + Price on source side + true + + + 1704 + 358 + 1 + 5 + Source Energy Charge + Source Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1784 + 1784 + Energy charge on source side + true + + + 1705 + 358 + 1 + 6 + Source Congestion Charge + Source Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1785 + 1785 + Congestion charge on source side + true + + + 1706 + 358 + 1 + 7 + Source Loss Charge + Source Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1786 + 1786 + Loss charge on source side + true + + + 1707 + 358 + 1 + 8 + Sink Price + Sink Price + 33 + 33 + true + true + false + false + true + false + true + true + 1787 + 1787 + Price on sink side + true + + + 1708 + 358 + 1 + 9 + Sink Energy Charge + Sink Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1788 + 1788 + Energy charge on sink side + true + + + 1709 + 358 + 1 + 10 + Sink Congestion Charge + Sink Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1789 + 1789 + Congestion charge on sink side + true + + + 1710 + 358 + 1 + 11 + Sink Loss Charge + Sink Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1790 + 1790 + Loss charge on sink side + true + + + 1711 + 358 + 1 + 12 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price difference between the source and sink side + true + + + 1712 + 369 + 3 + 1 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Heat production + true + + + 1713 + 369 + 3 + 2 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Heat production cost + true + + + 1714 + 369 + 3 + 3 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 1715 + 369 + 3 + 4 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1716 + 369 + 3 + 5 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 1717 + 369 + 3 + 6 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + false + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 1718 + 369 + 3 + 7 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 1719 + 369 + 3 + 8 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 1720 + 369 + 3 + 9 + Electrical Usage + Electrical Usage + 1 + 2 + true + true + false + false + true + false + true + true + 1938 + 1938 + Electrical usage from the electric boiler + true + + + 1721 + 369 + 3 + 10 + Units Producing Heat + Units Producing Heat + 0 + 0 + true + false + false + false + true + false + true + true + 1939 + 1939 + Number of units producing heat + true + + + 1722 + 369 + 3 + 11 + Ramp + Ramp + 35 + 35 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 1723 + 369 + 3 + 12 + Ramp Up + Ramp Up + 15 + 15 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 1724 + 369 + 3 + 13 + Ramp Down + Ramp Down + 15 + 15 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 1725 + 369 + 3 + 14 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 1726 + 369 + 3 + 15 + Efficiency + Efficiency + 37 + 37 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of heat production + true + + + 1727 + 369 + 3 + 16 + Marginal Heat Rate + Marginal Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal heat production level + true + + + 1728 + 369 + 3 + 17 + Average Heat Rate + Average Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate + true + + + 1729 + 369 + 3 + 18 + SRMC + SRMC + 29 + 29 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 1730 + 369 + 6 + 19 + Installed Capacity + Installed Capacity + 35 + 35 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity + true + + + 1731 + 369 + 8 + 20 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of Heat Plant units built in this year + true + + + 1732 + 369 + 8 + 21 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 1733 + 369 + 8 + 22 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 1734 + 369 + 8 + 23 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of Heat Plant units retired in this year + true + + + 1735 + 369 + 8 + 24 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the Heat Plant + true + + + 1736 + 369 + 12 + 25 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1737 + 369 + 12 + 26 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1738 + 369 + 12 + 27 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1739 + 372 + 3 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 1740 + 372 + 3 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the heat plant + true + + + 1741 + 372 + 3 + 3 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 1742 + 372 + 3 + 4 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used + true + + + 1743 + 372 + 3 + 5 + Marginal Heat Rate + Marginal Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal heat production level + true + + + 1744 + 372 + 3 + 6 + SRMC + SRMC + 29 + 29 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 1745 + 372 + 3 + 7 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours the Fuel is in use by the heat plant + true + + + 1746 + 373 + 3 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 1747 + 373 + 3 + 2 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 1748 + 373 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used + true + + + 1749 + 381 + 3 + 1 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from heat node + true + + + 1750 + 381 + 3 + 2 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into heat node + true + + + 1751 + 381 + 3 + 3 + Heat Demand + Heat Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1941 + 1941 + Demand at the heat node + true + + + 1752 + 381 + 3 + 4 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1753 + 381 + 12 + 5 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1754 + 381 + 12 + 6 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1755 + 381 + 12 + 7 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1756 + 387 + 1 + 1 + Sales + Sales + 15 + 16 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 1757 + 387 + 1 + 2 + Purchases + Purchases + 15 + 16 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 1758 + 387 + 1 + 3 + Net Sales + Net Sales + 15 + 16 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 1759 + 387 + 1 + 4 + Net Purchases + Net Purchases + 15 + 16 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 1760 + 387 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 1761 + 387 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 1762 + 387 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 1763 + 387 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 1764 + 391 + 3 + 1 + End Heat + End Heat + 15 + 15 + true + true + false + false + true + false + true + true + 2213 + 2213 + Heat in storage at the end of the period + true + + + 1765 + 391 + 3 + 2 + Initial Heat + Initial Heat + 15 + 15 + true + true + false + false + true + false + true + true + 2212 + 2212 + Initial heat in the storage + true + + + 1766 + 391 + 3 + 3 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into storage + true + + + 1767 + 391 + 3 + 4 + Heat Injection Cost + Heat Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1544 + 1544 + Cost of injecting heat into storage + true + + + 1768 + 391 + 3 + 5 + Heat Loss + Heat Loss + 15 + 16 + true + true + false + true + true + false + true + true + 1516 + 1516 + Rate at which heat is lost from storage + true + + + 1769 + 391 + 3 + 6 + Heat Shadow Price + Heat Shadow Price + 61 + 61 + true + true + false + false + true + false + true + true + 1545 + 1545 + Shadow price of heat in storage + true + + + 1770 + 391 + 3 + 7 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from storage + true + + + 1771 + 391 + 3 + 8 + Heat Withdrawal Cost + Heat Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1543 + 1543 + Cost of withdrawing heat from storage + true + + + 1772 + 391 + 3 + 9 + Net Heat Withdrawal + Net Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1542 + 1542 + Net of withdrawal and injection + true + + + 1773 + 391 + 3 + 10 + Max Heat + Max Heat + 15 + 15 + true + true + false + true + true + false + true + true + 1514 + 1514 + Maximum heat allowed in storage + true + + + 1774 + 391 + 3 + 11 + Min Heat + Min Heat + 15 + 15 + true + true + false + true + true + false + true + true + 1515 + 1515 + Minimum heat allowed in storage + true + + + 1775 + 391 + 8 + 12 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of Heat Storage units built in this year + true + + + 1776 + 391 + 8 + 13 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the heat storage + true + + + 1777 + 391 + 8 + 14 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of Heat Storage units retired in this year + true + + + 1778 + 391 + 8 + 15 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the heat storage + true + + + 1779 + 397 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Gas Field is in service + true + + + 1780 + 397 + 3 + 2 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume of gas in the field + true + + + 1781 + 397 + 3 + 3 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 1782 + 397 + 3 + 4 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas field + true + + + 1783 + 397 + 3 + 5 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Incremental cost of extracting gas from the field + true + + + 1784 + 397 + 3 + 6 + Carrying Cost + Carrying Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2039 + 2039 + Total cost of gas carried in the gas field + true + + + 1785 + 397 + 3 + 7 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost from the Inventory Price of holding gas in a field + true + + + 1786 + 397 + 3 + 8 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Average price of producing gas + true + + + 1787 + 397 + 3 + 9 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch Price + true + + + 1788 + 397 + 3 + 10 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 1789 + 397 + 3 + 11 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1790 + 397 + 3 + 12 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1791 + 397 + 3 + 13 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the field + true + + + 1792 + 397 + 3 + 14 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas field expansion + true + + + 1793 + 397 + 3 + 15 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by extracting gas from the field + true + + + 1794 + 397 + 7 + 16 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1795 + 397 + 7 + 17 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 1796 + 397 + 7 + 18 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas field is on maintenance + true + + + 1797 + 397 + 7 + 19 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 1798 + 397 + 7 + 20 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas field is on forced outage of production + true + + + 1799 + 397 + 7 + 21 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Field capacity available in production + true + + + 1800 + 397 + 8 + 22 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of gas fields built this year + true + + + 1801 + 397 + 8 + 23 + Capacity Built + Capacity Built + 76 + 76 + true + true + false + false + true + false + false + false + 54 + 54 + Gas field capacity built + true + + + 1802 + 397 + 8 + 24 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of developing the gas field + true + + + 1803 + 397 + 12 + 25 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1804 + 397 + 12 + 26 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1805 + 397 + 12 + 27 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1806 + 402 + 3 + 1 + Production + Production + 58 + 58 + true + true + false + true + true + false + true + true + 624 + 624 + Total production from gas field + true + + + 1807 + 402 + 3 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Production costs associated with company gas field production + true + + + 1808 + 402 + 3 + 3 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance costs + true + + + 1809 + 402 + 3 + 4 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1810 + 402 + 3 + 5 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with gas scarcity + true + + + 1811 + 402 + 3 + 6 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net Revenue + true + + + 1812 + 402 + 3 + 7 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net Profit = Net Revenue - Fixed Costs + true + + + 1813 + 406 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of Gas Plant units in service + true + + + 1814 + 406 + 3 + 2 + Units Operating + Units Operating + 0 + 0 + true + false + false + false + true + false + true + true + 2049 + 2049 + Number of units operating + true + + + 1815 + 406 + 3 + 3 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 1816 + 406 + 3 + 4 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 1817 + 406 + 3 + 5 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 1818 + 406 + 3 + 6 + Start Profile Violation + Start Profile Violation + 75 + 76 + true + true + false + false + true + false + true + true + 2640 + 2640 + Violation of [Start Profile] constraint. + true + + + 1819 + 406 + 3 + 7 + Start Profile Violation Cost + Start Profile Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2641 + 2641 + Cost of [Start Profile] violations. + true + + + 1820 + 406 + 3 + 8 + Raw Gas + Raw Gas + 58 + 76 + true + true + false + true + true + false + true + true + 1739 + 1739 + The amount of raw gas processed + true + + + 1821 + 406 + 3 + 9 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + The amount of saleable gas processed + true + + + 1822 + 406 + 3 + 10 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + The total cost for processing the gas + true + + + 1823 + 406 + 3 + 11 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Incremental dispatch price of processing gas + true + + + 1824 + 406 + 3 + 12 + Consumption + Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 1437 + 1437 + The amount of pipeline quality gas consumed in processing + true + + + 1825 + 406 + 3 + 13 + Energy Consumption + Energy Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + The total electric consumption of the Gas Plant + true + + + 1826 + 406 + 3 + 14 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Variable operations and maintenance cost + true + + + 1827 + 406 + 3 + 15 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1828 + 406 + 3 + 16 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1829 + 406 + 3 + 17 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 1830 + 406 + 3 + 18 + SRMC + SRMC + 60 + 60 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost of gas production + true + + + 1831 + 406 + 3 + 19 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served as raw gas to the gas plant + true + + + 1832 + 406 + 3 + 20 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity producing + false + + + 1833 + 406 + 6 + 21 + Installed Capacity + Installed Capacity + 75 + 76 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Production x Units) + false + + + 1834 + 406 + 6 + 22 + Rated Capacity + Rated Capacity + 75 + 76 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + false + + + 1835 + 406 + 3 + 23 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas plant expansion + true + + + 1836 + 406 + 3 + 24 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by extracting gas from the gas plant + true + + + 1837 + 406 + 7 + 25 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1838 + 406 + 7 + 26 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 1839 + 406 + 7 + 27 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas plant is on maintenance + true + + + 1840 + 406 + 7 + 28 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 1841 + 406 + 7 + 29 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas plant is on forced outage of Production + true + + + 1842 + 406 + 7 + 30 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of plant capacity available in production + true + + + 1843 + 406 + 8 + 31 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of gas plant units built + true + + + 1844 + 406 + 8 + 32 + Capacity Built + Capacity Built + 76 + 76 + true + true + false + false + true + false + false + false + 54 + 54 + Gas plant capacity built + true + + + 1845 + 406 + 8 + 33 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the plant for capacity + false + + + 1846 + 406 + 8 + 34 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + false + + + 1847 + 406 + 8 + 35 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Gas Plant + true + + + 1848 + 406 + 8 + 36 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of gas plant units retired + true + + + 1849 + 406 + 8 + 37 + Capacity Retired + Capacity Retired + 76 + 76 + true + true + false + false + true + false + false + false + 66 + 66 + Gas plant capacity Retired + true + + + 1850 + 406 + 8 + 38 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Gas Plant + true + + + 1851 + 406 + 8 + 39 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 1852 + 406 + 8 + 40 + Total Cost + Total Cost + 34 + 34 + true + true + false + true + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 1853 + 406 + 8 + 41 + Levelized Cost + Levelized Cost + 60 + 60 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of gas produced + true + + + 1854 + 406 + 12 + 42 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1855 + 406 + 12 + 43 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1856 + 406 + 12 + 44 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1857 + 416 + 3 + 1 + Flow In + Flow In + 75 + 76 + true + true + false + true + true + false + true + true + 1974 + 1974 + Quantity of gas pumped into the pipeline + true + + + 1858 + 416 + 3 + 2 + Flow Out + Flow Out + 75 + 76 + true + true + false + true + true + false + true + true + 1975 + 1975 + Quantity of gas extracted from the pipeline + true + + + 1859 + 416 + 3 + 3 + Max Daily Flow + Max Daily Flow + 75 + 76 + true + true + false + false + true + false + true + true + 2031 + 2031 + Maximum daily flow limit of the pipeline + true + + + 1860 + 416 + 3 + 4 + Max Observed Flow + Max Observed Flow + 75 + 76 + true + true + false + true + true + false + true + true + 2146 + 2146 + Quantity of max observed flow in a pipeline. + true + + + 1861 + 416 + 3 + 5 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the pipeline is congested in the reference direction + true + + + 1862 + 416 + 3 + 6 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the pipeline is congested in the counter-reference direction + true + + + 1863 + 416 + 3 + 7 + Max Volume + Max Volume + 76 + 76 + true + true + false + true + true + false + true + true + 466 + 466 + Maximum volume of gas stored in the pipeline + true + + + 1864 + 416 + 3 + 8 + Min Volume + Min Volume + 76 + 76 + true + true + false + true + true + false + true + true + 510 + 510 + Minimum volume of gas stored in the pipeline + true + + + 1865 + 416 + 3 + 9 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Volume of gas stored in the pipeline at the beginning of the horizon + true + + + 1866 + 416 + 3 + 10 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Volume of gas in the pipeline at the end of the period + true + + + 1867 + 416 + 3 + 11 + Volume Imbalance + Volume Imbalance + 76 + 76 + true + true + false + true + true + false + true + true + 1654 + 1654 + Absolute value of the difference between delivery volume into the pipeline and the redelivered volume off the pipeline. + true + + + 1868 + 416 + 3 + 12 + Utilization Forward + Utilization Forward + 12 + 12 + true + true + false + false + true + false + true + true + 2556 + 2556 + Flow forward capacity utilization + true + + + 1869 + 416 + 3 + 13 + Utilization Back + Utilization Back + 12 + 12 + true + true + false + false + true + false + true + true + 2557 + 2557 + Flow back capacity utilization + true + + + 1870 + 416 + 3 + 14 + Imbalance Cost + Imbalance Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1656 + 1656 + Cost of imbalances + true + + + 1871 + 416 + 3 + 15 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting gas from the pipeline + true + + + 1872 + 416 + 3 + 16 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1873 + 416 + 3 + 17 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1874 + 416 + 3 + 18 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Gas pipeline reservation cost + true + + + 1875 + 416 + 3 + 19 + Loss + Loss + 75 + 76 + true + true + false + true + true + false + true + true + 372 + 372 + Gas pipeline flow loss amount + true + + + 1876 + 416 + 3 + 20 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Gas pipeline total cost + true + + + 1877 + 416 + 3 + 21 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Total Variable Costs of gas from the pipeline + true + + + 1878 + 416 + 3 + 22 + Pressure + Pressure + 89 + 89 + true + true + false + true + true + false + true + true + 2425 + 2425 + Pressure of gas stored in the pipeline at the start of the period + true + + + 1879 + 416 + 3 + 23 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas pipeline expansion + true + + + 1880 + 416 + 3 + 24 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by flowing gas through the pipeline + true + + + 1881 + 416 + 7 + 25 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1882 + 416 + 7 + 26 + Flow Capacity Outage + Flow Capacity Outage + 75 + 76 + true + true + false + false + true + false + true + true + 2147 + 2147 + Flow capacity on outage due to maintenance or forced outage + true + + + 1883 + 416 + 7 + 27 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity on maintenance + true + + + 1884 + 416 + 7 + 28 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the pipeline is on maintenance + true + + + 1885 + 416 + 7 + 29 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1886 + 416 + 7 + 30 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the pipeline is on forced outage + true + + + 1887 + 416 + 7 + 31 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of pipeline capacity available + true + + + 1888 + 416 + 8 + 32 + Max Daily Flow Built + Max Daily Flow Built + 75 + 76 + true + true + false + false + true + false + false + false + 2148 + 2148 + Amount of increase in Gas Pipeline Max Daily Flow + true + + + 1889 + 416 + 8 + 33 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas pipeline + true + + + 1890 + 416 + 8 + 34 + Max Daily Flow Retired + Max Daily Flow Retired + 75 + 76 + true + true + false + false + true + false + false + false + 2149 + 2149 + Amount of reduction in Gas Pipeline Max Daily Flow + true + + + 1891 + 416 + 8 + 35 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas pipeline + true + + + 1892 + 416 + 8 + 36 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 1893 + 416 + 12 + 37 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1894 + 416 + 12 + 38 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1895 + 416 + 12 + 39 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1896 + 419 + 3 + 1 + Participation Factor + Participation Factor + 12 + 12 + true + true + true + false + true + false + true + true + 1840 + 1840 + Percentage of total Gas Node inflow from a given exporting Gas Pipeline + true + + + 1897 + 420 + 3 + 1 + Participation Factor + Participation Factor + 12 + 12 + true + true + true + false + true + false + true + true + 1840 + 1840 + Percentage of total Gas Node inflow from a given importing Gas Pipeline + true + + + 1898 + 426 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Gas Node is in service + true + + + 1899 + 426 + 3 + 2 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas fields + true + + + 1900 + 426 + 3 + 3 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Demand at the gas node + true + + + 1901 + 426 + 3 + 4 + Flow + Flow + 75 + 76 + true + true + false + true + true + false + true + true + 205 + 205 + Flow of gas through the node + true + + + 1902 + 426 + 3 + 5 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on connected Gas Pipelines, Gas Plants and Gas Transports + true + + + 1903 + 426 + 3 + 6 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on connected Gas Pipelines, Gas Plants and Gas Transports + true + + + 1904 + 426 + 3 + 7 + Net Interchange + Net Interchange + 75 + 76 + true + true + false + true + true + false + true + true + 543 + 543 + Net exports on gas pipelines + true + + + 1905 + 426 + 3 + 8 + Net Market Sales + Net Market Sales + 75 + 76 + true + true + false + true + true + false + true + true + 545 + 545 + Net sales to external gas markets + true + + + 1906 + 426 + 3 + 9 + Facility Consumption + Facility Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 2732 + 2732 + Gas consumed by connected Facilities + true + + + 1907 + 426 + 3 + 10 + Facility Production + Facility Production + 75 + 76 + true + true + false + true + true + false + true + true + 2869 + 2869 + Gas produced by connected Facilities + true + + + 1908 + 426 + 3 + 11 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume in gas storage + true + + + 1909 + 426 + 3 + 12 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + End volume in gas storage + true + + + 1910 + 426 + 3 + 13 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2382 + 2382 + Cost of flowing gas through the node + true + + + 1911 + 426 + 3 + 14 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in supply of gas at the node + true + + + 1912 + 426 + 3 + 15 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 1913 + 426 + 3 + 16 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 1914 + 426 + 3 + 17 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas at the node + true + + + 1915 + 426 + 3 + 18 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 1916 + 426 + 3 + 19 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 1917 + 426 + 3 + 20 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Demand at the gas node net of shortages, excesses and DSM Program reductions + true + + + 1918 + 426 + 3 + 21 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas at the gas node + true + + + 1919 + 426 + 3 + 22 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Settlement price for gas at the gas node + true + + + 1920 + 426 + 3 + 23 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Delivered price for gas at the gas node + true + + + 1921 + 426 + 3 + 24 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Delivered cost of gas at the gas node + true + + + 1922 + 426 + 3 + 25 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 1923 + 426 + 3 + 26 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1924 + 426 + 3 + 27 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1925 + 426 + 3 + 28 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 1926 + 426 + 8 + 29 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the gas node is built in this year + true + + + 1927 + 426 + 8 + 30 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas node + true + + + 1928 + 426 + 8 + 31 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the gas node is retired in this year + true + + + 1929 + 426 + 8 + 32 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas node + true + + + 1930 + 426 + 3 + 33 + Shipments Imported + Shipments Imported + 0 + 0 + true + true + false + true + true + false + true + true + 2759 + 2759 + Number of shipments received from Gas Transports + true + + + 1931 + 426 + 3 + 34 + Shipments Exported + Shipments Exported + 0 + 0 + true + true + false + true + true + false + true + true + 2760 + 2760 + Number of shipments sent through Gas Transports + true + + + 1932 + 426 + 12 + 35 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1933 + 426 + 12 + 36 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1934 + 426 + 12 + 37 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1935 + 430 + 3 + 1 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on connected Gas Transports + true + + + 1936 + 430 + 3 + 2 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on connected Gas Transports + true + + + 1937 + 430 + 3 + 3 + Shipments Imported + Shipments Imported + 0 + 0 + true + true + false + true + true + false + true + true + 2759 + 2759 + Number of shipments received from the Gas Transport + true + + + 1938 + 430 + 3 + 4 + Shipments Exported + Shipments Exported + 0 + 0 + true + true + false + true + true + false + true + true + 2760 + 2760 + Number of shipments exported through the Gas Transport + true + + + 1939 + 430 + 3 + 5 + Port Cost + Port Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2794 + 2794 + Cost of using port by gas transport + true + + + 1940 + 433 + 1 + 1 + Sales + Sales + 58 + 58 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 1941 + 433 + 1 + 2 + Purchases + Purchases + 58 + 58 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 1942 + 433 + 1 + 3 + Net Sales + Net Sales + 58 + 58 + true + true + false + true + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 1943 + 433 + 1 + 4 + Net Purchases + Net Purchases + 58 + 58 + true + true + false + true + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 1944 + 433 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 1945 + 433 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 1946 + 433 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 1947 + 433 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 1948 + 436 + 3 + 1 + Max Volume + Max Volume + 76 + 76 + true + true + false + true + true + false + true + true + 466 + 466 + Maximum volume of gas allowed in storage + true + + + 1949 + 436 + 3 + 2 + Min Volume + Min Volume + 76 + 76 + true + true + false + true + true + false + true + true + 510 + 510 + Minimum volume of gas allowed in storage + true + + + 1950 + 436 + 3 + 3 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume of gas in the storage + true + + + 1951 + 436 + 3 + 4 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 1952 + 436 + 3 + 5 + Working Volume + Working Volume + 76 + 76 + true + true + false + true + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 1953 + 436 + 3 + 6 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization based on end volume + true + + + 1954 + 436 + 3 + 7 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 1955 + 436 + 3 + 8 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 1956 + 436 + 3 + 9 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 1957 + 436 + 3 + 10 + Withdrawal + Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of gas withdrawn from the storage + true + + + 1958 + 436 + 3 + 11 + Max Withdrawal Available + Max Withdrawal Available + 75 + 76 + true + true + false + true + true + false + true + true + 2431 + 2431 + Quantity of gas available to withdraw based on the specified gas storage ratchets + true + + + 1959 + 436 + 3 + 12 + Injection + Injection + 75 + 76 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of gas injected into the gas storage + true + + + 1960 + 436 + 3 + 13 + Max Injection Available + Max Injection Available + 75 + 76 + true + true + false + true + true + false + true + true + 2432 + 2432 + Quantity of gas available to inject based on the specified gas storage ratchets + true + + + 1961 + 436 + 3 + 14 + Net Utilization + Net Utilization + 75 + 76 + true + true + false + true + true + false + true + true + 2052 + 2052 + Net of withdrawal and injection + true + + + 1962 + 436 + 3 + 15 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawing gas from the storage + true + + + 1963 + 436 + 3 + 16 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injecting gas into the storage + true + + + 1964 + 436 + 3 + 17 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of injections and withdrawals + true + + + 1965 + 436 + 3 + 18 + Carrying Cost + Carrying Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2039 + 2039 + Total cost of gas carried in storage + true + + + 1966 + 436 + 3 + 19 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the storage + true + + + 1967 + 436 + 3 + 20 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch price + true + + + 1968 + 436 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1969 + 436 + 3 + 22 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1970 + 436 + 3 + 23 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Reservation cost for Gas Storage + true + + + 1971 + 436 + 3 + 24 + Injection Fuel + Injection Fuel + 75 + 76 + true + true + false + true + true + false + true + true + 1970 + 1970 + Fuel amount lost in the gas storage injection + true + + + 1972 + 436 + 3 + 25 + Withdraw Fuel + Withdraw Fuel + 75 + 76 + true + true + false + true + true + false + true + true + 1971 + 1971 + Fuel amount lost in the gas storage withdrawal + true + + + 1973 + 436 + 3 + 26 + Net Injection + Net Injection + 75 + 76 + true + true + false + true + true + false + true + true + 542 + 542 + Net injection after injection fuel loss + true + + + 1974 + 436 + 3 + 27 + Net Injection Cost + Net Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2053 + 2053 + Net injection Cost for the gas storage + true + + + 1975 + 436 + 3 + 28 + Net Withdrawal + Net Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net withdrawal after withdrawal fuel loss + true + + + 1976 + 436 + 3 + 29 + Net Withdrawal Cost + Net Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2054 + 2054 + Net withdrawal cost for the gas storage + true + + + 1977 + 436 + 3 + 30 + Loss + Loss + 75 + 76 + true + true + false + true + true + false + true + true + 372 + 372 + Gas storage flow loss amount + true + + + 1978 + 436 + 3 + 31 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Total variable cost for the gas storage + true + + + 1979 + 436 + 3 + 32 + Initial Inventory Value + Initial Inventory Value + 34 + 34 + true + true + false + true + true + false + true + true + 2073 + 2073 + Value of inventory in gas storage at the start of a period. + true + + + 1980 + 436 + 3 + 33 + Ending Inventory Value + Ending Inventory Value + 34 + 34 + true + true + false + true + true + false + true + true + 2211 + 2211 + Value of inventory in gas storage at the end of period. + true + + + 1981 + 436 + 3 + 34 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost from the Inventory Charge of holding gas in storage + true + + + 1982 + 436 + 3 + 35 + Initial Energy + Initial Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2406 + 2406 + Value of heat energy in gas storage at the start of period + true + + + 1983 + 436 + 3 + 36 + Ending Energy + Ending Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2409 + 2409 + Value of heat energy in gas storage at the end of period + true + + + 1984 + 436 + 3 + 37 + Initial Carbon Quantity + Initial Carbon Quantity + 20 + 20 + true + true + false + true + true + false + true + true + 2444 + 2444 + Carbon quantity of the gas storage at the start of period + true + + + 1985 + 436 + 3 + 38 + Ending Carbon Quantity + Ending Carbon Quantity + 20 + 20 + true + true + false + true + true + false + true + true + 2410 + 2410 + Carbon Quantity of the gas storage at the end of period + true + + + 1986 + 436 + 3 + 39 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend injected into the gas storage + true + + + 1987 + 436 + 3 + 40 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas storage expansion + true + + + 1988 + 436 + 3 + 41 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered in the gas storage operation + true + + + 1989 + 436 + 3 + 42 + Energy Consumption + Energy Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + total energy consumption of the Gas Storage + true + + + 1990 + 436 + 3 + 43 + Total Operation + Total Operation + 75 + 76 + true + true + false + true + true + false + true + true + 2775 + 2775 + Total of net withdrawal and net injection + true + + + 1991 + 436 + 7 + 44 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1992 + 436 + 7 + 45 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Withdrawal/Injection on maintenance + true + + + 1993 + 436 + 7 + 46 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas storage is on maintenance + true + + + 1994 + 436 + 7 + 47 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Withdrawal/Injection on Forced Outage + true + + + 1995 + 436 + 7 + 48 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas storage is on forced outage of Withdrawal/Injection + true + + + 1996 + 436 + 7 + 49 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Storage capacity available in withdrawal/injection + true + + + 1997 + 436 + 8 + 50 + Max Volume Built + Max Volume Built + 76 + 76 + true + true + false + false + true + false + false + false + 2152 + 2152 + Amount of increase in Gas Storage Max Volume + true + + + 1998 + 436 + 8 + 51 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas storage + true + + + 1999 + 436 + 8 + 52 + Max Volume Retired + Max Volume Retired + 76 + 76 + true + true + false + false + true + false + false + false + 2153 + 2153 + Amount of reduction in Gas Storage Max Volume + true + + + 2000 + 436 + 8 + 53 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas storage + true + + + 2001 + 436 + 8 + 54 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 2002 + 436 + 8 + 55 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of the amount built + true + + + 2003 + 436 + 8 + 56 + Total Cost + Total Cost + 34 + 34 + true + true + false + true + true + false + false + false + 898 + 898 + Total of fixed, withdrawal and injection costs + true + + + 2004 + 436 + 8 + 57 + Levelized Cost + Levelized Cost + 60 + 60 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of gas injections and withdrawals + true + + + 2005 + 436 + 12 + 58 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2006 + 436 + 12 + 59 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2007 + 436 + 12 + 60 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2008 + 439 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas storage + true + + + 2009 + 439 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas storage + true + + + 2010 + 439 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the gas storage + true + + + 2011 + 441 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas storage + true + + + 2012 + 441 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas storage + true + + + 2013 + 441 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the gas storage + true + + + 2014 + 442 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas storage + true + + + 2015 + 442 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas storage + true + + + 2016 + 442 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the gas storage + true + + + 2017 + 444 + 3 + 1 + Delivered Energy + Delivered Energy + 75 + 76 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by source gas storage to the gas storage + true + + + 2018 + 444 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by source gas storage to the gas storage + true + + + 2019 + 444 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by source gas storage to the gas storage + true + + + 2020 + 445 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas storage + true + + + 2021 + 445 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas storage + true + + + 2022 + 445 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the gas storage + true + + + 2023 + 446 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas storage + true + + + 2024 + 446 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas storage + true + + + 2025 + 446 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the gas storage + true + + + 2026 + 450 + 3 + 1 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Demand for gas + true + + + 2027 + 450 + 3 + 2 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in gas supply + true + + + 2028 + 450 + 3 + 3 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 2029 + 450 + 3 + 4 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 2030 + 450 + 3 + 5 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas + true + + + 2031 + 450 + 3 + 6 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 2032 + 450 + 3 + 7 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 2033 + 450 + 3 + 8 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages, excesses and DSM Program reductions + true + + + 2034 + 450 + 3 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 2035 + 450 + 3 + 10 + Price Paid + Price Paid + 60 + 60 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for gas demand + true + + + 2036 + 450 + 3 + 11 + Bid Quantity + Bid Quantity + 75 + 76 + true + true + true + true + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 2037 + 450 + 3 + 12 + Bid Price + Bid Price + 60 + 60 + true + true + true + false + true + false + true + true + 33 + 33 + Value of gas in band + true + + + 2038 + 450 + 3 + 13 + Bid Cleared + Bid Cleared + 75 + 76 + true + true + true + true + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 2039 + 450 + 3 + 14 + Cleared Bid Price + Cleared Bid Price + 60 + 60 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 2040 + 450 + 3 + 15 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 2041 + 450 + 3 + 16 + Baseline Demand + Baseline Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2023 + 2023 + Demand without DSM reduction + true + + + 2042 + 450 + 3 + 17 + Total DSM Reduction + Total DSM Reduction + 75 + 76 + true + true + false + true + true + false + true + true + 2024 + 2024 + DSM reduction + true + + + 2043 + 450 + 3 + 18 + Served Demand + Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2070 + 2070 + Served Demand (with respect to excess and shortage) + true + + + 2044 + 450 + 3 + 19 + Peak Served Demand + Peak Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2143 + 2143 + Peak Served Demand (with respect to excess and shortage) + true + + + 2045 + 450 + 3 + 20 + Peak Unserved Demand + Peak Unserved Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2144 + 2144 + Peak Unserved Demand (with respect to excess and shortage) + true + + + 2046 + 450 + 3 + 21 + Unaccounted Demand + Unaccounted Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2351 + 2351 + Percentage of unaccounted gas demand + true + + + 2047 + 450 + 3 + 22 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Total emissions made by the blend of gas serving the Gas Demand + true + + + 2048 + 450 + 3 + 23 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served to meet the gas demand + true + + + 2049 + 450 + 12 + 24 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2050 + 450 + 12 + 25 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2051 + 450 + 12 + 26 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2052 + 453 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas demand + true + + + 2053 + 453 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas demand + true + + + 2054 + 453 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the gas demand + true + + + 2055 + 454 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas demand + true + + + 2056 + 454 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas demand + true + + + 2057 + 454 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the gas demand + true + + + 2058 + 455 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas demand + true + + + 2059 + 455 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas demand + true + + + 2060 + 455 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the gas demand + true + + + 2061 + 457 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the gas demand + true + + + 2062 + 457 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the gas demand + true + + + 2063 + 457 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas storage to the gas demand + true + + + 2064 + 459 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas demand + true + + + 2065 + 459 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas demand + true + + + 2066 + 459 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the gas demand + true + + + 2067 + 460 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas demand + true + + + 2068 + 460 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas demand + true + + + 2069 + 460 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the gas demand + true + + + 2070 + 461 + 1 + 1 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Gas demand + true + + + 2071 + 461 + 1 + 2 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 2072 + 461 + 1 + 3 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 2073 + 461 + 1 + 4 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 2074 + 461 + 1 + 5 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 2075 + 461 + 1 + 6 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages and excesses + true + + + 2076 + 461 + 1 + 7 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 2077 + 462 + 3 + 1 + Reduction Amount + Reduction Amount + 75 + 76 + true + true + false + true + true + false + true + true + 2025 + 2025 + Demand reduction caused by Gas DSM program + true + + + 2078 + 462 + 3 + 2 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable cost of gas dsm program + true + + + 2079 + 462 + 3 + 3 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2080 + 462 + 3 + 4 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs + true + + + 2081 + 462 + 3 + 5 + Max Reduction + Max Reduction + 75 + 76 + true + true + false + true + true + false + false + false + 2884 + 2884 + Maximum demand reduction for the Gas DSM program + true + + + 2082 + 462 + 8 + 6 + Reduction Amount Built + Reduction Amount Built + 75 + 76 + true + true + false + false + true + false + false + false + 2687 + 2687 + Demand reduction amount chosen to be implemented + true + + + 2083 + 462 + 8 + 7 + Reduction Level Built + Reduction Level Built + 0 + 0 + true + true + false + false + true + false + false + false + 2885 + 2885 + Implementation level of the Gas DSM program + true + + + 2084 + 462 + 8 + 8 + Capital Cost + Capital Cost + 34 + 34 + true + true + false + true + true + false + false + false + 2018 + 2018 + Capital cost of the gas dsm program + true + + + 2085 + 462 + 12 + 9 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2086 + 462 + 12 + 10 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2087 + 462 + 12 + 11 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2088 + 468 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of gas fields in the basin + true + + + 2089 + 468 + 3 + 2 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Volume of gas in the basin at the start of the period + true + + + 2090 + 468 + 3 + 3 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Volume of gas in the basin at the end of the period + true + + + 2091 + 468 + 3 + 4 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced from the basin + true + + + 2092 + 468 + 3 + 5 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting gas from the basin + true + + + 2093 + 468 + 3 + 6 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Average price of producing gas from basin fields + true + + + 2094 + 468 + 3 + 7 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Average dispatch price from basin fields + true + + + 2095 + 468 + 3 + 8 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2096 + 468 + 3 + 9 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2097 + 468 + 3 + 10 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the basin + true + + + 2098 + 468 + 8 + 11 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of gas fields built in the basin + true + + + 2099 + 468 + 8 + 12 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building gas fields in the basin + true + + + 2100 + 468 + 12 + 13 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2101 + 468 + 12 + 14 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2102 + 468 + 12 + 15 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2103 + 473 + 3 + 1 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas fields + true + + + 2104 + 473 + 3 + 2 + Peak Served Zone Demand + Peak Served Zone Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2203 + 2203 + Gas Peak Served Demand in gas zone + true + + + 2105 + 473 + 3 + 3 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Gas demand + true + + + 2106 + 473 + 3 + 4 + Generator Offtake + Generator Offtake + 75 + 76 + true + true + false + true + true + false + true + true + 2692 + 2692 + Generator Offtake from Gas Nodes in Gas Zone + true + + + 2107 + 473 + 3 + 5 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on gas pipelines + true + + + 2108 + 473 + 3 + 6 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on gas pipelines + true + + + 2109 + 473 + 3 + 7 + Net Interchange + Net Interchange + 75 + 76 + true + true + false + true + true + false + true + true + 543 + 543 + Net exports on gas pipelines + true + + + 2110 + 473 + 3 + 8 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume in gas storage + true + + + 2111 + 473 + 3 + 9 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + End volume in gas storage + true + + + 2112 + 473 + 3 + 10 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in gas supply + true + + + 2113 + 473 + 3 + 11 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 2114 + 473 + 3 + 12 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 2115 + 473 + 3 + 13 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas + true + + + 2116 + 473 + 3 + 14 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 2117 + 473 + 3 + 15 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 2118 + 473 + 3 + 16 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages and excesses + true + + + 2119 + 473 + 3 + 17 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 2120 + 473 + 3 + 18 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Average of the gas prices across all gas nodes in the Gas Zone + true + + + 2121 + 473 + 3 + 19 + Price Paid + Price Paid + 60 + 60 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for gas demand + true + + + 2122 + 473 + 3 + 20 + Weighted Average Cost + Weighted Average Cost + 60 + 60 + true + true + false + false + true + false + true + true + 1992 + 1992 + Average cost for gas in entire model + true + + + 2123 + 473 + 3 + 21 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs for gas in entire model, including FOM and reservation costs + true + + + 2124 + 473 + 3 + 22 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Equal to Total Gas Purchase Cost + Total Penalty Cost. + true + + + 2125 + 473 + 3 + 23 + Grand Total Cost + Grand Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2055 + 2055 + Equal to Total Fixed Cost + Total Variable Costs (Total Variable Cost Includes penalty costs) + true + + + 2126 + 473 + 3 + 24 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Equal to Total Fixed Cost + Total Variable Cost – Total Penalty Cost {Excludes penalty costs} + true + + + 2127 + 473 + 3 + 25 + Net Total Cost + Net Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2056 + 2056 + Equal to Grand Total Cost – Total Market Revenue + true + + + 2128 + 473 + 3 + 26 + Injection + Injection + 75 + 76 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of gas injected into the gas storages in the zone + true + + + 2129 + 473 + 3 + 27 + Net Injection + Net Injection + 75 + 76 + true + true + false + true + true + false + true + true + 542 + 542 + Quantity of gas injected into the gas storages in the zone after injection fuel loss + true + + + 2130 + 473 + 3 + 28 + Net Injection Cost + Net Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2053 + 2053 + Summation of gas storage net injection cost + true + + + 2131 + 473 + 3 + 29 + Withdrawal + Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of gas withdrawn from the storages in the zone + true + + + 2132 + 473 + 3 + 30 + Net Withdrawal + Net Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1393 + 1393 + Quantity of gas withdrawn from the storages in the zone after withdrawal fuel loss + true + + + 2133 + 473 + 3 + 31 + Net Withdrawal Cost + Net Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2054 + 2054 + Summation of gas storage net withdrawal cost + true + + + 2134 + 473 + 3 + 32 + Costs of Gas Delivered + Costs of Gas Delivered + 14 + 34 + true + true + false + true + true + false + true + true + 2057 + 2057 + Equal to Total System Cost – Net Injection Cost + Net Withdrawal Cost {Please note that withdrawal and injection fuel is subtracted to get the net} + true + + + 2135 + 473 + 3 + 33 + Net Variable Cost + Net Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1995 + 1995 + Equal to Total Variable Cost – Total Market Revenue + true + + + 2136 + 473 + 3 + 34 + Forward Zone Flow + Forward Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1997 + 1997 + Quantity of gas pipeline flow in forward direction + true + + + 2137 + 473 + 3 + 35 + Back Zone Flow + Back Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1998 + 1998 + Quantity of gas pipeline flow in backward direction + true + + + 2138 + 473 + 3 + 36 + Net Zone Flow + Net Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1999 + 1999 + Net Quantity of gas pipeline flow (forward-backward) + true + + + 2139 + 473 + 3 + 37 + Gas Supply Total Commodity Costs + Gas Supply Total Commodity Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2078 + 2078 + Total supply commodity costs + true + + + 2140 + 473 + 3 + 38 + Gas Storage Total Variable Costs + Gas Storage Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2079 + 2079 + Total variable costs for gas storages + true + + + 2141 + 473 + 3 + 39 + Gas Pipeline Total Variable Costs + Gas Pipeline Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2080 + 2080 + Total variable costs for gas pipelines + true + + + 2142 + 473 + 3 + 40 + Gas Storage Total Reservation Costs + Gas Storage Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2081 + 2081 + Total reservation costs for gas storages + true + + + 2143 + 473 + 3 + 41 + Gas Pipeline Total Reservation Costs + Gas Pipeline Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2082 + 2082 + Total reservation costs for gas pipelines + true + + + 2144 + 473 + 3 + 42 + Gas Contract Total Reservation Costs + Gas Contract Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2083 + 2083 + Total reservation costs for gas contracts + true + + + 2145 + 473 + 3 + 43 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 2146 + 473 + 6 + 44 + Available Capacity + Available Capacity + 75 + 76 + true + true + false + false + true + false + true + true + 23 + 23 + Available Capacity of the Gas Plants + false + + + 2147 + 473 + 6 + 45 + Min Capacity Reserves + Min Capacity Reserves + 75 + 76 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + false + + + 2148 + 473 + 6 + 46 + Max Capacity Reserves + Max Capacity Reserves + 75 + 76 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + false + + + 2149 + 473 + 6 + 47 + Capacity Reserves + Capacity Reserves + 75 + 76 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + false + + + 2150 + 473 + 6 + 48 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + false + + + 2151 + 473 + 6 + 49 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + false + + + 2152 + 473 + 6 + 50 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + false + + + 2153 + 473 + 6 + 51 + Min Load + Min Load + 75 + 76 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + false + + + 2154 + 473 + 6 + 52 + Peak Load + Peak Load + 75 + 76 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + false + + + 2155 + 473 + 12 + 53 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2156 + 473 + 12 + 54 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2157 + 473 + 12 + 55 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2158 + 490 + 3 + 1 + Take Quantity + Take Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 1978 + 1978 + Gas offtake associated with the contract + true + + + 2159 + 490 + 3 + 2 + Supply Excess + Supply Excess + 75 + 76 + true + true + false + true + true + false + true + true + 2156 + 2156 + Gas supply excess + true + + + 2160 + 490 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas used under contract + true + + + 2161 + 490 + 3 + 4 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Price of gas contract + true + + + 2162 + 490 + 3 + 5 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch Price of Gas Contract + true + + + 2163 + 490 + 3 + 6 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with gas scarcity + true + + + 2164 + 490 + 3 + 7 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 2165 + 490 + 3 + 8 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 2166 + 490 + 3 + 9 + Commodity Cost + Commodity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2319 + 2319 + Total of node commodity costs for Gas Contract + true + + + 2167 + 490 + 3 + 10 + Differential Cost + Differential Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2320 + 2320 + Total of basis differential costs for Gas Contract + true + + + 2168 + 490 + 3 + 11 + Take-or-Pay Excess + Take-or-Pay Excess + 75 + 76 + true + true + false + true + true + false + true + true + 2741 + 2741 + Excess take of Take or Pay contract + true + + + 2169 + 490 + 3 + 12 + Take-or-Pay Violation + Take-or-Pay Violation + 75 + 76 + true + true + false + true + true + false + true + true + 1439 + 1439 + Violation of take-or-pay constraint + true + + + 2170 + 490 + 3 + 13 + Take-or-Pay Violation Cost + Take-or-Pay Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1440 + 1440 + Cost of take-or-pay constraint violation + true + + + 2171 + 490 + 3 + 14 + Take-or-Pay Violation Price + Take-or-Pay Violation Price + 60 + 60 + true + true + false + false + true + false + true + true + 2783 + 2783 + Penalty price on the take violation for a Take or Pay contract + true + + + 2172 + 490 + 3 + 15 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Reservation cost for gas contract + true + + + 2173 + 490 + 3 + 16 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs includes reservation cost plus amortized build costs + true + + + 2174 + 490 + 3 + 17 + Min Daily Take + Min Daily Take + 75 + 75 + true + true + false + false + true + false + true + true + 2239 + 2239 + Min daily gas offtake associated with the contract + true + + + 2175 + 490 + 3 + 18 + Max Daily Take + Max Daily Take + 75 + 75 + true + true + false + false + true + false + true + true + 1985 + 1985 + Max daily gas offtake associated with the contract + true + + + 2176 + 490 + 3 + 19 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas contract expansion + true + + + 2177 + 490 + 3 + 20 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by the gas contract production + true + + + 2178 + 490 + 8 + 21 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 2179 + 490 + 8 + 22 + Quantity Day Built + Quantity Day Built + 76 + 76 + true + true + false + false + true + false + false + false + 2688 + 2688 + Expansion quantity daily gas offtake associated with the contract + true + + + 2180 + 490 + 8 + 23 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building an expansion gas contract + true + + + 2181 + 490 + 8 + 24 + Quantity Day Retired + Quantity Day Retired + 76 + 76 + true + true + false + false + true + false + false + false + 2689 + 2689 + Amount of reduction in quantity daily gas offtake associated with the contract + true + + + 2182 + 490 + 8 + 25 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas contract + true + + + 2183 + 490 + 12 + 26 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Pass-through value (summed in summary) + true + + + 2184 + 490 + 12 + 27 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Pass-through value (summed in summary) + true + + + 2185 + 490 + 12 + 28 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Pass-through value (summed in summary) + true + + + 2186 + 495 + 3 + 1 + Take Quantity + Take Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 1978 + 1978 + Gas offtake associated with the contract at a specific node + true + + + 2187 + 495 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Sum of commodity cost and basis differential cost under contract-gas node + true + + + 2188 + 495 + 3 + 3 + Commodity Cost + Commodity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2319 + 2319 + Commodity costs for the Gas contract-Gas Node. + true + + + 2189 + 495 + 3 + 4 + Differential Cost + Differential Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2320 + 2320 + Basis differential costs for the Gas contract-Gas Node. + true + + + 2190 + 495 + 3 + 5 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Gas contract-gas node price + true + + + 2191 + 498 + 3 + 1 + Gas Supply + Gas Supply + 75 + 76 + true + true + false + true + true + false + true + true + 2138 + 2138 + Total supply provided by the company + true + + + 2192 + 501 + 3 + 1 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Gas discharged at the import gas node + true + + + 2193 + 501 + 3 + 2 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Gas loaded at the export gas node + true + + + 2194 + 501 + 3 + 3 + Losses + Losses + 75 + 76 + true + true + false + true + true + false + true + true + 924 + 924 + Gas lost during the voyage + true + + + 2195 + 501 + 3 + 4 + Contract Imports + Contract Imports + 75 + 76 + true + true + false + true + true + false + true + true + 1852 + 1852 + Delivered gas associated with gas contracts + true + + + 2196 + 501 + 3 + 5 + Spot Imports + Spot Imports + 75 + 76 + true + true + false + true + true + false + true + true + 1853 + 1853 + Delivered gas associated with spot market shipments + true + + + 2197 + 501 + 3 + 6 + Shipping Cost + Shipping Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1854 + 1854 + Cost of shipping + true + + + 2198 + 501 + 3 + 7 + Voyage Progress + Voyage Progress + 12 + 12 + true + true + false + false + true + false + true + true + 2891 + 2891 + Percentage of voyage completed + true + + + 2199 + 501 + 3 + 8 + Charter Cost + Charter Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2795 + 2795 + Charter cost of gas transport + true + + + 2200 + 501 + 3 + 9 + Port Cost + Port Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2794 + 2794 + Cost of using port by gas transport + true + + + 2201 + 501 + 3 + 10 + Canal Cost + Canal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2796 + 2796 + Cost of using canal by gas transport + true + + + 2202 + 501 + 3 + 11 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2203 + 501 + 3 + 12 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 2204 + 501 + 7 + 13 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2205 + 501 + 7 + 14 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2206 + 501 + 7 + 15 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas transport is on maintenance + true + + + 2207 + 501 + 7 + 16 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Volume on Forced Outage + true + + + 2208 + 501 + 7 + 17 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas transport is on forced outage + true + + + 2209 + 501 + 7 + 18 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Gas transport capacity available for delivery + true + + + 2210 + 501 + 8 + 19 + Max Volume Built + Max Volume Built + 75 + 76 + true + true + false + false + true + false + false + false + 2152 + 2152 + Amount of increase in Gas Transport Max Volume + true + + + 2211 + 501 + 8 + 20 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas transport + true + + + 2212 + 501 + 8 + 21 + Max Volume Retired + Max Volume Retired + 75 + 76 + true + true + false + false + true + false + false + false + 2153 + 2153 + Amount of reduction in Gas Transport Max Volume + true + + + 2213 + 501 + 8 + 22 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Gas Transport + true + + + 2214 + 501 + 8 + 23 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 2215 + 501 + 12 + 24 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Pass-through value (summed in summary) + true + + + 2216 + 501 + 12 + 25 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Pass-through value (summed in summary) + true + + + 2217 + 501 + 12 + 26 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Pass-through value (averaged in summary) + true + + + 2218 + 504 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas transport + true + + + 2219 + 504 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas transport + true + + + 2220 + 505 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas transport + true + + + 2221 + 505 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas transport + true + + + 2222 + 506 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas transport + true + + + 2223 + 506 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas transport + true + + + 2224 + 509 + 3 + 1 + Delivered Energy + Delivered Energy + 75 + 76 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the gas transport + true + + + 2225 + 509 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the gas transport + true + + + 2226 + 510 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas transport + true + + + 2227 + 510 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas transport + true + + + 2228 + 511 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas transport + true + + + 2229 + 511 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas transport + true + + + 2230 + 512 + 3 + 1 + Canal Cost + Canal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2796 + 2796 + Cost of using canal by gas transport + true + + + 2231 + 520 + 3 + 1 + Capacity Released + Capacity Released + 75 + 76 + true + true + false + true + true + false + true + true + 2038 + 2038 + Gas capacity released on pipelines or storages + true + + + 2232 + 520 + 3 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Total revenue from capacity released + true + + + 2233 + 520 + 12 + 3 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2234 + 520 + 12 + 4 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2235 + 520 + 12 + 5 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2236 + 527 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of Water Plant units in service + true + + + 2237 + 527 + 3 + 2 + Raw Water + Raw Water + 65 + 64 + true + true + false + false + true + false + true + true + 1810 + 1810 + Quantity of raw water input to the water plant + true + + + 2238 + 527 + 3 + 3 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Quantity of water produced by the water plant + true + + + 2239 + 527 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Water production cost + true + + + 2240 + 527 + 3 + 5 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Variable operations and maintenance cost + true + + + 2241 + 527 + 3 + 6 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2242 + 527 + 3 + 7 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2243 + 527 + 3 + 8 + SRMC + SRMC + 67 + 67 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost of water production + true + + + 2244 + 527 + 3 + 9 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 1815 + 1815 + The total electric and heat consumption of the Water Plant + true + + + 2245 + 527 + 3 + 10 + Cost of Energy Consumption + Cost of Energy Consumption + 14 + 34 + true + true + false + true + true + false + true + true + 2526 + 2526 + Cost of energy consumption + false + + + 2246 + 527 + 3 + 11 + Electric Load + Electric Load + 1 + 2 + true + true + false + false + true + false + true + true + 1890 + 1890 + The part of the [Energy Consumption] met by electric + true + + + 2247 + 527 + 3 + 12 + Cost of Electric Load + Cost of Electric Load + 14 + 34 + true + true + false + true + true + false + true + true + 2527 + 2527 + Cost of electric load + false + + + 2248 + 527 + 3 + 13 + Heat Load + Heat Load + 15 + 16 + true + true + false + false + true + false + true + true + 255 + 255 + The part of the [Energy Consumption] met by heat + true + + + 2249 + 527 + 3 + 14 + Cost of Heat Load + Cost of Heat Load + 14 + 34 + true + true + false + true + true + false + true + true + 2528 + 2528 + Cost of heat load + false + + + 2250 + 527 + 3 + 15 + Auxiliary Use + Auxiliary Use + 65 + 64 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 2251 + 527 + 3 + 16 + Units Operating + Units Operating + 0 + 0 + true + true + false + false + true + false + true + true + 2049 + 2049 + Number of water plant units operating + true + + + 2252 + 527 + 3 + 17 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity producing + true + + + 2253 + 527 + 3 + 18 + Capacity Curtailed + Capacity Curtailed + 65 + 64 + true + true + false + false + true + false + true + true + 1163 + 1163 + Amount of non-positive-priced production curtailed + true + + + 2254 + 527 + 3 + 19 + Curtailment Factor + Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 1061 + 1061 + Proportion of non-positive-priced generation curtailed + true + + + 2255 + 527 + 3 + 20 + Water Availability + Water Availability + 65 + 64 + true + true + false + false + true + false + true + true + 2529 + 2529 + Availability of water + true + + + 2256 + 527 + 3 + 21 + Incremental Fuel Offtake + Incremental Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 2530 + 2530 + Incremental offtake of fuel + false + + + 2257 + 527 + 6 + 22 + Installed Capacity + Installed Capacity + 65 + 64 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Production x Units) + false + + + 2258 + 527 + 6 + 23 + Rated Capacity + Rated Capacity + 65 + 64 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + false + + + 2259 + 527 + 7 + 24 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2260 + 527 + 7 + 25 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 2261 + 527 + 7 + 26 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the Water plant is on maintenance + true + + + 2262 + 527 + 7 + 27 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 2263 + 527 + 7 + 28 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the Water plant is on forced outage of Production + true + + + 2264 + 527 + 7 + 29 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of plant capacity available in production + true + + + 2265 + 527 + 8 + 30 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of water plant units built + true + + + 2266 + 527 + 8 + 31 + Capacity Built + Capacity Built + 65 + 65 + true + true + false + false + true + false + false + false + 54 + 54 + Water plant capacity Built + true + + + 2267 + 527 + 8 + 32 + Capacity Price + Capacity Price + 99 + 99 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the plant for capacity + true + + + 2268 + 527 + 8 + 33 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 2269 + 527 + 8 + 34 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of developing the Water Plant + true + + + 2270 + 527 + 8 + 35 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of water plant units retired + true + + + 2271 + 527 + 8 + 36 + Capacity Retired + Capacity Retired + 65 + 65 + true + true + false + false + true + false + false + false + 66 + 66 + Water plant capacity Retired + true + + + 2272 + 527 + 8 + 37 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the water plant + true + + + 2273 + 527 + 12 + 38 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2274 + 527 + 12 + 39 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2275 + 527 + 12 + 40 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2276 + 537 + 3 + 1 + Flow + Flow + 65 + 64 + true + true + false + false + true + false + true + true + 205 + 205 + Quantity of water extracted from the pipeline + true + + + 2277 + 537 + 3 + 2 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the pipeline is congested in the reference direction + true + + + 2278 + 537 + 3 + 3 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the pipeline is congested in the counter-reference direction + true + + + 2279 + 537 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting water from the pipeline + true + + + 2280 + 537 + 3 + 5 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2281 + 537 + 3 + 6 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2282 + 537 + 3 + 7 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + Total energy consumed for pipeline utilization + true + + + 2283 + 537 + 7 + 8 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2284 + 537 + 7 + 9 + Flow Capacity Outage + Flow Capacity Outage + 65 + 65 + true + false + false + false + true + false + true + true + 2147 + 2147 + Flow capacity on outage due to maintenance or forced outage + true + + + 2285 + 537 + 7 + 10 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2286 + 537 + 7 + 11 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the pipeline is on maintenance + true + + + 2287 + 537 + 7 + 12 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 2288 + 537 + 7 + 13 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the pipeline is on forced outage + true + + + 2289 + 537 + 7 + 14 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of pipeline capacity available + true + + + 2290 + 537 + 8 + 15 + Max Capacity Built + Max Capacity Built + 65 + 65 + true + true + false + false + true + false + false + false + 2150 + 2150 + Amount of increase in Water Pipeline Max Capacity + true + + + 2291 + 537 + 8 + 16 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Water pipeline + true + + + 2292 + 537 + 8 + 17 + Max Capacity Retired + Max Capacity Retired + 65 + 65 + true + true + false + false + true + false + false + false + 2151 + 2151 + Amount of reduction in Water Pipeline Max Capacity + true + + + 2293 + 537 + 8 + 18 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Water pipeline + true + + + 2294 + 537 + 12 + 19 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2295 + 537 + 12 + 20 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2296 + 537 + 12 + 21 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2297 + 545 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Water Node is in service + true + + + 2298 + 545 + 3 + 2 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Total quantity of water supplied by Supplying Water Plants + true + + + 2299 + 545 + 3 + 3 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Demand at the water node + true + + + 2300 + 545 + 3 + 4 + Flow + Flow + 65 + 64 + true + true + false + false + true + false + true + true + 205 + 205 + Flow of water through the node + true + + + 2301 + 545 + 3 + 5 + Imports + Imports + 65 + 64 + true + true + false + false + true + false + true + true + 294 + 294 + Imports on water pipelines + true + + + 2302 + 545 + 3 + 6 + Exports + Exports + 65 + 64 + true + true + false + false + true + false + true + true + 192 + 192 + Exports on water pipelines + true + + + 2303 + 545 + 3 + 7 + Net Interchange + Net Interchange + 65 + 64 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on water pipelines + true + + + 2304 + 545 + 3 + 8 + Initial Volume + Initial Volume + 64 + 64 + true + true + false + false + true + false + true + true + 318 + 318 + Initial volume in water storage + true + + + 2305 + 545 + 3 + 9 + End Volume + End Volume + 64 + 64 + true + true + false + false + true + false + true + true + 170 + 170 + End volume in water storage + true + + + 2306 + 545 + 3 + 10 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2382 + 2382 + Cost of flowing water through the node + true + + + 2307 + 545 + 3 + 11 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in supply of water at the node + true + + + 2308 + 545 + 3 + 12 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2309 + 545 + 3 + 13 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2310 + 545 + 3 + 14 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water at the node + true + + + 2311 + 545 + 3 + 15 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2312 + 545 + 3 + 16 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2313 + 545 + 3 + 17 + Shadow Price + Shadow Price + 67 + 67 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of water at the water node + true + + + 2314 + 545 + 3 + 18 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2315 + 545 + 3 + 19 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2316 + 545 + 3 + 20 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + Total energy consumed for pipeline utilization + true + + + 2317 + 545 + 3 + 21 + Facility Consumption + Facility Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 2732 + 2732 + Water consumed by connected Facilities + true + + + 2318 + 545 + 8 + 22 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the water node is built in this year + true + + + 2319 + 545 + 8 + 23 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the water node + true + + + 2320 + 545 + 8 + 24 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of water node units retired + true + + + 2321 + 545 + 8 + 25 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the water node + true + + + 2322 + 545 + 12 + 26 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2323 + 545 + 12 + 27 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2324 + 545 + 12 + 28 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2325 + 554 + 3 + 1 + Max Volume + Max Volume + 64 + 64 + true + true + false + false + true + false + true + true + 466 + 466 + Maximum volume of Water allowed in storage + true + + + 2326 + 554 + 3 + 2 + Min Volume + Min Volume + 64 + 64 + true + true + false + false + true + false + true + true + 510 + 510 + Minimum volume of Water allowed in storage + true + + + 2327 + 554 + 3 + 3 + Initial Volume + Initial Volume + 64 + 64 + true + true + false + false + true + false + true + true + 318 + 318 + Initial volume of Water in the storage + true + + + 2328 + 554 + 3 + 4 + End Volume + End Volume + 64 + 64 + true + true + false + false + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 2329 + 554 + 3 + 5 + Working Volume + Working Volume + 64 + 64 + true + true + false + false + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 2330 + 554 + 3 + 6 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization based on end volume + true + + + 2331 + 554 + 3 + 7 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 2332 + 554 + 3 + 8 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 2333 + 554 + 3 + 9 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 2334 + 554 + 3 + 10 + Withdrawal + Withdrawal + 64 + 64 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of water withdrawn from the storage + true + + + 2335 + 554 + 3 + 11 + Injection + Injection + 64 + 64 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of water injected into the water storage + true + + + 2336 + 554 + 3 + 12 + Net Withdrawal + Net Withdrawal + 64 + 64 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 2337 + 554 + 3 + 13 + Shadow Price + Shadow Price + 67 + 67 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of water in the storage + true + + + 2338 + 554 + 3 + 14 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2339 + 554 + 3 + 15 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2340 + 554 + 3 + 16 + End Level + End Level + 23 + 23 + true + true + false + true + true + false + true + true + 169 + 169 + Water storage level at the end of period + true + + + 2341 + 554 + 7 + 17 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2342 + 554 + 7 + 18 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Withdrawal/Injection on maintenance + true + + + 2343 + 554 + 7 + 19 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the Water storage is on maintenance + true + + + 2344 + 554 + 7 + 20 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Withdrawal/Injection on Forced Outage + true + + + 2345 + 554 + 7 + 21 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the Water storage is on forced outage of Withdrawal/Injection + true + + + 2346 + 554 + 7 + 22 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Storage capacity available in withdrawal/injection + true + + + 2347 + 554 + 8 + 23 + Max Volume Built + Max Volume Built + 64 + 64 + true + true + false + false + true + false + false + false + 2152 + 2152 + Amount of increase in Water Storage Max Volume + true + + + 2348 + 554 + 8 + 24 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Water storage + true + + + 2349 + 554 + 8 + 25 + Max Volume Retired + Max Volume Retired + 64 + 64 + true + true + false + false + true + false + false + false + 2153 + 2153 + Amount of reduction in Water Storage Max Volume + true + + + 2350 + 554 + 8 + 26 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Water storage + true + + + 2351 + 554 + 12 + 27 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2352 + 554 + 12 + 28 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2353 + 554 + 12 + 29 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2354 + 561 + 3 + 1 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Demand for water + true + + + 2355 + 561 + 3 + 2 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in water supply + true + + + 2356 + 561 + 3 + 3 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2357 + 561 + 3 + 4 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2358 + 561 + 3 + 5 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water + true + + + 2359 + 561 + 3 + 6 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2360 + 561 + 3 + 7 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2361 + 561 + 3 + 8 + Net Demand + Net Demand + 65 + 64 + true + true + false + false + true + false + true + true + 1269 + 1269 + Water demand net of shortages and excesses + true + + + 2362 + 561 + 3 + 9 + Served Demand + Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2070 + 2070 + Served Demand (with respect to excess and shortage) + true + + + 2363 + 561 + 3 + 10 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of water demand + true + + + 2364 + 561 + 3 + 11 + Price Paid + Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for water demand + true + + + 2365 + 561 + 3 + 12 + Bid Quantity + Bid Quantity + 65 + 64 + true + true + true + false + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 2366 + 561 + 3 + 13 + Bid Price + Bid Price + 67 + 67 + true + true + true + false + true + false + true + true + 33 + 33 + Value of water in band + true + + + 2367 + 561 + 3 + 14 + Bid Cleared + Bid Cleared + 65 + 64 + true + true + true + false + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 2368 + 561 + 3 + 15 + Cleared Bid Price + Cleared Bid Price + 67 + 67 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 2369 + 561 + 3 + 16 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 2370 + 561 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2371 + 561 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2372 + 561 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2373 + 565 + 3 + 1 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Quantity of water produced by the water plants + true + + + 2374 + 565 + 3 + 2 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Water demand + true + + + 2375 + 565 + 3 + 3 + Imports + Imports + 65 + 64 + true + true + false + false + true + false + true + true + 294 + 294 + Imports on water pipelines + true + + + 2376 + 565 + 3 + 4 + Exports + Exports + 65 + 64 + true + true + false + false + true + false + true + true + 192 + 192 + Exports on water pipelines + true + + + 2377 + 565 + 3 + 5 + Net Interchange + Net Interchange + 65 + 64 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on water pipelines + true + + + 2378 + 565 + 3 + 6 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in water supply + true + + + 2379 + 565 + 3 + 7 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2380 + 565 + 3 + 8 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2381 + 565 + 3 + 9 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water + true + + + 2382 + 565 + 3 + 10 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2383 + 565 + 3 + 11 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2384 + 565 + 3 + 12 + Net Demand + Net Demand + 65 + 64 + true + true + false + false + true + false + true + true + 1269 + 1269 + Water demand net of shortages and excesses + true + + + 2385 + 565 + 3 + 13 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of water demand + true + + + 2386 + 565 + 3 + 14 + Price Paid + Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for water demand + true + + + 2387 + 565 + 6 + 15 + Available Capacity + Available Capacity + 65 + 65 + true + true + false + false + true + false + true + true + 23 + 23 + Aggregate of Water Availability of Water Plants in the Water Zone + true + + + 2388 + 565 + 6 + 16 + Min Capacity Reserves + Min Capacity Reserves + 65 + 65 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 2389 + 565 + 6 + 17 + Max Capacity Reserves + Max Capacity Reserves + 65 + 65 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 2390 + 565 + 6 + 18 + Capacity Reserves + Capacity Reserves + 65 + 65 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 2391 + 565 + 6 + 19 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 2392 + 565 + 6 + 20 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 2393 + 565 + 6 + 21 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + true + + + 2394 + 565 + 6 + 22 + Min Load + Min Load + 65 + 65 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 2395 + 565 + 6 + 23 + Peak Load + Peak Load + 65 + 65 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + true + + + 2396 + 565 + 12 + 24 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2397 + 565 + 12 + 25 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2398 + 565 + 12 + 26 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2399 + 575 + 3 + 1 + Head + Head + 23 + 23 + true + true + false + false + true + false + true + true + 2265 + 2265 + Pump station head + true + + + 2400 + 575 + 3 + 2 + Flow Rate + Flow Rate + 65 + 65 + true + true + false + false + true + false + true + true + 2266 + 2266 + Pump station flow rate + true + + + 2401 + 575 + 3 + 3 + Power + Power + 1 + 1 + true + true + false + false + true + false + true + true + 2267 + 2267 + Power consumed by the pump station to achieve the given head and flow rate + true + + + 2402 + 575 + 3 + 4 + Energy + Energy + 3 + 3 + true + true + false + true + true + false + true + true + 173 + 173 + Energy consumption over a given period + true + + + 2403 + 575 + 3 + 5 + Volume Pumped + Volume Pumped + 64 + 64 + true + true + false + true + true + false + true + true + 2268 + 2268 + Volume pumped over a given period + true + + + 2404 + 584 + 3 + 1 + Units Operating + Units Operating + 0 + 0 + true + true + false + false + true + false + true + true + 2049 + 2049 + the number of units on the pump operating in a given period + true + + + 2405 + 584 + 3 + 2 + Head + Head + 23 + 23 + true + true + false + false + true + false + true + true + 2265 + 2265 + Pump head + true + + + 2406 + 584 + 3 + 3 + Flow Rate + Flow Rate + 65 + 65 + true + true + false + false + true + false + true + true + 2266 + 2266 + Pump flow rate + true + + + 2407 + 584 + 3 + 4 + Power + Power + 1 + 1 + true + true + false + false + true + false + true + true + 2267 + 2267 + Power consumed by the pump + true + + + 2408 + 584 + 3 + 5 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of pump starts and shutdowns + true + + + 2409 + 584 + 3 + 6 + Operating Cost + Operating Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2555 + 2555 + Electric cost of operating the pump + true + + + 2410 + 588 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of vehicles + true + + + 2411 + 588 + 3 + 2 + Installed Capacity + Installed Capacity + 80 + 80 + true + true + false + false + true + true + true + true + 320 + 320 + Total battery capacity + true + + + 2412 + 588 + 3 + 3 + Distance + Distance + 81 + 81 + true + true + false + true + true + false + true + true + 2111 + 2111 + Distance travelled + true + + + 2413 + 588 + 3 + 4 + Energy Consumption + Energy Consumption + 80 + 3 + true + true + false + true + true + false + true + true + 1815 + 1815 + Energy consumed + true + + + 2414 + 588 + 3 + 5 + Efficiency + Efficiency + 82 + 82 + true + true + false + false + true + false + true + true + 1209 + 1209 + Energy used per unit travelled + true + + + 2415 + 588 + 3 + 6 + Range + Range + 81 + 81 + true + true + false + false + true + false + true + true + 2112 + 2112 + Remaining range + true + + + 2416 + 588 + 3 + 7 + Energy + Energy + 80 + 80 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored + true + + + 2417 + 588 + 3 + 8 + SoC + SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1660 + 1660 + State of charge + true + + + 2418 + 588 + 3 + 9 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Charge rate/energy + true + + + 2419 + 588 + 3 + 10 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Discharge rate/energy + true + + + 2420 + 588 + 3 + 11 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2421 + 588 + 3 + 12 + Self Discharge Losses + Self Discharge Losses + 79 + 3 + true + true + false + false + true + false + true + true + 2711 + 2711 + Losses due to self-discharge + true + + + 2422 + 588 + 3 + 13 + Auxiliary Consumption + Auxiliary Consumption + 79 + 3 + true + true + false + true + true + false + true + true + 2974 + 2974 + Energy consumption from auxiliary sources + true + + + 2423 + 588 + 3 + 14 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours in use + true + + + 2424 + 588 + 3 + 15 + Hours Charging + Hours Charging + 6 + 6 + true + true + false + false + true + false + true + true + 1662 + 1662 + Number of hours in charging state + true + + + 2425 + 588 + 3 + 16 + Hours Discharging + Hours Discharging + 6 + 6 + true + true + false + false + true + false + true + true + 1663 + 1663 + Number of hours in discharging state + true + + + 2426 + 588 + 3 + 17 + Hours Idle + Hours Idle + 6 + 6 + true + true + false + false + true + false + true + true + 1664 + 1664 + Number of hours in idle state + true + + + 2427 + 588 + 3 + 18 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2428 + 588 + 3 + 19 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2429 + 588 + 3 + 20 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2430 + 588 + 3 + 21 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2431 + 588 + 3 + 22 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2432 + 588 + 3 + 23 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2433 + 588 + 3 + 24 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid charging + true + + + 2434 + 588 + 3 + 25 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2435 + 588 + 3 + 26 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2436 + 588 + 3 + 27 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2437 + 588 + 3 + 28 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2438 + 588 + 3 + 29 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2439 + 588 + 3 + 30 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2440 + 588 + 3 + 31 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2441 + 588 + 3 + 32 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2442 + 588 + 3 + 33 + Energy Target Violation + Energy Target Violation + 80 + 80 + true + true + false + false + true + false + true + true + 2964 + 2964 + Violation of the [Energy Target] constraint. + true + + + 2443 + 588 + 3 + 34 + Energy Target Violation Cost + Energy Target Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2965 + 2965 + Cost of [Energy Target] constraint violations. + true + + + 2444 + 588 + 3 + 35 + Non-physical Charge Adjustments + Non-physical Charge Adjustments + 79 + 3 + true + true + false + false + true + false + true + true + 2872 + 2872 + Non-physical charge adjustments required to maintain feasible states of charge. + true + + + 2445 + 588 + 3 + 36 + Non-physical Discharge Adjustments + Non-physical Discharge Adjustments + 79 + 3 + true + true + false + false + true + false + true + true + 2873 + 2873 + Non-physical discharge adjustments required to maintain feasible states of charge. + true + + + 2446 + 588 + 3 + 37 + Charge Efficiency + Charge Efficiency + 12 + 12 + true + true + false + true + true + false + true + true + 1668 + 1668 + Efficiency of charging + true + + + 2447 + 588 + 3 + 38 + Discharge Efficiency + Discharge Efficiency + 12 + 12 + true + true + false + true + true + false + true + true + 1669 + 1669 + Efficiency of discharging + true + + + 2448 + 588 + 8 + 39 + Units Purchased + Units Purchased + 0 + 0 + true + true + false + false + true + false + false + false + 2453 + 2453 + Number of vehicles purchased + true + + + 2449 + 588 + 8 + 40 + Capacity Added + Capacity Added + 80 + 80 + true + true + false + false + true + false + false + false + 2454 + 2454 + Battery capacity added + true + + + 2450 + 588 + 8 + 41 + Purchase Cost + Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2451 + 2451 + Cost of vehicles purchased + true + + + 2451 + 588 + 8 + 42 + Annualized Purchase Cost + Annualized Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2455 + 2455 + Annualized cost of vehicle purchases + true + + + 2452 + 588 + 8 + 43 + Units Disposed + Units Disposed + 0 + 0 + true + true + false + false + true + false + false + false + 2456 + 2456 + Number of vehicles disposed of + true + + + 2453 + 588 + 8 + 44 + Capacity Removed + Capacity Removed + 80 + 80 + true + true + false + false + true + false + false + false + 2457 + 2457 + Battery capacity removed + true + + + 2454 + 588 + 8 + 45 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 2455 + 588 + 8 + 46 + Disposal Cost + Disposal Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2452 + 2452 + Cost of disposing of vehicles + true + + + 2456 + 588 + 8 + 47 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2457 + 588 + 12 + 48 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2458 + 588 + 12 + 49 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2459 + 588 + 12 + 50 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2460 + 593 + 3 + 1 + Consumption + Consumption + 0 + 0 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Commodity + true + + + 2461 + 593 + 3 + 2 + Energy Consumption + Energy Consumption + 80 + 3 + true + true + false + false + true + false + true + true + 1815 + 1815 + Energy from the Commodity + true + + + 2462 + 593 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Cost for Energy from the Commodity + true + + + 2463 + 596 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of chargers + true + + + 2464 + 596 + 3 + 2 + Installed Capacity + Installed Capacity + 79 + 79 + true + true + false + false + true + true + true + true + 320 + 320 + Total charging capacity of the station + true + + + 2465 + 596 + 3 + 3 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Load from charging + true + + + 2466 + 596 + 3 + 4 + Deferred Load + Deferred Load + 79 + 3 + true + true + false + false + true + false + true + true + 2126 + 2126 + Deferred charging load + true + + + 2467 + 596 + 3 + 5 + Hours Deferred + Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2154 + 2154 + Average hours load is deferred in the period + true + + + 2468 + 596 + 3 + 6 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Generation from discharging + true + + + 2469 + 596 + 3 + 7 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2470 + 596 + 3 + 8 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2471 + 596 + 3 + 9 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2472 + 596 + 3 + 10 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2473 + 596 + 3 + 11 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2474 + 596 + 3 + 12 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2475 + 596 + 3 + 13 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2476 + 596 + 3 + 14 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid charging + true + + + 2477 + 596 + 3 + 15 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2478 + 596 + 3 + 16 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2479 + 596 + 3 + 17 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2480 + 596 + 3 + 18 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2481 + 596 + 3 + 19 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2482 + 596 + 3 + 20 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2483 + 596 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2484 + 596 + 8 + 22 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2485 + 596 + 8 + 23 + Capacity Built + Capacity Built + 79 + 79 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2486 + 596 + 8 + 24 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 2487 + 596 + 8 + 25 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2488 + 596 + 8 + 26 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2489 + 596 + 8 + 27 + Capacity Retired + Capacity Retired + 79 + 79 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2490 + 596 + 8 + 28 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2491 + 596 + 8 + 29 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2492 + 596 + 12 + 30 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2493 + 596 + 12 + 31 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2494 + 596 + 12 + 32 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2495 + 602 + 3 + 1 + Installed Capacity + Installed Capacity + 80 + 80 + true + true + false + false + true + true + true + true + 320 + 320 + Total battery capacity + true + + + 2496 + 602 + 3 + 2 + Distance + Distance + 81 + 81 + true + true + false + false + true + false + true + true + 2111 + 2111 + Distance travelled + true + + + 2497 + 602 + 3 + 3 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Load from charging + true + + + 2498 + 602 + 3 + 4 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Generation from discharging + true + + + 2499 + 602 + 3 + 5 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2500 + 602 + 3 + 6 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2501 + 602 + 3 + 7 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2502 + 602 + 3 + 8 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2503 + 602 + 3 + 9 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2504 + 602 + 3 + 10 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2505 + 602 + 3 + 11 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2506 + 602 + 3 + 12 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid for charging + true + + + 2507 + 602 + 3 + 13 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2508 + 602 + 3 + 14 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2509 + 602 + 3 + 15 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2510 + 602 + 3 + 16 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2511 + 602 + 3 + 17 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2512 + 602 + 3 + 18 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2513 + 602 + 3 + 19 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2514 + 602 + 3 + 20 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2515 + 602 + 8 + 21 + Units Purchased + Units Purchased + 0 + 0 + true + true + false + false + true + false + false + false + 2453 + 2453 + Number of vehicles purchased + true + + + 2516 + 602 + 8 + 22 + Capacity Added + Capacity Added + 80 + 80 + true + true + false + false + true + false + false + false + 2454 + 2454 + Battery capacity added + true + + + 2517 + 602 + 8 + 23 + Purchase Cost + Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2451 + 2451 + Cost of vehicles purchased + true + + + 2518 + 602 + 8 + 24 + Annualized Purchase Cost + Annualized Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2455 + 2455 + Annualized cost of vehicle purchases + true + + + 2519 + 602 + 8 + 25 + Units Disposed + Units Disposed + 0 + 0 + true + true + false + false + true + false + false + false + 2456 + 2456 + Number of vehicles disposed of + true + + + 2520 + 602 + 8 + 26 + Capacity Removed + Capacity Removed + 80 + 80 + true + true + false + false + true + false + false + false + 2457 + 2457 + Battery capacity removed + true + + + 2521 + 602 + 8 + 27 + Disposal Cost + Disposal Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2452 + 2452 + Cost of disposing of vehicles + true + + + 2522 + 602 + 8 + 28 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2523 + 602 + 12 + 29 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2524 + 602 + 12 + 30 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2525 + 602 + 12 + 31 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2526 + 606 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Own generation + generation contracts + true + + + 2527 + 606 + 3 + 2 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 2528 + 606 + 3 + 3 + Fuel Production Rate + Fuel Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 2036 + 2742 + Fuel production from Power2X + true + + + 2529 + 606 + 3 + 4 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 2530 + 606 + 3 + 5 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 2531 + 606 + 3 + 6 + Dispatchable Capacity + Dispatchable Energy + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 2341 + On-line capacity + true + + + 2532 + 606 + 3 + 7 + Undispatched Capacity + Undispatched Energy + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 2342 + Capacity on-line but undispatched + true + + + 2533 + 606 + 3 + 8 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 2534 + 606 + 3 + 9 + Capacity Curtailed + Energy Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1163 + 2344 + Amount of non-positive-priced generation curtailed. + true + + + 2535 + 606 + 3 + 10 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 2536 + 606 + 3 + 11 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 2537 + 606 + 3 + 12 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2538 + 606 + 3 + 13 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2539 + 606 + 3 + 14 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2540 + 606 + 3 + 15 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2541 + 606 + 3 + 16 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2542 + 606 + 3 + 17 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2543 + 606 + 3 + 18 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 2544 + 606 + 3 + 19 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 2545 + 606 + 3 + 20 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Own load + load contracts + true + + + 2546 + 606 + 3 + 21 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 2547 + 606 + 3 + 22 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Max(0, generation - purchase) + true + + + 2548 + 606 + 3 + 23 + Net Load + Net Load + 1 + 2 + true + true + false + false + true + false + true + true + 544 + 544 + Max(0, load - generation) + true + + + 2549 + 606 + 3 + 24 + Fuel Price + Fuel Price + 29 + 29 + true + true + false + true + true + false + true + true + 225 + 225 + Average fuel price + true + + + 2550 + 606 + 3 + 25 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 2551 + 606 + 3 + 26 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 2552 + 606 + 3 + 27 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 2553 + 606 + 3 + 28 + Fuel Inventory Cost + Fuel Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1604 + 1604 + Cost of fuel stockpile. + true + + + 2554 + 606 + 3 + 29 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2555 + 606 + 3 + 30 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2556 + 606 + 3 + 31 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2557 + 606 + 3 + 32 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Pool cost for pump energy + true + + + 2558 + 606 + 3 + 33 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 2559 + 606 + 3 + 34 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 2560 + 606 + 3 + 35 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Generation cost + true + + + 2561 + 606 + 3 + 36 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Total cost of generation unit starts + true + + + 2562 + 606 + 3 + 37 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 2563 + 606 + 3 + 38 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 2564 + 606 + 3 + 39 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2565 + 606 + 3 + 40 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation and start and shutdown costs and emissions costs + true + + + 2566 + 606 + 3 + 41 + Fuel Production Cost + Fuel Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2743 + 2743 + Cost of fuel production from Power2X + true + + + 2567 + 606 + 3 + 42 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 2568 + 606 + 3 + 43 + Fuel Contract Cost + Fuel Contract Cost + 14 + 34 + true + true + false + true + true + false + true + true + 220 + 220 + Cost of fuel purchased under contract + true + + + 2569 + 606 + 3 + 44 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 2570 + 606 + 3 + 45 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 2571 + 606 + 3 + 46 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs + true + + + 2572 + 606 + 3 + 47 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Pool purchase cost from own load + load contracts + true + + + 2573 + 606 + 3 + 48 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Weighted average SRMC of the company sent out generation + true + + + 2574 + 606 + 3 + 49 + Bid-Cost Mark-up + Bid-Cost Mark-up + 12 + 12 + true + true + true + false + true + false + true + true + 32 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + true + + + 2575 + 606 + 3 + 50 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Weighted average price received for generation + true + + + 2576 + 606 + 3 + 51 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Weighted average price paid for purchases + true + + + 2577 + 606 + 3 + 52 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue from own generation + generation contracts + true + + + 2578 + 606 + 3 + 53 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2579 + 606 + 3 + 54 + Gas Market Revenue + Gas Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1683 + 1683 + Revenue from gas markets + true + + + 2580 + 606 + 3 + 55 + Heat Market Revenue + Heat Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 256 + 256 + Revenue from heat markets + true + + + 2581 + 606 + 3 + 56 + Fuel Market Revenue + Fuel Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 221 + 221 + Revenue from fuel markets + true + + + 2582 + 606 + 3 + 57 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Settlement surplus on own transmission lines + true + + + 2583 + 606 + 3 + 58 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net generator pool revenue + true + + + 2584 + 606 + 3 + 59 + Net Cost to Load + Net Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 538 + 538 + Net cost to load + true + + + 2585 + 606 + 3 + 60 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 2586 + 606 + 3 + 61 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 2587 + 606 + 3 + 62 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit + true + + + 2588 + 606 + 3 + 63 + Generation at RRN + Generation at RRN + 1 + 2 + true + true + false + false + true + false + true + true + 228 + 228 + Own generation taken to the regional reference node + true + + + 2589 + 606 + 3 + 64 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Volume of financial contracts (CfDs) + true + + + 2590 + 606 + 3 + 65 + Net Contract Volume + Net Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 535 + 535 + Net volume on CfDs (generation - contract volume) + true + + + 2591 + 606 + 3 + 66 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on CfDs + true + + + 2592 + 606 + 3 + 67 + Net Contract Settlement + Net Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 534 + 534 + Monies received (+ve) or paid out (-ve) on CfDs net of interconnector surpluses + true + + + 2593 + 606 + 3 + 68 + Net Pool Revenue + Net Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 547 + 547 + Pool revenue plus financial contract settlement + true + + + 2594 + 606 + 3 + 69 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 2595 + 606 + 3 + 70 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 2596 + 606 + 3 + 71 + Contract Cost + Contract Cost + 14 + 34 + true + true + false + true + true + false + true + true + 101 + 101 + Generation cost from physical contracts + true + + + 2597 + 606 + 3 + 72 + Contract Revenue + Contract Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 106 + 106 + Revenue from physical contracts + true + + + 2598 + 606 + 3 + 73 + Net Contract Revenue + Net Contract Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 533 + 533 + Net revenue from physical contracts + true + + + 2599 + 606 + 3 + 74 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 2600 + 606 + 3 + 75 + Generator Monopoly Rent + Generator Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 244 + 244 + Monopoly rent from competitive bidding + true + + + 2601 + 606 + 3 + 76 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint. + true + + + 2602 + 606 + 3 + 77 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 2603 + 606 + 3 + 78 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 2604 + 606 + 3 + 79 + Gas Demand + Gas Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2137 + 2137 + Total gas demand for the company + true + + + 2605 + 606 + 3 + 80 + Gas Supply + Gas Supply + 75 + 76 + true + true + false + true + true + false + true + true + 2138 + 2138 + Total gas supply for the company + true + + + 2606 + 606 + 3 + 81 + Gas Imbalance + Gas Imbalance + 75 + 76 + true + true + false + true + true + false + true + true + 2139 + 2139 + Total gas supply imbalance for the company (Gas Demand - Gas Supply) + true + + + 2607 + 606 + 3 + 82 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the company + true + + + 2608 + 606 + 3 + 83 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the company + true + + + 2609 + 606 + 3 + 84 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange for the company (Financial Exports - Financial Imports) + true + + + 2610 + 606 + 3 + 85 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the company + true + + + 2611 + 606 + 3 + 86 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the company + true + + + 2612 + 606 + 3 + 87 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 2613 + 606 + 3 + 88 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 2614 + 606 + 3 + 89 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 2615 + 606 + 3 + 90 + Dump Energy Allocation + Dump Energy Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 2390 + 2390 + Dump energy allocated to the company. + true + + + 2616 + 606 + 3 + 91 + Unserved Energy Allocation + Unserved Energy Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 2391 + 2391 + Unserved energy (USE) allocated to the company. + true + + + 2617 + 606 + 3 + 92 + Loss Allocation + Loss Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 373 + 373 + Losses allocated to the company. + true + + + 2618 + 606 + 6 + 93 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed generation capacity + true + + + 2619 + 606 + 6 + 94 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available generation capacity + true + + + 2620 + 606 + 6 + 95 + Generator Firm Capacity + Generator Firm Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 242 + 242 + Capacity provided by generators + true + + + 2621 + 606 + 8 + 96 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 2622 + 606 + 8 + 97 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 2623 + 606 + 8 + 98 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 2624 + 606 + 8 + 99 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments to generators in the company + true + + + 2625 + 606 + 8 + 100 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the company + true + + + 2626 + 606 + 8 + 101 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2627 + 606 + 8 + 102 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of units retired + true + + + 2628 + 606 + 8 + 103 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 2629 + 606 + 8 + 104 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 2630 + 606 + 8 + 105 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 2631 + 606 + 8 + 106 + Shadow Capacity Built + Shadow Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1823 + 1823 + Capacity built (Max Capacity x Units Built) before Competition models. + true + + + 2632 + 606 + 12 + 107 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2633 + 606 + 12 + 108 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2634 + 606 + 12 + 109 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2635 + 609 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 2636 + 609 + 1 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the generators + true + + + 2637 + 609 + 1 + 3 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Costs associated with fuel stockpile + true + + + 2638 + 609 + 1 + 4 + Production Rate + Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 627 + 1743 + Rate of production/volume of production from Power2X + true + + + 2639 + 609 + 1 + 5 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of production from Power2X + true + + + 2640 + 609 + 1 + 6 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs across the entire portfolio + true + + + 2641 + 609 + 1 + 7 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of the fuel produced + true + + + 2642 + 610 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 2643 + 610 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 2644 + 610 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 2645 + 610 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 2646 + 610 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 2647 + 610 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2648 + 610 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 2649 + 610 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 2650 + 610 + 1 + 9 + Allocation + Allocation + 19 + 20 + true + true + false + false + true + false + true + true + 3 + 3 + Emission rights allocation + true + + + 2651 + 610 + 1 + 10 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost net of rights allocation + true + + + 2652 + 611 + 1 + 1 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 2653 + 611 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 2654 + 612 + 1 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Own load in region + true + + + 2655 + 612 + 1 + 2 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity in region + true + + + 2656 + 612 + 1 + 3 + Available Capacity + Available Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 23 + Available generation capacity in region + true + + + 2657 + 612 + 1 + 4 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation in region + true + + + 2658 + 612 + 1 + 5 + Marginal Cost + Marginal Cost + 33 + 33 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of generation in the Region + true + + + 2659 + 612 + 1 + 6 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Weighted average price received for generation in region + true + + + 2660 + 612 + 1 + 7 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue from own generation + generation contracts in region + true + + + 2661 + 612 + 1 + 8 + Generation at RRN + Generation at RRN + 1 + 2 + true + true + false + false + true + false + true + true + 228 + 228 + Own generation taken to the regional reference node + true + + + 2662 + 612 + 1 + 9 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Volume of financial contracts (CfDs) sold in the region + true + + + 2663 + 612 + 1 + 10 + Net Contract Volume + Net Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 535 + 535 + Net volume on CfDs (generation - contract volume) + true + + + 2664 + 612 + 1 + 11 + Contract Shortfall + Contract Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 108 + 108 + Shortfall of generation for contracts in region (pro-rated) + true + + + 2665 + 612 + 1 + 12 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on CfDs in the region + true + + + 2666 + 612 + 1 + 13 + Net Contract Settlement + Net Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 534 + 534 + Monies received (+ve) or paid out (-ve) on CfDs net of interconnector surpluses + true + + + 2667 + 612 + 1 + 14 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 2668 + 614 + 1 + 1 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from parent company to child company + true + + + 2669 + 614 + 1 + 2 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the parent region from child region + true + + + 2670 + 614 + 1 + 3 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) + true + + + 2671 + 614 + 1 + 4 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region + true + + + 2672 + 614 + 1 + 5 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region + true + + + 2673 + 614 + 1 + 6 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 2674 + 615 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 2675 + 615 + 1 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1274 + 1274 + Production cost from Facilities producing the Commodity + true + + + 2676 + 615 + 1 + 3 + Total Cost + Total Cost + 14 + 34 + true + true + false + false + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 2677 + 615 + 1 + 4 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + true + true + 1388 + 1388 + Levelized cost of production + true + + + 2678 + 620 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of units + true + + + 2679 + 620 + 3 + 2 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Commodity + true + + + 2680 + 620 + 3 + 3 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 2681 + 620 + 3 + 4 + Net Consumption + Net Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 2282 + 2282 + Net of consumption and production of the Commodity + true + + + 2682 + 620 + 3 + 5 + Energy Consumption + Energy Consumption + 15 + 16 + true + true + false + false + true + false + true + true + 1815 + 1815 + Equivalent energy consumption + true + + + 2683 + 620 + 3 + 6 + Energy Production + Energy Production + 15 + 16 + true + true + false + false + true + false + true + true + 2471 + 2471 + Equivalent energy production + true + + + 2684 + 620 + 3 + 7 + Net Energy Consumption + Net Energy Consumption + 15 + 16 + true + true + false + false + true + false + true + true + 2472 + 2472 + Net equivalent energy consumption + true + + + 2685 + 620 + 3 + 8 + Electric Energy Consumption + Electric Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 2473 + 2473 + Equivalent electric energy consumption + true + + + 2686 + 620 + 3 + 9 + Electric Energy Production + Electric Energy Production + 1 + 2 + true + true + false + false + true + false + true + true + 2474 + 2474 + Equivalent electric energy production + true + + + 2687 + 620 + 3 + 10 + Net Electric Energy Consumption + Net Electric Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 2475 + 2475 + Net equivalent electric energy consumption + true + + + 2688 + 620 + 3 + 11 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Price of the Commodity for the given level of Net Consumption + true + + + 2689 + 620 + 3 + 12 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity from binding constraints + true + + + 2690 + 620 + 3 + 13 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost incurred by consumption of the Commodity + true + + + 2691 + 620 + 3 + 14 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue earned from production of the Commodity + true + + + 2692 + 620 + 3 + 15 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of Cost and Revenue from consumption and production of the Commodity + true + + + 2693 + 620 + 3 + 16 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2694 + 620 + 3 + 17 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2695 + 620 + 10 + 18 + Max Inventory + Max Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1589 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 2696 + 620 + 10 + 19 + Min Inventory + Min Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1590 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 2697 + 620 + 10 + 20 + Opening Inventory + Opening Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial amount of the Commodity in inventory + true + + + 2698 + 620 + 10 + 21 + Closing Inventory + Closing Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1593 + 1593 + Amount of the Commodity in inventory + true + + + 2699 + 620 + 10 + 22 + Inventory Change + Inventory Change + 86 + 86 + true + true + false + false + true + false + true + true + 2340 + 2340 + Change in Commodity in inventory + true + + + 2700 + 620 + 10 + 23 + Working Inventory + Working Inventory + 86 + 86 + true + true + false + true + true + false + true + true + 2501 + 2501 + Working inventory capacity at the end of the period + true + + + 2701 + 620 + 10 + 24 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Inventory capacity utilization + true + + + 2702 + 620 + 10 + 25 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Working inventory capacity utilization + true + + + 2703 + 620 + 10 + 26 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average inventory capacity utilization + true + + + 2704 + 620 + 10 + 27 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average working inventory capacity utilization + true + + + 2705 + 620 + 10 + 28 + Delivery + Delivery + 86 + 86 + true + true + false + false + true + false + true + true + 1592 + 1592 + Amount of the Commodity added to inventory + true + + + 2706 + 620 + 10 + 29 + Injection + Injection + 86 + 86 + true + true + false + false + true + false + true + true + 1392 + 1392 + Amount of the Commodity added to inventory + true + + + 2707 + 620 + 10 + 30 + Withdrawal + Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1391 + 1391 + Amount of the Commodity withdrawn from inventory + true + + + 2708 + 620 + 10 + 31 + Net Withdrawal + Net Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 2709 + 620 + 10 + 32 + Injection Losses + Injection Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2509 + 2509 + Losses from injections + true + + + 2710 + 620 + 10 + 33 + Withdrawal Losses + Withdrawal Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2510 + 2510 + Losses from withdrawals + true + + + 2711 + 620 + 10 + 34 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of additions to inventory + true + + + 2712 + 620 + 10 + 35 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost of holding the Commodity in inventory + true + + + 2713 + 620 + 10 + 36 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost of unused inventory capacity + true + + + 2714 + 620 + 10 + 37 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injections to the inventory + true + + + 2715 + 620 + 10 + 38 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawals from inventory + true + + + 2716 + 620 + 8 + 39 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2717 + 620 + 8 + 40 + Capacity Built + Capacity Built + 0 + 0 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2718 + 620 + 8 + 41 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2719 + 620 + 8 + 42 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2720 + 620 + 8 + 43 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from all facilities involved in production of the commodity + true + + + 2721 + 620 + 8 + 44 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of production + true + + + 2722 + 620 + 8 + 45 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2723 + 620 + 8 + 46 + Capacity Retired + Capacity Retired + 0 + 0 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2724 + 620 + 8 + 47 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2725 + 620 + 8 + 48 + Net New Capacity + Net New Capacity + 0 + 0 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 2726 + 620 + 12 + 49 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2727 + 620 + 12 + 50 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2728 + 620 + 12 + 51 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2729 + 626 + 3 + 1 + Consumption + Consumption + 93 + 93 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Primary Input Commodity by the Process + true + + + 2730 + 626 + 3 + 2 + Production + Production + 94 + 94 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Primary Output Commodity by the Process + true + + + 2731 + 626 + 3 + 3 + Capacity + Capacity + 94 + 94 + true + true + false + false + true + false + true + true + 1665 + 1665 + Capacity of production measured in units of the primary output + true + + + 2732 + 626 + 3 + 4 + Surplus + Surplus + 94 + 94 + true + true + false + false + true + false + true + true + 2332 + 2332 + Surplus production capacity + true + + + 2733 + 626 + 3 + 5 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of production capacity used + true + + + 2734 + 626 + 3 + 6 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that of surplus capacity + true + + + 2735 + 626 + 3 + 7 + Surplus Factor + Surplus Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2411 + 2411 + Proportion of production capacity not used + true + + + 2736 + 626 + 3 + 8 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Ratio of primary output production to primary input consumption + true + + + 2737 + 626 + 3 + 9 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Processing cost + true + + + 2738 + 626 + 3 + 10 + Marginal Cost + Marginal Cost + 96 + 96 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2739 + 626 + 3 + 11 + Average Cost + Average Cost + 96 + 96 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2740 + 626 + 3 + 12 + Shadow Price + Shadow Price + 96 + 96 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of production + true + + + 2741 + 626 + 3 + 13 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost from all facilities implementing the process + true + + + 2742 + 626 + 8 + 14 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built from all facilities implementing the process + true + + + 2743 + 626 + 8 + 15 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built from all facilities implementing the process + true + + + 2744 + 626 + 8 + 16 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from all facilities implementing the process + true + + + 2745 + 626 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2746 + 626 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2747 + 626 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2748 + 631 + 1 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Secondary Input Commodity by the Process + true + + + 2749 + 632 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Secondary Output Commodity by the Process + true + + + 2750 + 635 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of existing units + true + + + 2751 + 635 + 3 + 2 + Consumption + Consumption + 93 + 93 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Primary Input Commodity by the Facility + true + + + 2752 + 635 + 3 + 3 + Production + Production + 94 + 94 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Primary Output Commodity by the Facility + true + + + 2753 + 635 + 3 + 4 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of capacity in production + true + + + 2754 + 635 + 3 + 5 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Average efficiency of production + true + + + 2755 + 635 + 3 + 6 + Efficiency Incr + Efficiency Incr + 12 + 12 + true + true + false + false + true + false + true + true + 163 + 163 + Marginal efficiency of production + true + + + 2756 + 635 + 3 + 7 + Electric Energy Consumption + Electric Energy Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 2473 + 2473 + Electric energy consumption + true + + + 2757 + 635 + 3 + 8 + Heat Consumption + Heat Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 2751 + 2751 + Heat consumption + true + + + 2758 + 635 + 3 + 9 + Gas Consumption + Gas Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 2730 + 2730 + Gas consumption + true + + + 2759 + 635 + 3 + 10 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 1803 + 1803 + Water consumption + true + + + 2760 + 635 + 3 + 11 + Electric Energy Cost + Electric Energy Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2733 + 2733 + Cost of electric energy consumed + true + + + 2761 + 635 + 3 + 12 + Heat Cost + Heat Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2753 + 2753 + Cost of heat consumed + true + + + 2762 + 635 + 3 + 13 + Gas Cost + Gas Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2734 + 2734 + Cost of gas consumed + true + + + 2763 + 635 + 3 + 14 + Water Cost + Water Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1809 + 1809 + Cost of water consumed + true + + + 2764 + 635 + 3 + 15 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 2765 + 635 + 3 + 16 + Marginal Cost + Marginal Cost + 96 + 96 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2766 + 635 + 3 + 17 + Average Cost + Average Cost + 96 + 96 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2767 + 635 + 3 + 18 + Units Warming Up + Units Warming Up + 0 + 0 + true + false + false + false + true + false + true + true + 2499 + 2499 + Number of units in the warm up process + true + + + 2768 + 635 + 3 + 19 + Units Operating + Units Operating + 0 + 0 + true + false + false + false + true + false + true + true + 2049 + 2049 + Number of units operating + true + + + 2769 + 635 + 3 + 20 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 2770 + 635 + 3 + 21 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 2771 + 635 + 3 + 22 + Warm Up Hours + Warm Up Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2497 + 2497 + Number of hours warming up + true + + + 2772 + 635 + 3 + 23 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation + true + + + 2773 + 635 + 3 + 24 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 2774 + 635 + 3 + 25 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 2775 + 635 + 3 + 26 + Ramp + Ramp + 94 + 94 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 2776 + 635 + 3 + 27 + Ramp Up + Ramp Up + 94 + 94 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 2777 + 635 + 3 + 28 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 2778 + 635 + 3 + 29 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 2779 + 635 + 3 + 30 + Ramp Up Price + Ramp Up Price + 14 + 14 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint + true + + + 2780 + 635 + 3 + 31 + Ramp Down + Ramp Down + 0 + 0 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 2781 + 635 + 3 + 32 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 2782 + 635 + 3 + 33 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 2783 + 635 + 3 + 34 + Ramp Down Price + Ramp Down Price + 14 + 14 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint + true + + + 2784 + 635 + 3 + 35 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation + true + + + 2785 + 635 + 3 + 36 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation + true + + + 2786 + 635 + 3 + 37 + Ramp Up Violation + Ramp Up Violation + 94 + 94 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint + true + + + 2787 + 635 + 3 + 38 + Ramp Down Violation + Ramp Down Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint + true + + + 2788 + 635 + 3 + 39 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations + true + + + 2789 + 635 + 3 + 40 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations + true + + + 2790 + 635 + 3 + 41 + Fixed Production + Fixed Production + 94 + 94 + true + true + false + false + true + false + true + true + 2304 + 2304 + Production attributable to [Fixed Operating Level] constraint + true + + + 2791 + 635 + 3 + 42 + Fixed Production Violation + Fixed Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 2305 + 2305 + Violation of [Fixed Operating Level] constraint + true + + + 2792 + 635 + 3 + 43 + Fixed Production Violation Hours + Fixed Production Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2306 + 2306 + Number of hours that [Fixed Operating Level] is violated + true + + + 2793 + 635 + 3 + 44 + Fixed Production Violation Cost + Fixed Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2307 + 2307 + Cost of [Fixed Operating Level] violations + true + + + 2794 + 635 + 3 + 45 + Min Production Violation + Min Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 2309 + 2309 + Violation of [Min Operating Level] constraint + true + + + 2795 + 635 + 3 + 46 + Min Production Violation Hours + Min Production Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2310 + 2310 + Number of hours that [Min Operating Level] is violated + true + + + 2796 + 635 + 3 + 47 + Min Production Violation Cost + Min Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2311 + 2311 + Cost of [Min Operating Level] violations + true + + + 2797 + 635 + 3 + 48 + Max Production Violation + Max Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] or [Max Capacity Factor] constraints + true + + + 2798 + 635 + 3 + 49 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] or [Max Capacity Factor] constraint violations + true + + + 2799 + 635 + 3 + 50 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints + true + + + 2800 + 635 + 3 + 51 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations + true + + + 2801 + 635 + 3 + 52 + VO&M Charge + VO&M Charge + 14 + 14 + true + true + false + false + true + false + true + true + 849 + 849 + Variable operation and maintenance charge + true + + + 2802 + 635 + 3 + 53 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2803 + 635 + 3 + 54 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2804 + 635 + 3 + 55 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit start up and shutdown + true + + + 2805 + 635 + 3 + 56 + Start & Shutdown Penalty Cost + Start & Shutdown Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1183 + 1183 + Penalty cost of unit start up and shutdown + true + + + 2806 + 635 + 3 + 57 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including production, VO&M, start and shutdown costs + true + + + 2807 + 635 + 3 + 58 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2808 + 635 + 3 + 59 + Price Received + Price Received + 14 + 14 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for production + true + + + 2809 + 635 + 3 + 60 + Electric Energy Production + Electric Energy Production + 3 + 2 + true + true + false + true + true + false + true + true + 2474 + 2474 + Electric energy production + true + + + 2810 + 635 + 3 + 61 + Heat Production + Heat Production + 3 + 2 + true + true + false + true + true + false + true + true + 257 + 257 + Heat production + true + + + 2811 + 635 + 3 + 62 + Gas Production + Gas Production + 75 + 76 + true + true + false + true + true + false + true + true + 2839 + 2839 + Gas production + true + + + 2812 + 635 + 3 + 63 + Water Production + Water Production + 64 + 64 + true + true + false + true + true + false + true + true + 2840 + 2840 + Water production + true + + + 2813 + 635 + 3 + 64 + Electric Energy Revenue + Electric Energy Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2841 + 2841 + Revenue from electric energy produced + true + + + 2814 + 635 + 3 + 65 + Heat Revenue + Heat Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 267 + 267 + Revenue from heat produced + true + + + 2815 + 635 + 3 + 66 + Gas Revenue + Gas Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2842 + 2842 + Revenue from gas produced + true + + + 2816 + 635 + 3 + 67 + Water Revenue + Water Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2843 + 2843 + Revenue from water produced + true + + + 2817 + 635 + 3 + 68 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue for production + true + + + 2818 + 635 + 3 + 69 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 2819 + 635 + 6 + 70 + Installed Capacity + Installed Capacity + 94 + 94 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Operating Level x Units) + true + + + 2820 + 635 + 6 + 71 + Available Capacity + Available Capacity + 94 + 94 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 2821 + 635 + 7 + 72 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service due to maintenance + true + + + 2822 + 635 + 7 + 73 + Maintenance + Maintenance + 94 + 94 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2823 + 635 + 7 + 74 + Discrete Maintenance + Discrete Maintenance + 94 + 94 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 2824 + 635 + 7 + 75 + Distributed Maintenance + Distributed Maintenance + 94 + 94 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 2825 + 635 + 7 + 76 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 2826 + 635 + 7 + 77 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of capacity on maintenance outage + true + + + 2827 + 635 + 7 + 78 + Forced Outage + Forced Outage + 94 + 94 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 2828 + 635 + 7 + 79 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 2829 + 635 + 7 + 80 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of capacity on forced outage + true + + + 2830 + 635 + 7 + 81 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 2831 + 635 + 7 + 82 + Outage Hours + Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2561 + 2561 + Number of hours on outage + true + + + 2832 + 635 + 7 + 83 + Outage Rate + Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 2562 + 2562 + Proportion of installed capacity on outage + true + + + 2833 + 635 + 7 + 84 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of capacity available for production + true + + + 2834 + 635 + 8 + 85 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2835 + 635 + 8 + 86 + Capacity Built + Capacity Built + 94 + 94 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2836 + 635 + 8 + 87 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2837 + 635 + 8 + 88 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2838 + 635 + 8 + 89 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2839 + 635 + 8 + 90 + Capacity Retired + Capacity Retired + 94 + 94 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2840 + 635 + 8 + 91 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2841 + 635 + 8 + 92 + Net New Capacity + Net New Capacity + 94 + 94 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 2842 + 635 + 8 + 93 + Capacity Price + Capacity Price + 14 + 14 + true + true + false + false + true + false + true + true + 881 + 881 + Price of new capacity + true + + + 2843 + 635 + 8 + 94 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 2844 + 635 + 8 + 95 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2845 + 635 + 8 + 96 + Levelized Cost + Levelized Cost + 14 + 14 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of production + true + + + 2846 + 635 + 12 + 97 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2847 + 635 + 12 + 98 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2848 + 635 + 12 + 99 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2849 + 638 + 3 + 1 + Consumption + Consumption + 0 + 0 + true + true + true + false + true + false + true + true + 1437 + 1437 + Amount of Process Primary Input Commodity consumed by the Facility + true + + + 2850 + 639 + 3 + 1 + Production + Production + 0 + 0 + true + true + true + false + true + false + true + true + 624 + 624 + Amount of Process Primary Output Commodity produced by the Facility + true + + + 2851 + 640 + 3 + 1 + Consumption + Consumption + 0 + 0 + true + true + true + false + true + false + true + true + 1437 + 1437 + Amount of Process Secondary Input Commodity consumed by the Facility + true + + + 2852 + 641 + 3 + 1 + Production + Production + 0 + 0 + true + true + true + false + true + false + true + true + 624 + 624 + Amount of Process Secondary Output Commodity produced by the Facility + true + + + 2853 + 651 + 1 + 1 + Start Date + Start Date + 0 + 0 + true + true + false + false + true + false + true + true + 1719 + 1719 + Start date of next maintenance event. + true + + + 2854 + 651 + 1 + 2 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the maintenance is active. + true + + + 2855 + 651 + 1 + 3 + Duration + Duration + 6 + 6 + true + true + false + false + true + false + true + true + 1476 + 1476 + Duration of the maintenance event. + true + + + 2856 + 651 + 1 + 4 + Cost + Cost + 14 + 34 + true + true + true + false + true + false + true + true + 117 + 117 + Cost of the maintenance event. + true + + + 2857 + 651 + 1 + 5 + Crew + Crew + 0 + 0 + true + true + true + false + true + false + true + true + 1688 + 1688 + Maintenance event crew requirements. + true + + + 2858 + 651 + 1 + 6 + Equipment + Equipment + 0 + 0 + true + true + true + false + true + false + true + true + 1689 + 1689 + Maintenance event equipment requirements. + true + + + 2859 + 651 + 1 + 7 + Penalty Cost + Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 603 + 603 + Cost of not scheduling this maintenance event. + true + + + 2860 + 651 + 12 + 8 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2861 + 651 + 12 + 9 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2862 + 651 + 12 + 10 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2863 + 657 + 3 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Commodity consumed + true + + + 2864 + 657 + 3 + 2 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Commodity produced + true + + + 2865 + 657 + 3 + 3 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 2866 + 657 + 3 + 4 + Marginal Cost + Marginal Cost + 14 + 14 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2867 + 657 + 3 + 5 + Average Cost + Average Cost + 14 + 14 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2868 + 657 + 3 + 6 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Commodity flowed + true + + + 2869 + 657 + 3 + 7 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 2870 + 657 + 3 + 8 + Imports + Imports + 86 + 86 + true + true + false + false + true + false + true + true + 294 + 294 + Commodity imported + true + + + 2871 + 657 + 3 + 9 + Exports + Exports + 86 + 86 + true + true + false + false + true + false + true + true + 192 + 192 + Commodity exported + true + + + 2872 + 657 + 3 + 10 + Net Interchange + Net Interchange + 86 + 86 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on Flow Paths + true + + + 2873 + 657 + 3 + 11 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Total losses in the network + true + + + 2874 + 657 + 3 + 12 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 2875 + 657 + 3 + 13 + Shortage + Shortage + 86 + 86 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 2876 + 657 + 3 + 14 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 2877 + 657 + 3 + 15 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 2878 + 657 + 3 + 16 + Surplus + Surplus + 86 + 86 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 2879 + 657 + 3 + 17 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 2880 + 657 + 3 + 18 + Sales + Sales + 86 + 86 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to Markets + true + + + 2881 + 657 + 3 + 19 + Purchases + Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from Markets + true + + + 2882 + 657 + 3 + 20 + Net Sales + Net Sales + 86 + 86 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to Markets + true + + + 2883 + 657 + 3 + 21 + Net Purchases + Net Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from Markets + true + + + 2884 + 657 + 3 + 22 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours Market price cap was applied + true + + + 2885 + 657 + 3 + 23 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours Market price floor was applied + true + + + 2886 + 657 + 3 + 24 + Price + Price + 14 + 14 + true + true + false + false + true + false + true + true + 612 + 612 + Market price + true + + + 2887 + 657 + 3 + 25 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of Market sales + true + + + 2888 + 657 + 3 + 26 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Value of Market purchases + true + + + 2889 + 657 + 3 + 27 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net value of Market sales + true + + + 2890 + 657 + 3 + 28 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net value of Market purchases + true + + + 2891 + 657 + 3 + 29 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2892 + 657 + 3 + 30 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 2893 + 657 + 3 + 31 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 2894 + 657 + 3 + 32 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity in the Flow Network + true + + + 2895 + 657 + 6 + 33 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Flow capacity + true + + + 2896 + 657 + 6 + 34 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 2897 + 657 + 8 + 35 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Production capacity built + true + + + 2898 + 657 + 8 + 36 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of production capacity builds + true + + + 2899 + 657 + 8 + 37 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Production capacity retired + true + + + 2900 + 657 + 8 + 38 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of production capacity retirements + true + + + 2901 + 657 + 12 + 39 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2902 + 657 + 12 + 40 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2903 + 657 + 12 + 41 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2904 + 666 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Flow Node is in service + true + + + 2905 + 666 + 3 + 2 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Commodity consumed + true + + + 2906 + 666 + 3 + 3 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Commodity produced + true + + + 2907 + 666 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 2908 + 666 + 3 + 5 + Marginal Cost + Marginal Cost + 88 + 88 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2909 + 666 + 3 + 6 + Average Cost + Average Cost + 88 + 88 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2910 + 666 + 3 + 7 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Commodity flowed + true + + + 2911 + 666 + 3 + 8 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 2912 + 666 + 3 + 9 + Imports + Imports + 86 + 86 + true + true + false + false + true + false + true + true + 294 + 294 + Commodity imported + true + + + 2913 + 666 + 3 + 10 + Exports + Exports + 86 + 86 + true + true + false + false + true + false + true + true + 192 + 192 + Commodity exported + true + + + 2914 + 666 + 3 + 11 + Net Interchange + Net Interchange + 86 + 86 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on Flow Paths + true + + + 2915 + 666 + 3 + 12 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Losses incurred at the Flow Node + true + + + 2916 + 666 + 3 + 13 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 2917 + 666 + 3 + 14 + Shortage + Shortage + 86 + 86 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 2918 + 666 + 3 + 15 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 2919 + 666 + 3 + 16 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 2920 + 666 + 3 + 17 + Surplus + Surplus + 86 + 86 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 2921 + 666 + 3 + 18 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 2922 + 666 + 3 + 19 + Sales + Sales + 86 + 86 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to Markets + true + + + 2923 + 666 + 3 + 20 + Purchases + Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from Markets + true + + + 2924 + 666 + 3 + 21 + Net Sales + Net Sales + 86 + 86 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to Markets + true + + + 2925 + 666 + 3 + 22 + Net Purchases + Net Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from Markets + true + + + 2926 + 666 + 3 + 23 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours Market price cap was applied + true + + + 2927 + 666 + 3 + 24 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours Market price floor was applied + true + + + 2928 + 666 + 3 + 25 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Market price + true + + + 2929 + 666 + 3 + 26 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of Market sales + true + + + 2930 + 666 + 3 + 27 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Value of Market purchases + true + + + 2931 + 666 + 3 + 28 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net value of Market sales + true + + + 2932 + 666 + 3 + 29 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net value of Market purchases + true + + + 2933 + 666 + 3 + 30 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2934 + 666 + 3 + 31 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 2935 + 666 + 3 + 32 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 2936 + 666 + 3 + 33 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity at the Flow Node + true + + + 2937 + 666 + 6 + 34 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Flow capacity + true + + + 2938 + 666 + 6 + 35 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 2939 + 666 + 8 + 36 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the Flow Node is built in this year + true + + + 2940 + 666 + 8 + 37 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2941 + 666 + 8 + 38 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Flow Node + true + + + 2942 + 666 + 8 + 39 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the Flow Node is retired in this year + true + + + 2943 + 666 + 8 + 40 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2944 + 666 + 8 + 41 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Flow Node + true + + + 2945 + 666 + 12 + 42 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2946 + 666 + 12 + 43 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2947 + 666 + 12 + 44 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2948 + 673 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Flow Path is in service + true + + + 2949 + 673 + 3 + 2 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Net flow of the Commodity + true + + + 2950 + 673 + 3 + 3 + Flow Forward + Flow Forward + 86 + 86 + true + true + false + false + true + false + true + true + 2383 + 2383 + Commodity flow in the reference direction + true + + + 2951 + 673 + 3 + 4 + Flow Back + Flow Back + 86 + 86 + true + true + false + false + true + false + true + true + 206 + 206 + Commodity flow in the counter-reference direction + true + + + 2952 + 673 + 3 + 5 + Flows in Transit + Flows in Transit + 86 + 86 + true + true + false + false + true + false + true + true + 2735 + 2735 + Commodity flow in transit at the end of the period + true + + + 2953 + 673 + 3 + 6 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 2954 + 673 + 3 + 7 + Export Limit + Export Limit + 86 + 86 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the Flow Path + true + + + 2955 + 673 + 3 + 8 + Import Limit + Import Limit + 86 + 86 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the Flow Path + true + + + 2956 + 673 + 3 + 9 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to flow limit + true + + + 2957 + 673 + 3 + 10 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to flow limit + true + + + 2958 + 673 + 3 + 11 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the Flow Path is congested + true + + + 2959 + 673 + 3 + 12 + Hours Congested Forward + Hours Congested Forward + 6 + 6 + false + true + false + false + true + false + true + true + 2369 + 2369 + Number of hours the Flow Path is congested in the reference direction + true + + + 2960 + 673 + 3 + 13 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the Flow Path is congested in the counter-reference direction + true + + + 2961 + 673 + 3 + 14 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Losses incurred + true + + + 2962 + 673 + 3 + 15 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price + true + + + 2963 + 673 + 3 + 16 + Shadow Price Forward + Shadow Price Forward + 88 + 88 + false + true + false + false + true + false + true + true + 2370 + 2370 + Shadow price in the reference direction + true + + + 2964 + 673 + 3 + 17 + Shadow Price Back + Shadow Price Back + 88 + 88 + false + true + false + false + true + false + true + true + 743 + 743 + Shadow price of interface limit in the counter-reference direction + true + + + 2965 + 673 + 6 + 18 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Flow x Units) + true + + + 2966 + 673 + 6 + 19 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 2967 + 673 + 7 + 20 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2968 + 673 + 7 + 21 + Maintenance + Maintenance + 86 + 86 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2969 + 673 + 7 + 22 + Maintenance Back + Maintenance Back + 86 + 86 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 2970 + 673 + 7 + 23 + Discrete Maintenance + Discrete Maintenance + 86 + 86 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 2971 + 673 + 7 + 24 + Discrete Maintenance Back + Discrete Maintenance Back + 86 + 86 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 2972 + 673 + 7 + 25 + Distributed Maintenance + Distributed Maintenance + 86 + 86 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 2973 + 673 + 7 + 26 + Distributed Maintenance Back + Distributed Maintenance Back + 86 + 86 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 2974 + 673 + 7 + 27 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 2975 + 673 + 7 + 28 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of capacity on maintenance outage + true + + + 2976 + 673 + 7 + 29 + Forced Outage + Forced Outage + 86 + 86 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 2977 + 673 + 7 + 30 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 2978 + 673 + 7 + 31 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of capacity on forced outage + true + + + 2979 + 673 + 7 + 32 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of capacity available for production + true + + + 2980 + 673 + 3 + 33 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2981 + 673 + 8 + 34 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the Flow Node is built in this year + true + + + 2982 + 673 + 8 + 35 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2983 + 673 + 8 + 36 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Flow Path + true + + + 2984 + 673 + 8 + 37 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the Flow Node is retired in this year + true + + + 2985 + 673 + 8 + 38 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2986 + 673 + 8 + 39 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Flow Path + true + + + 2987 + 673 + 12 + 40 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2988 + 673 + 12 + 41 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2989 + 673 + 12 + 42 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2990 + 681 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of units + true + + + 2991 + 681 + 3 + 2 + Max Inventory + Max Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1589 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 2992 + 681 + 3 + 3 + Min Inventory + Min Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1590 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 2993 + 681 + 3 + 4 + Opening Inventory + Opening Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial amount of the Commodity in inventory + true + + + 2994 + 681 + 3 + 5 + Closing Inventory + Closing Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1593 + 1593 + Amount of the Commodity in inventory + true + + + 2995 + 681 + 3 + 6 + Inventory Change + Inventory Change + 86 + 86 + true + true + false + false + true + false + true + true + 2340 + 2340 + Change in Commodity in inventory + true + + + 2996 + 681 + 3 + 7 + Delivery + Delivery + 86 + 86 + true + true + false + false + true + false + true + true + 1592 + 1592 + Amount of the Commodity added to inventory + true + + + 2997 + 681 + 3 + 8 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Gross amount of the Commodity drawn from the Flow Node + true + + + 2998 + 681 + 3 + 9 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Net amount of the Commodity released to the Flow Node + true + + + 2999 + 681 + 3 + 10 + Injection + Injection + 86 + 86 + true + true + false + false + true + false + true + true + 1392 + 1392 + Net amount of the Commodity added to inventory + true + + + 3000 + 681 + 3 + 11 + Withdrawal + Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1391 + 1391 + Gross amount of the Commodity withdrawn from inventory + true + + + 3001 + 681 + 3 + 12 + Net Withdrawal + Net Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 3002 + 681 + 3 + 13 + Injection Losses + Injection Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2509 + 2509 + Losses from injections + true + + + 3003 + 681 + 3 + 14 + Withdrawal Losses + Withdrawal Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2510 + 2510 + Losses from withdrawals + true + + + 3004 + 681 + 3 + 15 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of additions to inventory + true + + + 3005 + 681 + 3 + 16 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost of holding the Commodity in inventory + true + + + 3006 + 681 + 3 + 17 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost of unused inventory capacity + true + + + 3007 + 681 + 3 + 18 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injections to the inventory + true + + + 3008 + 681 + 3 + 19 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawals from inventory + true + + + 3009 + 681 + 3 + 20 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity from binding constraints + true + + + 3010 + 681 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 3011 + 681 + 3 + 22 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 3012 + 681 + 8 + 23 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 3013 + 681 + 8 + 24 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 3014 + 681 + 8 + 25 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 3015 + 681 + 8 + 26 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 3016 + 681 + 8 + 27 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 3017 + 681 + 8 + 28 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 3018 + 681 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 3019 + 681 + 8 + 30 + Net New Capacity + Net New Capacity + 86 + 86 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 3020 + 681 + 8 + 31 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 3021 + 681 + 12 + 32 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3022 + 681 + 12 + 33 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3023 + 681 + 12 + 34 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3024 + 688 + 3 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity by the Facilities + true + + + 3025 + 688 + 3 + 2 + Sales + Sales + 0 + 0 + true + true + false + false + true + false + true + true + 718 + 718 + Sales of the Commodity to the Markets + true + + + 3026 + 688 + 3 + 3 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including production, VO&M, start and shutdown costs + true + + + 3027 + 688 + 3 + 4 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of sales to the Markets + true + + + 3028 + 688 + 3 + 5 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit of the Entity + true + + + 3029 + 688 + 8 + 6 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Build cost of Facilities + true + + + 3030 + 688 + 8 + 7 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of Facilities built + true + + + 3031 + 688 + 8 + 8 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Retirement costs of Facilities + true + + + 3032 + 688 + 8 + 9 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from Facilities + true + + + 3033 + 688 + 12 + 10 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3034 + 688 + 12 + 11 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3035 + 688 + 12 + 12 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3036 + 691 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 3037 + 691 + 1 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1274 + 1274 + Production cost from Facilities producing the Commodity + true + + + 3038 + 691 + 1 + 3 + Total Cost + Total Cost + 14 + 34 + true + true + false + false + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 3039 + 691 + 1 + 4 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + true + true + 1388 + 1388 + Levelized cost of production + true + + + 3040 + 694 + 3 + 1 + Sales + Sales + 86 + 87 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 3041 + 694 + 3 + 2 + Purchases + Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 3042 + 694 + 3 + 3 + Net Sales + Net Sales + 86 + 87 + true + true + false + false + true + false + true + true + 553 + 553 + Net reserve sold into the market + true + + + 3043 + 694 + 3 + 4 + Net Purchases + Net Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 3044 + 694 + 3 + 5 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 3045 + 694 + 3 + 6 + Shortage + Shortage + 86 + 87 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 3046 + 694 + 3 + 7 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 3047 + 694 + 3 + 8 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 3048 + 694 + 3 + 9 + Surplus + Surplus + 86 + 87 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 3049 + 694 + 3 + 10 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 3050 + 694 + 3 + 11 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours the price cap was applied + true + + + 3051 + 694 + 3 + 12 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours the price floor was applied + true + + + 3052 + 694 + 3 + 13 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Price point on market demand function + true + + + 3053 + 694 + 3 + 14 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of sales to the market + true + + + 3054 + 694 + 3 + 15 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 3055 + 694 + 3 + 16 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue from reserve sales in the market + true + + + 3056 + 694 + 3 + 17 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net cost of purchases from the market + true + + + 3057 + 694 + 3 + 18 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Cost including block fixed costs + true + + + 3058 + 694 + 3 + 19 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 3059 + 694 + 3 + 20 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 3060 + 694 + 3 + 21 + Natural Revenue + Natural Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1624 + 1624 + Value of sales to the market ignoring bid-ask spread + true + + + 3061 + 694 + 3 + 22 + Natural Cost + Natural Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1625 + 1625 + Cost of purchases from the market ignoring bid-ask spread + true + + + 3062 + 694 + 6 + 23 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the market purchases to generation capacity for capacity reserves. + true + + + 3063 + 694 + 6 + 24 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Contribution of the market sales to the load obligation for capacity reserves. + true + + + 3064 + 694 + 12 + 25 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3065 + 694 + 12 + 26 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3066 + 694 + 12 + 27 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3067 + 700 + 1 + 1 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Constraint activity at optimal solution + true + + + 3068 + 700 + 1 + 2 + Slack + Slack + 0 + 0 + true + true + false + false + true + true + true + true + 748 + 748 + Constraint slack at optimal solution + true + + + 3069 + 700 + 1 + 3 + Violation + Violation + 0 + 0 + true + true + false + false + true + true + true + true + 843 + 843 + Constraint violation at optimal solution + true + + + 3070 + 700 + 1 + 4 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + true + true + true + 276 + 276 + Number of hours the Constraint is binding. + true + + + 3071 + 700 + 1 + 5 + RHS + RHS + 0 + 0 + true + true + false + false + true + true + true + true + 700 + 700 + Constraint RHS constant + true + + + 3072 + 700 + 1 + 6 + Price + Price + 14 + 14 + true + true + false + false + true + false + true + true + 612 + 612 + Constraint dual variable value at optimal solution + true + + + 3073 + 700 + 1 + 7 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the Constraint is active. + true + + + 3074 + 700 + 1 + 8 + Penalty Cost + Penalty Cost + 14 + 34 + true + true + false + true + true + false + true + true + 603 + 603 + Contribution of penalty violations to the primal objective function + true + + + 3075 + 700 + 1 + 9 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Contribution of activity to the dual objective function + true + + + 3076 + 700 + 12 + 10 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3077 + 700 + 12 + 11 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3078 + 700 + 12 + 12 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3079 + 704 + 1 + 1 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Objective value + true + + + 3080 + 704 + 1 + 2 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Variable part of objective value + true + + + 3081 + 704 + 1 + 3 + Constant + Constant + 0 + 0 + true + true + false + false + true + true + true + true + 2089 + 2089 + Is the constant term in objective a'x +b + true + + + 3082 + 704 + 12 + 4 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3083 + 704 + 12 + 5 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3084 + 704 + 12 + 6 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3085 + 707 + 1 + 1 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Value of generic decision variable + true + + + 3086 + 707 + 1 + 2 + Reduced Cost + Reduced Cost + 14 + 14 + true + true + false + true + true + true + true + true + 1496 + 1496 + Reduced cost of the generic decision variable + true + + + 3087 + 707 + 1 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + true + true + true + 117 + 117 + Total objective function contribution of generic decision variable + true + + + 3088 + 707 + 1 + 4 + Objective Function Coefficient + Objective Function Coefficient + 14 + 14 + true + true + false + false + true + true + true + true + 1351 + 1351 + Objective function value of the generic decision variable + true + + + 3089 + 707 + 1 + 5 + Lower Bound + Lower Bound + 0 + 0 + true + true + false + false + true + true + true + true + 1494 + 1494 + Lower bound of the generic decision variable + true + + + 3090 + 707 + 1 + 6 + Upper Bound + Upper Bound + 0 + 0 + true + true + false + false + true + true + true + true + 1495 + 1495 + Upper bound of the generic decision variable + true + + + 3091 + 707 + 1 + 7 + Min Value + Min Value + 0 + 0 + true + true + false + false + true + true + true + true + 508 + 508 + Minimum value of generic decision variable + true + + + 3092 + 707 + 1 + 8 + Max Value + Max Value + 0 + 0 + true + true + false + false + true + true + true + true + 464 + 464 + Maximum value of generic decision variable + true + + + 3093 + 707 + 12 + 9 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3094 + 707 + 12 + 10 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3095 + 707 + 12 + 11 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3096 + 713 + 1 + 1 + X Value + X Value + 0 + 0 + true + true + false + false + true + false + true + true + 2205 + 2205 + Solution value for the x variable + true + + + 3097 + 713 + 1 + 2 + Y Value + Y Value + 0 + 0 + true + true + false + false + true + false + true + true + 2206 + 2206 + Solution value for the y variable + true + + + 3098 + 713 + 1 + 3 + Function Value + Function Value + 0 + 0 + true + true + false + false + true + false + true + true + 2207 + 2207 + Value of the input function at the current X value + true + + + 3099 + 713 + 12 + 4 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3100 + 713 + 12 + 5 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3101 + 713 + 12 + 6 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3102 + 720 + 1 + 1 + Expected Value + Expected Value + 0 + 0 + true + true + false + false + true + true + true + true + 1493 + 1493 + Expected value + true + + + 3103 + 720 + 1 + 2 + Raw Value + Raw Value + 0 + 0 + true + true + false + false + true + true + true + true + 1090 + 1090 + Raw sample value before application of [Min Value], [Max Value] or lookup table. + true + + + 3104 + 720 + 1 + 3 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Sample value + true + + + 3105 + 720 + 1 + 4 + Error + Error + 0 + 0 + true + true + false + false + true + true + true + true + 182 + 182 + Average sample error + true + + + 3106 + 720 + 1 + 5 + Volatility + Volatility + 0 + 0 + true + true + false + false + true + true + true + true + 1770 + 1770 + GARCH(1,1) volatility metric of sample values + true + + + 3107 + 720 + 1 + 6 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Value of the left hand side of the equation defining the conditional Variable + true + + + 3108 + 726 + 1 + 1 + Hours Included + Hours Included + 6 + 6 + true + true + false + false + true + true + true + true + 279 + 279 + Number of hours the Timeslice is included. + true + + + 3109 + 732 + 1 + 1 + Temperature + Temperature + 77 + 77 + true + true + false + false + true + false + true + true + 2009 + 2009 + Temperature value in each level + true + + + 3110 + 732 + 1 + 2 + Heating Degree Days + Heating Degree Days + 0 + 0 + true + true + false + false + true + false + true + true + 2007 + 2007 + Value for heating degree days + true + + + 3111 + 732 + 1 + 3 + Wind Speed + Wind Speed + 0 + 0 + true + true + false + false + true + false + true + true + 2011 + 2011 + Wind speed value + true + + + 8 + 2 + 1 + true + true + false + false + false + + + 8 + 27 + 1 + false + true + false + false + false + + + 8 + 214 + 1 + false + true + false + false + false + + + 8 + 240 + 1 + false + true + false + false + false + + + 8 + 245 + 1 + false + true + false + false + false + + + 8 + 372 + 1 + false + true + false + false + false + + + 8 + 375 + 1 + false + true + false + false + false + + + 8 + 376 + 1 + true + true + false + false + false + + + 8 + 386 + 1 + false + true + false + false + false + + + 8 + 518 + 1 + true + true + false + false + false + + + 8 + 520 + 1 + true + true + false + false + false + + + 8 + 521 + 1 + true + true + false + false + false + + + 8 + 522 + 1 + true + true + false + false + false + + + 8 + 599 + 1 + false + true + false + false + false + + + 8 + 643 + 1 + true + true + false + false + false + + + 8 + 644 + 1 + true + true + false + false + false + + + 8 + 653 + 1 + true + true + false + false + false + + + 8 + 654 + 1 + true + true + false + false + false + + + 8 + 706 + 1 + true + true + false + false + false + + + 8 + 725 + 1 + true + true + false + false + false + + + 8 + 811 + 1 + true + true + true + true + false + + + 8 + 812 + 1 + true + true + true + true + false + + + 8 + 830 + 1 + true + true + true + true + false + + + 8 + 964 + 1 + true + true + false + false + false + + + 8 + 968 + 1 + true + true + false + false + false + + + 8 + 994 + 1 + true + true + false + false + false + + + 8 + 998 + 1 + true + true + false + false + false + + + 8 + 1003 + 1 + false + true + false + false + false + + + 8 + 1035 + 1 + true + true + false + false + false + + + 8 + 1090 + 1 + false + true + false + false + false + + + 8 + 1100 + 1 + false + true + false + false + false + + + 8 + 1122 + 1 + false + true + false + false + false + + + 8 + 1195 + 1 + true + true + false + false + false + + + 8 + 1199 + 1 + true + true + false + false + false + + + 8 + 1225 + 1 + true + true + false + false + false + + + 8 + 1229 + 1 + true + true + false + false + false + + + 8 + 1234 + 1 + true + true + false + false + false + + + 8 + 1266 + 1 + true + true + false + false + false + + + 8 + 1296 + 1 + false + true + false + false + false + + + 8 + 1306 + 1 + false + true + false + false + false + + + 8 + 1325 + 1 + false + true + false + false + false + + + 8 + 1460 + 1 + true + true + false + false + false + + + 8 + 1463 + 1 + false + true + false + false + false + + + 8 + 1464 + 1 + false + true + false + false + false + + + 8 + 1687 + 1 + true + true + false + false + false + + + 8 + 1712 + 1 + true + true + false + false + false + + + 8 + 1713 + 1 + true + true + false + false + false + + + 8 + 1730 + 1 + false + true + false + false + false + + + 8 + 1732 + 1 + false + true + false + false + false + + + 8 + 1780 + 1 + false + true + false + false + false + + + 8 + 1781 + 1 + false + true + false + false + false + + + 8 + 1782 + 1 + false + true + false + false + false + + + 8 + 1821 + 1 + false + true + false + false + false + + + 8 + 1857 + 1 + false + true + false + false + false + + + 8 + 1858 + 1 + false + true + false + false + false + + + 8 + 1865 + 1 + false + true + false + false + false + + + 8 + 1866 + 1 + false + true + false + false + false + + + 8 + 1900 + 1 + false + true + false + false + false + + + 8 + 1901 + 1 + false + true + false + false + false + + + 8 + 1919 + 1 + false + true + false + false + false + + + 8 + 1950 + 1 + false + true + false + false + false + + + 8 + 1951 + 1 + false + true + false + false + false + + + 8 + 1975 + 1 + false + true + false + false + false + + + 8 + 2026 + 1 + false + true + false + false + false + + + 8 + 2028 + 1 + false + true + false + false + false + + + 8 + 2031 + 1 + false + true + false + false + false + + + 8 + 2089 + 1 + false + true + false + false + false + + + 8 + 2090 + 1 + false + true + false + false + false + + + 8 + 2091 + 1 + false + true + false + false + false + + + 8 + 2103 + 1 + false + true + false + false + false + + + 8 + 2105 + 1 + false + true + false + false + false + + + 8 + 2109 + 1 + false + true + false + false + false + + + 8 + 2110 + 1 + false + true + false + false + false + + + 8 + 2111 + 1 + false + true + false + false + false + + + 8 + 2119 + 1 + false + true + false + false + false + + + 8 + 2121 + 1 + false + true + false + false + false + + + 8 + 2160 + 1 + false + true + false + false + false + + + 8 + 2161 + 1 + false + true + false + false + false + + + 8 + 2192 + 1 + false + true + false + false + false + + + 8 + 2195 + 1 + false + true + false + false + false + + + 8 + 2197 + 1 + false + true + false + false + false + + + 8 + 2238 + 1 + false + true + false + false + false + + + 8 + 2276 + 1 + false + true + false + false + false + + + 8 + 2299 + 1 + false + true + false + false + false + + + 8 + 2300 + 1 + false + true + false + false + false + + + 8 + 2313 + 1 + false + true + false + false + false + + + 8 + 2327 + 1 + false + true + false + false + false + + + 8 + 2328 + 1 + false + true + false + false + false + + + 8 + 2336 + 1 + false + true + false + false + false + + + 8 + 2354 + 1 + false + true + false + false + false + + + 8 + 2356 + 1 + false + true + false + false + false + + + 8 + 2359 + 1 + false + true + false + false + false + + + 8 + 2854 + 1 + true + true + false + false + false + + + 8 + 2856 + 1 + true + true + false + false + false + + + 8 + 3040 + 1 + true + true + false + false + false + + + 8 + 3041 + 1 + true + true + false + false + false + + + 8 + 3052 + 1 + true + true + false + false + false + + + 8 + 3070 + 1 + true + true + false + false + false + + + 8 + 3072 + 1 + true + true + false + false + false + + + 8 + 3085 + 1 + true + true + false + false + false + + + 8 + 3086 + 1 + true + true + false + false + false + + + 8 + 3104 + 1 + true + true + false + false + false + + + 9 + 2 + 4 + true + true + false + false + false + + + 9 + 7 + 4 + true + false + false + false + false + + + 9 + 119 + 4 + true + true + false + false + false + + + 9 + 151 + 4 + true + true + false + false + false + + + 9 + 163 + 4 + true + true + false + false + false + + + 9 + 167 + 4 + true + true + false + false + false + + + 9 + 372 + 4 + true + true + false + false + false + + + 9 + 375 + 4 + true + true + false + false + false + + + 9 + 376 + 4 + true + true + false + false + false + + + 9 + 386 + 4 + true + true + false + false + false + + + 9 + 518 + 4 + true + true + false + false + false + + + 9 + 520 + 4 + true + true + false + false + false + + + 9 + 521 + 4 + true + true + false + false + false + + + 9 + 522 + 4 + true + true + false + false + false + + + 9 + 643 + 4 + true + true + false + false + false + + + 9 + 644 + 4 + true + true + false + false + false + + + 9 + 653 + 4 + true + true + false + false + false + + + 9 + 654 + 4 + true + true + false + false + false + + + 9 + 706 + 4 + true + true + false + false + false + + + 9 + 725 + 4 + true + true + false + false + false + + + 9 + 811 + 4 + true + true + true + true + false + + + 9 + 812 + 4 + true + true + true + true + false + + + 9 + 830 + 4 + true + true + true + true + false + + + 9 + 964 + 4 + true + true + false + false + false + + + 9 + 968 + 4 + true + true + false + false + false + + + 9 + 994 + 4 + true + true + false + false + false + + + 9 + 998 + 4 + true + true + false + false + false + + + 9 + 1003 + 4 + true + true + false + false + false + + + 9 + 1035 + 4 + true + true + false + false + false + + + 9 + 1041 + 4 + true + true + false + false + false + + + 9 + 1042 + 4 + true + true + false + false + false + + + 9 + 1044 + 4 + true + true + false + false + false + + + 9 + 1195 + 4 + true + true + false + false + false + + + 9 + 1199 + 4 + true + true + false + false + false + + + 9 + 1225 + 4 + true + true + false + false + false + + + 9 + 1229 + 4 + true + true + false + false + false + + + 9 + 1234 + 4 + true + true + false + false + false + + + 9 + 1266 + 4 + true + true + false + false + false + + + 9 + 1274 + 4 + true + true + false + false + false + + + 9 + 1275 + 4 + true + true + false + false + false + + + 9 + 1277 + 4 + true + true + false + false + false + + + 9 + 1410 + 4 + true + true + false + false + false + + + 9 + 1460 + 4 + true + true + false + false + false + + + 9 + 1463 + 4 + true + true + false + false + false + + + 9 + 1464 + 4 + true + true + false + false + false + + + 9 + 1687 + 4 + true + true + false + false + false + + + 9 + 1712 + 4 + true + true + false + false + false + + + 9 + 1713 + 4 + true + true + false + false + false + + + 9 + 1780 + 4 + true + true + false + false + false + + + 9 + 1781 + 4 + true + true + false + false + false + + + 9 + 1782 + 4 + true + true + false + false + false + + + 9 + 1821 + 4 + true + true + false + false + false + + + 9 + 1857 + 4 + true + true + false + false + false + + + 9 + 1865 + 4 + true + true + false + false + false + + + 9 + 1866 + 4 + true + true + false + false + false + + + 9 + 1900 + 4 + true + true + false + false + false + + + 9 + 1901 + 4 + true + true + false + false + false + + + 9 + 1919 + 4 + true + true + false + false + false + + + 9 + 1950 + 4 + true + true + false + false + false + + + 9 + 1951 + 4 + true + true + false + false + false + + + 9 + 1975 + 4 + true + true + false + false + false + + + 9 + 2026 + 4 + true + true + false + false + false + + + 9 + 2028 + 4 + true + true + false + false + false + + + 9 + 2031 + 4 + true + true + false + false + false + + + 9 + 2089 + 4 + true + true + false + false + false + + + 9 + 2090 + 4 + true + true + false + false + false + + + 9 + 2091 + 4 + true + true + false + false + false + + + 9 + 2103 + 4 + true + true + false + false + false + + + 9 + 2105 + 4 + true + true + false + false + false + + + 9 + 2109 + 4 + true + true + false + false + false + + + 9 + 2110 + 4 + true + true + false + false + false + + + 9 + 2111 + 4 + true + true + false + false + false + + + 9 + 2119 + 4 + true + true + false + false + false + + + 9 + 2121 + 4 + true + true + false + false + false + + + 9 + 2160 + 4 + true + true + false + false + false + + + 9 + 2161 + 4 + true + true + false + false + false + + + 9 + 2192 + 4 + true + true + false + false + false + + + 9 + 2195 + 4 + true + true + false + false + false + + + 9 + 2197 + 4 + true + true + false + false + false + + + 9 + 2238 + 4 + true + true + false + false + false + + + 9 + 2276 + 4 + true + true + false + false + false + + + 9 + 2299 + 4 + true + true + false + false + false + + + 9 + 2300 + 4 + true + true + false + false + false + + + 9 + 2313 + 4 + true + true + false + false + false + + + 9 + 2327 + 4 + true + true + false + false + false + + + 9 + 2328 + 4 + true + true + false + false + false + + + 9 + 2336 + 4 + true + true + false + false + false + + + 9 + 2354 + 4 + true + true + false + false + false + + + 9 + 2356 + 4 + true + true + false + false + false + + + 9 + 2359 + 4 + true + true + false + false + false + + + 9 + 2854 + 4 + true + true + false + false + false + + + 9 + 2856 + 4 + true + true + false + false + false + + + 9 + 3040 + 4 + true + true + false + false + false + + + 9 + 3041 + 4 + true + true + false + false + false + + + 9 + 3052 + 4 + true + true + false + false + false + + + 9 + 3070 + 4 + true + true + false + false + false + + + 9 + 3072 + 4 + true + true + false + false + false + + + 9 + 3085 + 4 + true + true + false + false + false + + + 9 + 3086 + 4 + true + true + false + false + false + + + 9 + 3104 + 4 + true + true + false + false + false + + + 10 + 2 + 4 + true + true + false + false + false + + + 10 + 7 + 4 + true + false + false + false + false + + + 10 + 119 + 4 + true + true + false + false + false + + + 10 + 151 + 4 + true + true + false + false + false + + + 10 + 163 + 4 + true + true + false + false + false + + + 10 + 167 + 4 + true + true + false + false + false + + + 10 + 372 + 4 + true + true + false + false + false + + + 10 + 375 + 4 + true + true + false + false + false + + + 10 + 376 + 4 + true + true + false + false + false + + + 10 + 386 + 4 + true + true + false + false + false + + + 10 + 518 + 4 + true + true + false + false + false + + + 10 + 520 + 4 + true + true + false + false + false + + + 10 + 521 + 4 + true + true + false + false + false + + + 10 + 522 + 4 + true + true + false + false + false + + + 10 + 643 + 4 + true + true + false + false + false + + + 10 + 644 + 4 + true + true + false + false + false + + + 10 + 653 + 4 + true + true + false + false + false + + + 10 + 654 + 4 + true + true + false + false + false + + + 10 + 706 + 4 + true + true + false + false + false + + + 10 + 725 + 4 + true + true + false + false + false + + + 10 + 811 + 4 + true + true + true + true + false + + + 10 + 812 + 4 + true + true + true + true + false + + + 10 + 830 + 4 + true + true + true + true + false + + + 10 + 964 + 4 + true + true + false + false + false + + + 10 + 968 + 4 + true + true + false + false + false + + + 10 + 994 + 4 + true + true + false + false + false + + + 10 + 998 + 4 + true + true + false + false + false + + + 10 + 1003 + 4 + true + true + false + false + false + + + 10 + 1035 + 4 + true + true + false + false + false + + + 10 + 1041 + 4 + true + true + false + false + false + + + 10 + 1042 + 4 + true + true + false + false + false + + + 10 + 1044 + 4 + true + true + false + false + false + + + 10 + 1195 + 4 + true + true + false + false + false + + + 10 + 1199 + 4 + true + true + false + false + false + + + 10 + 1225 + 4 + true + true + false + false + false + + + 10 + 1229 + 4 + true + true + false + false + false + + + 10 + 1234 + 4 + true + true + false + false + false + + + 10 + 1266 + 4 + true + true + false + false + false + + + 10 + 1274 + 4 + true + true + false + false + false + + + 10 + 1275 + 4 + true + true + false + false + false + + + 10 + 1277 + 4 + true + true + false + false + false + + + 10 + 1460 + 4 + true + true + false + false + false + + + 10 + 1463 + 4 + true + true + false + false + false + + + 10 + 1464 + 4 + true + true + false + false + false + + + 10 + 1687 + 4 + true + true + false + false + false + + + 10 + 1712 + 4 + true + true + false + false + false + + + 10 + 1713 + 4 + true + true + false + false + false + + + 10 + 1780 + 4 + true + true + false + false + false + + + 10 + 1781 + 4 + true + true + false + false + false + + + 10 + 1782 + 4 + true + true + false + false + false + + + 10 + 1821 + 4 + true + true + false + false + false + + + 10 + 1857 + 4 + true + true + false + false + false + + + 10 + 1858 + 4 + true + true + false + false + false + + + 10 + 1865 + 4 + true + true + false + false + false + + + 10 + 1866 + 4 + true + true + false + false + false + + + 10 + 1900 + 4 + true + true + false + false + false + + + 10 + 1901 + 4 + true + true + false + false + false + + + 10 + 1919 + 4 + true + true + false + false + false + + + 10 + 1950 + 4 + true + true + false + false + false + + + 10 + 1951 + 4 + true + true + false + false + false + + + 10 + 1975 + 4 + true + true + false + false + false + + + 10 + 2026 + 4 + true + true + false + false + false + + + 10 + 2028 + 4 + true + true + false + false + false + + + 10 + 2031 + 4 + true + true + false + false + false + + + 10 + 2089 + 4 + true + true + false + false + false + + + 10 + 2090 + 4 + true + true + false + false + false + + + 10 + 2091 + 4 + true + true + false + false + false + + + 10 + 2103 + 4 + true + true + false + false + false + + + 10 + 2105 + 4 + true + true + false + false + false + + + 10 + 2109 + 4 + true + true + false + false + false + + + 10 + 2110 + 4 + true + true + false + false + false + + + 10 + 2111 + 4 + true + true + false + false + false + + + 10 + 2119 + 4 + true + true + false + false + false + + + 10 + 2121 + 4 + true + true + false + false + false + + + 10 + 2160 + 4 + true + true + false + false + false + + + 10 + 2161 + 4 + true + true + false + false + false + + + 10 + 2192 + 4 + true + true + false + false + false + + + 10 + 2195 + 4 + true + true + false + false + false + + + 10 + 2197 + 4 + true + true + false + false + false + + + 10 + 2238 + 4 + true + true + false + false + false + + + 10 + 2276 + 4 + true + true + false + false + false + + + 10 + 2299 + 4 + true + true + false + false + false + + + 10 + 2300 + 4 + true + true + false + false + false + + + 10 + 2313 + 4 + true + true + false + false + false + + + 10 + 2327 + 4 + true + true + false + false + false + + + 10 + 2328 + 4 + true + true + false + false + false + + + 10 + 2336 + 4 + true + true + false + false + false + + + 10 + 2354 + 4 + true + true + false + false + false + + + 10 + 2356 + 4 + true + true + false + false + false + + + 10 + 2359 + 4 + true + true + false + false + false + + + 10 + 2854 + 4 + true + true + false + false + false + + + 10 + 2856 + 4 + true + true + false + false + false + + + 10 + 3040 + 4 + true + true + false + false + false + + + 10 + 3041 + 4 + true + true + false + false + false + + + 10 + 3052 + 4 + true + true + false + false + false + + + 10 + 3070 + 4 + true + true + false + false + false + + + 10 + 3072 + 4 + true + true + false + false + false + + + 10 + 3085 + 4 + true + true + false + false + false + + + 10 + 3086 + 4 + true + true + false + false + false + + + 10 + 3104 + 4 + true + true + false + false + false + + + 11 + 998 + 4 + false + true + true + true + false + + + 11 + 1406 + 4 + false + true + true + true + false + + + 0 + = + + + 1 + × + + + 2 + ÷ + + + 3 + + + + + 4 + - + + + 5 + ^ + + + 6 + ? + + + 1 + 2 + 1 + 1 + Running in Diagnostic Mode! Execution may be slow and/or excessive disk space may be consumed. + + + 2 + 3 + 3 + + + 3 + 3 + 3 + + + 4 + 3 + 1 + 1 + MT Schedule [New Entry Driver] is enabled but Generator [Max Units Built] is not defined. + + + 5 + 2 + 1 + 1 + Failed to complete solution table indexing {0}. Check the size of the solution database (2GB maximum). + + + 6 + 3 + 1 + 1 + The selected equilibrium model requires the definition of Company objects. + + + 7 + 2 + 1 + 1 + Optimizer returned the status: {0} + + + 8 + 4 + 1 + 1 + Region "{0}" [Capacity Reserves] are below Region [Min Capacity Reserves] by {1} MW. + + + 9 + 3 + 1 + 1 + Transmission [SCUC Enabled] selected but no Contingency objects are defined. + + + 10 + 3 + 3 + + + 11 + 2 + 1 + 1 + Failed to load data into database: {0}. Check the size of the solution database (2GB maximum for Microsoft Access database format). + + + 12 + 3 + 3 + + + 13 + 3 + 3 + + + 14 + 3 + 3 + + + 15 + 3 + 3 + + + 16 + 3 + 3 + + + 17 + 3 + 3 + + + 18 + 2 + 1 + 1 + Constraint "{0}" cannot include more than one Storage object. + + + 19 + 2 + 1 + 1 + Constraint "{0}" [RHS] (period type {1}) is too long for ST Schedule. This Constraint needs to be decomposed by turning on MT Schedule. + + + 20 + 3 + 3 + + + 21 + 3 + 1 + 1 + Constraint "{0}" [RHS] should be defined from the start of the planning horizon. + + + 22 + 4 + 1 + 1 + Reserve "{0}" has all generation below Reserve [Cut-Off Size] in {1} period(s). + + + 23 + 3 + 3 + + + 24 + 3 + 3 + + + 25 + 1 + 0 + 0 + {0} "{1}" {2} From = {2} To ({3}). + + + 26 + 3 + 3 + + + 27 + 3 + 3 + + + 28 + 3 + 3 + + + 29 + 3 + 1 + 1 + {0} "{1}" marginal efficiency is increasing between points {2} ({3} MW, {4}) and {5} ({6} MW, {7}). Consider setting Production [Heat Rate Error Method] = 'Allow Non-convex'. + + + 30 + 3 + 3 + + + 31 + 3 + 3 + + + 32 + 3 + 3 + + + 33 + 3 + 1 + 1 + Generator "{0}" [Offer Quantity] defined without Generator [Offer Price]. The default price of {1} is assumed. + + + 34 + 3 + 1 + 1 + Generator "{0}" [Offer Price] defined without Generator [Offer Quantity]. Zero quantity assumed. + + + 35 + 3 + 3 + + + 36 + 3 + 1 + 1 + Generator "{0}" [Fixed Load] will override Generator [Min Load]. + + + 37 + 3 + 3 + + + 38 + 3 + 3 + + + 39 + 3 + 3 + + + 40 + 3 + 3 + + + 41 + 3 + 3 + + + 42 + 2 + 1 + 1 + Solver {0}. + + + 43 + 3 + 1 + 1 + Line "{0}" [Min Rating] and Line [Max Rating] ({1}) imply {2} <= Line [Flow] <= {3} MW. + + + 44 + 3 + 3 + + + 45 + 2 + 0 + 0 + Variable "{0}" [Value] by {1} referenced but not defined. + + + 46 + 2 + 0 + 0 + RSI "{0}" Lines "{1}" does not import to/from the RSI Region. + + + 47 + 3 + 3 + + + 48 + 1 + 0 + 0 + Source database name not set. + + + 49 + 3 + 3 + + + 50 + 3 + 3 + + + 51 + 3 + 1 + 1 + Generator "{0}" [Pump Units] = {1}, cannot be greater than Generator [Units] = {2}. + + + 52 + 2 + 0 + 0 + Purchaser [Benefit Function Shape] must be set to "Quadratic" for the single-period Nash-Cournot. + + + 53 + 3 + 3 + + + 54 + 3 + 3 + + + 55 + 2 + 1 + 1 + License feature "{0}" is required but not available. + + + 56 + 1 + 0 + 0 + The license server returned the error: {0}. + + + 57 + 3 + 3 + + + 58 + 1 + 1 + 1 + Referenced external text file not found: {0}. + + + 59 + 1 + 0 + 0 + Market "{0}" has memberships to more than one class of object, but a Market can only involve one type. + + + 60 + 2 + 0 + 0 + Region "{0}" implied maximum offer price for dynamic bidding (Region [VoLL] or Region [Price Cap]) - Competition [Epsilon] < 0. + + + 61 + 3 + 3 + + + 62 + 3 + 3 + + + 63 + 3 + 3 + + + 64 + 3 + 3 + + + 65 + 3 + 3 + + + 66 + 3 + 3 + + + 67 + 2 + 0 + 0 + Constraint "{0}" cannot be conditional unless defining Constraint [RHS] of period type = "interval". + + + 68 + 3 + 3 + + + 69 + 3 + 3 + + + 70 + 3 + 3 + + + 71 + 1 + 0 + 0 + Out of Memory Exception reallocating buffer to {0} kB. + + + 72 + 1 + 0 + 0 + MOSEK encountered a fatal internal error and terminated abnormally. + + + 73 + 3 + 0 + 0 + {0} "{1}" initial conditions must include [{2}]. + + + 74 + 3 + 0 + 0 + Generator "{0}" fuel-specific heat rate functions {1} must all have the same form as the general heat rate. + + + 75 + 3 + 0 + 0 + Generator "{0}" fuel-specific heat rate functions {1} must all have the same form. + + + 76 + 3 + 3 + + + 77 + 3 + 3 + + + 78 + 2 + 0 + 0 + Generator "{0}" [Heat Rate] band count does not match Generator [Load Point] band count. + + + 79 + 2 + 0 + 0 + Generator "{0}" [Heat Rate Incr] band count does not match Generator [Load Point] band count. + + + 80 + 2 + 0 + 0 + Generator "{0}" does not define enough bands of Generator [Offer Quantity] for cumulative format (at least two required). + + + 81 + 2 + 0 + 0 + Generator "{0}" [Start Cost Time] must have same number of bands as Generator [Start Cost] and Generator Start Fuels [Offtake at Start] if defined. + + + 82 + 2 + 0 + 0 + Generator "{0}" number of bands for Generator [Rough Running Point] must match that of Generator [Rough Running Range]. + + + 83 + 3 + 3 + + + 84 + 2 + 0 + 0 + Generator "{0}" sum of Generator Fuels [Ratio] must be unity. + + + 85 + 2 + 1 + 1 + {0} "{1}" minimum operating level ({2}) should be less than or equal to maximum operating level ({3}). + + + 86 + 3 + 3 + + + 87 + 2 + 0 + 0 + Errors were detected in the efficiency function for {0} "{1}". Consider changing Production [Heat Rate Error Method]. + + + 88 + 1 + 0 + 0 + Out of Memory Exception reallocating cache to {0} kB. + + + 89 + 3 + 3 + + + 90 + 3 + 3 + + + 91 + 2 + 0 + 0 + Line "{0}" defined with both Line [Reactance] and Line [Susceptance] but only one should be used. + + + 92 + 3 + 3 + + + 93 + 2 + 0 + 0 + Market "{0}" should define equal numbers of bands for Market [Price] and Market [Quantity] points. + + + 94 + 3 + 3 + + + 95 + 2 + 0 + 0 + Solution status = {0}. + + + 96 + 2 + 0 + 0 + MLF "{0}" right-hand side term must be non-negative. + + + 97 + 3 + 3 + + + 98 + 3 + 3 + + + 99 + 3 + 3 + + + 100 + 2 + 0 + 0 + Flow Control "{0}" [Units] property cannot be dynamic in for Transmission [OPF Method] = "Large Scale". + + + 101 + 3 + 3 + + + 102 + 3 + 3 + + + 103 + 3 + 3 + + + 104 + 3 + 3 + + + 105 + 2 + 0 + 0 + Storage "{0}" [Energy Value] defined without Storage [Downstream Efficiency]. + + + 106 + 3 + 3 + + + 107 + 3 + 3 + + + 108 + 2 + 0 + 0 + Variable "{0}" [Profile] property defined with {1} band(s) but expected ≥ {2} when using Variable [Sampling Method] = "Bands As Samples". + + + 109 + 2 + 0 + 0 + Variable "{0}" [Min Value] must be less than or equal to Variable [Max Value]. + + + 110 + 3 + 1 + 1 + {0} "{1}" initial production level ({2}) is outside the feasible operating range ({3} - {4}). + + + 111 + 3 + 1 + 1 + {0} "{1}" initial units operating ({2}) is greater than the number of installed units ({3}). + + + 112 + 3 + 3 + + + 113 + 3 + 3 + + + 114 + 3 + 3 + + + 115 + 3 + 3 + + + 116 + 3 + 3 + + + 117 + 2 + 0 + 0 + Market "{0}" [Quantity] values must be monotonically non-decreasing. + + + 118 + 2 + 0 + 0 + Market "{0}" band count for Generator Heat Markets [Conversion Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 119 + 2 + 0 + 0 + Generator "{0}" band count for Generator Emissions [Production Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 120 + 3 + 3 + + + 121 + 3 + 3 + + + 122 + 3 + 3 + + + 123 + 2 + 0 + 0 + Constraint "{0}" [Decomposition Method] = "Price" cannot be used in combination with a Constraint [Penalty Price]. + + + 124 + 2 + 1 + 1 + MIP license is required, but no license is available for checkout-the linear relaxation will be reported. + + + 125 + 1 + 0 + 0 + Could not interpret the Condition "{0}". + + + 126 + 1 + 0 + 0 + Generator "{0}" cannot receive Generator [Heat Input] from itself. + + + 127 + 1 + 0 + 0 + Condition "{0}" cannot be conditional on itself (a member of its own Conditions collection). + + + 128 + 1 + 0 + 0 + Condition "{0}" conditional on Condition "{1}" which is itself conditional. + + + 129 + 1 + 0 + 0 + Condition "{0}" must not define Condition [Is Active] or a dynamic equation if it is dependent on other conditions. + + + 130 + 3 + 1 + 1 + Stochastic [Risk Sample Count] = {0} but no Variable objects are defined. + + + 131 + 3 + 3 + + + 132 + 3 + 3 + + + 133 + 3 + 1 + 1 + Generator "{0}" [Units Out] > Generator [Units] in {1} periods. + + + 134 + 3 + 1 + 1 + Line "{0}" [Units Out] > Line [Units] in {1} periods. + + + 135 + 2 + 1 + 1 + PASA must be enabled in order to use the MT Schedule capacity expansion algorithm. + + + 136 + 3 + 3 + + + 137 + 3 + 1 + 1 + {0} "{1}" injects at {2} nodes but does not define {0} Nodes [{3}] for Node "{4}". + + + 138 + 3 + 1 + 1 + Purchaser "{0}" offtakes at {1} nodes but does not define Purchaser Nodes [Load Participation Factor] for Node "{2}". + + + 139 + 3 + 3 + + + 140 + 3 + 3 + + + 141 + 1 + 0 + 0 + The chronological Horizon including look-ahead must be a subset of the planning horizon. + + + 142 + 2 + 0 + 0 + Region "{0}" [DSP Bid Quantity] band count ({1}) must be the same as Region [DSP Bid Price] band count ({2}). + + + 143 + 3 + 3 + + + 144 + 2 + 0 + 0 + Constraint "{0}" can define Constraint Generators [Generation Squared Coefficient] (for "{1}") only if it is a dynamic constraint. + + + 145 + 2 + 0 + 0 + Constraint "{0}" can define Constraint Generators [Generation SUM Squared Coefficient] (for "{1}") only if it is a dynamic constraint. + + + 146 + 1 + 0 + 0 + Region "{0}" defines a Region Reference Node "{1}" that is not inside the Region. + + + 147 + 1 + 0 + 0 + Region "{0}" defines a Region Reference Node "{1}" that is out-of-service. + + + 148 + 2 + 0 + 0 + Reserve "{0}" Nested Reserve "{1}" is of a different Reserve [Type], but must be the same type. + + + 149 + 2 + 0 + 0 + Reserve "{0}" Nested Reserve "{1}" must use a subset of the generators in the master reserve class. + + + 150 + 2 + 0 + 0 + Generator "{0}" cannot provide more response to Reserve "{1}" than Reserve "{2}" because the service is nested. + + + 151 + 2 + 0 + 0 + Reserve "{0}" has Nested Reserve "{1}" but is itself nested in Reserve "{2}". + + + 152 + 2 + 0 + 0 + Reserve "{0}" [Is Enabled] property can only be changed by Scenario. + + + 153 + 2 + 0 + 0 + Generator {0} [Start Profile] must have same number of bands as Generator [Start Cost]. + + + 154 + 2 + 0 + 0 + Generator {0} [Run Up Rate] must have same number of bands as Generator [Start Cost]. + + + 155 + 1 + 0 + 0 + The Horizon ({0} years) could not be factored by the given LT Plan [At a Time] ({1}) and LT Plan [Overlap] ({2}). + + + 156 + 2 + 0 + 0 + Constraint "{0}" defines Constraint [RHS] (period type = {1}) but uses coefficients that support Constraint [RHS Year] only. + + + 157 + 2 + 1 + 1 + Node "{0}" shift factors could not be computed due to an infeasibility in the Y-bus matrix. + + + 158 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Export Capacity Built Coefficient] together with Constraint Lines [Import Capacity Built Coefficient]. + + + 159 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Units Built Coefficient] together with Constraint Lines [Units Built in Year Coefficient]. + + + 160 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Units Retired Coefficient] together with Constraint Lines [Units Retired in Year Coefficient]. + + + 161 + 3 + 0 + 0 + Constraint "{0}" Generators "{1}" cannot define both Constraint Generators [Units Built Coefficient] together with Constraint Generators [Units Built in Year Coefficient]. + + + 162 + 3 + 0 + 0 + Constraint "{0}" Generators "{1}" cannot define both Constraint Generators [Units Retired Coefficient] together with Constraint Generators [Units Retired in Year Coefficient]. + + + 163 + 2 + 0 + 0 + Failed to fit polynomial to (x,y) coordinates of heat rate function for Generator "{0}". "{1}". + + + 164 + 3 + 1 + 1 + Non-physical losses detected on Line "{0}" in period ({1}). Flow {2}, Loss {3}. Consider changing Transmission [Detect Non-physical Losses] setting. + + + 165 + 3 + 3 + + + 166 + 3 + 1 + 1 + Power Station "{0}" only has {1} of {2} units that define [{3}]. + + + 167 + 3 + 1 + 1 + Generator "{0}" outages were not written to text files because text input does not support multi-unit stations with partial outages. + + + 168 + 3 + 1 + 1 + Non-physical losses detected on Line "{0}" in period ({1}). Flow {2}, Loss {3}. Correction algorithm invoked. + + + 169 + 2 + 1 + 1 + The master solution database is missing. Looked for {0}. Database output has been disabled. + + + 170 + 2 + 1 + 1 + {0} "{1}" band ({2}) defines outage parameters but no outage duration function definition. + + + 171 + 3 + 1 + 1 + Node "{0}" [Phase Angle] is at an upper or lower bound in period {1}. + + + 172 + 3 + 3 + + + 173 + 3 + 1 + 1 + Constraint "{0}" Lines "{1}" has Constraint Lines [Flow Coefficient] and {2} defined. This coefficient will be ignored. + + + 174 + 3 + 1 + 1 + Constraint "{0}" Generators "{1}" has Constraint Generators [Reserve Provision Coefficient], but has no reserve memberships defined. This coefficient will be ignored. + + + 175 + 3 + 3 + + + 176 + 3 + 3 + + + 177 + 2 + 1 + 1 + The input data diagnostic file "{0}" could not be written. + + + 178 + 3 + 3 + + + 179 + 3 + 3 + + + 180 + 3 + 3 + + + 181 + 3 + 3 + + + 182 + 2 + 0 + 0 + Interface "{0}" limits imply Interface [Min Flow] {1} <= Interface [Flow] <= Interface [Max Flow] {2}. + + + 183 + 3 + 1 + 1 + Node "{0}" [Unserved Energy] in period {1} is above limit {2} MW by {3} MW due to a constraint infeasibility. + + + 184 + 1 + 0 + 0 + Region "{0}" must have at least one Node in service. + + + 185 + 1 + 0 + 0 + Generator "{0}" [Start Profile] has been defined as a constant value. Use the Timeslice field to define its start-up stages or use Generator [Run Up Rate] for a constant rate. + + + 186 + 2 + 0 + 0 + Generator "{0}" [Unit Commitment Optimality] = "Rounded Relaxation" is not compatible with Production [Unit Commitment Optimality]. + + + 187 + 1 + 0 + 0 + MT Schedule [Stochastic Method] and LT Plan [Stochastic Method] must both be set to "Deterministic" if either setting is "Deterministic". + + + 188 + 1 + 0 + 0 + ST Schedule [Stochastic Method] and LT Plan [Stochastic Method] must both be set to "Deterministic" if either setting is "Deterministic". + + + 189 + 2 + 0 + 0 + Failed to solve uplift. The solver returned solution status {0}. + + + 190 + 3 + 1 + 1 + Uplift was infeasible but successfully repaired. SMP may be outside the range defined by Region [Price Floor] and Region [Price Cap]. + + + 191 + 3 + 3 + + + 192 + 3 + 3 + + + 193 + 2 + 1 + 1 + Network separation is detected with Contingency "{0}". + + + 194 + 2 + 0 + 0 + Generator "{0}" [Mark-up Point] defined with {1} bands but Generator [Mark-up] is defined with {2} bands. + + + 195 + 2 + 0 + 0 + Generator "{0}" [Mark-up Point] defined with {1} bands but Generator [Bid Cost Mark-up] is defined with {2} bands. + + + 196 + 2 + 0 + 0 + Generator "{0}" defines up to {1} Generator [Units] and is a Reserve Contingency Generators for {2} Reserve objects but this membership is allowed only for single-unit Generator objects. For multi-unit use separate Generator objects. + + + 197 + 3 + 1 + 1 + Region/Zone "{0}" [Maintenance Factor] in step {1} accumulates to {2} but would normally sum to {3} which is the total number of hours in the step. + + + 198 + 3 + 1 + 1 + Node "{0}" [Dump Energy] in period {1} is above limit {2} MW by {3} MW due to a constraint infeasibility. + + + 199 + 3 + 1 + 1 + Multi-fuel CHP Generator "{0}" requires identical heat rate functions. Average heat rate at maximum power across defined fuels will be considered for heat production formulation. + + + 200 + 2 + 0 + 0 + Failed to correct non-physical flows. The solver returned solution status {0}. + + + 201 + 3 + 1 + 1 + Non-physical flow correction was infeasible but successfully repaired. + + + 202 + 3 + 1 + 1 + Constraint "{0}" skipped because its period type is too short for the resolution of {1}. + + + 203 + 3 + 1 + 1 + The Escalator [Compound Start Date] is later than the end of the horizon. The default date will be used ( {0} ). + + + 204 + 3 + 1 + 1 + The Escalator [Compound Start Date] is {0} years outside of the current horizon. + + + 205 + 2 + 1 + 1 + Generator "{0}" defined Generator Head Storage [Efficiency Point] (for "{1}") band={2} value={3} must be less than or equal to band={4} value={5}. + + + 206 + 1 + 0 + 0 + Variable "{0}" definition as a function of other Variable objects implies a circular reference. + + + 207 + 2 + 0 + 0 + Read {0} sample weights but expected {1}. + + + 208 + 2 + 1 + 1 + Line "{0}" flow limits must be defined when using Transmission [Loss Method] = "Piecewise Linear". Loss is turned off for this line. + + + 209 + 2 + 0 + 0 + {0} "{1}" [{2}] definition is ambiguous. The datum is defined both with the Escalator "{3}" and without. + + + 210 + 3 + 1 + 1 + Problem is infeasible. Solution status = {0}. + + + 211 + 1 + 0 + 0 + Failed to repair an infeasible problem. Solution status = {0}. + + + 212 + 2 + 1 + 1 + Failed to set user-defined solver parameter {0}. + + + 213 + 3 + 3 + 3 + Error reporting formulation diagnostics. {0} + + + 214 + 2 + 1 + 1 + No integer feasible solution exists. The linear solution will be reported. Solution status = {0}. + + + 215 + 2 + 1 + 1 + Generator "{0}" [Fuel Offtake] may be inaccurate in {1} periods due to tranche variables clearing out of order. Consider setting Generator [Formulate Non-convex]="Always". + + + 216 + 2 + 1 + 1 + Generator "{0}" [Unit Commitment Optimality] = "Rounded Relaxation" might violate [Min Up Time]/[Min Down Time] because Constraint Generators [Units Generating Coefficient] is defined. + + + 217 + 2 + 1 + 1 + Generator "{0}" defines [Commit] property which is incompatible with [Unit Commitment Optimality] = "Dynamic Program". The Generator will use the global commitment setting. + + + 218 + 1 + 0 + 0 + The "{0}" Region is missing its Reference Node membership, which is compulsory when using the [Aggregate Transmission] option. + + + 219 + 2 + 0 + 0 + {0} LOLP Target{1} might not be guaranteed in {2} of {3} periods. + + + 220 + 4 + 1 + 1 + Solution hierarchy computed {0} solution(s). No more feasible solutions exist. + + + 221 + 2 + 1 + 1 + There was an error writing the solution to the destination drive. The solution has been saved in the following location: {0} + + + 222 + 2 + 1 + 1 + There was a problem writing the zipped solution to the destination drive. The uncompressed solution has been saved in the following location: {0} + + + 223 + 2 + 1 + 1 + Matrix coefficients are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 224 + 2 + 1 + 1 + Variable objective function coefficients are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 225 + 2 + 1 + 1 + Variable bounds are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 226 + 2 + 1 + 1 + Constraint right-hand side coefficients are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 300 + 2 + 1 + 1 + Invalid token "{0}" in RHS expression for Row "{1}" + + + 301 + 1 + 0 + 0 + Error processing RPN expression for Row "{0}". {1} element(s) required in the stack to use the {2} operator + + + 302 + 2 + 1 + 1 + Expected no more than {0} element(s) to remain in the RPN stack, but found {1} after evaluating the expression for Row "{2}" + + + 3000 + 3 + 3 + + + 3001 + 3 + 3 + + + 3002 + 3 + 3 + + + 3003 + 1 + 1 + 1 + {0} but this collection must have exactly {1} member(s). + + + 3004 + 1 + 1 + 1 + {0} but this collection must have at least {1} member(s). + + + 3005 + 1 + 1 + 1 + {0} but this collection cannot have more than {1} member(s). + + + 3006 + 1 + 1 + 1 + Power Station "{0}" conflicts with a Generator of the same name. + + + 3007 + 4 + 1 + 1 + Skipped checking for missing files. + + + 3008 + 1 + 1 + 1 + File not found: {0} + + + 3009 + 4 + 1 + 1 + Skipped checking of memberships. + + + 3010 + 3 + 3 + + + 3011 + 3 + 3 + + + 3012 + 3 + 3 + + + 3013 + 1 + 1 + 1 + {0} objects are missing their system membership. + + + 3014 + 4 + 1 + 1 + Skipped checking of data against validation rules. + + + 3015 + 1 + 1 + 1 + {0} [{1}] band = {2} is defined multiple times with value {3}. + + + 3016 + 3 + 3 + + + 3017 + 1 + 1 + 1 + {0} [{1}] defined with value {2} but must be {3}. + + + 3018 + 1 + 1 + 1 + {0} [{1}] defined with value {2} and [Date From] = {3} after [Date To] = {4}. + + + 3019 + 1 + 1 + 1 + {0} [{1}] defined with multiple bands but this property cannot be multi-band. + + + 3020 + 1 + 1 + 1 + The input property [{0}] has been associated with the [{1}] collection, but this belongs to the [{2}] collection. Please use the [Check Database] option in the user interface before re-execution. + + + 3021 + 3 + 1 + 1 + {0}.{1} with parent "{2}" and child "{3}" Filename: "{4}" used to define {5} properties for the same object, but must only be used to define one property for any one object. + + + 3022 + 3 + 1 + 1 + {0}.{1} with parent "{2}" and child "{3}" band {4} uses Data File field in combination with Escalator and/or Condition and/or Variable and this is not supported. + + + 3023 + 3 + 3 + + + 3024 + 3 + 3 + + + 3025 + 3 + 3 + + + 3026 + 3 + 1 + 1 + Read {0} records(s) for object "{1}" in band {2}, but expected {3}. Default value of {4} assumed. File: "{5}". + + + 3027 + 3 + 1 + 1 + Profile {0} contains {1} zero values. + + + 3028 + 3 + 1 + 1 + Year ending: {0} skipped because the horizon does not completely span this year. + + + 3029 + 3 + 3 + + + 3030 + 3 + 1 + 1 + Data File [Shape Distortion] increased to: {0}. + + + 3031 + 3 + 1 + 1 + Data File [Energy] mismatch (under target) by {0} = {1}". + + + 3032 + 3 + 1 + 1 + Data File [Energy] mismatch (over target) by {0} = {1}. + + + 3033 + 2 + 1 + 1 + File "{0}" periods per day in file "{1}" must be a multiple of Horizon [Periods per Day] "{2}". + + + 3034 + 1 + 0 + 0 + MOSEK encountered a fatal internal error and terminated abnormally. + + + 3035 + 1 + 0 + 0 + The look-ahead in the chronological phase cannot have a higher resolution than the main horizon. + + + 3036 + 3 + 3 + + + 3037 + 2 + 0 + 0 + No delimiters found in header row of file {0}. + + + 3038 + 2 + 0 + 0 + Data for "{0}" not found in file "{1}" (assumed "Names in Columns" format). + + + 3039 + 1 + 0 + 0 + No header row found, or unable to recognise fields in the header. File "{0}". + + + 3040 + 2 + 0 + 0 + Value "{0}" for object "{1}" at line {2} in file "{3}" must be >= {4} + + + 3041 + 2 + 0 + 0 + Value "{0}" for object "{1}" at line {2} in file "{3}" must be <= {4} + + + 3042 + 2 + 0 + 0 + Viewing of Patterned file data is not currently supported prior to Model compilation. + + + 3043 + 3 + 1 + 1 + Read {0} records(s) for object "{1}" in band {2}, but expected {3}. File: "{4}". + + + 3044 + 1 + 0 + 0 + Error interpreting the header row of {0} "{1}". + + + 3045 + 1 + 0 + 0 + Error reading line {0} of {1} "{2}". + + + 3046 + 1 + 0 + 0 + Out of Memory Exception reading file: {0}. Tried to allocate {1} kB. + + + 3047 + 1 + 0 + 0 + Error interpreting the header row of {0}. + + + 3048 + 1 + 0 + 0 + General error reading line {0} of {1}. Periods per day = {2}. + + + 3049 + 1 + 0 + 0 + EEI File "{0}" has record length {1}, expected 80 or 82. + + + 3050 + 1 + 0 + 0 + Duplicate AM records for {0}. + + + 3051 + 1 + 0 + 0 + Duplicate PM records for {0}. + + + 3052 + 1 + 0 + 0 + {0} contained only {1} lines of data, expected {2}. {3} Check that the file is complete and that the Horizon [Periods per Day] is correct. + + + 3053 + 1 + 0 + 0 + {0}Specified Data File [Base Profile] "{1}" not found. + + + 3054 + 1 + 0 + 0 + {0}Invalid fiscal year range: {1}-{2}. + + + 3055 + 1 + 0 + 0 + Error in Data File [Holiday]. Expected {0} dates per holiday but got {1}. + + + 3056 + 1 + 0 + 0 + Source profile contained too few records. {0}. + + + 3057 + 1 + 0 + 0 + Error interpreting Holiday on band {0}. Could not locate base profile holiday start date. + + + 3058 + 1 + 0 + 0 + Error interpreting Holiday on band {0}. Could not locate holiday start date in year {1}. + + + 3059 + 1 + 0 + 0 + {0}Could not propagate profile year to period {1}. + + + 3060 + 2 + 0 + 0 + Solution status:= {0}. + + + 3061 + 1 + 0 + 0 + Cannot create the profile using the specified parameters. The problem is infeasible. Adjust the parameters and try again. + + + 3062 + 3 + 3 + + + 3063 + 1 + 0 + 0 + Database version number "{0}" does not match engine version number "{1}". + + + 3064 + 1 + 0 + 0 + {0} validation errors were detected. Please correct these errors before running the simulation. + + + 3065 + 1 + 0 + 0 + Selected Model and/or Project objects are not configured with a Horizon object. + + + 3066 + 3 + 3 + + + 3067 + 3 + 3 + + + 3068 + 2 + 0 + 0 + Capacity Factor constraints cannot be defined with period type of interval. + + + 3069 + 3 + 3 + + + 3070 + 3 + 3 + + + 3071 + 2 + 0 + 0 + Power Station "{0}" attempts to aggregate [ {1} ] with {2} bands on [ {3} ("{4}").{5} ("{6}") ] but {7} on the first member. + + + 3072 + 1 + 0 + 0 + ST Schedule must begin inside the planning Horizon. + + + 3073 + 1 + 0 + 0 + ST Schedule must run inside the planning Horizon. + + + 3074 + 1 + 0 + 0 + Horizon [Typical Week] does not support running '{0}' steps. + + + 3075 + 1 + 0 + 0 + For Horizon [Typical Week] mode ST Schedule must span one week, e.g. 1 step of 1 week, 7 steps of 1 day, 168 steps of 1 hour, etc. + + + 3076 + 1 + 0 + 0 + Horizon contained no months with specified typical week index. + + + 3077 + 1 + 0 + 0 + Invalid Horizon [Chrono Period From] option: {0}. Expected an index between 1 and {1}. + + + 3078 + 1 + 0 + 0 + Invalid Horizon [Chrono Period To] option: {0}. Expected an index between 1 and {1}. + + + 3079 + 1 + 0 + 0 + Invalid date range {0} to {1}. + + + 3080 + 2 + 1 + 1 + The step settings for this phase cover {0} intervals out of {1} in the horizon. No results will be calculated for the last {2} intervals. + + + 3081 + 3 + 3 + + + 3082 + 1 + 0 + 0 + Internal Error: ParsePattern() expected result array of rank 1. + + + 3083 + 3 + 3 + + + 3084 + 2 + 0 + 0 + Empty statement found in Timeslice "{0}". + + + 3085 + 2 + 0 + 0 + Timeslice "{0}" statement contains no identifier. + + + 3086 + 2 + 0 + 0 + Invalid month range in Timeslice "{0}". + + + 3087 + 2 + 0 + 0 + Invalid day of month range in Timeslice "{0}". + + + 3088 + 2 + 0 + 0 + Invalid day of week range in Timeslice "{0}". + + + 3089 + 2 + 0 + 0 + Invalid hour range in Timeslice "{0}". + + + 3090 + 2 + 0 + 0 + Invalid period range in Timeslice "{0}". + + + 3091 + 2 + 0 + 0 + Could not parse Timeslice statement "{0}". + + + 3092 + 2 + 0 + 0 + Unknown identifier "{0}" in Timeslice statement "{1}". + + + 3093 + 2 + 0 + 0 + Could not interpret the statement "{0}" in the Timeslice "{1}". + + + 3094 + 1 + 0 + 0 + Could not open: {0} It may be in use by another process. + + + 3095 + 2 + 0 + 0 + File "{0}" contains no data. + + + 3096 + 2 + 0 + 0 + Invalid data found at line {0} of file {1}. + + + 3097 + 2 + 1 + 1 + Cannot aggregate {0} for Power Station "{1}" with child "{2}", because only {3} of the {4} generators have that type of membership. + + + 3098 + 2 + 1 + 1 + Cannot aggregate {0} for Power Station "{1}" with parent "{2}", because only {3} of the {4} generators are included in that type of membership. + + + 3099 + 3 + 3 + + + 3100 + 3 + 3 + + + 3101 + 3 + 3 + + + 3102 + 3 + 3 + + + 3103 + 1 + 0 + 0 + The property {0} {1} [{2}] has the Condition "{3}" defined that does not exist. + + + 3104 + 1 + 1 + 1 + The Region "{1}" defines Region Reference Node of "{0}" but this is located in Region "{2}". + + + 3105 + 1 + 0 + 0 + Escalator "{0}" cannot define Escalator [Index] together with Escalator [Compound Index]. + + + 3106 + 2 + 1 + 1 + Data File line {0} contains {1} band(s) of data for object "{2}" but expected {3} bands. File "{4}". + + + 3107 + 1 + 0 + 0 + Escalator "{0}" cannot define Escalator [Compound Index] for both period types "{1}" and "{2}". + + + 3108 + 1 + 1 + 1 + Report "{0}" {1} [{2}] cannot be reported by period. + + + 3109 + 1 + 1 + 1 + Report "{0}" {1} [{2}] cannot be reported in summary. + + + 3110 + 1 + 1 + 1 + Report "{0}" {1} [{2}] is not reported in {3} simulation phase. + + + 3111 + 1 + 0 + 0 + The look-ahead in the chronological phase ({0} periods per day) must divide the planning horizon resolution ({1} periods per day). + + + 3112 + 1 + 0 + 0 + DATETIME field cannot be combined with YEAR, MONTH, DAY, or PERIOD. File "{0}". + + + 3113 + 1 + 0 + 0 + Data File line {0} defines invalid date YEAR={1}, MONTH={2}, DAY={3}. Conversion error message ="{4}". File "{5}". + + + 3114 + 1 + 0 + 0 + {0} [Blocks] = {1} cannot be greater than the number of intervals in a {2} = {3}. + + + 3115 + 1 + 0 + 0 + Generator "{0}" has memberships to more than one enabled Power Station objects. + + + 3116 + 2 + 0 + 0 + Data File line {0} defines an invalid date ( {1} ) with {2} culture settings. File "{3}". + + + 3117 + 2 + 0 + 0 + Failed to interpret the Timeslice "{0}" which appears to have invalid meta-patterns related to Timeslice "{1}". + + + 3118 + 2 + 0 + 0 + Generator "{0}" was not located in the {1} model "{2}". + + + 3119 + 2 + 0 + 0 + The interleaved property {0}.[{1}] is invalid. + + + 3120 + 3 + 3 + + + 3121 + 2 + 1 + 1 + The Model [Random Number Seed] property has not been set. The number {0} will be used. Variable samples and outage patterns in this simulation will repeat only if this same seed is set. + + + 3122 + 2 + 1 + 1 + Timeslice "{0}" is used but does not include any time periods. You should define the Timeslice [Include] property. + + + 3123 + 2 + 0 + 0 + Unable to run the interleave process due to invalid settings. Server stochastic mode [{0}] with {1} sample(s) is not consistent with the client stochastic mode [{2}] with {3} sample(s). + + + 3124 + 2 + 1 + 1 + The marginal unit diagnostic has skipped Region "{0}" because the reference node "{1}" is not a load node. + + + 3128 + 1 + 0 + 0 + Cannot fit {0} periods per {1} while pinning the selected number points. Either increase the number of periods or remove the point pinning. + + + 3129 + 1 + 0 + 0 + Generator "{0}" band count for Generator Fuels [Heat Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 3130 + 1 + 0 + 0 + Decision Variable "{0}" Objective Function Coefficient period type "{1}" is not consistent with Definition "{2}". + + + 3131 + 2 + 1 + 1 + Decision Variable "{0}" Objective Function Coefficient period type {1} is too long for ST Schedule. + + + 3132 + 2 + 1 + 1 + The specified output path and file name are too long. The solution will be written to the following temporary location: {0} + + + 3133 + 2 + 1 + 1 + OpenPLEXOS {0}. + + + 3134 + 2 + 0 + 0 + Conflict detected on Decision Variable {0} bounds, lower bound = {1}, upper bound = {2}, type = {3} + + + 3135 + 2 + 1 + 1 + Branch "{0}" NodeFrom and NodeTo are both defined as "{1}". It is dropped from simulation. + + + 3136 + 1 + 0 + 0 + Cannot connect Storage objects to Water Node objects when using "Energy" Hydro Model setting. + + + 3137 + 2 + 1 + 1 + File "{0}" contains {1} repeated values. + + + 3138 + 1 + 0 + 0 + Line "{0}" has [Max Flow] lower than [Min Flow]; [Max Flow] = "{1}" < [Min Flow] = "{2}". + + + 3139 + 2 + 1 + 1 + Property {0} is dropped because the interval length is set to {1}. + + + 3140 + 2 + 0 + 0 + Could not interpret the statement "{0}" in the Timeslice {1}. + + + 3141 + 2 + 1 + 1 + MT Schedule will run in one step for the Hanging Branches Rolling Horizon solution method. + + + 3142 + 4 + 1 + 1 + Skipped validation of the report selections. + + + 3143 + 1 + 0 + 0 + Horizon [Typical Week] mismatch to the start of the planning horizon. + + + 3144 + 2 + 1 + 1 + Constraint "{0}" Gas Fields "{1}" defines [End Volume Coefficient] and {2}. The latter coefficient will be ignored. + + + 3145 + 1 + 0 + 0 + Unable to formulate constraints for Base Gas Contract "{0}". ST schedule must span 365 days if no LT plan or MT schedule is enabled. + + + 3146 + 2 + 1 + 1 + Unable to formulate constraints for Base Gas Contract "{0}" for {1} phase. Contract will be treated as Swing contract for the current phase. + + + 3147 + 2 + 1 + 1 + Gas Contract "{0}" has memberships with multiple classes. Gas Node memberships will be ignored. + + + 3148 + 2 + 1 + 1 + Generator "{0}" cannot define a transition with itself. This transition membership has been removed. + + + 3149 + 2 + 1 + 1 + Gas Pipelines mapped to Gas Capacity Release Offer "{0}" do not form a path. + + + 3150 + 2 + 1 + 1 + Unable to formulate constraints for Base Gas Capacity Release Offer "{0}" for {1} phase. Release type will be treated as swing for the current phase. + + + 3151 + 2 + 1 + 1 + Gas Capacity Release Offer "{0}" has memberships with multiple classes. Gas pipelines memberships will be used and other memberships will be ignored. + + + 3152 + 2 + 1 + 1 + Gas Capacity Release Offer "{0}" has no memberships assigned to it. + + + 3153 + 2 + 1 + 1 + Maximum daily take for gas contract "{0}" is less than percentage of demand from all demand in this gas contract. + + + 3154 + 2 + 1 + 1 + Internal VoLL for region "{0}" must increase with increasing internal VoLL level. + + + 3155 + 2 + 1 + 1 + Scenario Tree: Globals [Hanging Branches Historical Year Start] is not defined. Hanging Branches Sample Reduction will be run automatically. + + + 3156 + 1 + 0 + 0 + Scenario Tree: Number of Hanging Branches {0} should be less than the number of historical years {1}. + + + 3157 + 1 + 0 + 0 + Scenario Tree: Globals [Hanging Branches Historical Year Start] data are invalid, please try using [Hanging Branches Sample Reduction]. + + + 3159 + 2 + 1 + 1 + Gas Storage has memberships with multiple gas nodes that each gas node has weather station connected. Only first weather station (connected to first gas node) will be used. + + + 3160 + 2 + 1 + 1 + Gas Contract has memberships with multiple gas nodes that each gas node has weather station connected. Only first weather station (connected to first gas node) will be used. + + + 3161 + 1 + 1 + 1 + The Generator [Outage Rating] for "{0}" is larger than or equal to its rated capacity in certain periods. Generator [Units Out] will not be applied to those periods. + + + 3162 + 3 + 1 + 1 + {0} "{1}" doesn't define property {2}. The preschedule for the object will be ignored. + + + 3163 + 1 + 1 + 1 + LT Plan specified [Allow Capacity Sharing] but none of the Regions or Zones have capacity reserve inputs. Capacity will not be shared except as specified in Line [Firm Capacity]. + + + 3164 + 1 + 1 + 1 + Constraint "{0}" RHS Hour is longer than the interval length of {1} hours. The Constraint will be excluded. Try using RHS instead. + + + 3165 + 1 + 0 + 0 + Variable '{0}' is configured for {1} sampling. The sampling method needs to be set to '{2}'. + + + 3200 + 1 + 0 + 0 + Could not interpret Variable "{0}" ML model schema column "{1}". Expected Collection_Name_Property. + + + 3201 + 1 + 0 + 0 + Could not interpret the class name "{0}" in the Variable "{1}" ML model schema column name "{2}" + + + 3202 + 1 + 0 + 0 + Could not interpret the "{0}" object name "{1}" in Variable "{2}" ML model schema column name "{3}" + + + 3203 + 1 + 0 + 0 + Could not interpret the property name "{0}" in Variable "{1}" ML model schema column name "{2}" + + + 3204 + 2 + 1 + 1 + The region {0} cannot belong to two or more decomposition groups. + + + 3205 + 1 + 0 + 0 + Error during the decomposition simulations. Unable to create final solution file. + + + 3206 + 2 + 1 + 1 + Geographical decomposition feature has been disabled. {0} + + + 3207 + 2 + 1 + 1 + Expansion file '{0}' does not exist. + + + 3208 + 2 + 0 + 0 + Gas Storage "{0}" [Injection Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3209 + 2 + 0 + 0 + Gas Storage "{0}" [Withdrawal Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3210 + 2 + 0 + 0 + Gas Storage "{0}" [Dispatch Injection Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3211 + 2 + 0 + 0 + Gas Storage "{0}" [Dispatch Withdrawal Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3212 + 2 + 0 + 0 + Gas Storage "{0}" sum of [Injection Withdrawal Charge Level] bands is "{1}"% but must sum to 100%. + + + 3213 + 2 + 1 + 1 + The value could not be calculated because "{0}" >= "{1}". + + + 3214 + 2 + 1 + 1 + The factorial for "{0}" could not be calculated. + + + 3215 + 2 + 1 + 1 + The total share of a vehicle at any particular interval can not be more than 1. The share is redistributed accordingly, so that the total share is equal to 1. + + + 3216 + 3 + 1 + 1 + Input time series for variable "{0}" is not stationary, PARMA fitting for it might not be accurate! + + + 3219 + 1 + 0 + 0 + The header column {0} in file "{1}" is not a valid column type. + + + 3220 + 1 + 0 + 0 + License unavailable for the following classes: {0}. + + + 3221 + 2 + 1 + 1 + Interleave configuration is ambiguous after generic object compilation. Collection IDs {0} each report "{1}". + + + 3222 + 2 + 1 + 1 + Max Ramp {0} for {1} is not available in Sampled Chronology. + + + 3223 + 3 + 1 + 1 + The total Gas Demand.Gas Node Demand Participation Factor does not sum to 1.0. Gas Demand: {0}, sum of Demand Participation Factor: {1}. + + + 3224 + 2 + 1 + 1 + Scenario Tree: Globals Hanging Branches tree settings are ignored in the following cases: 1) LT/MT phase is not running Stochastic mode, or 2) the horizon is too short for running a multi-stage optimization, or 3) sample reduction is required for the stochastic object. + + + 3225 + 2 + 1 + 1 + Storages "{0}" and "{1}" connect in cascade through Generator "{2}" but have different [Internal Volume Scalar] values {3} and {4}. Choose one value. + + + 3226 + 2 + 1 + 1 + Scenario Tree: Globals [Full Branches Sample Reduction] is disabled. Number of Full and Hanging Branches {0} needs to be less than the number of historical years {1}. + + + 3227 + 3 + 1 + 1 + There is a mismatch between the number of offer quantity bands ({0}) and the number of bid-cost mark-up bands ({1}) for {2}. + + + 3228 + 2 + 1 + 1 + Constraint "{0}" is too long for ST Schedule. This constraint will be prorated each step. + + + 3229 + 1 + 0 + 0 + Circular Heat Input memberships detected for the following Generators: {0}, {1}. + + + 3230 + 2 + 1 + 1 + Constraint {0} defines [{1}] for Vehicle {2}. Vehicle [Max Discharge Rate] is zero or does not formulate storage (simple model). Coefficient will be ignored. + + + 3231 + 2 + 1 + 1 + Market "{0}" interacts with multiple classes ({1}). Ensure sales in this market correspond to one physical quantity (electricity, reserve capacity, water etc.). + + + 3232 + 1 + 1 + 1 + Disabling Transmission Aggregation because Kron-reduction has been enabled. + + + 3233 + 2 + 1 + 1 + Global Sampling File has been entered, but file {0} cannot be found. Sample reduction will be performed automatically. + + + 3234 + 1 + 0 + 0 + Invalid inputs for sampled chronology. Sampling interval type, sample type or reduced sample count of the {0} object should match that in the sampling file {1}. + + + 3235 + 2 + 0 + 0 + Property cannot be interleaved: {0}. All Constraints group properties are compiled to constraint objects before execution. + + + 3236 + 2 + 1 + 1 + Line "{0}" is assumed out-of-service because it is an unconstrained DC link. + + + 3237 + 2 + 1 + 1 + Constraint "{0}" cannot have more than one negative Decision Variable [Value Squared Coefficient] defined. + + + 3238 + 2 + 1 + 1 + Constraint "{0}" Decision Variable "{1}" [Value Squared Coefficient] should not be positive when a negative value is defined. + + + 3239 + 2 + 1 + 1 + Constraint "{0}" Decision Variable "{1}" [Lower Bound] should not be negative when its [Value Squared Coefficient] defined as a negative value. + + + 3240 + 2 + 1 + 1 + Constraint "{0}" [Sense] should be "<=" when Decision Variable [Value Squared Coefficient] is defined. + + + 3241 + 2 + 1 + 1 + Constraint "{0}" [LHS Type] should be "SUM" when Decision Variable [Value Squared Coefficient] is defined. + + + 3242 + 2 + 1 + 1 + Constraint "{0}" [RHS] should be zero when a negative Decision Variable [Value Squared Coefficient] is defined. + + + 3243 + 2 + 1 + 1 + Constraint "{0}" should not define a negative Decision Variable [Value Squared Coefficient] when other linear terms are defined. + + + 3244 + 2 + 1 + 1 + Both the Rating Factor and Max Capacity have values that vary over time for unit "{0}". This may cause the sampled available energy to not match expected results when percentage inputs are set to be scaled. + + + 3245 + 2 + 1 + 1 + Charging Station "{0}" defines [Deferrable Load] but no simple [Fixed Load] Vehicles are connected. + + + 3246 + 1 + 0 + 0 + Installed capacity exceeds expansion capacity for expansion candidate {0} "{1}". + + + 3247 + 2 + 1 + 1 + Large number of potential operating units for Generator "{0}" which models unit-by-unit commitment. High memory usage for the optimization may result. + + + 3248 + 2 + 0 + 0 + Scenario Tree: Stochastic [Stages Period Type] = "{0}" is not implemented for Hanging Branches trees. + + + 3249 + 3 + 1 + 1 + Financial coefficient [{0}] defined in non-price prescribed context and will be ignored. Constraint "{1}", object "{2}". + + + 3250 + 2 + 0 + 0 + Reliability {0} risk metric has decreased after Generator removal, no EFC convergence possible. Consider increasing VoLL or decreasing MIP gap. + + + 3251 + 2 + 0 + 0 + Constraint {1} has a period type {0} that is inconsistent with expansion period type {2}. + + + 3252 + 2 + 0 + 0 + Variable {0} is being referenced from its Variables - {1} - expression creating a circular reference error. + + + 3253 + 1 + 0 + 0 + Minimum retirement capacity exceeds capacity available for retirement for {0} "{1}". + + + 1 + Popular + + + 2 + Ancillary Services + + + 4 + Capacity + + + 8 + Capacity Expansion + + + 16 + CCGT + + + 32 + CHP + + + 64 + Competition + + + 128 + Constraints + + + 256 + Conversions + + + 512 + Decomposition + + + 1024 + Demand + + + 2048 + Diagnostic + + + 4096 + Efficiency + + + 8192 + Emissions + + + 16384 + End Effects + + + 32768 + Fixed Cost + + + 65536 + Geospatial + + + 131072 + Heat + + + 262144 + Hydro + + + 524288 + Initial Conditions + + + 1048576 + Load + + + 2097152 + Losses + + + 4194304 + Offers and Bids + + + 8388608 + On/Off Switches + + + 16777216 + Outages + + + 33554432 + Performance + + + 67108864 + Pricing + + + 134217728 + Pumped Storage + + + 268435456 + Wind + + + 536870912 + Semi-Variable Cost + + + 1073741824 + Shortage + + + 2147483648 + Start + + + 4294967296 + Stochastic + + + 8589934592 + Stop + + + 17179869184 + Storage + + + 34359738368 + Power Flow + + + 68719476736 + Unit Commitment + + + 137438953472 + Variable Cost + + + 274877906944 + Risk + + + 549755813888 + Water + + diff --git a/src/plexosdb/config/master_11.0R4_btu.xml b/src/plexosdb/config/master_11.0R4_btu.xml new file mode 100755 index 0000000..316fee1 --- /dev/null +++ b/src/plexosdb/config/master_11.0R4_btu.xml @@ -0,0 +1,212844 @@ + + + 1 + 2 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 2 + 2 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 3 + 4 + 1 + Unit + 0 + 0 + 0;"-";4;"kg";5;"t";6;"kt";7;"Mt";8;"Gt";9;"ton";23;"L";24;"kL";25;"ML";26;"GL";27;"m³";28;"km³";29;"CMD";30;"gal";31;"bbl";32;"ft3";33;"MCF";34;"MMCF";35;"MTPA";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";53;"TOE";54;"kTOE";55;"MTOE";56;"kcal";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT" + true + true + 2367 + Unit the fuel is measured in + true + + + 4 + 4 + 2 + Energy Density + 85 + 0 + true + true + 2368 + Energy per unit of the fuel + true + + + 5 + 6 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 6 + 6 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 7 + 7 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 8 + 7 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 9 + 9 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 10 + 9 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 11 + 24 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 12 + 24 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 13 + 34 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 14 + 34 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 15 + 35 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 16 + 35 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 17 + 36 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 18 + 36 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 19 + 37 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 20 + 37 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 21 + 37 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 22 + 37 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 23 + 38 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 24 + 38 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 25 + 38 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 26 + 38 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 27 + 39 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 28 + 39 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 29 + 40 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 30 + 40 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 31 + 40 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 32 + 40 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 33 + 41 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 34 + 41 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 35 + 41 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 36 + 41 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 37 + 42 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 38 + 42 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 39 + 42 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 40 + 42 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 41 + 43 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 42 + 43 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 43 + 44 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 44 + 44 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 45 + 46 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 46 + 46 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 47 + 47 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 48 + 47 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 49 + 48 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the Gas Path Is Enabled + 800000 + true + + + 50 + 49 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 51 + 49 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 52 + 50 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 53 + 50 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 54 + 52 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 55 + 52 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 56 + 53 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 57 + 53 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 58 + 54 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 59 + 54 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 60 + 56 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 61 + 56 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 62 + 58 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 63 + 58 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 64 + 59 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 65 + 59 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 66 + 62 + 1 + Unit + 0 + 0 + 0;"-";1;"m";2;"km";3;"Gkm";4;"kg";5;"t";6;"kt";7;"Mt";8;"Gt";9;"ton";10;"s";11;"min";12;"hr";13;"day";14;"week";15;"°C";16;"°F";17;"HDD";18;"CDD";19;"m²";20;"ha";21;"kha";22;"km2";23;"L";24;"kL";25;"ML";26;"GL";27;"m³";28;"km³";29;"CMD";30;"gal";31;"bbl";32;"ft3";33;"MCF";34;"MMCF";35;"MTPA";36;"kPa";37;"bar";38;"psi";39;"kW";40;"MW";41;"GW";42;"TW";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";49;"kWh";50;"MWh";51;"GWh";52;"TWh";53;"TOE";54;"kTOE";55;"MTOE";56;"kcal";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT" + true + true + 2367 + Unit the Commodity is measured in + true + + + 67 + 62 + 2 + Energy Density + 85 + 0 + true + true + 2368 + Energy per unit of the Commodity + true + + + 68 + 62 + 3 + Unit Type + 0 + 0 + In (0,1) + 0;"Quantity";1;"Rate" + true + true + 2326 + Convention for reporting of Commodity at the interval level + true + + + 69 + 62 + 4 + Intrinsic + 0 + 0 + In (0,1,2,3,4) + 0;"None";1;"Electricity";2;"Heat";3;"Gas";4;"Water" + true + true + 2862 + Intrinsic Commodity + true + + + 70 + 64 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 71 + 64 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 72 + 64 + 3 + Capacity Basis + 0 + 1 + In (0,1) + 0;"Input";1;"Output" + true + true + 2467 + The basis for capacity-related properties where "Input" refers to the Primary Input and "Output" refers to the Primary Output + true + + + 73 + 67 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 74 + 67 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 75 + 69 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 76 + 69 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 77 + 71 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 78 + 71 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 79 + 71 + 3 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + false + true + 810 + If Market [Buy/Sell Unit] properties act like unit commitment or apply independently every period. + true + + + 80 + 74 + 1 + Type + 0 + 0 + In (0,1,2,3,4) + 0;"Continuous";1;"Integer";2;"Binary";3;"Semi-continuous";4;"Semi-integer" + false + true + 927 + Type of decision variable (continuous or integer). + true + + + 81 + 74 + 2 + Time Lag + 0 + 0 + false + true + 1352 + Time lag for terms in the generic decision variable definition. + true + + + 82 + 74 + 3 + Time Invariant + 0 + 1 + In (0,1,2,3) + 0;"None";1;"Bounds";2;"Cost";3;"All" + false + true + 1498 + Controls which aspects of the generic decision variable represent time-invariant values. + true + + + 83 + 76 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the Data File is enabled for build in the next pass + 800000 + true + + + 84 + 76 + 2 + Growth Period + 0 + 4 + In (1,3,4,7) + 1;"Day";3;"Month";7;"Quarter";4;"Year" + false + true + 877 + Cycle over which the growth algorithm matches energy targets (day, month, year, quarter) + true + + + 85 + 76 + 3 + Method + 0 + 1 + In (0,1,2,3) + 0;"None";1;"Linear";2;"Quadratic";3;"Custom" + false + true + 471 + Method used to align maximum (and minimum if defined) and energy values + true + + + 86 + 76 + 4 + Relative Growth at Min + 12 + 0 + false + true + 675 + Relative growth at the lowest end of the LDC for Method = Quadratic + true + + + 87 + 76 + 5 + Shape Distortion + 0 + 0 + >=0 + false + true + 1287 + Distortion of the original duration curve shape as a function of the difference in maximum and energy growth rates. + true + + + 88 + 76 + 6 + Decimal Places + 0 + 0 + >=0 + false + true + 129 + Number of decimal places in output written to text files + true + + + 89 + 76 + 7 + Missing Value Method + 0 + 0 + In (0,1,2) + 0;"Last Value";1;"Zero";2;"Default Value" + false + true + 928 + Method used to fill missing values when reading Data Files + true + + + 90 + 76 + 8 + Periods per Day + 0 + 0 + Between 0 And 86400 + false + true + 606 + Number of periods per day for Data Files using the Period column + true + + + 91 + 76 + 9 + Upscaling Method + 0 + -1 + In (-1,0,1,2) + -1;"Auto";0;"Step";1;"Interpolate";2;"Boundary Interpolate" + false + true + 1299 + Method used to upscale data e.g. from hourly to 5-minute resolution. + 100 + true + + + 92 + 76 + 10 + Downscaling Method + 0 + -1 + In (-1,0,1,2,3,4) + -1;"Auto";0;"Average";1;"First";2;"Last";3;"Max";4;"Min" + false + true + 1300 + Method used to downscale data e.g. from 5-minute to hourly resolution. + 100 + true + + + 93 + 76 + 11 + Datetime Convention + 0 + 0 + In (0,1) + 0;"Beginning of Period";1;"End of Period" + false + true + 1344 + Convention used when reading DATETIME. + true + + + 94 + 76 + 12 + Locale + 0 + 0 + >=0 + false + true + 1345 + The numeric index of the locale that should be used to read the file. + true + + + 95 + 76 + 13 + Time Shift + 6 + 0 + false + true + 1771 + Number of hours to shift data in time when interpreting dates where a positive value means the data are from a time zone that is behind the 'reference' time zone. + true + + + 96 + 76 + 14 + Week Beginning + 0 + 0 + Between -1 And 7 + false + true + 857 + Start day for mapping file data to weeks (0=automatic, 1-7=weekday, -1=hydro weeks) + true + + + 97 + 76 + 15 + Historical Sampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + false + true + 1906 + Sample data from this file between the Year From and Year To + true + + + 98 + 76 + 16 + Historical Year From + 0 + 0 + >=0 + false + true + 1907 + First year read for historical sampling + true + + + 99 + 76 + 17 + Historical Year To + 0 + 0 + >=0 + false + true + 1908 + Last year read for historical sampling + true + + + 100 + 76 + 18 + Historical Year Start + 0 + 0 + >=0 + false + true + 1909 + Start year for historical sampling within the range Year From and Year To + true + + + 101 + 76 + 19 + Historical Year Ending + 0 + 12 + Between 1 And 12 + false + true + 1917 + Month that years end in the historical data + true + + + 102 + 76 + 20 + Historical Period Type + 0 + 2 + In (2,3) + 2;"Week";3;"Month" + false + true + 1910 + Take samples at each of these period types + true + + + 103 + 76 + 21 + Base Year + 0 + 0 + >=0 + false + true + 1956 + Base year for mapping data from a file with month, day and period but no year + true + + + 104 + 76 + 22 + Suppress Rescaling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 3020 + If rescaling should be suppressed in sampled chronology for this data file + 800000 + true + + + 105 + 77 + 1 + Compound Type + 0 + 0 + In (0,1) + 0;"Nominal";1;"Annual" + false + true + 937 + Type of compound escalator (nominal or annual equivalent rate) + true + + + 106 + 77 + 2 + Compound Start Date + 0 + -1 + false + true + 938 + Start date for compounding index (-1 means use start of planning horizon) + true + + + 107 + 80 + 1 + Read Order + 0 + 0 + true + true + 907 + Order in which to read scenario data (last read scenario has highest priority) + true + + + 108 + 80 + 2 + Locked + 0 + 0 + In (0,1) + 0;"Unlocked";1;"Locked" + true + true + 1170 + If the Scenario data are locked for editing. + true + + + 109 + 82 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the model is ready to be executed + true + + + 110 + 82 + 2 + Execution Order + 0 + 0 + >=0 + true + true + 1298 + Order in which to execute the Model when running in a batch. + true + + + 111 + 82 + 3 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + true + true + 662 + Random number seed for this model + true + + + 112 + 82 + 4 + Output to Folder + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 594 + If model output should be written to a folder under the source directory, or into the source folder itself + true + + + 113 + 82 + 5 + Make Unique Name + 0 + 0 + In (-1,0,1) + -1;"Yes";0;"No";"1";"Prompt" + true + true + 397 + If model output should be written to a unique filename for each execution + true + + + 114 + 82 + 6 + Write Input + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1221 + If Model input should be written to the output location along with the solution. + true + + + 115 + 82 + 7 + Load Custom Assemblies + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1348 + If the Model should run custom OpenPLEXOS assemblies. + true + + + 116 + 82 + 8 + Run Mode + 0 + 0 + In (0,1) + 0;"Normal";1;"Dry" + true + true + 1772 + Switches between Normal and Dry run modes + true + + + 117 + 82 + 9 + Objective Priority + 0 + 1 + >=0 + true + true + 2100 + Priority of the objective when doing hierarchical multi-objective optimization + true + + + 118 + 82 + 10 + Objective Weight + 0 + 1 + true + true + 2101 + Weight of the objective when doing blended multi-objective optimization + true + + + 119 + 82 + 11 + Objective Relative Tolerance + 0 + 0 + Between 0 And 1 + true + true + 2102 + Allowable relative degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 120 + 82 + 12 + Objective Absolute Tolerance + 0 + 0 + >=0 + true + true + 2103 + Allowable degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 121 + 83 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the project is enabled for execution + true + + + 122 + 84 + 1 + Periods per Day + 0 + 24 + Between 1 And 86400 + true + true + 606 + Number of intervals in each trading day + true + + + 123 + 84 + 2 + Compression Factor + 0 + 1 + >=1 + true + true + 2540 + Number of intervals to output per interval simulated + true + + + 124 + 84 + 3 + Date From + 0 + 43831 + >=0 + date + true + true + 125 + Start date of the planning horizon + true + + + 125 + 84 + 4 + Step Type + 0 + 1 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 765 + Planning horizon step type + true + + + 126 + 84 + 5 + Step Count + 0 + 1 + >=1 + true + true + 764 + Number of steps in the planning horizon + true + + + 127 + 84 + 6 + Look-ahead Count + 0 + 0 + >=0 + true + true + 2727 + Number of additional look-ahead steps in the planning horizon + true + + + 128 + 84 + 7 + Day Beginning + 0 + 0 + Between 0 And 23 + true + true + 126 + Start hour of the trading day + true + + + 129 + 84 + 8 + Week Beginning + 0 + 0 + Between -1 And 7 + true + true + 857 + Start day for weekly constraints + true + + + 130 + 84 + 9 + Year Ending + 0 + 0 + Between 0 And 12 + true + true + 865 + Last month of the fiscal year + true + + + 131 + 84 + 10 + Chronology + 0 + 0 + In (0,1) + 0;"Full";1;"Typical Week" + true + true + 79 + Type of chronology used + true + + + 132 + 84 + 11 + Chrono Date From + 0 + 43831 + >=0 + date + true + true + 74 + Start date for the chronological model + true + + + 133 + 84 + 12 + Chrono Period From + 0 + 1 + >=1 + true + true + 75 + Start interval for the chronological model + true + + + 134 + 84 + 13 + Chrono Period To + 0 + 24 + >=1 + true + true + 76 + End interval for the chronological model + true + + + 135 + 84 + 14 + Chrono Step Type + 0 + 2 + In (-1,0,1,2,3) + -1;"Second";0;"Minute";1;"Hour";2;"Day";3;"Week" + true + true + 78 + Chronological model step type + true + + + 136 + 84 + 15 + Chrono At a Time + 0 + 1 + >=1 + true + true + 73 + Number of steps in the chronological model + true + + + 137 + 84 + 16 + Chrono Step Count + 0 + 1 + >=1 + true + true + 77 + Number of step types in each step of the chronological model + true + + + 138 + 84 + 17 + Look-ahead Indicator + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 369 + Flag if chronological model used a look-ahead + true + + + 139 + 84 + 18 + Look-ahead Type + 0 + 1 + In (0,1,2,6) + 0;"Interval(s)";6;"Hour(s)";1;"Day(s)";2;"Week(s)" + true + true + 371 + Step type for look-ahead in chronological model + true + + + 140 + 84 + 19 + Look-ahead At a Time + 0 + 1 + >=1 + true + true + 368 + Number of step types in each step of the chronological model look-ahead + true + + + 141 + 84 + 20 + Look-ahead Periods per Day + 0 + 24 + Between 1 And 86400 + true + true + 370 + Number of intervals in each trading day of the look-ahead + true + + + 142 + 85 + 1 + Write Flat Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 863 + If the solution data are written to plain text files + true + + + 143 + 85 + 2 + Write XML Files + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 864 + If the solution data are written to XML files + true + + + 144 + 85 + 3 + XML Content + 0 + 0 + In (0,1) + 0;"Compact";1;"Full" + true + true + 1177 + Content of the zipped-XML solution files. Compact writes only binary solution tables. Raw writes binary and raw XML solution tables. + true + + + 145 + 85 + 4 + Output Results by Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 589 + If results are written by period + true + + + 146 + 85 + 5 + Output Results by Hour + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1582 + If summary results are written by hour + true + + + 147 + 85 + 6 + Output Results by Day + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 586 + If summary results are written by day + true + + + 148 + 85 + 7 + Output Results by Week + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 591 + If summary results are written by week + true + + + 149 + 85 + 8 + Output Results by Month + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 588 + If summary results are written by month + true + + + 150 + 85 + 9 + Output Results by Quarter + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1818 + If summary results are written by Quarter + true + + + 151 + 85 + 10 + Output Results by Fiscal Year + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 587 + If summary results are written by year + true + + + 152 + 85 + 11 + Output Statistics + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 593 + If statistics are calculated on multi-sample results + true + + + 153 + 85 + 12 + Output Results by Sample + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 590 + If each sample is output + true + + + 154 + 85 + 13 + Filter Objects By Interval + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 959 + If the selection of objects reported on applies to interval output + true + + + 155 + 85 + 14 + Filter Objects In Summary + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 960 + If the selection of objects reported on applies to summary output + true + + + 156 + 85 + 15 + Whole Years Only + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 961 + If reporting should be on whole years only + true + + + 157 + 85 + 16 + Datetime Convention + 0 + 0 + In (0,1) + 0;"Beginning of Period";1;"End of Period" + true + true + 1344 + Convention used when writing DATETIME. + true + + + 158 + 85 + 17 + Locale + 0 + 0 + >=0 + true + true + 1345 + The numeric index of the locale that should be used to write text files. + true + + + 159 + 85 + 18 + Flat File Format + 0 + 0 + In (0,1,2) + 0;"Datetime";1;"Periods in Columns";2;"Names in Columns" + true + true + 1359 + Format for text solution files. + true + + + 160 + 86 + 1 + Outage Pattern Count + 0 + 1 + >=1 + true + true + 521 + Number of outage patterns generated for use in MT and ST Schedule. + true + + + 161 + 86 + 2 + Monte Carlo Method + 0 + 0 + In (0,1) + 0;"Normal";1;"Convergent" + true + true + 520 + Monte-Carlo outage method. + true + + + 162 + 86 + 3 + Weibull Shape + 0 + 3 + >=0 + true + true + 523 + Shape parameter (beta) for the Weibull reliability function. + true + + + 163 + 86 + 4 + Convergent Smoothing + 0 + 5 + >=1 + true + true + 519 + Convergent Monte Carlo number of iterations used in converging outage rates. + true + + + 164 + 86 + 5 + Outage Scope + 0 + 0 + In (0,1,2,3) + 0;"All";1;"Forced Only";2;"Maintenance Only";3;"Planned Only" + true + true + 522 + Scope of preschedule outage pattern generator. + true + + + 165 + 86 + 6 + Convergence Period Type + 0 + 4 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1336 + Convergent Monte Carlo convergence period type. + true + + + 166 + 86 + 7 + Risk Sample Count + 0 + 1 + >=1 + true + true + 708 + Number of random samples generated on each Variable object. + true + + + 167 + 86 + 8 + Reduced Outage Pattern Count + 0 + 0 + >=0 + true + true + 1894 + Statistically reduce the outage patterns to at most this number. + true + + + 168 + 86 + 9 + Reduced Sample Count + 0 + 0 + >=0 + true + true + 1334 + Statistically reduce the [Risk Sample Count] to at most this number of random samples for use in simulation. + true + + + 169 + 86 + 10 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set drops to this level. + true + + + 170 + 86 + 11 + Forced Outages in Look-ahead + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1335 + If forced outages are included in the look-ahead. + true + + + 171 + 86 + 12 + EFOR Maintenance Adjust + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1793 + Adjust EFOR to account for Units Out + true + + + 172 + 86 + 13 + SDDP Iteration Limit + 0 + 20 + >=3 + true + true + 2435 + Maximum number of iterations in SDDP algorithm + true + + + 173 + 86 + 14 + SDDP Convergence Tolerance 1 + 0 + 1 + >=0 + true + true + 2436 + Objective function convergence criteria 1 for SDDP + true + + + 174 + 86 + 15 + SDDP Convergence Tolerance 2 + 0 + 0.2 + >=0 + true + true + 2437 + Objective function convergence criteria 2 for SDDP + true + + + 175 + 86 + 16 + SDDP Convergence Tolerance 2a + 0 + 0.8 + >=0 + true + true + 2438 + Objective function convergence criteria 2 (with adjustment) used in SDDP if simplification applies + true + + + 176 + 86 + 17 + SDDP Cut Sharing + 0 + 0 + In (0,1,2) + 0;"None";1;"Single";2;"Multiple" + true + true + 2642 + Type of cut sharing applied in the SDDP formulation + true + + + 177 + 86 + 18 + SDDP Simplified Chronology + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2439 + If the chronology is simplified to one block per stage during SDDP iterations + true + + + 178 + 86 + 19 + SDDP Head Effects + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2440 + If head effects are accounted for in SDDP iterations + true + + + 179 + 86 + 20 + SDDP Warm Start + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2610 + If the first forward pass of SDDP is replaced by fixed 'warm start' storage levels + true + + + 180 + 86 + 21 + SDDP Warm Start Level + 0 + 0.5 + Between 0 And 1 + true + true + 2611 + The levels to fix the storage in SDDP 'warm start' as a proportion of the distance between minimum and maximum storage levels + true + + + 181 + 86 + 22 + SDDP Replace Samples + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2614 + If the full branch samples in rolling horizon or the forward pass samples in SDDP should be replaced by user-defined samples + true + + + 182 + 86 + 23 + SDDP Final Pass Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2725 + If a final forward pass is run after the optimal policy iterations of the SDDP algorithm + true + + + 183 + 86 + 24 + FCF Scalar + 0 + 1000000 + true + true + 2441 + Scalar for future cost function objective and constraint terms + true + + + 184 + 86 + 25 + FCF Constant + 0 + 0 + true + true + 1485 + Constant future cost subtracted from the future cost during SDDP iterations + true + + + 185 + 86 + 26 + Simplified Chronology + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2541 + If the chronology is simplified to one block per stage during Rolling Horizon iterations + true + + + 186 + 86 + 27 + Simplify Hanging Branches After Branching + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2946 + If hanging branches are simplified in detail after branching + true + + + 187 + 86 + 28 + Simplify Hanging Branches Before Branching + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2947 + If hanging branches are simplified in detail before branching + true + + + 188 + 86 + 29 + Minimum Sample Weight + 0 + 1E-06 + >=0 + true + true + 2442 + Minimum sample weight for rolling horizon iterations + true + + + 189 + 86 + 30 + Deep Branching + 0 + 0 + >=0 + true + true + 2552 + For Rolling Horizon this is the level of additional branching after the end of regular branching + true + + + 190 + 86 + 31 + Rolling Horizon With Other Variables + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2532 + Perform historical sampling for all variable types + true + + + 191 + 86 + 32 + Rolling Stage Increment + 0 + -1 + true + true + 2677 + Number of stages rolled forward each iteration where -1 means this is automatically determined based on the scenario tree + true + + + 192 + 86 + 33 + Rolling Lookahead + 8 + 1 + true + true + 2724 + Number of years modeled after the end of branching in each rolling iteration + true + + + 193 + 86 + 34 + Deterministic Pass Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2726 + If the final deterministic pass is run after iterations of the Rolling Horizon algorithm + true + + + 194 + 86 + 35 + Deterministic Step Type + 0 + 0 + In (0,2,3,4) + 0;"None";2;"Week";3;"Month";4;"Year" + true + true + 2644 + The step type for solving the final deterministic pass of the rolling horizon where "None" solves the entire horizon in one step + true + + + 195 + 86 + 36 + Deterministic Batch Count + 0 + 1 + >=1 + true + true + 2650 + For Deterministic Step Type = "None" the samples in the deterministic phase will be divided into this number of batches + true + + + 196 + 86 + 37 + Deterministic Step Length + 0 + 1 + >=1 + true + true + 2645 + The number of Deterministic Step Type periods in each step of the deterministic pass of the rolling horizon + true + + + 197 + 86 + 38 + PARMA Model Type + 0 + -1 + In (-1,0,1) + -1;"None";0;"SARIMA";1;"PARMA" + true + true + 2534 + PARMA Model Type (-1 = None, 0 = SARIMA model, 1 = PARMA model) + true + + + 198 + 86 + 39 + Historical Full Branches + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2535 + Flag if full branches should be mapped by historical data in the PARMA model + true + + + 199 + 86 + 40 + Brazil Scenario Tree + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2536 + Flag if the PARMA scenario tree is created with non-equiprobability + true + + + 200 + 86 + 41 + SDDP Resampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2591 + Flag if resampling is performed for each SDDP iteration at the beginning of the forward pass (The Scenario Tree must be created with PARMA model using Brazilian Methodology) + true + + + 201 + 88 + 1 + Optimize Expansion + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2714 + If expansion is optimized by this simulation phase + true + + + 202 + 88 + 2 + Bridge Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2722 + If LT Plan should bridge (decompose) constraints for subsequent simulation phases + true + + + 203 + 88 + 3 + Bridge Storage + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2723 + If LT Plan should bridge (decompose) storage for subsequent simulation phases + true + + + 204 + 88 + 4 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 205 + 88 + 5 + Discount Period Type + 0 + 4 + In (1,2,3,4,6,7) + 3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor and expansion decisions will be computed for each of these periods. + true + + + 206 + 88 + 6 + At a Time + 0 + 0 + >=0 + true + true + 17 + Number of years solved in each step of LT Plan + true + + + 207 + 88 + 7 + Overlap + 0 + 0 + >=-1 + true + true + 595 + Number of years overlap between steps where -1 invokes Rolling Horizon + true + + + 208 + 88 + 8 + Chronology + 0 + 2 + In (2,3,4) + 2;"Partial";3;"Fitted";4;"Sampled" + true + true + 79 + Type of chronology used + true + + + 209 + 88 + 9 + LDC Type + 0 + 3 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 917 + One LDC is created for each period of this type in horizon. + true + + + 210 + 88 + 10 + Block Count + 0 + 12 + >=1 + true + true + 39 + Number of load duration curve blocks in each day/week/month. + true + + + 211 + 88 + 11 + Last Block Count + 0 + 0 + >=0 + true + true + 1702 + Number of load duration curve blocks in the last load duration curve of the horizon, or zero if the same as [Block Count]. + true + + + 212 + 88 + 12 + LDC Slicing Method + 0 + 0 + In (0,1) + 0;"Peak/Off-peak Bias";1;"Weighted Least-squares Fit" + true + true + 1200 + Method used to slice the LDC into blocks. + true + + + 213 + 88 + 13 + LDC Weight a + 0 + 0 + true + true + 1201 + LDC weighting polynomial function 'a' parameter. + true + + + 214 + 88 + 14 + LDC Weight b + 0 + 1 + true + true + 1202 + LDC weighting polynomial function 'b' parameter. + true + + + 215 + 88 + 15 + LDC Weight c + 0 + 0 + true + true + 1203 + LDC weighting polynomial function 'c' parameter. + true + + + 216 + 88 + 16 + LDC Weight d + 0 + 0 + true + true + 1204 + LDC weighting polynomial function 'd' parameter. + true + + + 217 + 88 + 17 + LDC Pin Top + 0 + -1 + >=-1 + true + true + 1205 + Number of points at the top of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 218 + 88 + 18 + LDC Pin Bottom + 0 + -1 + >=-1 + true + true + 1206 + Number of points at the bottom of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 219 + 88 + 19 + Sample Type + 0 + 2 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 1423 + For Chronology = "Sampled", take this type of sample. + true + + + 220 + 88 + 20 + Sampling Interval + 0 + 4 + In (-1,2,3,4,7) + -1;"Step";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1868 + For Chronology = "Sampled", take [Sample Type] samples in each of these intervals of time. + true + + + 221 + 88 + 21 + Sampled Block Count + 0 + 0 + >=0 + true + true + 2762 + Number of blocks modeled in each sample period (day/week) where zero means the original number of intervals + true + + + 222 + 88 + 22 + Sample Year Count + 0 + 0 + >=0 + true + true + 2227 + For [Chronology] = "Sampled", first select this many years then sample within only those years. + true + + + 223 + 88 + 23 + Reduced Sample Count + 0 + 4 + >=1 + true + true + 1334 + Statistically reduce the [Sample Type] periods to at most this number of samples each year. + true + + + 224 + 88 + 24 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set reaches this level. + true + + + 225 + 88 + 25 + Sampled Shallow Storage Treatment + 0 + 1 + In (1,2,3) + 1;"Automatic";2;"Custom";3;"Full"; + true + true + 3097 + For Chronology = "Sampled", method used for formulating low duration storages and batteries + true + + + 226 + 88 + 26 + Sampled Shallow Storage Cutoff + 6 + 0 + >=0 + true + true + 3098 + For [Chronology] = "Sampled" and [Sampled Shallow Storage Treatment] = "Custom", the maximum storage duration in hours for the shallow storage formulation to apply. + true + + + 227 + 88 + 27 + Decomposition + 0 + 1 + >=1 + true + true + 2963 + Reduce the number of simulated periods by this factor in the first pass of a two-pass decomposition + true + + + 228 + 88 + 28 + Optimality + 0 + 2 + In (0,1,2) + 0;"Linear";2;"Integer" + true + true + 581 + LT Plan integerization scheme. + true + + + 229 + 88 + 29 + Integerization Horizon + 8 + -1 + >=-1 + true + true + 322 + Number of years over which the expansion decisions are integerized + true + + + 230 + 88 + 30 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon effects + true + + + 231 + 88 + 31 + Limit Capital Cost Perpetuity by Economic Life + 0 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2937 + With perpetuity end effect, if annuity calculation should extend beyond the end of the horizon up to the Economic Life + true + + + 232 + 88 + 32 + Solution Count + 0 + 1 + >=1 + true + true + 1812 + Maximum number of solutions produced in the solution hierarchy + true + + + 233 + 88 + 33 + Solution Quality + 12 + 0 + Between 0 And 100 + true + true + 1813 + Continue producing solutions up to Solution Count or when Solution Quality falls to this level + true + + + 234 + 88 + 34 + Always Annualize Build Cost + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1957 + If [Build Cost] is always annualized even when an option retires inside the horizon + true + + + 235 + 88 + 35 + Depreciation Method + 0 + 0 + In (0,1,2) + 0;"None";1;"Straight-Line";2;"Declining" + true + true + 144 + Depreciation method for computing annuities + true + + + 236 + 88 + 36 + Tax Rate + 12 + 0 + true + true + 786 + Tax rate used to compute tax credits + true + + + 237 + 88 + 37 + Inflation Rate + 12 + 0 + true + true + 311 + Inflation rate used in depreciation calculations + true + + + 238 + 88 + 38 + Heat Rate Detail + 0 + 2 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 239 + 88 + 39 + Outage Increment + 1 + 10 + >=1 + true + true + 582 + Generator outage bin size in convolution + true + + + 240 + 88 + 40 + Use Effective Load Approach + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 836 + If LT Plan uses the effective load approach + true + + + 241 + 88 + 41 + Maintenance Sculpting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 982 + If LT Plan should sculpt maintenance derating according to the inverse of load. + true + + + 242 + 88 + 42 + Pricing Method + 0 + 0 + In (0,1) + 0;"Average";1;"Marginal" + true + true + 620 + Type of generator pricing used in LT Plan. + true + + + 243 + 88 + 43 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in LT Plan. + false + + + 244 + 88 + 44 + Allow Capacity Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 8 + If regions/zones can share capacity reserves to meet requirements + true + + + 245 + 88 + 45 + Capacity Payments Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1081 + If payments are made for generation capacity + true + + + 246 + 88 + 46 + Co-optimize Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2129 + If unit commitment is co-optimized rather than sequentially optimized with expansion + true + + + 247 + 88 + 47 + Start Cost Amortization Period + 6 + 0 + >=0 + true + true + 885 + Number of hours over which generator start costs are amortized + true + + + 248 + 88 + 48 + Compute Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 88 + Master switch for computation of reliability indices LOLP, LOLE, etc. + true + + + 249 + 88 + 49 + Compute Multi-area Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1734 + Master switch for computation of reliability indices LOLP, LOLE, etc across multiple areas. + true + + + 250 + 88 + 50 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for LT Plan + true + + + 251 + 88 + 51 + Storage Restart + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2769 + If recycled storage should restart from their initial volume at the start of each capacity optimization period + true + + + 252 + 88 + 52 + Storage Formulate Head Effects + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2948 + If storage head effects should be formulated in LT Plan + true + + + 253 + 88 + 53 + Write Expansion Plan Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 908 + If expansion plans should be written to text files + true + + + 254 + 89 + 1 + Step Type + 0 + 1 + In (0,1,2) + 0;"Interval";1;"Day";2;"Week" + true + true + 765 + PASA step type: One period is modelled for each period of this type in horizon. + true + + + 255 + 89 + 2 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Definition of maintenance area for PASA. + true + + + 256 + 89 + 3 + Include DSP + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 300 + Include demand-side participation in PASA + true + + + 257 + 89 + 4 + Include Demand Bids + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 299 + Include demand bids are load in PASA + true + + + 258 + 89 + 5 + Include Contract Generation + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 297 + Include physical contract generation capacity in PASA + true + + + 259 + 89 + 6 + Include Contract Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 298 + Include physical contract load capacity in PASA + true + + + 260 + 89 + 7 + Include Market Purchases + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1232 + Include market purchases as generation capacity in PASA + true + + + 261 + 89 + 8 + Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 100 + If transmission line constraints are enabled in PASA. + true + + + 262 + 89 + 9 + Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 324 + If transmission interface constraints are enabled in PASA. + true + + + 263 + 89 + 10 + Maintenance Sculpting + 12 + 0 + Between 0 And 100 + true + true + 982 + Level of sculpting of maintenance outages: Higher sculpting means outages are more concentrated in high reserve periods + true + + + 264 + 89 + 11 + Compute Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 88 + Master switch for computation of reliability indices LOLP, LOLE, etc. + true + + + 265 + 89 + 12 + Compute Multi-area Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1734 + Master switch for computation of reliability indices LOLP, LOLE, etc across multiple areas. + true + + + 266 + 89 + 13 + Reliability Criterion + 0 + 0 + In (0,1) + 0;"LOLP";1;"Capacity Reserves" + true + true + 2705 + Criterion used to select periods for Monte Carlo reliability analysis + true + + + 267 + 89 + 14 + Reliability LOLP Tolerance + 0 + 0.01 + >=0 + true + true + 2673 + For reliability-based sampled chronology using LOLP criterion select intervals with LOLP at or above this level + true + + + 268 + 89 + 15 + Reliability Max Samples + 6 + 1E+30 + >=1 + true + true + 2674 + For reliability-based sampled chronology select no more than this many hours per year + true + + + 269 + 89 + 16 + Write Reliability Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2706 + If the periods selected for Monte Carlo reliability analysis should be written to text files + true + + + 270 + 89 + 17 + Write Outage Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 906 + If outage patterns should be written to text files + true + + + 271 + 89 + 18 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for PASA. + true + + + 272 + 90 + 1 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 273 + 90 + 2 + Discount Period Type + 0 + 2 + In (1,2,3,4,6,7) + 6;"Hour";1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor will be computed for each of these periods. + true + + + 274 + 90 + 3 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon discounting + true + + + 275 + 90 + 4 + Step Type + 0 + 4 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 765 + Each simulation step will span steps of this type. + true + + + 276 + 90 + 5 + At a Time + 0 + 0 + >=0 + true + true + 17 + Number of day/week/months/years in each MT Schedule simulation step. + true + + + 277 + 90 + 6 + Chronology + 0 + 2 + In (2,3,4,5) + 2;"Partial";3;"Fitted";4;"Sampled";5;"Reliability" + true + true + 79 + Type of chronology used + true + + + 278 + 90 + 7 + LDC Type + 0 + 1 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 917 + Create one LDC for each period of this type in the horizon. + true + + + 279 + 90 + 8 + Block Count + 0 + 3 + >=1 + true + true + 39 + Number of load duration curve blocks in each day/week/month. + true + + + 280 + 90 + 9 + Last Block Count + 0 + 0 + >=0 + true + true + 1702 + Number of load duration curve blocks in the last load duration curve of the horizon, or zero if the same as [Block Count]. + true + + + 281 + 90 + 10 + LDC Slicing Method + 0 + 0 + In (0,1) + 0;"Peak/Off-peak Bias";1;"Weighted Least-squares Fit" + true + true + 1200 + Method used to slice the LDC into blocks. + true + + + 282 + 90 + 11 + LDC Weight a + 0 + 0 + true + true + 1201 + LDC weighting polynomial function 'a' parameter. + true + + + 283 + 90 + 12 + LDC Weight b + 0 + 1 + true + true + 1202 + LDC weighting polynomial function 'b' parameter. + true + + + 284 + 90 + 13 + LDC Weight c + 0 + 0 + true + true + 1203 + LDC weighting polynomial function 'c' parameter. + true + + + 285 + 90 + 14 + LDC Weight d + 0 + 0 + true + true + 1204 + LDC weighting polynomial function 'd' parameter. + true + + + 286 + 90 + 15 + LDC Pin Top + 0 + -1 + >=-1 + true + true + 1205 + Number of points at the top of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 287 + 90 + 16 + LDC Pin Bottom + 0 + -1 + >=-1 + true + true + 1206 + Number of points at the bottom of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 288 + 90 + 17 + Sample Type + 0 + 2 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 1423 + For [Chronology] = "Sampled", take this type of sample. + true + + + 289 + 90 + 18 + Sampling Interval + 0 + 4 + In (-1,2,3,4,7) + -1;"Step";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1868 + For Chronology = "Sampled", take [Sample Type] samples in each of these intervals of time. + true + + + 290 + 90 + 19 + Sampled Block Count + 0 + 0 + >=0 + true + true + 2762 + Number of blocks modeled in each sample period (day/week) where zero means the original number of intervals + true + + + 291 + 90 + 20 + Reduced Sample Count + 0 + 4 + >=1 + true + true + 1334 + Statistically reduce the [Sample Type] periods to at most this number of samples each year. + true + + + 292 + 90 + 21 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set reaches this level. + true + + + 293 + 90 + 22 + Sampled Shallow Storage Treatment + 0 + 1 + In (1,2,3) + 1;"Automatic";2;"Custom";3;"Full"; + true + true + 3097 + Sampled Shallow Storage Treatment + true + + + 294 + 90 + 23 + Sampled Shallow Storage Cutoff + 6 + 0 + >=0 + true + true + 3098 + For [Chronology] = "Sampled" and [Sampled Shallow Storage Treatment] = "Custom", the maximum storage duration in hours for the shallow storage formulation to apply. + true + + + 295 + 90 + 24 + Heat Rate Detail + 0 + 1 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 296 + 90 + 25 + Use Effective Load Approach + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 836 + If MT Schedule uses the effective load approach + true + + + 297 + 90 + 26 + Outage Increment + 1 + 10 + >=1 + true + true + 582 + Generator outage bin size in convolution + true + + + 298 + 90 + 27 + Pricing Method + 0 + 0 + In (0,1) + 0;"Average";1;"Marginal" + true + true + 620 + Type of generator pricing used in MT Schedule + true + + + 299 + 90 + 28 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in MT Schedule + false + + + 300 + 90 + 29 + New Entry Driver + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Reliability Only";2;"Reliability+Entrepreneurial";3;"Entrepreneurial Only" + true + true + 556 + New entry driver. + true + + + 301 + 90 + 30 + New Entry Capacity Mechanism + 0 + 0 + In (0,1,2) + 0;"None";1;"Capacity Payment";2;"Reserve Trader" + true + true + 555 + Capacity payment mechanism. + true + + + 302 + 90 + 31 + New Entry Time Lag + 55 + 12 + >=0 + true + true + 557 + Lag time for entrepreneurial entry. + true + + + 303 + 90 + 32 + Start Cost Amortization Period + 6 + 0 + >=0 + true + true + 885 + Number of hours over which generator start costs are amortized + true + + + 304 + 90 + 33 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for MT Schedule + true + + + 305 + 90 + 34 + Stochastic Algorithm + 0 + 0 + In (0,1) + 0;"Rolling Horizon";1;"SDDP" + true + true + 2235 + Algorithm invoked by the Stochastic Method when a scenario tree is present + true + + + 306 + 90 + 35 + Storage Formulate Head Effects + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2948 + If storage head effects should be formulated in MT Schedule. + true + + + 307 + 90 + 36 + Write Bridge Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1963 + If bridge information such as constraint decomposition and storage targets should be written to text files + true + + + 308 + 90 + 37 + Step Link Mode + 0 + 0 + In (0,1,2) + 0;"Link";1;"Break";2;"Parallel" + true + true + 1987 + Controls how the solutions of each step are linked together. + true + + + 309 + 90 + 38 + Reliability Min Contiguous Block + 6 + 0 + >=0 + true + true + 2675 + For reliability based sampled chronology ensure sampled periods are contained in contiguous blocks of at least this many hours + true + + + 310 + 91 + 1 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 311 + 91 + 2 + Discount Period Type + 0 + 2 + In (1,2,3,4,6,7) + 6;"Hour";1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor will be computed for each of these periods. + true + + + 312 + 91 + 3 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon discounting + true + + + 313 + 91 + 4 + Heat Rate Detail + 0 + 0 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 314 + 91 + 5 + Transmission Detail + 0 + 1 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in ST Schedule + false + + + 315 + 91 + 6 + Stochastic Method + 0 + 1 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for ST Schedule + true + + + 316 + 91 + 7 + Storage Formulate Head Effects + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2948 + If storage head effects should be formulated in ST Schedule. + true + + + 317 + 91 + 8 + Step Link Mode + 0 + 0 + In (0,1,2) + 0;"Link";1;"Break";2;"Parallel" + true + true + 1987 + Controls how the solutions of each step are linked together. + true + + + 318 + 91 + 9 + Step Relink Count + 0 + 1 + >=1 + true + true + 2704 + Number of steps that require relinking of initial conditions in parallel Step Link Mode, where 1 means no relinking + true + + + 319 + 91 + 10 + Sequential Steps + 0 + 1 + >=1 + true + true + 2703 + Number of steps run in each sequential block when running in parallel Step Link Mode + true + + + 320 + 92 + 1 + Detail + 0 + 1 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 2104 + Level of detail used in transmission modeling + true + + + 321 + 92 + 2 + MVA Base + 0 + 100 + >=0 + true + true + 528 + MVA base for AC line parameters. + true + + + 322 + 92 + 3 + OF Method + 0 + 0 + In (0,1) + 0;"Variable Shift Factor";1;"Fixed Shift Factor" + true + true + 580 + Method for solving optimal power flow. + true + + + 323 + 92 + 4 + Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 100 + If transmission line constraints are enabled. + true + + + 324 + 92 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 976 + If transmission constraints should all be formulated upfront rather than checked iteratively. + true + + + 325 + 92 + 6 + Constraint Voltage Threshold + 4 + 0 + >=0 + true + true + 99 + Voltage level at which thermal limits are modelled. + true + + + 326 + 92 + 7 + Constraint Limit Penalty + 33 + -1 + true + true + 2685 + Penalty for exceeding line and transformer limits. + true + + + 327 + 92 + 8 + Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 324 + If interface constraints are enabled. + true + + + 328 + 92 + 9 + Enforce Limits On Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 178 + If lines and transformers in interfaces should have their limits enforced regardless of voltage + true + + + 329 + 92 + 10 + Interface Limit Penalty + 33 + -1 + true + true + 2686 + Penalty for exceeding interface flow limits. + true + + + 330 + 92 + 11 + Losses Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 387 + If transmission losses are enabled. + true + + + 331 + 92 + 12 + Loss Voltage Threshold + 4 + 0 + >=0 + true + true + 386 + Voltage level at which losses are modelled. + true + + + 332 + 92 + 13 + Loss Method + 0 + 0 + In (0,1,3,4,5) + 0;"Auto";1;"Piecewise Linear";3;"Conic";4;"Successive MLF";5;"Single-pass GPF" + true + true + 384 + Formulation method used to model transmission losses. + true + + + 333 + 92 + 14 + Max Loss Relative Error + 0 + 0 + >=0 + true + true + 379 + Maximum allowed relative error in the piecewise linear loss function. + true + + + 334 + 92 + 15 + Max Loss Absolute Error + 0 + 0 + >=0 + true + true + 1915 + Maximum allowed absolute error in the piecewise linear loss function. + true + + + 335 + 92 + 16 + Max Loss Tranches + 0 + 100 + >=1 + true + true + 438 + Maximum number of tranches in piecewise linear line loss function. + true + + + 336 + 92 + 17 + Loss Tolerance + 0 + 1E-05 + >=0 + true + true + 385 + Relative gap between real and modelled losses. + true + + + 337 + 92 + 18 + Max Loss Iterations + 0 + 50 + >=1 + true + true + 437 + Maximum number of iterations for converging the losses. + true + + + 338 + 92 + 19 + Max Embedded Loss Iterations + 0 + 2 + >=0 + true + true + 422 + Maximum number of iterations for removing embedded losses from load. + true + + + 339 + 92 + 20 + Detect Non-physical Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 890 + If non-physical losses should be detected (in the piecewise linear loss model) and removed via mixed-integer programming + true + + + 340 + 92 + 21 + PTDF Method + 0 + 0 + In (0,1,2,3,4) + 0;"Single Slack Bus";1;"Distributed Slack (Reference Load)";3;"Distributed Slack (Generation Capacity)";4;"Distributed Slack (Reference Generation)" + true + true + 636 + Method for computation of shift factors + true + + + 341 + 92 + 22 + Flow PTDF Threshold + 0 + 0.01 + >=0 + true + true + 637 + Minimum absolute value of PTDF as coefficient in transmission flow constraints. + true + + + 342 + 92 + 23 + Commitment PTDF Threshold + 0 + 0 + >=0 + true + true + 2801 + Minimum absolute value of PTDF coefficient in commitment solves. + true + + + 343 + 92 + 24 + Wheeling PTDF Threshold + 0 + 0.05 + >=0 + true + true + 1371 + Minimum absolute value of PTDF as coefficient in wheeling definitions. + true + + + 344 + 92 + 25 + LODF Threshold + 0 + 0.03 + >=0 + true + true + 2237 + Minimum absolute value of LODF to be used in contingency flow constraints. + true + + + 345 + 92 + 26 + Cache Transmission Matrices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1955 + Cache the transmission matrices to disk for future use. + true + + + 346 + 92 + 27 + Reactance Cut-off + 0 + 0 + true + true + 668 + Smallest allowable reactance when performing OPF. + true + + + 347 + 92 + 28 + Allow Dump Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 9 + Model Dump Energy in OPF + true + + + 348 + 92 + 29 + Allow Unserved Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 10 + Model Unserved Energy in OPF + true + + + 349 + 92 + 30 + Energy Balance Violation Variables + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2048 + Include violation variables on the transmission system energy balance equations + true + + + 350 + 92 + 31 + Bound Node Phase Angles + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1029 + If the Node [Phase Angle] values are subject to bounds in absolute value. + true + + + 351 + 92 + 32 + Max Absolute Phase Angle + 53 + 6.28 + Between 0 And 6.28318530717958 + true + true + 1030 + Maximum absolute value allowed for any Node [Phase Angle]. + true + + + 352 + 92 + 33 + Internal VoLL + 14 + 100000 + Between 0 And 1E+9 + true + true + 325 + Value of Lost Load used internally + true + + + 353 + 92 + 34 + USE Threshold + 12 + 100 + Between 0 And 100 + true + true + 1479 + Formulates the [Unserved Energy] variables on the top x% nodes (highest load). + true + + + 354 + 92 + 35 + Rental Method + 0 + 0 + In (0,1) + 0;"Point-to-Point";1;"Flow Gate" + true + true + 681 + Method used to calculate transmission rentals + true + + + 355 + 92 + 36 + Interruption Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 328 + If region interruption sharing is activated. + true + + + 356 + 92 + 37 + Report Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 684 + If transmission reporting is enabled. + true + + + 357 + 92 + 38 + Report Voltage Threshold + 4 + 0 + >=0 + true + true + 687 + Voltage level at which transmission reporting begins. + true + + + 358 + 92 + 39 + Report Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 686 + If all flows on lines selected interfaces are reported + true + + + 359 + 92 + 40 + Report All Interregional Flows + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 683 + If line flows between regions should be reported regardless of kV. + true + + + 360 + 92 + 41 + Report All Interzonal Flows + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1512 + If line flows between zones should be reported regardless of kV. + true + + + 361 + 92 + 42 + Report Injection and Load Nodes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 685 + If all injection and load buses (nodes) are reported on (regardless of voltage) + true + + + 362 + 92 + 43 + Convergence Report Level + 0 + 1 + In (0,1,2) + 0;"None";1;"Normal";2;"Verbose" + true + true + 114 + Level of screen reporting during transmission convergence iterations (none, normal, verbose) + true + + + 363 + 92 + 44 + SCUC Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 727 + If security constrained unit commitment (SCUC) is enabled + true + + + 364 + 92 + 45 + SCUC Constraint Voltage Threshold + 4 + 0 + >=0 + true + true + 726 + Voltage level at which SCUC line thermal limits are modelled. + true + + + 365 + 92 + 46 + SCUC Interface Constraints Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1032 + If enabled interface constraints are monitored in SCUC. + true + + + 366 + 92 + 47 + Enforce N-1 Contingencies + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1480 + If N-1 contingencies should be automatically enforced. + true + + + 367 + 92 + 48 + N-1 Contingency Voltage Threshold + 4 + 0 + >=0 + true + true + 1481 + Voltage level at which N-1 contingencies are automatically enforced. + true + + + 368 + 92 + 49 + Contingency Monitoring Threshold + 12 + 100 + Between 0 And 100 + true + true + 1627 + Monitor only this percentage of most affected Line/Transformer/Interface flows. + true + + + 369 + 92 + 50 + Contingency Limit Penalty + 33 + -1 + true + true + 2050 + Penalty for exceeding contingency flow limits. + true + + + 370 + 92 + 51 + Limit Threshold + 0 + 0.95 + Between 0 And 1 + true + true + 728 + Line, Transformer, or Interface flow loading threshold above which limits are added. + true + + + 371 + 92 + 52 + Limit Bootstrap Initial Threshold + 0 + 2 + >=0 + true + true + 1016 + Initial value of [Limit Threshold] during transmission constraint bootstrap phase. + true + + + 372 + 92 + 53 + Limit Bootstrap Threshold Decrement + 0 + 0.25 + Between 0 And 1 + true + true + 1017 + [Limit Threshold] decrement used for each iteration of transmission bootstrap phase. + true + + + 373 + 92 + 54 + Max Limit Iterations + 0 + 1000 + >=0 + true + true + 1018 + Maximum number of iterations during any one call to enforce transmission limits. + true + + + 374 + 92 + 55 + Filter Limits + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2006 + If transmission limits are filtered using extreme flows from MT Schedule + true + + + 375 + 92 + 56 + Zero Limit Treatment + 0 + 0 + In (0,1) + 0;"Out-of-service";1;"Unlimited" + true + true + 2120 + Treatment of AC elements with zero limits + true + + + 376 + 92 + 57 + Calculate Node LPF from Load + 0 + 0 + In (0,1) + 0;"No";1;"Yes" + true + true + 2140 + Automatically calculate Node LPF from input Load property + true + + + 377 + 93 + 1 + Dispatch by Power Station + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 148 + If generators in power stations should be treated in aggregate for dispatch. + true + + + 378 + 93 + 2 + Dispatch by Battery Station + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2996 + If batteries should be aggregated through manual or automatic battery stations for dispatch. + true + + + 379 + 93 + 3 + Power Station Aggregation Mode + 0 + 0 + In (0,1,2) + 0;"None";1;"Name";2;"Location" + true + true + 2821 + Automatically create Power Station objects by aggregating Generators + true + + + 380 + 93 + 4 + Battery Station Aggregation Mode + 0 + 0 + In (0,1,2) + 0;"None";1;"Name";2;"Location" + true + true + 2997 + Automatically create Battery Station objects by aggregating Batteries + true + + + 381 + 93 + 5 + Unit Commitment Optimality + 0 + 0 + In (0,1,2,3) + 0;"Linear";1;"Rounded Relaxation";2;"Integer" + true + true + 811 + Unit commitment integerization scheme. + true + + + 382 + 93 + 6 + Rounding Up Threshold + 0 + 0.5 + Between 0 And 1 + true + true + 711 + Threshold at which non-integers are rounded up. + true + + + 383 + 93 + 7 + Rounded Relaxation Commitment Model + 0 + 0 + In (0,1) + 0;"Central";1;"Self" + true + true + 1891 + Determines if the unit commitment decisions are made centrally or by self-commitment + true + + + 384 + 93 + 8 + Rounded Relaxation Tuning + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1151 + If the Rounded Relaxation method should self-tune the [Rounding Up Threshold]. + true + + + 385 + 93 + 9 + Rounded Relaxation Start Threshold + 0 + 0.25 + >=0 + true + true + 1152 + Start value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 386 + 93 + 10 + Rounded Relaxation End Threshold + 0 + 0.75 + <=1 + true + true + 1153 + End value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 387 + 93 + 11 + Rounded Relaxation Threshold Increment + 0 + 0.05 + >=0.01 + true + true + 1154 + Increment value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 388 + 93 + 12 + DP Capacity Factor Threshold + 12 + 20 + >=0 + true + true + 910 + Minimum capacity factor for generators to be dispatched by the DP + true + + + 389 + 93 + 13 + DP Capacity Factor Error Threshold + 12 + 20 + >=0 + true + true + 889 + Error in DP capacity factor compared to MT Schedule capacity factor below which the DP solution is accepted + true + + + 390 + 93 + 14 + Capacity Factor Constraint Basis + 0 + 0 + In (0,1) + 0;"Installed Capacity";1;"Rated Capacity" + true + true + 61 + Basis for capacity factor constraints. + true + + + 391 + 93 + 15 + Forced Outage Relaxes Min Down Time + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1860 + If ramp constraints should all be formulated upfront rather than checked iteratively. + true + + + 392 + 93 + 16 + Gas Demand Resolution + 0 + 0 + In (0,1,2) + 0;"Interval";1;"Hour";2;"Day" + true + true + 1964 + Resolution of input gas demands + true + + + 393 + 93 + 17 + Heat Rate Detail + 0 + 0 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling + true + + + 394 + 93 + 18 + Unit Commitment Heat Rate Detail + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2445 + If modeling fully detailed heat rates for unit commitment. Otherwise perform a two-pass UC/ED. + true + + + 395 + 93 + 19 + Integers in Look-ahead + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + true + true + 1422 + Controls when the look-ahead contains integers for unit commitment and other decisions. + true + + + 396 + 93 + 20 + Cooling States Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2130 + If generator unit cooling states are enabled + true + + + 397 + 93 + 21 + Run Up and Down Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2106 + If generator run up and run down are modeled + true + + + 398 + 93 + 22 + Transitions Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2108 + If generator transitions are modeled + true + + + 399 + 93 + 23 + Start Cost Method + 0 + 0 + In (0,1) + 0;"Optimize";1;"Calculate" + true + true + 993 + Method for handling start costs in the mathematical formulation (integrate into the formulation, or calculate ex-post) + true + + + 400 + 93 + 24 + Start and Stop Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2105 + If facility start up and shut down are modeled + true + + + 401 + 93 + 25 + Ramping Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2820 + If facility ramping constraints are modeled + true + + + 402 + 93 + 26 + Pump and Generate + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1943 + If pumped storage/battery is allowed to pump/charge and generate/discharge simultaneously + true + + + 403 + 93 + 27 + Increment and Decrement + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2867 + If simultaneous closure of increment and decrement bids/offers around a base is allowed + true + + + 404 + 93 + 28 + Fuel Use Function Precision + 0 + 0 + >=0 + true + true + 226 + Precision for calculation of linear approximation to fuel function. + true + + + 405 + 93 + 29 + Max Heat Rate Tranches + 0 + 10 + Between 1 And 100 + true + true + 432 + Maximum number of tranches in the fuel function piecewise linear approximation + true + + + 406 + 93 + 30 + Min Heat Rate Tranche Size + 0 + 0 + >=0 + true + true + 2567 + Minimum tranche size in fuel function piecewise linear approximation + true + + + 407 + 93 + 31 + Heat Rate Error Method + 0 + 2 + In (0,1,2,3,4) + 0;"Throw Error";1;"Warn Adjust Report Raw";2;"Warn Adjust Report Adjusted";3;"No Warn Adjust";4;"Allow Non-convex" + true + true + 262 + Method for handling non-convex heat rate functions. + true + + + 408 + 93 + 32 + Formulate Upfront + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 976 + If production constraints should all be formulated upfront rather than checked iteratively. + true + + + 409 + 93 + 33 + Formulate Ramp Upfront + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1370 + If ramp constraints should all be formulated upfront rather than checked iteratively. + true + + + 410 + 93 + 34 + Warm Up Process Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2539 + If modeling of Facility Warm Up Process is enabled + true + + + 411 + 94 + 1 + Equilibrium Model + 0 + 0 + In (0,1,2) + 0;"None";1;"LRMC";2;"Nash-Cournot" + true + true + 179 + Equilibrium Model. Optimizes generation / pricing position of portfolios over the short or medium term. + true + + + 412 + 94 + 2 + Default Elasticity + 56 + -0.2 + <0 + true + true + 132 + Default price elasticity of demand + true + + + 413 + 94 + 3 + Demand Scaling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1447 + If Nash-Cournot result scales input loads to reflect price elasticity of demand. + true + + + 414 + 94 + 4 + Revenue Targeting Method + 0 + 0 + In (0,1,2) + 0;"Increment Only";1;"Decrement Only";2;"Increment or Decrement" + true + true + 699 + Method used in adjusting offers to meet revenue targets. + true + + + 415 + 94 + 5 + Revenue Targeting Iterations + 0 + 1 + >=1 + true + true + 698 + Number of iterations used to recover fixed costs. + true + + + 416 + 94 + 6 + Pricing Strategy + 0 + 0 + In (0,1,2,3) + 0;"Off";1;"No Congestion";2;"Regional";3;"Zonal" + true + true + 621 + The Bertrand Competition strategy used to set offer/bid prices each interval. + true + + + 417 + 94 + 7 + Bertrand Detect Active Ramp Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1416 + If the Bertrand algorithm should detect when generators are constrained due to ramping. + true + + + 418 + 94 + 8 + Bertrand OOMOD Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1417 + If the Bertrand algorithm should seek to maximize profits by out-of-merit-order dispatch. + true + + + 419 + 94 + 9 + Epsilon + 0 + 0.01 + >0 + true + true + 442 + Minimum margin between competing offer prices or between offer prices and the price cap. + true + + + 420 + 94 + 10 + RSI Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 715 + If Residual Supply Index method is used. + true + + + 421 + 94 + 11 + RSI Enabled for Load Bids + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2845 + If Residual Supply Index method is used for Load Bids. + true + + + 422 + 94 + 12 + RSI Bid-Cost Mark-up Method + 0 + 0 + In (0,1,2) + 0;"Variable by Merit Order";1;"Variable by Supply Capacity";2;"Uniform" + true + true + 713 + Method used in applying calculated bid cost markups to companies then generating units. + true + + + 423 + 94 + 13 + No Load Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 558 + If marginal cost bid should be adjusted to account for no-load cost + true + + + 424 + 94 + 14 + Mark-up Min Stable Level + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 410 + If mark-up should be applied to the full range of unit output including [Min Stable Level]. + true + + + 425 + 94 + 15 + Start Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1869 + If mark-ups are calculated to recover generator start cost + true + + + 426 + 94 + 16 + Start Cost Mark-up Production Bands + 0 + 100 + >=1 + true + true + 1870 + Number of bands of production used in recovery of a start cost across each window + true + + + 427 + 94 + 17 + Start Cost Mark-up Window + 6 + 24 + true + true + 1871 + Number of hours over which a start cost should be recovered using mark-up on production + true + + + 428 + 94 + 18 + Start Cost Mark-up Method + 0 + 0 + In (0,1) + 0;"Co-optimize";1;"Simple" + true + true + 2565 + Algorithm used to apply start cost mark-ups + true + + + 429 + 94 + 19 + Contracts Optimize Offers + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 112 + If contract position should be considered when offering generation. + true + + + 430 + 94 + 20 + Contracts Settlement Method + 0 + 0 + In (0,1,2) + 0;"Fixed";1;"Pro-rata";2;"Least-cost" + true + true + 113 + Method of calculating contract quantities for settlement + true + + + 431 + 94 + 21 + Contracts Handoff Point + 0 + 0 + In (0,1) + 0;"Purchaser's Price";1;"Generator's Price" + true + true + 111 + Location of hand-off for setting of contract settlement price + true + + + 432 + 94 + 22 + Market Trading Format + 0 + 1 + In (0,1) + 0;"Bilateral";1;"POOLCO" + true + true + 407 + Trading format for Cournot model (Bilateral=No Arbitrage, POOLCO=With Arbitrage). + true + + + 433 + 94 + 23 + Non Price Setting Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2107 + If non-price setting plant should be fixed prior to the final price calculation + true + + + 434 + 95 + 1 + SOLVER + 0 + 4 + In (0,1,2,3,4,6,7,8) + 0;"MOSEK";1;"CPLEX";2;"Xpress-MP";3;"SoPlex/SCIP";4;"Gurobi";6;"Default";7;"GLPK";8;"COPT" + true + true + 755 + SOLVER engine used by PLEXOS. + true + + + 435 + 95 + 2 + Small LP Optimizer + 0 + 0 + Between 0 And 9 + 0;"Auto";1;"Barrier";2;"Conic";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";7;"Mixed Integer";8;"Nonconvex";9;"Concurrent" + true + true + 750 + Optimizer used to solve 'small' liner programming problems. + true + + + 436 + 95 + 3 + Small LP Nonzero Count + 0 + 250000 + >0 + true + true + 749 + Maximum number of non-zeros in a 'small' linear programming problem. + true + + + 437 + 95 + 4 + Cold Start Optimizer 1 + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 83 + First priority optimizer used to solve problems from a cold-start. + true + + + 438 + 95 + 5 + Cold Start Optimizer 2 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 84 + Second priority optimizer used to solve problems from a cold-start. + true + + + 439 + 95 + 6 + Cold Start Optimizer 3 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 85 + Third priority optimizer used to solve problems from a cold-start. + true + + + 440 + 95 + 7 + Hot Start Optimizer 1 + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 271 + First priority optimizer used to solve problems from a hot-start. + true + + + 441 + 95 + 8 + Hot Start Optimizer 2 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 272 + Second priority optimizer used to solve problems from a hot-start. + true + + + 442 + 95 + 9 + Hot Start Optimizer 3 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 273 + Third priority optimizer used to solve problems from a hot-start. + true + + + 443 + 95 + 10 + Concurrent Mode + 0 + 0 + In (0,1) + 0;"Deterministic";1;"Opportunistic" + true + true + 2693 + Mode for the concurrent optimizer + true + + + 444 + 95 + 11 + Presolve + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2773 + Toggles on/off solver presolve + true + + + 445 + 95 + 12 + Scaling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2774 + Toggles on/off solver problem scaling + true + + + 446 + 95 + 13 + Barrier Convergence Tolerance + 0 + 1E-08 + Between 0 And 1 + true + true + 2961 + Termination criteria for the Barrier algorithm + true + + + 447 + 95 + 14 + Crossover + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2768 + If crossover is used to transform the interior solution produced by barrier into a basic solution + true + + + 448 + 95 + 15 + Feasibility Tolerance + 0 + 0 + >=0 + true + true + 2446 + Allowable violation of variable bounds (0 = solver default value) + true + + + 449 + 95 + 16 + Optimality Tolerance + 0 + 0 + >=0 + true + true + 2653 + Optimality tolerance (0 = solver default value) + true + + + 450 + 95 + 17 + Objective Scalar + 0 + 1 + >0 + true + true + 2651 + Scale the objective function internally by this factor + true + + + 451 + 95 + 18 + Objective Tolerance + 0 + 0 + >=0 + true + true + 2652 + Smallest allowable objective function coefficient + true + + + 452 + 95 + 19 + Maximum Threads + 0 + -1 + >=-1 + true + true + 468 + Maximum number of threads used simultaneously by all simplex and interior point optimizers, where -1 means all available threads. + true + + + 453 + 95 + 20 + MIP Root Optimizer + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 516 + Optimizer used to solve the linear relaxation of a mixed-integer program. + true + + + 454 + 95 + 21 + MIP Node Optimizer + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 513 + Optimizer used at the nodes of the branch and bound algorithm. + true + + + 455 + 95 + 22 + MIP Relative Gap + 0 + 0.0001 + >=0 + true + true + 515 + Declare the integer solution optimal when this gap is reached between the current integer solution and best-bound linear relaxation (this is not a measure of optimality). + true + + + 456 + 95 + 23 + MIP Improve Start Gap + 0 + 0 + >=0 + true + true + 1309 + Switch strategy to improving the best integer solution when this gap is reached. + true + + + 457 + 95 + 24 + MIP Absolute Gap + 0 + 0 + >=0 + true + true + 2447 + Absolute tolerance on the gap between the best integer objective and the objective of the best node remaining + true + + + 458 + 95 + 25 + MIP Max Relative Gap + 0 + 0 + >=0 + true + true + 2646 + When set to a value greater than zero, the MIP Max Time is treated as a soft constraint with optimization continuing until the MIP Max Relative Gap is reached. + true + + + 459 + 95 + 26 + MIP Max Absolute Gap + 0 + 0 + >=0 + true + true + 2819 + When set to a value greater than zero, the MIP Max Time is treated as a soft constraint with optimization continuing until the MIP Max Absolute Gap is reached. + true + + + 460 + 95 + 27 + MIP Max Time + 5 + -1 + >=-1 + true + true + 511 + Maximum time in mixed integer programming algorithm + true + + + 461 + 95 + 28 + MIP Max Relaxation Repair Time + 5 + -1 + >=-1 + true + true + 1905 + Maximum time allowed in repairing an infeasible mixed integer programming problem + true + + + 462 + 95 + 29 + MIP Maximum Threads + 0 + -1 + >=-1 + true + true + 512 + Maximum number of threads used by the mixed integer optimizer, where -1 means all available threads. + true + + + 463 + 95 + 30 + MIP Start Solution + 0 + 1 + Between 0 And 2 + 0;"Never";1;"Within Step";2;"Within And Between Steps" + true + true + 1945 + MIP solver will be warm started with previous solutions according to this setting. + true + + + 464 + 95 + 31 + MIP Focus + 0 + 0 + In (0,1,2,3) + 0;"Balanced";1;"Feasibility";2;"Optimality";3;"Best Bound" + true + true + 2659 + High-level solution strategy for the MIP solver + true + + + 465 + 95 + 32 + Carry over MIP Time + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2448 + If unused MIP Max Time is carried over to the next MIP solve allowing more time on harder problems + true + + + 466 + 95 + 33 + MIP Max Time with Carry over + 5 + -1 + >=-1 + true + true + 2449 + Maximum time in mixed integer programming algorithm including any unused time carried over + true + + + 467 + 95 + 34 + MIP Hard Stop + 5 + -1 + >=-1 + true + true + 2770 + Hard limit on the mixed integer programming time when using MIP Max Relative Gap and MIP Max Time is a soft limit + true + + + 468 + 95 + 35 + MIP Interrupt + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2802 + If the MIP search can be interrupted by pressing the CTRL-P key combination + true + + + 469 + 95 + 36 + Hint Mode + 0 + 0 + In (0,1,2) + 0;"Start";1;"Hint";2;"Fixed" + true + true + 2772 + Controls how variable hints are used by the solver + true + + + 470 + 95 + 37 + Random Number Seed + 0 + 0 + Between 0 And 2000000000 + true + true + 662 + Random number seed for the solver + true + + + 471 + 95 + 38 + Monitoring Periodic Clearing + 0 + 0 + >=0 + true + true + 2694 + Clear monitored constraints and variables from the formulation periodically (number of steps) + true + + + 472 + 95 + 39 + Monitoring Maximum Threads + 0 + -1 + >=-1 + true + true + 2450 + Maximum number of threads for monitored constraint iterations, where -1 means all available threads. + true + + + 473 + 95 + 40 + Maximum Monitored MIP Iterations + 0 + -1 + true + true + 2045 + Maximum number of monitored row/column iterations with MIP enabled + true + + + 474 + 95 + 41 + Maximum Parallel Tasks + 0 + -1 + >=-1 + true + true + 1918 + Maximum number of parallel optimizations run concurrently, where -1 means one task per CPU. + true + + + 475 + 95 + 42 + Feasibility Repair Failure + 0 + 0 + In (0,1) + 0;"Stop";1;"Continue" + true + true + 1989 + Action to take if an infeasible problem cannot be repaired. + true + + + 476 + 96 + 1 + Clear Existing + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1022 + Clear (delete) existing diagnostic files from the solution folder. + true + + + 477 + 96 + 2 + Task Size + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1023 + Print the size of the optimization task. + true + + + 478 + 96 + 3 + Task Components + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 962 + Print a summary of the formulation elements by class. + true + + + 479 + 96 + 4 + LP Progress + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 391 + Show progress messages from the LP/QP solver + true + + + 480 + 96 + 5 + MIP Progress + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 514 + Show progress messages from the MIP solver + true + + + 481 + 96 + 6 + Solver Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 756 + Print a summary of the solution status, objective function value, etc for each mathematical program solved. + true + + + 482 + 96 + 7 + Summary Exact Conditioning + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2887 + Report exact basis condition number (if available) in the solver summary. + true + + + 483 + 96 + 8 + Solution Status + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1171 + Status of the solution to each mathematical programming problem. + true + + + 484 + 96 + 9 + Times + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1024 + Print the time taken for each activity. + true + + + 485 + 96 + 10 + Sample Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1025 + Print summary for each sample of a multi-sample run. + true + + + 486 + 96 + 11 + Step Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1026 + Print summary for each step of a multi-step run. + true + + + 487 + 96 + 12 + Performance Summary + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1893 + Print performance summary at the completion of each simulation phase. + true + + + 488 + 96 + 13 + Step From + 0 + 1 + >=1 + true + true + 1418 + Limit diagnostic file writing to step numbers starting at this number. + true + + + 489 + 96 + 14 + Step To + 0 + -1 + >=-1 + true + true + 1419 + Limit diagnostic file writing to step numbers ending at this number (-1 means infinity). + true + + + 490 + 96 + 15 + Sample From + 0 + 1 + >=1 + true + true + 1883 + Limit diagnostic file writing to sample numbers starting at this number. + true + + + 491 + 96 + 16 + Sample To + 0 + -1 + >=-1 + true + true + 1884 + Limit diagnostic file writing to sample numbers ending at this number (-1 means infinity). + true + + + 492 + 96 + 17 + LP Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 390 + Write math programs to disk in LP text format + true + + + 493 + 96 + 18 + MPS Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1035 + Write math programs to disk in MPS text format + true + + + 494 + 96 + 19 + Solution Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 754 + Write math program solutions to disk in text format + true + + + 495 + 96 + 20 + Generic Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1033 + Use generic names in math program files + true + + + 496 + 96 + 21 + Binary Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 38 + Write math programs to disk in binary format + true + + + 497 + 96 + 22 + Use Generic Writer + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1895 + Use generic writer for LP and solution files + true + + + 498 + 96 + 23 + Sort Row Column Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1896 + Generic writer will sort row and columns names + true + + + 499 + 96 + 24 + Standardize Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1897 + Generic writer will standardize names in LP and SOL files + true + + + 500 + 96 + 25 + Strip Model Name + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1898 + Generic writer will strip out the Model name from LP and SOL files + true + + + 501 + 96 + 26 + Algebraic + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1899 + Write LP files in algebraic format + true + + + 502 + 96 + 27 + Skip Zero Values + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1900 + Generic writer will print only non-zero valued primal and dual variables in SOL files + true + + + 503 + 96 + 28 + Zero Tolerance LP + 0 + 0 + >=0 + true + true + 1901 + Generic writer zero value tolerance for LP file writing + true + + + 504 + 96 + 29 + Zero Tolerance SOL + 0 + 0 + >=0 + true + true + 1902 + Generic writer zero value tolerance for SOL file writing + true + + + 505 + 96 + 30 + Decimal Places LP + 0 + 6 + >=0 + true + true + 1903 + Generic writer decimal places for LP file writing + true + + + 506 + 96 + 31 + Decimal Places SOL + 0 + 6 + >=0 + true + true + 1904 + Generic writer decimal places for SOL file writing + true + + + 507 + 96 + 32 + Infeasibility LP Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2568 + Write infeasible and repaired math programs to disk in text format + true + + + 508 + 96 + 33 + Infeasibility MPS Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2569 + Write infeasible and repaired math programs to disk in MPS format + true + + + 509 + 96 + 34 + Max Infeasibility Log Lines + 0 + -1 + >=-1 + true + true + 1421 + Maximum number of infeasibility diagnostic lines written to the screen and log file. + true + + + 510 + 96 + 35 + IIS + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2225 + Compute the irreducibly inconsistent set (IIS) for each infeasibility and write to disk in text format + true + + + 511 + 96 + 36 + Feasibility Repair Weight + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1117 + Write the weights used in feasibility repair for each variable/constraint class + true + + + 512 + 96 + 37 + Database Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1922 + Output the database loading process to log file. + true + + + 513 + 96 + 38 + Licensing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1923 + Writes details of licenses checked out + true + + + 514 + 96 + 39 + Computer Information + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1925 + Output computer information. + true + + + 515 + 96 + 40 + Data File Read + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1924 + Output data file information to log file. + true + + + 516 + 96 + 41 + Monitored Iterations Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2046 + Print a summery message after iterations of row/column monitoring + true + + + 517 + 96 + 42 + Monitored Iterations + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2047 + Print messages for every iteration of row/column monitoring + true + + + 518 + 96 + 43 + Bertrand Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 30 + Write diagnostics for the Bertrand pricing algorithm + true + + + 519 + 96 + 44 + Revenue Recovery + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 697 + Write diagnostics for the LRMC recovery algorithm + true + + + 520 + 96 + 45 + Bid-Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 32 + Write diagnostics for RSI bid cost markup calculations + true + + + 521 + 96 + 46 + New Entry + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 554 + Write diagnostics for MT Schedule new entry calculations + true + + + 522 + 96 + 47 + Shift Factors + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 745 + Write the computed shift factors (PTDF) to a diagnostic file + true + + + 523 + 96 + 48 + Unserved Energy + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 825 + Write diagnostics each time USE occurs at a node + true + + + 524 + 96 + 49 + Interruption Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 328 + Write diagnostics for interruption sharing + true + + + 525 + 96 + 50 + Network Traversal + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1944 + Invokes network reduction algorithm which can improve performance on large-scale networks. + true + + + 526 + 96 + 51 + Transmission Topology + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1921 + Write a summary of the transmission topology to the log + true + + + 527 + 96 + 52 + Transmission Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 797 + Write diagnostics for convergence of the quadratic loss method + true + + + 528 + 96 + 53 + Congestion Charges + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 956 + Write diagnostics for Node.[Congestion Charge] calculations + true + + + 529 + 96 + 54 + Marginal Loss Charges + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 957 + Write diagnostics for Node.[Marginal Loss Charge] calculations + true + + + 530 + 96 + 55 + Binding Contingencies + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 958 + Write diagnostics for binding Contingency constraints + true + + + 531 + 96 + 56 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 810 + Write diagnostics for the Rounded Relaxation unit commitment algorithm + true + + + 532 + 96 + 57 + Constraint Decomposition + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 95 + Write diagnostics for constraint decomposition in MT Schedule + true + + + 533 + 96 + 58 + Constraint Rollover + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 98 + Write diagnostics for constraint RHS carry-over in ST Schedule + true + + + 534 + 96 + 59 + Storage Decomposition + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1620 + Write diagnostics for storage decomposition + true + + + 535 + 96 + 60 + Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 804 + Write diagnostics for uplift and Uniform Pricing + true + + + 536 + 96 + 61 + Marginal Unit + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 671 + Execute region marginal unit diagnostic (this is an active diagnostic) + true + + + 537 + 96 + 62 + Marginal Unit Transmission Detail + 0 + 0 + In (0,1) + 0;"Regional";1;"System" + true + true + 1755 + Transmission area for marginal unit diagnostic + true + + + 538 + 96 + 63 + Marginal Unit Increment + 1 + -1 + true + true + 1223 + Increment used for load in the marginal unit diagnostic. + true + + + 539 + 96 + 64 + Marginal Expansion Unit + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1222 + Run algorithm to calculate the marginal generating unit for expansion (LT Plan). + true + + + 540 + 96 + 65 + Marginal Expansion Increment + 1 + 1000 + true + true + 1224 + Increment used for load in the region marginal expansion unit diagnostic. + true + + + 541 + 96 + 66 + Region Supply + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 672 + Execute region supply diagnostic (this is an active diagnostic) + true + + + 542 + 96 + 67 + Annuities + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 15 + Write diagnostics for annuity calculations + true + + + 543 + 96 + 68 + NPV + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1621 + Write diagnostics for LT Plan NPV of optimal plan + true + + + 544 + 96 + 69 + Embedded Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 870 + Write diagnostics for embedded loss iterations + true + + + 545 + 96 + 70 + Outages + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 895 + Write diagnostics for generator and line outages + true + + + 546 + 96 + 71 + Random Number Seed + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 662 + Write out the Random Number Seed used for each Generator and Line + true + + + 547 + 96 + 72 + Interleaved + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1375 + Write diagnostics for Model Interleaved run mode + true + + + 548 + 96 + 73 + Heat Rate + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 260 + Write diagnostics for Generator Heat Rate curve fitting and non-convex corrections. + true + + + 549 + 96 + 74 + Objective Function + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1420 + Write diagnostics for non-zero terms in the objective function. + true + + + 550 + 96 + 75 + Future Cost Function + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1503 + Write diagnostics for the future cost function. + true + + + 551 + 96 + 76 + Historical Sampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1906 + Write the historical samples. + true + + + 552 + 96 + 77 + Scenario Tree + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1681 + Write diagnostics for the scenario tree + true + + + 553 + 96 + 78 + Sample Weights + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1682 + Write diagnostics for the sample weights + true + + + 554 + 96 + 79 + SDDP Convergence + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2434 + Write SDDP convergence diagnostic file + true + + + 555 + 96 + 80 + Sample Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2874 + Write diagnostics for reduced sample periods and periods mapping by sampled chronology. + true + + + 556 + 96 + 81 + ATC Reports + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 3009 + Write ATC min, ATC max, and most limiting elements for ATC to diagnostic files. + true + + + 557 + 96 + 82 + Levelized Company Costs + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 3014 + Write diagnostics for LT Plan Company Levelized Costs + true + + + 558 + 97 + 1 + Report + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1354 + If enabled the list object is passed into the solution file and can be used to build queries in the solution viewer + true + + + 559 + 97 + 2 + Filter + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1355 + If enabled the list object becomes a filter for the input interface. + true + + + 560 + 97 + 3 + Inclusive Empty + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1356 + This means that an empty collection implies all objects are included. + true + + + 561 + 97 + 4 + Transient + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1357 + Transient lists are not saved in the XML but only exist in the current session. + true + + + 6 + 125 + 4 + + + 6 + 137 + 366 + + + 7 + 125 + 4 + + + 7 + 126 + 10 + + + 8 + 145 + 0 + + + 11 + 152 + -1 + + + 11 + 153 + -1 + + + 12 + 160 + 20 + + + 13 + 204 + 10 + + + 17 + 314 + 0 + + + 18 + 322 + 1 + + + 18 + 325 + 230 + + + 18 + 347 + 0 + + + 18 + 348 + 0 + + + 18 + 357 + 230 + + + 1 + 1 + 0 + - + + + 2 + 2 + 0 + - + + + 3 + 3 + 0 + - + + + 4 + 4 + 0 + - + + + 5 + 5 + 0 + - + + + 6 + 6 + 0 + - + + + 7 + 7 + 0 + - + + + 8 + 8 + 0 + - + + + 9 + 9 + 0 + - + + + 10 + 10 + 0 + - + + + 11 + 11 + 0 + - + + + 12 + 12 + 0 + - + + + 13 + 13 + 0 + - + + + 14 + 14 + 0 + - + + + 15 + 15 + 0 + - + + + 16 + 16 + 0 + - + + + 17 + 17 + 0 + - + + + 18 + 18 + 0 + - + + + 19 + 19 + 0 + - + + + 20 + 20 + 0 + - + + + 21 + 21 + 0 + - + + + 22 + 22 + 0 + - + + + 23 + 23 + 0 + - + + + 24 + 24 + 0 + - + + + 25 + 25 + 0 + - + + + 26 + 26 + 0 + - + + + 27 + 27 + 0 + - + + + 28 + 28 + 0 + - + + + 29 + 29 + 0 + - + + + 30 + 30 + 0 + - + + + 31 + 31 + 0 + - + + + 32 + 32 + 0 + - + + + 33 + 33 + 0 + - + + + 34 + 34 + 0 + - + + + 35 + 35 + 0 + - + + + 36 + 36 + 0 + - + + + 37 + 37 + 0 + - + + + 38 + 38 + 0 + - + + + 39 + 39 + 0 + - + + + 40 + 40 + 0 + - + + + 41 + 41 + 0 + - + + + 42 + 42 + 0 + - + + + 43 + 43 + 0 + - + + + 44 + 44 + 0 + - + + + 45 + 45 + 0 + - + + + 46 + 46 + 0 + - + + + 47 + 47 + 0 + - + + + 48 + 48 + 0 + - + + + 49 + 49 + 0 + - + + + 50 + 50 + 0 + - + + + 51 + 51 + 0 + - + + + 52 + 52 + 0 + - + + + 53 + 53 + 0 + - + + + 54 + 54 + 0 + - + + + 55 + 55 + 0 + - + + + 56 + 56 + 0 + - + + + 57 + 57 + 0 + - + + + 58 + 58 + 0 + - + + + 59 + 59 + 0 + - + + + 60 + 60 + 0 + - + + + 61 + 61 + 0 + - + + + 62 + 62 + 0 + - + + + 63 + 63 + 0 + - + + + 64 + 64 + 0 + - + + + 65 + 65 + 0 + - + + + 66 + 66 + 0 + - + + + 67 + 67 + 0 + - + + + 68 + 68 + 0 + - + + + 69 + 69 + 0 + - + + + 70 + 70 + 0 + - + + + 71 + 71 + 0 + - + + + 72 + 72 + 0 + - + + + 73 + 73 + 0 + - + + + 74 + 74 + 0 + - + + + 75 + 75 + 0 + - + + + 76 + 76 + 0 + - + + + 77 + 77 + 0 + - + + + 78 + 78 + 0 + - + + + 79 + 79 + 0 + - + + + 80 + 80 + 0 + - + + + 81 + 81 + 0 + - + + + 82 + 82 + 0 + - + + + 83 + 83 + 0 + - + + + 84 + 84 + 0 + - + + + 85 + 85 + 0 + - + + + 86 + 86 + 0 + - + + + 87 + 87 + 0 + - + + + 88 + 88 + 0 + - + + + 89 + 89 + 0 + - + + + 90 + 90 + 0 + - + + + 91 + 91 + 0 + - + + + 92 + 92 + 0 + - + + + 93 + 93 + 0 + - + + + 94 + 94 + 0 + - + + + 95 + 95 + 0 + - + + + 96 + 96 + 0 + - + + + 97 + 97 + 0 + - + + + 98 + 98 + 0 + - + + + 1 + System + 1 + true + 1 + The integrated energy system + + + 2 + Generator + 2 + true + 22 + Generating unit, or collection of like generating units + + + 3 + Power Station + 2 + false + 23 + Collection of Generators that can be dispatched together + + + 4 + Fuel + 2 + true + 18 + Fuel for a thermal generating unit + + + 5 + Fuel Contract + 2 + false + 24 + Fuel contract + + + 6 + Power2X + 2 + false + 115 + Facility to convert electric power to hydrogen and then gas or other products + + + 7 + Battery + 2 + false + 61 + Battery energy storage system + + + 8 + Battery Station + 2 + false + 134 + Collection of Batteries that can be dispatched together + + + 9 + Storage + 2 + false + 19 + Storage reservoir, head-pond, or tail-pond + + + 10 + Waterway + 2 + false + 20 + Waterway for representing rivers, canals, and spillways + + + 11 + Emission + 2 + false + 21 + Class of generator emission (e.g. NoX, SoX, CO2, etc) + + + 12 + Abatement + 2 + false + 55 + Emission abatement technology + + + 13 + Physical Contract + 2 + false + 25 + Physical contract (import, export, or wheel) + + + 14 + Purchaser + 2 + false + 26 + Demand + + + 15 + Reserve + 2 + false + 16 + Ancillary service + + + 16 + Reliability + 2 + false + 116 + Reliability group + + + 17 + Financial Contract + 2 + false + 4 + Financial contract (e.g. CfD, swap, cap, etc) + + + 18 + Cournot + 2 + false + 6 + Nash-Cournot game + + + 19 + RSI + 2 + false + 7 + Residual supply index analysis + + + 20 + Firm Capacity Group + 2 + false + 133 + Group of Generators and Batteries for which a dynamic firm capacity is modeled + + + 21 + Region + 3 + true + 8 + Transmission region/area + + + 22 + Pool + 3 + false + 75 + Set of transmission regions in a pool + + + 23 + Zone + 3 + true + 9 + Set of transmission buses in a zone + + + 24 + Node + 3 + true + 10 + Transmission node/bus + + + 25 + Load + 3 + false + 121 + Electricity Load + + + 26 + Line + 3 + true + 11 + Transmission line (AC, DC, or notional/entrepreneurial interconnector) + + + 27 + MLF + 3 + false + 12 + Marginal loss factor equation + + + 28 + Transformer + 3 + false + 13 + Voltage transformer + + + 29 + Flow Control + 3 + false + 14 + Flow control + + + 30 + Interface + 3 + false + 15 + Transmission interface + + + 31 + Contingency + 3 + false + 17 + A contingency for use in security constrained economic dispatch + + + 32 + Hub + 3 + false + 59 + A collection of nodes representing a pricing area + + + 33 + Transmission Right + 3 + false + 5 + Transmission right (FTR, SRA) + + + 34 + Heat Plant + 4 + false + 72 + Heat production plant + + + 35 + Heat Node + 4 + false + 73 + Heat connection point + + + 36 + Heat Storage + 4 + false + 118 + Storage where thermal energy can be stored and withdrawn + + + 37 + Gas Field + 5 + false + 49 + Field from which gas is extracted + + + 38 + Gas Plant + 5 + false + 70 + Gas processing plant e.g. converting raw natural gas to pipeline quality + + + 39 + Gas Pipeline + 5 + false + 51 + Pipeline for transporting gas + + + 40 + Gas Node + 5 + false + 52 + Connection point in gas network + + + 41 + Gas Storage + 5 + false + 50 + Storage where gas can be injected and extracted + + + 42 + Gas Demand + 5 + false + 53 + Demand for gas + + + 43 + Gas DSM Program + 5 + false + 109 + Demand side management programs + + + 44 + Gas Basin + 5 + false + 60 + Collection of gas fields in a common basin + + + 45 + Gas Zone + 5 + false + 56 + Set of gas nodes + + + 46 + Gas Contract + 5 + false + 69 + Gas contract + + + 47 + Gas Transport + 5 + false + 71 + Gas shipment + + + 48 + Gas Path + 5 + false + 132 + Gas shipment path + + + 49 + Gas Capacity Release Offer + 5 + false + 110 + The release of available pipeline or storage capacity to another party. + + + 50 + Water Plant + 6 + false + 63 + Water production plant e.g. desalination plant + + + 51 + Water Pipeline + 6 + false + 65 + Water network pipeline + + + 52 + Water Node + 6 + false + 66 + Water network node + + + 53 + Water Storage + 6 + false + 64 + Water storage tank + + + 54 + Water Demand + 6 + false + 67 + Demand for water + + + 55 + Water Zone + 6 + false + 68 + Set of water network nodes + + + 56 + Water Pump Station + 6 + false + 119 + Collection of Pumps that can be dispatched together + + + 57 + Water Pump + 6 + false + 120 + Device to move water upstream using electrical energy + + + 58 + Vehicle + 7 + false + 112 + An electric vehicle (EV, PHEV, etc) + + + 59 + Charging Station + 7 + false + 113 + An electric vehicle charging station + + + 60 + Fleet + 7 + false + 114 + A fleet of vehicles + + + 61 + Company + 8 + false + 2 + Energy utility or other ownership entity + + + 62 + Commodity + 9 + false + 122 + A commodity that can be produced, consumed, stored, transformed, traded, priced and constrained + + + 63 + Process + 9 + false + 123 + A process that transforms one or more input commodities to one or more output commodities + + + 64 + Facility + 9 + false + 124 + A facility that performs one or more processes + + + 65 + Maintenance + 9 + false + 62 + A class of maintenance events to be optimally placed in time + + + 66 + Flow Network + 9 + false + 126 + A network that flows a Commodity + + + 67 + Flow Node + 9 + false + 127 + A node in a flow network + + + 68 + Flow Path + 9 + false + 128 + A path in a flow network + + + 69 + Flow Storage + 9 + false + 129 + A storage located at a Flow Node + + + 70 + Entity + 9 + false + 125 + Ownership and/or strategic entity + + + 71 + Market + 9 + false + 3 + A market that can supply and/or demand a Commodity + + + 72 + Constraint + 10 + false + 27 + Generic constraint + + + 73 + Objective + 10 + false + 111 + Generic objective function + + + 74 + Decision Variable + 10 + false + 57 + Generic decision variable + + + 75 + Nonlinear Constraint + 10 + false + 117 + Generic non-linear constraint + + + 76 + Data File + 11 + true + 29 + Reference to an external text file + + + 77 + Variable + 11 + false + 31 + Stochastic variable + + + 78 + Timeslice + 11 + false + 34 + Timeslice for applying to data and/or reporting + + + 79 + Global + 11 + false + 58 + Data that are global to the simulation + + + 80 + Scenario + 11 + true + 35 + Data scenario + + + 81 + Weather Station + 11 + false + 76 + Collection of all weather events related to local station + + + 82 + Model + 12 + true + 36 + Collection of data scenarios that define a model to be evaluated + + + 83 + Project + 12 + true + 37 + Collection of models saved into single project database + + + 84 + Horizon + 13 + true + 32 + Simulation horizon + + + 85 + Report + 13 + true + 33 + Set of report selections + + + 86 + Stochastic + 14 + true + 46 + Stochastic settings + + + 87 + Preview + 13 + true + 131 + Preview of the input data used + + + 88 + LT Plan + 13 + true + 38 + LT Plan simulation phase + + + 89 + PASA + 13 + true + 39 + PASA simulation phase + + + 90 + MT Schedule + 13 + true + 40 + MT Schedule simulation phase + + + 91 + ST Schedule + 13 + true + 41 + ST Schedule simulation phase + + + 92 + Transmission + 14 + true + 43 + Transmission settings + + + 93 + Production + 14 + true + 44 + Production settings + + + 94 + Competition + 14 + true + 45 + Competition settings + + + 95 + Performance + 14 + true + 47 + Performance settings + + + 96 + Diagnostic + 14 + true + 48 + Diagnostic settings + + + 97 + List + 15 + true + 54 + Generic list of objects + + + 98 + Layout + 15 + true + 130 + A graphical layout + + + 1 + - + 0 + + + 2 + Electric + 1 + + + 3 + Transmission + 2 + + + 4 + Heat + 14 + + + 5 + Gas + 10 + + + 6 + Water + 11 + + + 7 + Transport + 15 + + + 8 + Ownership + 3 + + + 9 + Universal + 16 + + + 10 + Generic + 4 + + + 11 + Data + 5 + + + 12 + Execute + 6 + + + 13 + Simulation + 7 + + + 14 + Settings + 8 + + + 15 + List + 13 + + + 1 + 1 + 2 + Generators + 0 + -1 + true + true + 36 + Generator objects + 1 + + + 2 + 2 + 2 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Generator inherits from + Generator objects inheriting from this template + 2 + + + 3 + 97 + 2 + Generators + 0 + -1 + Lists + 0 + -1 + true + true + 36 + set of Generator objects in the List + set of Lists containing the Generator + 3 + + + 4 + 2 + 2 + Heat Input + 0 + -1 + Heat Output + 0 + -1 + false + false + 40 + set of generators that provide heat input to the generator + generator that receives the waste heat from this generator + 4 + + + 5 + 2 + 2 + Transition + 0 + -1 + false + false + 218 + set of generators that can transition + 5 + + + 6 + 2 + 3 + Power Station + 0 + -1 + Generators + 0 + -1 + true + false + 76 + power station the generator belongs to + power station the generator is aggregated in to + 6 + + + 7 + 2 + 4 + Fuels + 0 + -1 + Generators + 0 + -1 + true + false + 31 + set of fuels used by the generator + set of generators that use the fuel + 7 + + + 8 + 2 + 4 + Start Fuels + 0 + -1 + Generators Started + 0 + -1 + true + false + 92 + fuels available for starting units + set of generators that use the fuel to start + 8 + + + 9 + 2 + 6 + Source Power2X + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 293 + 9 + + + 10 + 2 + 9 + Head Storage + 0 + 1 + Exporting Generators + 0 + -1 + true + false + 38 + head storage for the generator + set of generators that draw water from the storage + 10 + + + 11 + 2 + 9 + Tail Storage + 0 + 1 + Importing Generators + 0 + -1 + true + false + 97 + tail storage for the generator + set of generators that release water into the storage + 11 + + + 12 + 2 + 24 + Nodes + 1 + -1 + Generators + 0 + -1 + true + false + 70 + set of nodes the generator injects energy at + set of generators injecting at the node + 12 + + + 13 + 2 + 24 + Nodes* + 0 + -1 + Generators* + 0 + -1 + false + true + 178 + creates copies of the generator at each node in this collection + create copies of these generators and place at this node + 13 + + + 14 + 2 + 35 + Heat Input Nodes + 0 + -1 + Generators Supplied + 0 + -1 + true + false + 223 + set of heat nodes supplying heat to the generator + set of generators supplied by the node + 14 + + + 15 + 2 + 35 + Heat Output Nodes + 0 + -1 + Supplying Generators + 0 + -1 + true + false + 224 + set of heat nodes collecting waste heat from the generator + set of generators supplying waste heat to the node + 15 + + + 16 + 2 + 37 + Source Gas Fields + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 289 + 16 + + + 17 + 2 + 38 + Source Gas Plants + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 292 + 17 + + + 18 + 2 + 40 + Gas Node + 0 + -1 + Generators + 0 + -1 + true + false + 117 + set of gas nodes connected to the generator + set of generators connected to the gas node + 18 + + + 19 + 2 + 40 + Start Gas Nodes + 0 + -1 + Generators Started + 0 + -1 + true + false + 304 + set of gas nodes available for starting units + set of generators connected to the gas node + 19 + + + 20 + 2 + 41 + Source Gas Storages + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 290 + 20 + + + 21 + 2 + 46 + Source Gas Contracts + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 291 + 21 + + + 22 + 2 + 47 + Source Gas Transports + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 299 + 22 + + + 23 + 2 + 52 + Water Node + 0 + 1 + Generators + 0 + -1 + true + false + 200 + Water Node the Generator connects to + set of Generators connected to the Water Node + 23 + + + 24 + 2 + 61 + Companies + 0 + -1 + Generators + 0 + -1 + true + false + 9 + set of companies that own the generator + set of generators the company owns + 24 + + + 25 + 2 + 62 + Commodities Consumed + 0 + -1 + Consuming Generators + 0 + -1 + true + false + 274 + set of Commodities consumed by the Generator + set of Generators that consume the Commodity + 25 + + + 26 + 2 + 62 + Commodities Produced + 0 + -1 + Producing Generators + 0 + -1 + true + false + 275 + set of Commodities produced by the Generator + set of Generators that produce the Commodity + 26 + + + 27 + 2 + 65 + Maintenances + 0 + -1 + Generators + 0 + -1 + true + false + 179 + set of maintenance events on the generator + set of generators taken out on maintenance + 27 + + + 28 + 2 + 67 + Flow Nodes + 0 + -1 + Generators + 0 + -1 + true + false + 279 + set of Flow Nodes the Generator connects to + set of Generators connected to the Flow Node + 28 + + + 29 + 2 + 71 + Capacity Markets + 0 + -1 + Capacity Generators + 0 + -1 + true + true + 4 + set of capacity markets the generator sells into + set of generators that sell capacity into the market + 29 + + + 30 + 2 + 71 + Heat Markets + 0 + -1 + Heat Generators + 0 + -1 + true + true + 286 + set of markets the generator sell heat-based products into + set of generators providing heat-based products to the market + 30 + + + 31 + 2 + 71 + Mark-to-Markets + 0 + -1 + Generators + 0 + -1 + false + false + 228 + market used to mark-to-market energy and reserves + generators using this market to mark-to-market + 31 + + + 32 + 2 + 72 + Constraints + 0 + -1 + Generators + 0 + -1 + true + true + 12 + set of Constraints on the Generator + set of Generators in the Constraint + 32 + + + 33 + 2 + 73 + Objectives + 0 + -1 + Generators + 0 + -1 + true + true + 240 + set of Objectives on the Generator + set of Generators in the Objective + 33 + + + 34 + 2 + 74 + Decision Variables + 0 + -1 + Generators + 0 + -1 + true + true + 166 + set of generators whose equations include the decision variable + Decision Variables included in the Generator formulation + 34 + + + 35 + 2 + 77 + Conditions + 0 + -1 + Generators + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Generator + set of Generator objects that define when the Variable is active + 35 + + + 36 + 1 + 3 + Power Stations + 0 + -1 + true + true + 77 + Power Station objects + 36 + + + 37 + 3 + 3 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Power Station inherits from + Power Station objects inheriting from this template + 37 + + + 38 + 97 + 3 + Power Stations + 0 + -1 + Lists + 0 + -1 + true + true + 77 + set of Power Station objects in the List + set of Lists containing the Power Station + 38 + + + 39 + 3 + 24 + Nodes + 0 + -1 + true + false + 70 + (optional) set of nodes the power station injects at + 39 + + + 40 + 1 + 4 + Fuels + 0 + -1 + true + true + 31 + Fuel objects + 40 + + + 41 + 4 + 4 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fuel inherits from + Fuel objects inheriting from this template + 41 + + + 42 + 97 + 4 + Fuels + 0 + -1 + Lists + 0 + -1 + true + true + 31 + set of Fuel objects in the List + set of Lists containing the Fuel + 42 + + + 43 + 4 + 6 + Source Power2X + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 293 + 43 + + + 44 + 4 + 37 + Source Gas Fields + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 289 + 44 + + + 45 + 4 + 38 + Source Gas Plants + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 292 + 45 + + + 46 + 4 + 40 + Gas Nodes + 0 + -1 + Fuels + 0 + -1 + true + false + 115 + set of gas nodes the fuel is delivered through + set of fuels delivered from the gas node + 46 + + + 47 + 4 + 41 + Source Gas Storages + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 290 + 47 + + + 48 + 4 + 46 + Source Gas Contracts + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 291 + 48 + + + 49 + 4 + 47 + Source Gas Transports + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 299 + 49 + + + 50 + 4 + 61 + Companies + 0 + -1 + Fuels + 0 + -1 + true + false + 9 + set of companies that own the fuel + set of fuels the company owns + 50 + + + 51 + 4 + 64 + Facilities + 0 + -1 + Fuels + 0 + -1 + true + true + 267 + set of Facilities that consume the Fuel + set of Fuels the Facility consumes + 51 + + + 52 + 4 + 67 + Flow Nodes + 0 + -1 + Fuels + 0 + -1 + true + false + 279 + set of Flow Nodes the Fuel connects to + set of Fuels connected to the Flow Node + 52 + + + 53 + 4 + 71 + Markets + 0 + -1 + Fuels + 0 + -1 + true + false + 61 + set of markets the fuel is bought/sold from/to + set of fuels in the market + 53 + + + 54 + 4 + 72 + Constraints + 0 + -1 + Fuels + 0 + -1 + true + true + 12 + set of Constraints on the Fuel + set of Fuels in the Constraint + 54 + + + 55 + 4 + 73 + Objectives + 0 + -1 + Fuels + 0 + -1 + true + true + 240 + set of Objectives on the Fuel + set of Fuels in the Objective + 55 + + + 56 + 4 + 77 + Conditions + 0 + -1 + Fuels + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Fuel + set of Fuel objects that define when the Variable is active + 56 + + + 57 + 1 + 5 + Fuel Contracts + 0 + -1 + true + true + 30 + Fuel Contract objects + 57 + + + 58 + 5 + 5 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fuel Contract inherits from + Fuel Contract objects inheriting from this template + 58 + + + 59 + 97 + 5 + Fuel Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 30 + set of Fuel Contract objects in the List + set of Lists containing the Fuel Contract + 59 + + + 60 + 5 + 2 + Generators + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 36 + set of generators whose fuel use is subject to the contract + set of fuel contracts associated with supply to the generator + 60 + + + 61 + 5 + 4 + Fuel + 1 + 1 + Fuel Contracts + 0 + -1 + true + false + 29 + fuel in the contract + set of fuel contracts on the fuel + 61 + + + 62 + 5 + 61 + Companies + 0 + -1 + Fuel Contracts + 0 + -1 + true + false + 9 + set of companies that own the fuel contract + set of fuel contracts owned by the company + 62 + + + 63 + 5 + 72 + Constraints + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Fuel Contract + set of Fuel Contracts in the Constraint + 63 + + + 64 + 5 + 73 + Objectives + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Fuel Contract + set of Fuel Contracts in the Objective + 64 + + + 65 + 1 + 6 + Power2X + 0 + -1 + true + true + 244 + Power2X objects + 65 + + + 66 + 6 + 6 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Power2X inherits from + Power2X objects inheriting from this template + 66 + + + 67 + 97 + 6 + Power2X + 0 + -1 + Lists + 0 + -1 + true + true + 244 + set of Power2X objects in the List + set of Lists containing the Power2X + 67 + + + 68 + 6 + 4 + Fuels + 0 + 1 + Power2X + 0 + -1 + true + false + 31 + The set of fuels produced by the facility + The set of Power2X facilities that produce the fuel + 68 + + + 69 + 6 + 24 + Nodes + 1 + -1 + Power2X + 0 + -1 + true + false + 70 + The set of electric nodes the facility draws load from + The set of Power2X facilities at the node + 69 + + + 70 + 6 + 35 + Heat Nodes + 0 + -1 + Power2X + 0 + 1 + true + true + 220 + The set of heat nodes the facility supplies + The Power2X facility at the heat node + 70 + + + 71 + 6 + 36 + Heat Storages + 0 + -1 + Power2X + 0 + 1 + true + true + 253 + The set of Heat Storages connected to Power2X + The Power2X facility that is connected to Heat Storage + 71 + + + 72 + 6 + 40 + Gas Nodes + 0 + -1 + Power2X + 0 + -1 + true + true + 115 + The set of gas nodes the facility supplies + The Power2X facility at the gas node + 72 + + + 73 + 6 + 41 + Gas Storages + 0 + -1 + Power2X + 0 + 1 + true + true + 113 + The set of Gas Storages connected to Power2X + The Power2X facility connected to Gas Storage + 73 + + + 74 + 6 + 52 + Water Nodes + 0 + -1 + Power2X + 0 + 1 + true + true + 191 + The set of water nodes the facility draws water from + The Power2X facility at the water node + 74 + + + 75 + 6 + 61 + Companies + 0 + -1 + Power2X + 0 + -1 + true + false + 9 + set of companies that own the Power2X + set of Power2X the company owns + 75 + + + 76 + 6 + 62 + Commodities + 0 + -1 + Power2X + 0 + -1 + true + false + 260 + set of Commodities produced by the Power2X facility + The set of Power2X facilities that produce the Commodity + 76 + + + 77 + 6 + 67 + Flow Nodes + 0 + -1 + Power2X + 0 + -1 + true + false + 279 + set of Flow Nodes the Power2X connects to + set of Power2X objects connected to the Flow Node + 77 + + + 78 + 6 + 72 + Constraints + 0 + -1 + Power2X + 0 + -1 + true + true + 12 + set of Constraints on the Power2X + set of Power2X in the Constraint + 78 + + + 79 + 6 + 73 + Objectives + 0 + -1 + Power2X + 0 + -1 + true + true + 240 + set of Objectives on the Power2X + set of Power2X in the Objective + 79 + + + 80 + 6 + 77 + Conditions + 0 + -1 + Power2X + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Power2X object + set of Power2X objects that define when the Variable is active + 80 + + + 81 + 1 + 7 + Batteries + 0 + -1 + true + true + 176 + Battery objects + 81 + + + 82 + 7 + 7 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Battery inherits from + Battery objects inheriting from this template + 82 + + + 83 + 97 + 7 + Batteries + 0 + -1 + Lists + 0 + -1 + true + true + 176 + set of Battery objects in the List + set of Lists containing the Battery + 83 + + + 84 + 7 + 8 + Battery Station + 0 + -1 + Batteries + 0 + -1 + true + false + 318 + battery station the battery belongs to + battery station the battery is aggregated in to + 84 + + + 85 + 7 + 24 + Nodes + 1 + -1 + Batteries + 0 + -1 + true + false + 70 + set of nodes the battery is connected to + set of batteries connected to the node + 85 + + + 86 + 7 + 24 + Nodes* + 0 + -1 + Batteries* + 0 + -1 + false + true + 178 + creates copies of the battery at each node in this collection + create copies of these batteries and place at this node + 86 + + + 87 + 7 + 61 + Companies + 0 + -1 + Batteries + 0 + -1 + true + false + 9 + set of companies that own the battery + set of batteries the company owns + 87 + + + 88 + 7 + 62 + Commodities Consumed + 0 + -1 + Consuming Batteries + 0 + -1 + true + false + 274 + set of Commodities consumed by the Battery + set of Batteries that consume the Commodity + 88 + + + 89 + 7 + 62 + Commodities Produced + 0 + -1 + Producing Batteries + 0 + -1 + true + false + 275 + set of Commodities produced by the Battery + set of Batteries that produce the Commodity + 89 + + + 90 + 7 + 67 + Flow Nodes + 0 + -1 + Batteries + 0 + -1 + true + false + 279 + set of Flow Nodes the Battery connects to + set of Batteries connected to the Flow Node + 90 + + + 91 + 7 + 71 + Capacity Markets + 0 + -1 + Capacity Batteries + 0 + -1 + true + true + 4 + set of capacity markets the battery sells into + set of batteries that sell capacity into the market + 91 + + + 92 + 7 + 72 + Constraints + 0 + -1 + Batteries + 0 + -1 + true + true + 12 + set of Constraints on the Battery + set of Batteries in the Constraint + 92 + + + 93 + 7 + 73 + Objectives + 0 + -1 + Batteries + 0 + -1 + true + true + 240 + set of Objectives on the Battery + set of Batteries in the Objective + 93 + + + 94 + 7 + 77 + Conditions + 0 + -1 + Batteries + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Battery + set of Battery objects that define when the Variable is active + 94 + + + 95 + 1 + 8 + Battery Stations + 0 + -1 + true + true + 319 + Battery Station objects + 95 + + + 96 + 8 + 8 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Battery Station inherits from + Battery Station objects inheriting from this template + 96 + + + 97 + 97 + 8 + Battery Stations + 0 + -1 + Lists + 0 + -1 + true + true + 319 + set of Battery Station objects in the List + set of Lists containing the Battery Station + 97 + + + 98 + 8 + 24 + Nodes + 0 + -1 + true + false + 70 + (optional) set of nodes the battery station injects at + 98 + + + 99 + 1 + 9 + Storages + 0 + -1 + true + true + 96 + Storage objects + 99 + + + 100 + 9 + 9 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Storage inherits from + Storage objects inheriting from this template + 100 + + + 101 + 97 + 9 + Storages + 0 + -1 + Lists + 0 + -1 + true + true + 96 + set of Storage objects in the List + set of Lists containing the Storage + 101 + + + 102 + 9 + 52 + Water Nodes + 0 + -1 + Storages + 0 + 1 + true + false + 191 + water nodes the water storage connects to + water storage the water nodes connect to + 102 + + + 103 + 9 + 72 + Constraints + 0 + -1 + Storages + 0 + -1 + true + true + 12 + set of Constraints on the Storage + set of Storages in the Constraint + 103 + + + 104 + 9 + 73 + Objectives + 0 + -1 + Storages + 0 + -1 + true + true + 240 + set of Objectives on the Storage + set of Storages in the Objective + 104 + + + 105 + 9 + 77 + Conditions + 0 + -1 + Storages + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Storage + set of Storage objects that define when the Variable is active + 105 + + + 106 + 9 + 79 + Globals + 0 + -1 + Storages + 0 + -1 + true + true + 167 + set of Globals defining data for the Storage + set of Storage objects defining Global data + 106 + + + 107 + 1 + 10 + Waterways + 0 + -1 + true + true + 104 + Waterway objects + 107 + + + 108 + 10 + 10 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Waterway inherits from + Waterway objects inheriting from this template + 108 + + + 109 + 97 + 10 + Waterways + 0 + -1 + Lists + 0 + -1 + true + true + 104 + set of Waterway objects in the List + set of Lists containing the Waterway + 109 + + + 110 + 10 + 9 + Storage From + 0 + 1 + Exporting Waterways + 0 + -1 + true + false + 94 + storage the waterway takes water from + set of exporting waterways + 110 + + + 111 + 10 + 9 + Storage To + 0 + 1 + Importing Waterways + 0 + -1 + true + false + 95 + storage the waterway takes water to + set of importing waterways + 111 + + + 112 + 10 + 72 + Constraints + 0 + -1 + Waterways + 0 + -1 + true + true + 12 + set of Constraints on the Waterway + set of Waterways in the Constraint + 112 + + + 113 + 10 + 73 + Objectives + 0 + -1 + Waterways + 0 + -1 + true + true + 240 + set of Objectives on the Waterway + set of Waterways in the Objective + 113 + + + 114 + 1 + 11 + Emissions + 0 + -1 + true + true + 20 + Emission objects + 114 + + + 115 + 11 + 11 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Emission inherits from + Emission objects inheriting from this template + 115 + + + 116 + 97 + 11 + Emissions + 0 + -1 + Lists + 0 + -1 + true + true + 20 + set of Emission objects in the List + set of Lists containing the Emission + 116 + + + 117 + 11 + 2 + Generators + 0 + -1 + Emissions + 0 + -1 + true + true + 36 + set of generators that produce the emission + set of emissions produced by the generator + 117 + + + 118 + 11 + 4 + Fuels + 0 + -1 + Emissions + 0 + -1 + true + true + 31 + set of fuels that produce the emission + set of emissions produced by the fuel + 118 + + + 119 + 11 + 6 + Power2X + 0 + -1 + Emissions + 0 + -1 + true + true + 244 + set of Power2X objects that produce the Emission + set of Emissions produced by the Power2X object + 119 + + + 120 + 11 + 37 + Gas Fields + 0 + -1 + Emissions + 0 + -1 + true + true + 112 + set of Gas Fields that produce the Emission + set of Emissions produced by the Gas Field + 120 + + + 121 + 11 + 38 + Gas Plants + 0 + -1 + Emissions + 0 + -1 + true + true + 210 + set of Gas Plants that produce the Emission + set of Emissions produced by the Gas Plant + 121 + + + 122 + 11 + 40 + Gas Nodes + 0 + -1 + Emissions + 0 + -1 + true + true + 115 + set of gas nodes that produce the emission + set of emissions produced by the gas node + 122 + + + 123 + 11 + 42 + Gas Demands + 0 + -1 + Emissions + 0 + -1 + true + true + 116 + set of Gas Demands that produce the Emission + set of Emissions produced by the Gas Demand + 123 + + + 124 + 11 + 46 + Gas Contracts + 0 + -1 + Emissions + 0 + -1 + true + true + 207 + set of Gas Contracts that produce the Emission + set of Emissions produced by the Gas Contract + 124 + + + 125 + 11 + 47 + Gas Transports + 0 + -1 + Emissions + 0 + -1 + true + true + 211 + set of Gas Transports that produce the Emission + set of Emissions produced by the Gas Transport + 125 + + + 126 + 11 + 50 + Water Plants + 0 + -1 + Emissions + 0 + -1 + true + true + 188 + set of Water Plants that produce the Emission + set of Emissions produced by the Water Plant + 126 + + + 127 + 11 + 58 + Vehicles + 0 + -1 + Emissions + 0 + -1 + true + true + 241 + set of Vehicles that produce the Emission + set of Emissions produced by the Vehicle + 127 + + + 128 + 11 + 62 + Commodities + 0 + -1 + Emissions + 0 + -1 + true + true + 260 + set of Commodities co-produced with the Emission + set of Emissions co-producing the Commodity + 128 + + + 129 + 11 + 64 + Facilities + 0 + -1 + Emissions + 0 + -1 + true + true + 267 + set of Facilities that produce or remove the Emission + set of Emissions the Facility produces + 129 + + + 130 + 11 + 71 + Markets + 0 + -1 + Emissions + 0 + -1 + true + false + 61 + set of markets the emission is bought/sold from/to + set of emissions in the market + 130 + + + 131 + 11 + 72 + Constraints + 0 + -1 + Emissions + 0 + -1 + true + true + 12 + set of Constraints on the Emission + set of Emissions in the Constraint + 131 + + + 132 + 11 + 73 + Objectives + 0 + -1 + Emissions + 0 + -1 + true + true + 240 + set of Objectives on the Emission + set of Emissions in the Objective + 132 + + + 133 + 1 + 12 + Abatements + 0 + -1 + true + true + 157 + Abatement objects + 133 + + + 134 + 12 + 12 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Abatement inherits from + Abatement objects inheriting from this template + 134 + + + 135 + 97 + 12 + Abatements + 0 + -1 + Lists + 0 + -1 + true + true + 157 + set of Abatement objects in the List + set of Lists containing the Abatement + 135 + + + 136 + 12 + 2 + Generators + 0 + -1 + Abatements + 0 + -1 + true + true + 36 + set of generators the abatement technology is connected to + set of abatements connected to the generator + 136 + + + 137 + 12 + 4 + Consumables + 0 + -1 + Abatements + 0 + -1 + true + true + 158 + set of consumables that are used by the abatement technology + set of abatements that consume the fuel + 137 + + + 138 + 12 + 11 + Emissions + 0 + -1 + Abatements + 0 + -1 + true + true + 20 + set of emissions that are removed by this abatement technology + set of abatements applied to the emission + 138 + + + 139 + 12 + 37 + Gas Fields + 0 + -1 + Abatements + 0 + -1 + true + true + 112 + set of gas fields the abatement technology is connected to + set of abatements connected to the gas field + 139 + + + 140 + 12 + 38 + Gas Plants + 0 + -1 + Abatements + 0 + -1 + true + true + 210 + set of gas plants the abatement technology is connected to + set of abatements connected to the gas plant + 140 + + + 141 + 12 + 40 + Gas Nodes + 0 + -1 + Abatements + 0 + -1 + true + true + 115 + set of gas nodes the abatement technology is connected to + set of abatements connected to the gas node + 141 + + + 142 + 12 + 42 + Gas Demands + 0 + -1 + Abatements + 0 + -1 + true + true + 116 + set of gas demands the abatement technology is connected to + set of abatements connected to the gas demand + 142 + + + 143 + 12 + 46 + Gas Contracts + 0 + -1 + Abatements + 0 + -1 + true + true + 207 + set of gas contracts the abatement technology is connected to + set of abatements connected to the gas contract + 143 + + + 144 + 12 + 72 + Constraints + 0 + -1 + Abatements + 0 + -1 + true + true + 12 + set of Constraints on the Abatement + set of Abatements in the Constraint + 144 + + + 145 + 12 + 73 + Objectives + 0 + -1 + Abatements + 0 + -1 + true + true + 240 + set of Objectives on the Abatement + set of Abatements in the Objective + 145 + + + 146 + 1 + 13 + Physical Contracts + 0 + -1 + true + true + 75 + Physical Contract objects + 146 + + + 147 + 13 + 13 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Physical Contract inherits from + Physical Contract objects inheriting from this template + 147 + + + 148 + 97 + 13 + Physical Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 75 + set of Physical Contract objects in the List + set of Lists containing the Physical Contract + 148 + + + 149 + 13 + 24 + Generation Node + 0 + 1 + Generation Contracts + 0 + -1 + true + false + 34 + node for generation in the contract + set of generation contracts at the node + 149 + + + 150 + 13 + 24 + Load Node + 0 + 1 + Load Contracts + 0 + -1 + true + false + 59 + node for load in the contract + set of load contracts at the node + 150 + + + 151 + 13 + 61 + Companies + 0 + -1 + Physical Contracts + 0 + -1 + true + false + 9 + set of companies that own the physical contract + set of physical contracts owned by the company + 151 + + + 152 + 13 + 72 + Constraints + 0 + -1 + Physical Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Physical Contract + set of Physical Contracts in the Constraint + 152 + + + 153 + 13 + 73 + Objectives + 0 + -1 + Physical Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Physical Contract + set of Physical Contracts in the Objective + 153 + + + 154 + 13 + 77 + Conditions + 0 + -1 + Physical Contracts + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Physical Contract + set of Physical Contracts objects that define when the Variable is active + 154 + + + 155 + 1 + 14 + Purchasers + 0 + -1 + true + true + 81 + Purchaser objects + 155 + + + 156 + 14 + 14 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Purchaser inherits from + Purchaser objects inheriting from this template + 156 + + + 157 + 97 + 14 + Purchasers + 0 + -1 + Lists + 0 + -1 + true + true + 81 + set of Purchaser objects in the List + set of Lists containing the Purchaser + 157 + + + 158 + 14 + 24 + Nodes + 1 + -1 + Purchasers + 0 + -1 + true + false + 70 + set of nodes the purchaser withdraws energy from + set of purchasers at the node + 158 + + + 159 + 14 + 24 + Nodes* + 0 + -1 + Purchasers* + 0 + -1 + false + true + 178 + creates copies of the Purchaser at each node in this collection + create copies of these Purchasers and place at this node + 159 + + + 160 + 14 + 61 + Companies + 0 + -1 + Purchasers + 0 + -1 + true + false + 9 + set of companies that own the purchaser + set of purchasers owned by the company + 160 + + + 161 + 14 + 72 + Constraints + 0 + -1 + Purchasers + 0 + -1 + true + true + 12 + set of Constraints on the Purchaser + set of Purchasers in the Constraint + 161 + + + 162 + 14 + 73 + Objectives + 0 + -1 + Purchasers + 0 + -1 + true + true + 240 + set of Objectives on the Purchaser + set of Purchasers in the Objective + 162 + + + 163 + 1 + 15 + Reserves + 0 + -1 + true + true + 88 + Reserve objects + 163 + + + 164 + 15 + 15 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Reserve inherits from + Reserve objects inheriting from this template + 164 + + + 165 + 97 + 15 + Reserves + 0 + -1 + Lists + 0 + -1 + true + true + 88 + set of Reserve objects in the List + set of Lists containing the Reserve + 165 + + + 166 + 15 + 2 + Generators + 0 + -1 + Reserves + 0 + -1 + true + true + 36 + set of generators that provide the reserve + set of reserves provided by the generator + 166 + + + 167 + 15 + 2 + Generator Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 35 + set of generators that are contingencies + set of reserves the generator is a contingency for + 167 + + + 168 + 15 + 2 + Generator Cost Allocation + 0 + -1 + Reserve Costs Allocated + 0 + -1 + false + true + 110 + set of generators over which the cost of the reserve is allocated + set of reserves whose costs are allocated to the generator + 168 + + + 169 + 15 + 6 + Power2X + 0 + -1 + Reserves + 0 + -1 + true + true + 244 + The set of Power2X facilities that provide the reserve + The set of reserves provided by the Power2X facility + 169 + + + 170 + 15 + 7 + Batteries + 0 + -1 + Reserves + 0 + -1 + true + true + 176 + set of batteries that provide the reserve + set of reserves provided by the battery + 170 + + + 171 + 15 + 7 + Battery Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 301 + set of batteries that are contingencies + set of reserves the battery is a contingency for + 171 + + + 172 + 15 + 14 + Purchasers + 0 + -1 + Reserves + 0 + -1 + true + true + 81 + set of purchasers that provide the reserve + set of reserve the purchaser provides interruptible load for + 172 + + + 173 + 15 + 15 + Nested Reserves + 0 + -1 + Master Reserves + 0 + -1 + false + false + 66 + reserves nested inside this reserve class + reserves this class is nested inside + 173 + + + 174 + 15 + 21 + Regions + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 85 + set of regions that set the load risk + set of reserves the region is a contingency for + 174 + + + 175 + 15 + 23 + Zones + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 106 + set of zones that set the load risk + set of reserves the zone is a contingency for + 175 + + + 176 + 15 + 26 + Lines + 0 + -1 + Reserves + 0 + -1 + false + true + 57 + set of lines that share the reserve + set of reserves the line is sharing + 176 + + + 177 + 15 + 26 + Line Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 56 + set of lines that are contingencies + set of reserves the line is a contingency for + 177 + + + 178 + 15 + 71 + Markets + 0 + -1 + Reserves + 0 + -1 + true + false + 61 + set of markets the reserve is bought/sold from/to + set of reserves in the market + 178 + + + 179 + 15 + 72 + Constraints + 0 + -1 + Reserves + 0 + -1 + true + true + 12 + set of Constraints on the Reserve + set of Reserves in the Constraint + 179 + + + 180 + 15 + 73 + Objectives + 0 + -1 + Reserves + 0 + -1 + true + true + 240 + set of Objectives on the Reserve + set of Reserves in the Objective + 180 + + + 181 + 15 + 77 + Conditions + 0 + -1 + Reserves + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Reserve + set of Reserve objects that define when the Variable is active + 181 + + + 182 + 1 + 16 + Reliability + 0 + -1 + true + true + 249 + Reliability objects + 182 + + + 183 + 16 + 16 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Reliability inherits from + Reliability objects inheriting from this template + 183 + + + 184 + 97 + 16 + Reliability + 0 + -1 + Lists + 0 + -1 + true + true + 249 + set of Reliability objects in the List + set of Lists containing the Reliability + 184 + + + 185 + 16 + 2 + Generators + 0 + -1 + Reliability + 0 + -1 + true + true + 36 + set of generators in the reliability group + set of reliability groups for the generator + 185 + + + 186 + 16 + 7 + Batteries + 0 + -1 + Reliability + 0 + -1 + true + true + 176 + set of batteries in the reliability group + set of reliability groups for the battery + 186 + + + 187 + 16 + 21 + Region + 1 + 1 + Reliability + 0 + -1 + true + true + 84 + reference region for the reliability group + set of reliability groups referencing the region + 187 + + + 188 + 1 + 17 + Financial Contracts + 0 + -1 + true + true + 28 + Financial Contract objects + 188 + + + 189 + 17 + 17 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Financial Contract inherits from + Financial Contract objects inheriting from this template + 189 + + + 190 + 97 + 17 + Financial Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 28 + set of Financial Contract objects in the List + set of Lists containing the Financial Contract + 190 + + + 191 + 17 + 2 + Generators + 0 + -1 + Financial Contracts + 0 + -1 + true + true + 36 + set of generators involved in the financial contract + set of financial contracts associated with the generator + 191 + + + 192 + 17 + 21 + Region + 0 + 1 + Financial Contracts + 0 + -1 + true + false + 84 + region the contract is settled in + set of financial contracts settled in the region + 192 + + + 193 + 17 + 21 + Regions + 0 + -1 + true + true + 85 + 193 + + + 194 + 17 + 61 + Generating Companies + 0 + -1 + Generation Contracts + 0 + -1 + true + false + 32 + generating party or parties + set of financial contracts the company is a generating party to + 194 + + + 195 + 17 + 61 + Purchasing Companies + 0 + -1 + Purchase Contracts + 0 + -1 + true + false + 82 + purchasing party or parties + set of financial contracts the company is a purchasing party to + 195 + + + 196 + 17 + 77 + Conditions + 0 + -1 + Financial Contracts + 0 + -1 + true + true + 11 + set of conditions that apply to the financial contract + set of financial contracts the condition applies to + 196 + + + 197 + 1 + 18 + Cournots + 0 + -1 + true + true + 15 + Cournot objects + 197 + + + 198 + 18 + 18 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Cournot inherits from + Cournot objects inheriting from this template + 198 + + + 199 + 97 + 18 + Cournots + 0 + -1 + Lists + 0 + -1 + true + true + 15 + set of Cournot objects in the List + set of Lists containing the Cournot + 199 + + + 200 + 18 + 21 + Region + 1 + 1 + true + false + 84 + region associated with the Cournot game + 200 + + + 201 + 1 + 19 + RSIs + 0 + -1 + true + true + 89 + RSI objects + 201 + + + 202 + 19 + 19 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the RSI inherits from + RSI objects inheriting from this template + 202 + + + 203 + 97 + 19 + RSIs + 0 + -1 + Lists + 0 + -1 + true + true + 89 + set of RSI objects in the List + set of Lists containing the RSI + 203 + + + 204 + 19 + 21 + Region + 1 + 1 + RSIs + 0 + -1 + true + false + 84 + region associated with the RSI + 204 + + + 205 + 19 + 26 + Lines + 0 + -1 + RSIs + 0 + -1 + true + true + 57 + set of lines included in import capacity calculations + 205 + + + 206 + 19 + 30 + Interfaces + 0 + -1 + RSIs + 0 + -1 + true + true + 50 + set of interfaces included in import capacity calculations + 206 + + + 207 + 19 + 61 + Companies + 0 + -1 + RSIs + 0 + -1 + true + true + 9 + 207 + + + 208 + 1 + 20 + Firm Capacity Group + 0 + -1 + true + true + 316 + Firm Capacity Group objects + 208 + + + 209 + 20 + 20 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Firm Capacity Group inherits from + Firm Capacity Group objects inheriting from this template + 209 + + + 210 + 97 + 20 + Firm Capacity Group + 0 + -1 + Lists + 0 + -1 + true + true + 316 + set of Firm Capacity Group objects in the List + set of Lists containing the Firm Capacity Group + 210 + + + 211 + 20 + 2 + Generators + 0 + -1 + Firm Capacity Groups + 0 + -1 + true + true + 36 + set of Generators in the Firm Capacity Group + set of Firm Capacity Groups associated with the Generator + 211 + + + 212 + 20 + 6 + Power2X + 0 + -1 + Firm Capacity Groups + 0 + -1 + true + true + 244 + set of Power2X objects in the Firm Capacity Group + set of Firm Capacity Groups associated with the Power2X object + 212 + + + 213 + 20 + 7 + Batteries + 0 + -1 + Firm Capacity Group + 0 + -1 + false + true + 176 + set of Batteries in the Firm Capacity Group + set of Firm Capacity Groups associated with the Battery + 213 + + + 214 + 1 + 21 + Regions + 0 + -1 + true + true + 85 + Region objects + 214 + + + 215 + 21 + 21 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Region inherits from + Region objects inheriting from this template + 215 + + + 216 + 97 + 21 + Regions + 0 + -1 + Lists + 0 + -1 + true + true + 85 + set of Region objects in the List + set of Lists containing the Region + 216 + + + 217 + 21 + 2 + Generators + 0 + -1 + Regions + 0 + -1 + false + true + 36 + 217 + + + 218 + 21 + 7 + Batteries + 0 + -1 + Regions + 0 + -1 + false + true + 176 + 218 + + + 219 + 21 + 11 + Emissions + 0 + -1 + Regions + 0 + -1 + true + true + 20 + set of emissions in the region + set of Regions that produce the emission + 219 + + + 220 + 21 + 13 + Generation Contracts + 0 + -1 + false + true + 33 + 220 + + + 221 + 21 + 13 + Load Contracts + 0 + -1 + false + true + 58 + 221 + + + 222 + 21 + 14 + Purchasers + 0 + -1 + Regions + 0 + -1 + false + true + 81 + 222 + + + 223 + 21 + 20 + Firm Capacity Groups + 0 + -1 + Region + 0 + 1 + true + true + 317 + Firm Capacity Groups associated with the Region + Region referencing the Firm Capacity Group + 223 + + + 224 + 21 + 21 + Regions + 0 + -1 + false + true + 85 + set of regions the region connects to + 224 + + + 225 + 21 + 22 + Pool + 0 + 1 + Regions + 0 + -1 + true + false + 231 + pool the region is in (for transmission) + set of regions in the pool + 225 + + + 226 + 21 + 24 + Reference Node + 0 + 1 + false + false + 83 + the reference node for the region + 226 + + + 227 + 21 + 26 + Exporting Lines + 0 + -1 + false + true + 25 + 227 + + + 228 + 21 + 26 + Importing Lines + 0 + -1 + false + true + 47 + 228 + + + 229 + 21 + 26 + Interregional Lines + 0 + -1 + false + true + 51 + 229 + + + 230 + 21 + 26 + Intraregional Lines + 0 + -1 + false + true + 53 + 230 + + + 231 + 21 + 28 + Exporting Transformers + 0 + -1 + false + true + 181 + 231 + + + 232 + 21 + 28 + Importing Transformers + 0 + -1 + false + true + 182 + 232 + + + 233 + 21 + 28 + Interregional Transformers + 0 + -1 + false + true + 183 + 233 + + + 234 + 21 + 28 + Intraregional Transformers + 0 + -1 + false + true + 185 + 234 + + + 235 + 21 + 34 + Heat Plants + 0 + -1 + Regions + 0 + -1 + false + true + 219 + 235 + + + 236 + 21 + 38 + Gas Plants + 0 + -1 + Regions + 0 + -1 + false + true + 210 + 236 + + + 237 + 21 + 41 + Gas Storages + 0 + -1 + Regions + 0 + -1 + false + true + 113 + 237 + + + 238 + 21 + 50 + Water Plants + 0 + -1 + Regions + 0 + -1 + false + true + 188 + 238 + + + 239 + 21 + 61 + Utilities + 0 + -1 + true + true + 102 + set of utility-owned companies (competitive fringe in RSI) + 239 + + + 240 + 21 + 64 + Facilities + 0 + -1 + Regions + 0 + -1 + false + true + 267 + 240 + + + 241 + 21 + 71 + Markets + 0 + -1 + false + true + 61 + 241 + + + 242 + 21 + 72 + Constraints + 0 + -1 + Regions + 0 + -1 + true + true + 12 + set of Constraints on the Region + set of Regions in the Constraint + 242 + + + 243 + 21 + 73 + Objectives + 0 + -1 + Regions + 0 + -1 + true + true + 240 + set of Objectives on the Region + set of Regions in the Objective + 243 + + + 244 + 21 + 77 + Conditions + 0 + -1 + Regions + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Region + set of Region objects that define when the Variable is active + 244 + + + 245 + 1 + 22 + Pools + 0 + -1 + true + true + 230 + Pool objects + 245 + + + 246 + 22 + 22 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Pool inherits from + Pool objects inheriting from this template + 246 + + + 247 + 97 + 22 + Pools + 0 + -1 + Lists + 0 + -1 + true + true + 230 + set of Pool objects in the List + set of Lists containing the Pool + 247 + + + 248 + 22 + 15 + ORDC Reserves + 0 + -1 + Pools + 0 + 1 + false + true + 300 + Specifies Raise and Operational Reserves for ORDC calculations + Pool the Reserve belongs to (for ORDC calculations) + 248 + + + 249 + 22 + 22 + Pools + 0 + -1 + false + true + 230 + set of Pools the Pool transacts with + 249 + + + 250 + 22 + 24 + ORDC System Lambda Nodes + 0 + -1 + ORDC System Lambda Nodes + 0 + 1 + false + true + 310 + The set of Nodes that their energy components dictate the system lambda for the ORDC algorithm + Node used in the system lambda for the ORDC calculation + 250 + + + 251 + 22 + 61 + Companies + 0 + -1 + Pools + 0 + 1 + false + true + 9 + set of companies in the pool + pool the company is in (for energy balancing) + 251 + + + 252 + 1 + 23 + Zones + 0 + -1 + true + true + 106 + Zone objects + 252 + + + 253 + 23 + 23 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Zone inherits from + Zone objects inheriting from this template + 253 + + + 254 + 97 + 23 + Zones + 0 + -1 + Lists + 0 + -1 + true + true + 106 + set of Zone objects in the List + set of Lists containing the Zone + 254 + + + 255 + 23 + 2 + Generators + 0 + -1 + Zones + 0 + -1 + false + true + 36 + 255 + + + 256 + 23 + 2 + Capacity Generators + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 2 + 256 + + + 257 + 23 + 7 + Batteries + 0 + -1 + Zones + 0 + -1 + false + true + 176 + 257 + + + 258 + 23 + 7 + Capacity Batteries + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 226 + 258 + + + 259 + 23 + 11 + Emissions + 0 + -1 + Zones + 0 + -1 + true + true + 20 + set of emissions in the zone + 259 + + + 260 + 23 + 13 + Capacity Generation Contracts + 0 + -1 + false + true + 1 + 260 + + + 261 + 23 + 13 + Capacity Load Contracts + 0 + -1 + false + true + 3 + 261 + + + 262 + 23 + 13 + Generation Contracts + 0 + -1 + false + true + 33 + 262 + + + 263 + 23 + 13 + Load Contracts + 0 + -1 + false + true + 58 + 263 + + + 264 + 23 + 14 + Purchasers + 0 + -1 + Zones + 0 + -1 + false + true + 81 + 264 + + + 265 + 23 + 14 + Capacity Purchasers + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 6 + 265 + + + 266 + 23 + 20 + Firm Capacity Groups + 0 + -1 + Zone + 0 + 1 + true + true + 317 + Firm Capacity Groups associated with the Zone + Zone referencing the Firm Capacity Group + 266 + + + 267 + 23 + 21 + Region + 0 + 1 + Zones + 0 + -1 + true + false + 84 + the region the zone belongs to + set of zones in the region + 267 + + + 268 + 23 + 23 + Zones + 0 + -1 + true + true + 106 + set of zones the zone connects to + 268 + + + 269 + 23 + 24 + Reference Node + 0 + 1 + false + false + 83 + the reference node for the zone + 269 + + + 270 + 23 + 26 + Exporting Capacity Lines + 0 + -1 + false + true + 23 + 270 + + + 271 + 23 + 26 + Exporting Lines + 0 + -1 + false + true + 25 + 271 + + + 272 + 23 + 26 + Importing Capacity Lines + 0 + -1 + false + true + 45 + 272 + + + 273 + 23 + 26 + Importing Lines + 0 + -1 + false + true + 47 + 273 + + + 274 + 23 + 26 + Interzonal Lines + 0 + -1 + false + true + 52 + 274 + + + 275 + 23 + 26 + Intrazonal Lines + 0 + -1 + false + true + 54 + 275 + + + 276 + 23 + 28 + Exporting Capacity Transformers + 0 + -1 + false + true + 164 + 276 + + + 277 + 23 + 28 + Exporting Transformers + 0 + -1 + false + true + 181 + 277 + + + 278 + 23 + 28 + Importing Capacity Transformers + 0 + -1 + false + true + 165 + 278 + + + 279 + 23 + 28 + Importing Transformers + 0 + -1 + false + true + 182 + 279 + + + 280 + 23 + 28 + Interzonal Transformers + 0 + -1 + false + true + 184 + 280 + + + 281 + 23 + 28 + Intrazonal Transformers + 0 + -1 + false + true + 186 + 281 + + + 282 + 23 + 34 + Heat Plants + 0 + -1 + Zones + 0 + -1 + false + true + 219 + 282 + + + 283 + 23 + 34 + Capacity Heat Plants + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 307 + 283 + + + 284 + 23 + 38 + Gas Plants + 0 + -1 + Zones + 0 + -1 + false + true + 210 + 284 + + + 285 + 23 + 38 + Capacity Gas Plants + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 305 + 285 + + + 286 + 23 + 41 + Gas Storages + 0 + -1 + Zones + 0 + -1 + false + true + 113 + 286 + + + 287 + 23 + 41 + Capacity Gas Storages + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 306 + 287 + + + 288 + 23 + 50 + Water Plants + 0 + -1 + Zones + 0 + -1 + false + true + 188 + 288 + + + 289 + 23 + 50 + Capacity Water Plants + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 308 + 289 + + + 290 + 23 + 64 + Facilities + 0 + -1 + Zones + 0 + 0 + false + true + 267 + 290 + + + 291 + 23 + 64 + Capacity Facilities + 0 + -1 + Capacity Zones + 0 + 0 + false + true + 309 + 291 + + + 292 + 23 + 71 + Markets + 0 + -1 + false + true + 61 + 292 + + + 293 + 23 + 71 + Capacity Markets + 0 + -1 + false + true + 4 + 293 + + + 294 + 23 + 72 + Constraints + 0 + -1 + Zones + 0 + -1 + true + true + 12 + set of Constraints on the Zone + set of Zones in the Constraint + 294 + + + 295 + 23 + 73 + Objectives + 0 + -1 + Zones + 0 + -1 + true + true + 240 + set of Objectives on the Zone + set of Zones in the Objective + 295 + + + 296 + 23 + 77 + Conditions + 0 + -1 + Zones + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Zone + set of Zone objects that define when the Variable is active + 296 + + + 297 + 1 + 24 + Nodes + 0 + -1 + true + true + 70 + Node objects + 297 + + + 298 + 24 + 24 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Node inherits from + Node objects inheriting from this template + 298 + + + 299 + 97 + 24 + Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 70 + set of Node objects in the List + set of Lists containing the Node + 299 + + + 300 + 24 + 11 + Virtual Emissions + 0 + -1 + Virtual Nodes + 0 + -1 + true + true + 320 + emissions associated with the node in a virtual emission network + nodes the virtual emission is connected to + 300 + + + 301 + 24 + 21 + Region + 1 + 1 + Nodes + 0 + -1 + true + false + 84 + the region the node belongs to + set of nodes in the region + 301 + + + 302 + 24 + 23 + Zone + 0 + 1 + Nodes + 0 + -1 + true + false + 105 + zone the node is in (for transmission) + set of nodes in the zone + 302 + + + 303 + 24 + 23 + Capacity Zones + 0 + -1 + Capacity Nodes + 0 + -1 + true + true + 7 + capacity zones the node belongs to + set of nodes in the capacity zone + 303 + + + 304 + 24 + 24 + AC Voltage Magnitude Target Node + 0 + 1 + false + false + 315 + The target node for voltage regulation + 304 + + + 305 + 24 + 32 + Hubs + 0 + -1 + Nodes + 0 + -1 + true + false + 170 + hub the node belongs to + set of nodes in the hub + 305 + + + 306 + 24 + 61 + Companies + 0 + -1 + Nodes + 0 + -1 + true + true + 9 + set of companies that own the nodes + set of nodes the company owns + 306 + + + 307 + 24 + 64 + Facilities + 0 + -1 + Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Node + set of Nodes the Facility connects to + 307 + + + 308 + 24 + 68 + Exporting Flow Paths + 0 + -1 + Node From + 0 + 1 + true + true + 297 + set of flow paths exporting from the node + node the flow path exports from + 308 + + + 309 + 24 + 68 + Importing Flow Paths + 0 + -1 + Node To + 0 + 1 + true + true + 298 + set of flow paths importing to the node + node the flow path imports to + 309 + + + 310 + 24 + 71 + Markets + 0 + -1 + Nodes + 0 + 1 + true + true + 61 + external markets connected to the node + node the market can buy and sell energy at + 310 + + + 311 + 24 + 72 + Constraints + 0 + -1 + Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Node + set of Nodes in the Constraint + 311 + + + 312 + 24 + 73 + Objectives + 0 + -1 + Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Node + set of Nodes in the Objective + 312 + + + 313 + 24 + 74 + Decision Variables + 0 + -1 + Nodes + 0 + -1 + true + true + 166 + set of nodes whose equations include the decision variable + Decision Variables included in the Node formulation + 313 + + + 314 + 24 + 77 + Conditions + 0 + -1 + Nodes + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Node + set of Node objects that define when the Variable is active + 314 + + + 315 + 24 + 81 + Weather Stations + 0 + 1 + Nodes + 0 + -1 + true + false + 233 + weather station the node is in + set of nodes in the weather station + 315 + + + 316 + 1 + 25 + Loads + 0 + -1 + true + true + 259 + Electricity Loads + 316 + + + 317 + 25 + 25 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Load inherits from + Load objects inheriting from this template + 317 + + + 318 + 97 + 25 + Loads + 0 + -1 + Lists + 0 + -1 + true + true + 259 + set of Load objects in the List + set of Lists containing the Load + 318 + + + 319 + 25 + 24 + Node + 1 + 1 + Loads + 0 + -1 + true + false + 67 + the node the load belongs to + set of loads at the node + 319 + + + 320 + 25 + 61 + Company + 0 + 1 + Loads + 0 + -1 + true + false + 285 + the company the load belongs to + set of loads owned by the company + 320 + + + 321 + 1 + 26 + Lines + 0 + -1 + true + true + 57 + Line objects + 321 + + + 322 + 26 + 26 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Line inherits from + Line objects inheriting from this template + 322 + + + 323 + 97 + 26 + Lines + 0 + -1 + Lists + 0 + -1 + true + true + 57 + set of Line objects in the List + set of Lists containing the Line + 323 + + + 324 + 26 + 11 + Virtual Emissions + 0 + -1 + Virtual Lines + 0 + -1 + true + true + 320 + 324 + + + 325 + 26 + 24 + Node From + 1 + 1 + Exporting Lines + 0 + -1 + true + false + 68 + node that the line notionally exports from + set of exporting lines + 325 + + + 326 + 26 + 24 + Node To + 1 + 1 + Importing Lines + 0 + -1 + true + false + 69 + node that the line notionally imports to + set of importing lines + 326 + + + 327 + 26 + 61 + Companies + 0 + -1 + Lines + 0 + -1 + true + false + 9 + set of companies that owns the line + set of lines owned by the company + 327 + + + 328 + 26 + 65 + Maintenances + 0 + -1 + Lines + 0 + -1 + true + false + 179 + set of maintenance events on the line + set of lines taken out on maintenance + 328 + + + 329 + 26 + 72 + Constraints + 0 + -1 + Lines + 0 + -1 + true + true + 12 + set of Constraints on the Line + set of Lines in the Constraint + 329 + + + 330 + 26 + 73 + Objectives + 0 + -1 + Lines + 0 + -1 + true + true + 240 + set of Objectives on the Line + set of Lines in the Objective + 330 + + + 331 + 26 + 77 + Conditions + 0 + -1 + Lines + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Line + set of Line objects that define when the Variable is active + 331 + + + 332 + 1 + 27 + MLFs + 0 + -1 + true + true + 63 + MLF objects + 332 + + + 333 + 27 + 27 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the MLF inherits from + MLF objects inheriting from this template + 333 + + + 334 + 97 + 27 + MLFs + 0 + -1 + Lists + 0 + -1 + true + true + 63 + set of MLF objects in the List + set of Lists containing the MLF + 334 + + + 335 + 27 + 21 + Regions + 0 + -1 + true + true + 85 + set of regions whose demand appears in the MLF equation + 335 + + + 336 + 27 + 24 + Node + 1 + 1 + true + false + 67 + reference node for the MLF equation + 336 + + + 337 + 27 + 26 + Line + 1 + 1 + true + false + 55 + interregional notional interconnector whose losses are determined by the MLF equation + 337 + + + 338 + 1 + 28 + Transformers + 0 + -1 + true + true + 99 + Transformer objects + 338 + + + 339 + 28 + 28 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Transformer inherits from + Transformer objects inheriting from this template + 339 + + + 340 + 97 + 28 + Transformers + 0 + -1 + Lists + 0 + -1 + true + true + 99 + set of Transformer objects in the List + set of Lists containing the Transformer + 340 + + + 341 + 28 + 24 + Node From + 1 + 1 + Exporting Transformers + 0 + -1 + true + false + 68 + node that the transformer takes power from + set of exporting transformers + 341 + + + 342 + 28 + 24 + Node To + 1 + 1 + Importing Transformers + 0 + -1 + true + false + 69 + node that the transformer takes power to + set of importing transformers + 342 + + + 343 + 28 + 72 + Constraints + 0 + -1 + Transformers + 0 + -1 + true + true + 12 + set of Constraints on the Transformer + set of Transformers in the Constraint + 343 + + + 344 + 28 + 73 + Objectives + 0 + -1 + Transformers + 0 + -1 + true + true + 240 + set of Objectives on the Transformer + set of Transformers in the Objective + 344 + + + 345 + 1 + 29 + Flow Controls + 0 + -1 + true + true + 74 + Flow Control objects + 345 + + + 346 + 29 + 29 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Control inherits from + Flow Control objects inheriting from this template + 346 + + + 347 + 97 + 29 + Flow Controls + 0 + -1 + Lists + 0 + -1 + true + true + 74 + set of Flow Control objects in the List + set of Lists containing the Flow Control + 347 + + + 348 + 29 + 26 + Line + 1 + 1 + Flow Controls + 0 + -1 + true + false + 55 + line the flow control operates on + flow control associated with the line + 348 + + + 349 + 29 + 26 + Lines* + 0 + -1 + Flow Controls* + 0 + -1 + false + true + 187 + creates copies of the flow control at each line in this collection + create copies of these flow controls and place at this line + 349 + + + 350 + 29 + 72 + Constraints + 0 + -1 + Flow Controls + 0 + -1 + true + true + 12 + set of Constraints on the Flow Control + set of Flow Controls in the Constraint + 350 + + + 351 + 29 + 73 + Objectives + 0 + -1 + Flow Controls + 0 + -1 + true + true + 240 + set of Objectives on the Flow Control + set of Flow Controls in the Objective + 351 + + + 352 + 1 + 30 + Interfaces + 0 + -1 + true + true + 50 + Interface objects + 352 + + + 353 + 30 + 30 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Interface inherits from + Interface objects inheriting from this template + 353 + + + 354 + 97 + 30 + Interfaces + 0 + -1 + Lists + 0 + -1 + true + true + 50 + set of Interface objects in the List + set of Lists containing the Interface + 354 + + + 355 + 30 + 26 + Lines + 0 + -1 + Interfaces + 0 + -1 + true + true + 57 + set of lines in the interface + interfaces the line is in + 355 + + + 356 + 30 + 28 + Transformers + 0 + -1 + Interfaces + 0 + -1 + true + true + 99 + set of transformers in the interface + set of interfaces defined on the transformer + 356 + + + 357 + 30 + 72 + Constraints + 0 + -1 + Interfaces + 0 + -1 + true + true + 12 + set of Constraints on the Interface + set of Interfaces in the Constraint + 357 + + + 358 + 30 + 73 + Objectives + 0 + -1 + Interfaces + 0 + -1 + true + true + 240 + set of Objectives on the Interface + set of Interfaces in the Objective + 358 + + + 359 + 30 + 77 + Conditions + 0 + -1 + Interfaces + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Interface + set of Interface objects that define when the Variable is active + 359 + + + 360 + 1 + 31 + Contingencies + 0 + -1 + true + true + 13 + Contingency objects + 360 + + + 361 + 31 + 31 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Contingency inherits from + Contingency objects inheriting from this template + 361 + + + 362 + 97 + 31 + Contingencies + 0 + -1 + Lists + 0 + -1 + true + true + 13 + set of Contingency objects in the List + set of Lists containing the Contingency + 362 + + + 363 + 31 + 2 + Generators + 0 + -1 + Contingencies + 0 + -1 + true + false + 36 + set of generators that form the contingency + set of contingencies the generator defines + 363 + + + 364 + 31 + 26 + Lines + 0 + -1 + Contingencies + 0 + -1 + true + false + 57 + set of lines that form the contingency + set of contingencies the line defines + 364 + + + 365 + 31 + 26 + Lines Monitored + 0 + -1 + Reporting Monitoring Contingencies + 0 + -1 + true + true + 311 + 365 + + + 366 + 31 + 26 + Monitored Lines + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 107 + set of lines whose limits are monitored under the contingency + set of contingencies the line is monitored under + 366 + + + 367 + 31 + 28 + Transformers + 0 + -1 + Contingencies + 0 + -1 + true + false + 99 + set of transformers that form the contingency + set of contingencies the transformer defines + 367 + + + 368 + 31 + 28 + Monitored Transformers + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 108 + set of transformers whose limits are monitored under the contingency + set of contingencies the transformer is monitored under + 368 + + + 369 + 31 + 28 + Transformers Monitored + 0 + -1 + Reporting Monitoring Contingencies + 0 + -1 + true + true + 312 + 369 + + + 370 + 31 + 30 + Interfaces Monitored + 0 + -1 + Reporting Monitoring Contingencies + 0 + -1 + true + true + 313 + 370 + + + 371 + 31 + 30 + Monitored Interfaces + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 109 + set of interfaces whose limits are monitored under the contingency + set of contingencies the interface is monitored under + 371 + + + 372 + 1 + 32 + Hubs + 0 + -1 + true + true + 170 + Hub objects + 372 + + + 373 + 32 + 32 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Hub inherits from + Hub objects inheriting from this template + 373 + + + 374 + 97 + 32 + Hubs + 0 + -1 + Lists + 0 + -1 + true + true + 170 + set of Hub objects in the List + set of Lists containing the Hub + 374 + + + 375 + 32 + 72 + Constraints + 0 + -1 + Hubs + 0 + -1 + true + true + 12 + set of Constraints on the Hub + set of Hubs in the Constraint + 375 + + + 376 + 32 + 73 + Objectives + 0 + -1 + Hubs + 0 + -1 + true + true + 240 + set of Objectives on the Hub + set of Hubs in the Objective + 376 + + + 377 + 1 + 33 + Transmission Rights + 0 + -1 + true + true + 101 + Transmission Right objects + 377 + + + 378 + 33 + 33 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Transmission Right inherits from + Transmission Right objects inheriting from this template + 378 + + + 379 + 97 + 33 + Transmission Rights + 0 + -1 + Lists + 0 + -1 + true + true + 101 + set of Transmission Right objects in the List + set of Lists containing the Transmission Right + 379 + + + 380 + 33 + 23 + Zone From + 0 + 1 + true + false + 171 + zone for generation in the transmission right + 380 + + + 381 + 33 + 23 + Zone To + 0 + 1 + true + false + 172 + zone for load in the transmission right + 381 + + + 382 + 33 + 24 + Node From + 0 + 1 + true + false + 68 + node for generation in the transmission right + 382 + + + 383 + 33 + 24 + Node To + 0 + 1 + true + false + 69 + node for load in the transmission right + 383 + + + 384 + 33 + 26 + Line + 0 + 1 + true + false + 55 + line whose rentals are involved in the transmission right + 384 + + + 385 + 33 + 32 + Hub From + 0 + 1 + true + false + 173 + hub for generation in the transmission right + 385 + + + 386 + 33 + 32 + Hub To + 0 + 1 + true + false + 174 + hub for load in the transmission right + 386 + + + 387 + 33 + 61 + Companies + 0 + -1 + Transmission Rights + 0 + -1 + true + false + 9 + companies that own the transmission right + transmissions rights owned by the company + 387 + + + 388 + 1 + 34 + Heat Plants + 0 + -1 + true + true + 219 + Heat Plant objects + 388 + + + 389 + 34 + 34 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Plant inherits from + Heat Plant objects inheriting from this template + 389 + + + 390 + 97 + 34 + Heat Plants + 0 + -1 + Lists + 0 + -1 + true + true + 219 + set of Heat Plant objects in the List + set of Lists containing the Heat Plant + 390 + + + 391 + 34 + 4 + Fuels + 0 + -1 + Heat Plants + 0 + -1 + true + false + 31 + set of fuels consumed + set of heat plants that consume the fuel + 391 + + + 392 + 34 + 4 + Start Fuels + 0 + -1 + Heat Plants Started + 0 + -1 + true + false + 92 + fuels available for starting units + set of heat plants that use the fuel to start + 392 + + + 393 + 34 + 24 + Nodes + 0 + -1 + Heat Plants + 0 + -1 + true + false + 70 + set of nodes injected at + set of heat plants connected to the node + 393 + + + 394 + 34 + 35 + Heat Input Nodes + 0 + -1 + Input Heat Plants + 0 + -1 + true + false + 223 + set of heat nodes the heat plant injects to + set of heat plants connected to the heat node + 394 + + + 395 + 34 + 35 + Heat Output Nodes + 0 + -1 + Output Heat Plants + 0 + -1 + true + false + 224 + set of heat nodes the heat plant receives from + set of heat plants connected to the heat node + 395 + + + 396 + 34 + 40 + Gas Nodes + 0 + -1 + Heat Plants + 0 + -1 + true + true + 115 + set of source gas nodes for the heat plant + set of heat plants connected to the gas node + 396 + + + 397 + 34 + 72 + Constraints + 0 + -1 + Heat Plants + 0 + -1 + true + true + 12 + set of Constraints on the Heat Plant + set of Heat Plants in the Constraint + 397 + + + 398 + 34 + 73 + Objectives + 0 + -1 + Heat Plants + 0 + -1 + true + true + 240 + set of Objectives on the Heat Plant + set of Heat Plants in the Objective + 398 + + + 399 + 34 + 77 + Conditions + 0 + -1 + Heat Plants + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Heat Plant + set of Heat Plant objects that define when the Variable is active + 399 + + + 400 + 1 + 35 + Heat Nodes + 0 + -1 + true + true + 220 + Heat Node objects + 400 + + + 401 + 35 + 35 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Node inherits from + Heat Node objects inheriting from this template + 401 + + + 402 + 97 + 35 + Heat Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 220 + set of Heat Node objects in the List + set of Lists containing the Heat Node + 402 + + + 403 + 35 + 35 + Heat Export Nodes + 0 + -1 + Heat Import Nodes + 0 + -1 + true + false + 225 + set of node heat is exported to + set of heat nodes importing to node + 403 + + + 404 + 35 + 50 + Water Plants + 0 + -1 + Heat Nodes + 0 + -1 + true + false + 188 + set of water plants supplied + set of nodes supplying heat + 404 + + + 405 + 35 + 64 + Facilities + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Heat Node + set of Heat Nodes the Facility connects to + 405 + + + 406 + 35 + 71 + Markets + 0 + -1 + Heat Nodes + 0 + 1 + true + true + 61 + external heat markets connected to the heat node + heat node the market can by and sell heat at + 406 + + + 407 + 35 + 72 + Constraints + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Heat Node + set of Heat Nodes in the Constraint + 407 + + + 408 + 35 + 73 + Objectives + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Heat Node + set of Heat Nodes in the Objective + 408 + + + 409 + 35 + 77 + Conditions + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Heat Node + set of Heat Node objects that define when the Variable is active + 409 + + + 410 + 1 + 36 + Heat Storages + 0 + -1 + true + true + 253 + Heat Storage objects + 410 + + + 411 + 36 + 36 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Storage inherits from + Heat Storage objects inheriting from this template + 411 + + + 412 + 97 + 36 + Heat Storages + 0 + -1 + Lists + 0 + -1 + true + true + 253 + set of Heat Storage objects in the List + set of Lists containing the Heat Storage + 412 + + + 413 + 36 + 35 + Heat Nodes + 1 + 1 + Heat Storages + 0 + 1 + true + false + 220 + set of heat nodes the heat storage injects to and withdraws from + set of heat storages connected to the heat node + 413 + + + 414 + 36 + 72 + Constraints + 0 + -1 + Heat Storages + 0 + -1 + true + true + 12 + set of Constraints on the Heat Storage + set of Heat Storages in the Constraint + 414 + + + 415 + 36 + 73 + Objectives + 0 + -1 + Heat Storages + 0 + -1 + true + true + 240 + set of Objectives on the Heat Storage + set of Heat Storages in the Objective + 415 + + + 416 + 1 + 37 + Gas Fields + 0 + -1 + true + true + 112 + Gas Field objects + 416 + + + 417 + 37 + 37 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Field inherits from + Gas Field objects inheriting from this template + 417 + + + 418 + 97 + 37 + Gas Fields + 0 + -1 + Lists + 0 + -1 + true + true + 112 + set of Gas Field objects in the List + set of Lists containing the Gas Field + 418 + + + 419 + 37 + 40 + Gas Node + 0 + -1 + Gas Fields + 0 + -1 + true + true + 117 + gas node the gas field connects to + set of gas fields connected to the gas node + 419 + + + 420 + 37 + 44 + Gas Basin + 0 + -1 + Gas Fields + 0 + -1 + true + true + 177 + gas basins the gas field belongs to + set of gas fields in the gas basin + 420 + + + 421 + 37 + 61 + Companies + 0 + -1 + Gas Fields + 0 + -1 + true + false + 9 + Set of companies that own the gas field + set of gas fields the company owns + 421 + + + 422 + 37 + 65 + Maintenances + 0 + -1 + Gas Fields + 0 + -1 + true + false + 179 + set of maintenance events on the gas field + set of gas fields taken out by the maintenance event + 422 + + + 423 + 37 + 72 + Constraints + 0 + -1 + Gas Fields + 0 + -1 + true + true + 12 + set of Constraints on the Gas Field + set of Gas Fields in the Constraint + 423 + + + 424 + 37 + 73 + Objectives + 0 + -1 + Gas Fields + 0 + -1 + true + true + 240 + set of Objectives on the Gas Field + set of Gas Fields in the Objective + 424 + + + 425 + 1 + 38 + Gas Plants + 0 + -1 + true + true + 210 + Gas Plant objects + 425 + + + 426 + 38 + 38 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Plant inherits from + Gas Plant objects inheriting from this template + 426 + + + 427 + 97 + 38 + Gas Plants + 0 + -1 + Lists + 0 + -1 + true + true + 210 + set of Gas Plant objects in the List + set of Lists containing the Gas Plant + 427 + + + 428 + 38 + 24 + Node + 0 + 1 + Gas Plants + 0 + -1 + true + false + 67 + Electric Node the Gas Plant connects to + set of Gas Plants connected to the Electric Node + 428 + + + 429 + 38 + 40 + Input Node + 0 + 1 + Gas Plants Supplied + 0 + -1 + true + false + 208 + Gas Node the Gas Plant imports gas from + set of Gas Plants the Gas Node supplies + 429 + + + 430 + 38 + 40 + Output Node + 1 + 1 + Supplying Gas Plants + 0 + -1 + true + false + 209 + Gas Node the Gas Plant exports gas to + set of Gas Plants that supply the Gas Node + 430 + + + 431 + 38 + 65 + Maintenances + 0 + -1 + Gas Plants + 0 + -1 + true + false + 179 + set of maintenance events on the gas plant + set of gas plants taken out by the maintenance event + 431 + + + 432 + 38 + 72 + Constraints + 0 + -1 + Gas Plants + 0 + -1 + true + true + 12 + set of Constraints on the Gas Plant + set of Gas Plants in the Constraint + 432 + + + 433 + 38 + 73 + Objectives + 0 + -1 + Gas Plants + 0 + -1 + true + true + 240 + set of Objectives on the Gas Plant + set of Gas Plants in the Objective + 433 + + + 434 + 38 + 74 + Decision Variables + 0 + -1 + Gas Plants + 0 + -1 + true + true + 166 + set of gas plants whose equations include the decision variable + Decision Variables included in the Gas Plant formulation + 434 + + + 435 + 1 + 39 + Gas Pipelines + 0 + -1 + true + true + 114 + Gas Pipeline objects + 435 + + + 436 + 39 + 39 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Pipeline inherits from + Gas Pipeline objects inheriting from this template + 436 + + + 437 + 97 + 39 + Gas Pipelines + 0 + -1 + Lists + 0 + -1 + true + true + 114 + set of Gas Pipeline objects in the List + set of Lists containing the Gas Pipeline + 437 + + + 438 + 39 + 11 + Virtual Emissions + 0 + -1 + Virtual Gas Pipelines + 0 + -1 + true + true + 320 + 438 + + + 439 + 39 + 40 + Gas Node From + 1 + 1 + Exporting Gas Pipelines + 0 + -1 + true + false + 118 + gas node the gas pipeline exports from + set of gas pipelines exporting from the gas node + 439 + + + 440 + 39 + 40 + Gas Node To + 1 + 1 + Importing Gas Pipelines + 0 + -1 + true + false + 119 + gas node the gas pipeline imports to + set of gas pipelines importing to the gas node + 440 + + + 441 + 39 + 48 + Gas Paths + 0 + -1 + Gas Pipelines + 0 + -1 + false + true + 303 + set of Gas Paths that are associated with a Gas Pipeline to deliver gas + set of Gas Pipelines associated with the Gas Path + 441 + + + 442 + 39 + 65 + Maintenances + 0 + -1 + Gas Pipelines + 0 + -1 + true + false + 179 + set of maintenance events on the gas pipeline + set of gas pipelines taken out by the maintenance event + 442 + + + 443 + 39 + 72 + Constraints + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 12 + set of Constraints on the Gas Pipeline + set of Gas Pipelines in the Constraint + 443 + + + 444 + 39 + 73 + Objectives + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 240 + set of Objectives on the Gas Pipeline + set of Gas Pipelines in the Objective + 444 + + + 445 + 39 + 77 + Conditions + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Gas Pipeline + set of Gas Pipeline objects that define when the Variable is active + 445 + + + 446 + 1 + 40 + Gas Nodes + 0 + -1 + true + true + 115 + Gas Node objects + 446 + + + 447 + 40 + 40 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Node inherits from + Gas Node objects inheriting from this template + 447 + + + 448 + 97 + 40 + Gas Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 115 + set of Gas Node objects in the List + set of Lists containing the Gas Node + 448 + + + 449 + 40 + 11 + Virtual Emissions + 0 + -1 + Virtual Gas Nodes + 0 + -1 + true + true + 320 + set of emissions associated with the Gas Node in a virtual emission network + set of Gas Nodes associated with the virtual emission + 449 + + + 450 + 40 + 45 + Gas Zones + 0 + -1 + Gas Nodes + 0 + -1 + true + false + 159 + set of gas zones the gas node belongs to + set of gas nodes in the gas zone + 450 + + + 451 + 40 + 47 + Gas Transports + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 211 + 451 + + + 452 + 40 + 48 + Gas Paths + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 303 + set of Gas paths that the gas node is a part of + set of gas nodes that are in the gas path + 452 + + + 453 + 40 + 64 + Facilities + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Gas Node + set of Gas Nodes the Facility connects to + 453 + + + 454 + 40 + 71 + Markets + 0 + -1 + Gas Nodes + 0 + 1 + true + true + 61 + external gas market connected to the gas node + gas node the market can buy and sell gas at + 454 + + + 455 + 40 + 72 + Constraints + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Gas Node + set of Gas Nodes in the Constraint + 455 + + + 456 + 40 + 73 + Objectives + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Gas Node + set of Gas Nodes in the Objective + 456 + + + 457 + 1 + 41 + Gas Storages + 0 + -1 + true + true + 113 + Gas Storage objects + 457 + + + 458 + 41 + 41 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Storage inherits from + Gas Storage objects inheriting from this template + 458 + + + 459 + 97 + 41 + Gas Storages + 0 + -1 + Lists + 0 + -1 + true + true + 113 + set of Gas Storage objects in the List + set of Lists containing the Gas Storage + 459 + + + 460 + 41 + 6 + Source Power2X + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 293 + 460 + + + 461 + 41 + 24 + Node + 0 + 1 + Gas Storages + 0 + -1 + true + false + 67 + Electric Node the Gas Storage connects to + set of Gas Storages connected to the Electric Node + 461 + + + 462 + 41 + 37 + Source Gas Fields + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 289 + 462 + + + 463 + 41 + 38 + Source Gas Plants + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 292 + 463 + + + 464 + 41 + 40 + Gas Nodes + 1 + -1 + Gas Storages + 0 + -1 + true + true + 115 + gas node the gas storage connects to + set of gas storages connected to the gas node + 464 + + + 465 + 41 + 41 + Source Gas Storages + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 290 + 465 + + + 466 + 41 + 46 + Source Gas Contracts + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 291 + 466 + + + 467 + 41 + 47 + Source Gas Transports + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 299 + 467 + + + 468 + 41 + 65 + Maintenances + 0 + -1 + Gas Storages + 0 + -1 + true + false + 179 + set of maintenance events on the gas storage + set of gas storages taken out by the maintenance event + 468 + + + 469 + 41 + 72 + Constraints + 0 + -1 + Gas Storages + 0 + -1 + true + true + 12 + set of Constraints on the Gas Storage + set of Gas Storages in the Constraint + 469 + + + 470 + 41 + 73 + Objectives + 0 + -1 + Gas Storages + 0 + -1 + true + true + 240 + set of Objectives on the Gas Storage + set of Gas Storages in the Objective + 470 + + + 471 + 41 + 77 + Conditions + 0 + -1 + Gas Storages + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Gas Storage + set of Gas Storage objects that define when the Variable is active + 471 + + + 472 + 1 + 42 + Gas Demands + 0 + -1 + true + true + 116 + Gas Demand objects + 472 + + + 473 + 42 + 42 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Demand inherits from + Gas Demand objects inheriting from this template + 473 + + + 474 + 97 + 42 + Gas Demands + 0 + -1 + Lists + 0 + -1 + true + true + 116 + set of Gas Demand objects in the List + set of Lists containing the Gas Demand + 474 + + + 475 + 42 + 6 + Source Power2X + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 293 + 475 + + + 476 + 42 + 37 + Source Gas Fields + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 289 + 476 + + + 477 + 42 + 38 + Source Gas Plants + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 292 + 477 + + + 478 + 42 + 39 + Source Gas Pipelines + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 321 + 478 + + + 479 + 42 + 40 + Gas Nodes + 1 + -1 + Gas Demands + 0 + -1 + true + true + 115 + set of gas nodes the demand occurs at + set of gas demands at this gas node + 479 + + + 480 + 42 + 41 + Source Gas Storages + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 290 + 480 + + + 481 + 42 + 46 + Linked Gas Contracts + 0 + -1 + Linked Gas Demands + 0 + -1 + true + true + 288 + gas contracts linked to the gas demand + set of gas demands linked with the gas contract + 481 + + + 482 + 42 + 46 + Source Gas Contracts + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 291 + 482 + + + 483 + 42 + 47 + Source Gas Transports + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 299 + 483 + + + 484 + 42 + 61 + Companies + 0 + -1 + Gas Demands + 0 + -1 + true + false + 9 + set of companies that own the gas demand + set of gas demands the company owns + 484 + + + 485 + 1 + 43 + Gas DSM Programs + 0 + -1 + true + true + 235 + Gas DSM Program objects + 485 + + + 486 + 43 + 43 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas DSM Program inherits from + Gas DSM Program objects inheriting from this template + 486 + + + 487 + 97 + 43 + Gas DSM Programs + 0 + -1 + Lists + 0 + -1 + true + true + 235 + set of Gas DSM Program objects in the List + set of Lists containing the Gas DSM Program + 487 + + + 488 + 43 + 42 + Gas Demands + 1 + -1 + Gas DSM Programs + 0 + -1 + true + false + 116 + set of gas demand for the DSM program + set of gas DSM programs for the gas demand + 488 + + + 489 + 43 + 72 + Constraints + 0 + -1 + Gas DSM Programs + 0 + -1 + true + true + 12 + set of Constraints on the Gas DSM Program + set of Gas DSM Programs in the Constraint + 489 + + + 490 + 43 + 73 + Objectives + 0 + -1 + Gas DSM Programs + 0 + -1 + true + true + 240 + set of Objectives on the Gas DSM Program + set of Gas DSM Programs in the Objective + 490 + + + 491 + 1 + 44 + Gas Basins + 0 + -1 + true + true + 175 + Gas Basin objects + 491 + + + 492 + 44 + 44 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Basin inherits from + Gas Basin objects inheriting from this template + 492 + + + 493 + 97 + 44 + Gas Basins + 0 + -1 + Lists + 0 + -1 + true + true + 175 + set of Gas Basin objects in the List + set of Lists containing the Gas Basin + 493 + + + 494 + 44 + 72 + Constraints + 0 + -1 + Gas Basins + 0 + -1 + true + true + 12 + set of Constraints on the Gas Basin + set of Gas Basins in the Constraint + 494 + + + 495 + 44 + 73 + Objectives + 0 + -1 + Gas Basins + 0 + -1 + true + true + 240 + set of Objectives on the Gas Basin + set of Gas Basins in the Objective + 495 + + + 496 + 1 + 45 + Gas Zones + 0 + -1 + true + true + 159 + Gas Zone objects + 496 + + + 497 + 45 + 45 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Zone inherits from + Gas Zone objects inheriting from this template + 497 + + + 498 + 97 + 45 + Gas Zones + 0 + -1 + Lists + 0 + -1 + true + true + 159 + set of Gas Zone objects in the List + set of Lists containing the Gas Zone + 498 + + + 499 + 45 + 2 + Generators + 0 + -1 + false + true + 36 + 499 + + + 500 + 45 + 37 + Gas Fields + 0 + -1 + false + true + 112 + 500 + + + 501 + 45 + 38 + Gas Plants + 0 + -1 + false + true + 210 + 501 + + + 502 + 45 + 39 + Exporting Gas Pipelines + 0 + -1 + false + true + 160 + 502 + + + 503 + 45 + 39 + Importing Gas Pipelines + 0 + -1 + false + true + 161 + 503 + + + 504 + 45 + 39 + Interzonal Gas Pipelines + 0 + -1 + false + true + 162 + 504 + + + 505 + 45 + 39 + Intrazonal Gas Pipelines + 0 + -1 + false + true + 163 + 505 + + + 506 + 45 + 41 + Gas Storages + 0 + -1 + false + true + 113 + 506 + + + 507 + 45 + 42 + Gas Demands + 0 + -1 + false + true + 116 + 507 + + + 508 + 45 + 46 + Gas Contracts + 0 + -1 + false + true + 207 + 508 + + + 509 + 45 + 47 + Exporting Gas Transports + 0 + -1 + false + true + 214 + 509 + + + 510 + 45 + 47 + Importing Gas Transports + 0 + -1 + false + true + 215 + 510 + + + 511 + 45 + 47 + Interzonal Gas Transports + 0 + -1 + false + true + 216 + 511 + + + 512 + 45 + 47 + Intrazonal Gas Transports + 0 + -1 + false + true + 217 + 512 + + + 513 + 1 + 46 + Gas Contracts + 0 + -1 + true + true + 207 + Gas Contract objects + 513 + + + 514 + 46 + 46 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Contract inherits from + Gas Contract objects inheriting from this template + 514 + + + 515 + 97 + 46 + Gas Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 207 + set of Gas Contract objects in the List + set of Lists containing the Gas Contract + 515 + + + 516 + 46 + 37 + Gas Fields + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 112 + gas fields that have a contract to produce gas + set of gas contracts associated with gas field production + 516 + + + 517 + 46 + 39 + Gas Pipelines + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 114 + gas pipelines that have a contract to transport gas + set of gas contracts associated with gas transportation + 517 + + + 518 + 46 + 40 + Gas Nodes + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 115 + gas nodes that have a contract to deliver gas + set of gas contracts associated with gas nodes + 518 + + + 519 + 46 + 47 + Gas Transports + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 211 + gas transports that have a contract to deliver gas + set of gas contracts associated with gas transport + 519 + + + 520 + 46 + 48 + Gas Paths + 0 + -1 + Gas Contracts + 0 + -1 + false + true + 303 + set of Gas Paths that are associated with a Gas Contract to deliver gas + set of Gas Contracts associated with the Gas Path + 520 + + + 521 + 46 + 61 + Companies + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 9 + company that have a contract to supply gas + set of gas contract supplying to the company + 521 + + + 522 + 46 + 72 + Constraints + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Gas Contract + set of Gas Contracts in the Constraint + 522 + + + 523 + 46 + 73 + Objectives + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Gas Contract + set of Gas Contracts in the Objective + 523 + + + 524 + 1 + 47 + Gas Transports + 0 + -1 + true + true + 211 + Gas Transport objects + 524 + + + 525 + 47 + 47 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Transport inherits from + Gas Transport objects inheriting from this template + 525 + + + 526 + 97 + 47 + Gas Transports + 0 + -1 + Lists + 0 + -1 + true + true + 211 + set of Gas Transport objects in the List + set of Lists containing the Gas Transport + 526 + + + 527 + 47 + 6 + Source Power2X + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 293 + 527 + + + 528 + 47 + 37 + Source Gas Fields + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 289 + 528 + + + 529 + 47 + 38 + Source Gas Plants + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 292 + 529 + + + 530 + 47 + 40 + Export Node + 0 + 1 + Exporting Gas Transports + 0 + -1 + true + false + 212 + gas node the gas transport exports from + set of gas transports exporting from the gas node + 530 + + + 531 + 47 + 40 + Import Node + 0 + -1 + Importing Gas Transports + 0 + -1 + true + true + 213 + gas node the gas transport imports to + set of gas transports importing to the gas node + 531 + + + 532 + 47 + 41 + Source Gas Storages + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 290 + 532 + + + 533 + 47 + 46 + Source Gas Contracts + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 291 + 533 + + + 534 + 47 + 47 + Source Gas Transports + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 299 + 534 + + + 535 + 47 + 48 + Gas Paths + 0 + -1 + Gas Transports + 0 + -1 + true + true + 303 + set of gas paths that the gas transport can take + set of gas transports that can travel along a gas path + 535 + + + 536 + 47 + 48 + Initial Gas Path + 0 + 1 + Gas Transports Started + 0 + -1 + true + true + 314 + initial gas path that the gas transport is on at the beginning of the horizon + set of gas transports that are already travelling along a gas path at the beginning of the horizon + 536 + + + 537 + 47 + 65 + Maintenances + 0 + -1 + Gas Transports + 0 + -1 + true + false + 179 + set of maintenance events on the gas transport + set of gas transports taken out by the maintenance event + 537 + + + 538 + 47 + 72 + Constraints + 0 + -1 + Gas Transports + 0 + -1 + true + true + 12 + set of Constraints on the Gas Transport + set of Gas Transports in the Constraint + 538 + + + 539 + 47 + 73 + Objectives + 0 + -1 + Gas Transports + 0 + -1 + true + true + 240 + set of Objectives on the Gas Transport + set of Gas Transports in the Objective + 539 + + + 540 + 1 + 48 + Gas Paths + 0 + -1 + true + true + 303 + Gas Path objects + 540 + + + 541 + 48 + 48 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Path inherits from + Gas Path objects inheriting from this template + 541 + + + 542 + 97 + 48 + Gas Paths + 0 + -1 + Lists + 0 + -1 + true + true + 303 + set of Gas Path objects in the List + set of Lists containing the Gas Path + 542 + + + 543 + 1 + 49 + Gas Capacity Release Offers + 0 + -1 + true + true + 239 + Gas Capacity Release Offer objects + 543 + + + 544 + 49 + 49 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Capacity Release Offer inherits from + Gas Capacity Release Offer objects inheriting from this template + 544 + + + 545 + 97 + 49 + Gas Capacity Release Offers + 0 + -1 + Lists + 0 + -1 + true + true + 239 + set of Gas Capacity Release Offer objects in the List + set of Lists containing the Gas Capacity Release Offer + 545 + + + 546 + 49 + 39 + Gas Pipelines + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + false + 114 + set of gas pipelines for the gas capacity release offers + set of gas capacity release offers for gas pipelines + 546 + + + 547 + 49 + 41 + Gas Storages + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + false + 113 + set of gas storages for the gas capacity release offers + set of gas capacity release offers for gas storages + 547 + + + 548 + 49 + 72 + Constraints + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + true + 12 + set of Constraints on the Gas Capacity Release Offer + set of Gas Capacity Release Offers in the Constraint + 548 + + + 549 + 49 + 73 + Objectives + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + true + 240 + set of Objectives on the Gas Capacity Release Offer + set of Gas Capacity Release Offers in the Objective + 549 + + + 550 + 1 + 50 + Water Plants + 0 + -1 + true + true + 188 + Water Plant objects + 550 + + + 551 + 50 + 50 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Plant inherits from + Water Plant objects inheriting from this template + 551 + + + 552 + 97 + 50 + Water Plants + 0 + -1 + Lists + 0 + -1 + true + true + 188 + set of Water Plant objects in the List + set of Lists containing the Water Plant + 552 + + + 553 + 50 + 24 + Node + 0 + 1 + Water Plants + 0 + -1 + true + false + 67 + Electric Node the Water Plant connects to + set of Water Plants connected to the Electric Node + 553 + + + 554 + 50 + 52 + Input Node + 0 + 1 + Water Plant Supplied + 0 + -1 + true + false + 208 + Water Node the Water Plant imports water from (or 'the sea' if none is defined) + set of Water Plants the Water Node supplies + 554 + + + 555 + 50 + 52 + Output Node + 1 + 1 + Supplying Water Plants + 0 + -1 + true + false + 209 + Water Node the Water Plant exports water to + set of Water Plants that supply the Water Node + 555 + + + 556 + 50 + 65 + Maintenances + 0 + -1 + Water Plants + 0 + -1 + true + false + 179 + set of maintenance events on the water plant + set of water plants taken out by the maintenance event + 556 + + + 557 + 50 + 72 + Constraints + 0 + -1 + Water Plants + 0 + -1 + true + true + 12 + set of Constraints on the Water Plant + set of Water Plants in the Constraint + 557 + + + 558 + 50 + 73 + Objectives + 0 + -1 + Water Plants + 0 + -1 + true + true + 240 + set of Objectives on the Water Plant + set of Water Plants in the Objective + 558 + + + 559 + 50 + 74 + Decision Variables + 0 + -1 + Water Plants + 0 + -1 + true + true + 166 + set of water plants whose equations include the decision variable + Decision Variables included in the Water Plant formulation + 559 + + + 560 + 1 + 51 + Water Pipelines + 0 + -1 + true + true + 190 + Water Pipeline objects + 560 + + + 561 + 51 + 51 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pipeline inherits from + Water Pipeline objects inheriting from this template + 561 + + + 562 + 97 + 51 + Water Pipelines + 0 + -1 + Lists + 0 + -1 + true + true + 190 + set of Water Pipeline objects in the List + set of Lists containing the Water Pipeline + 562 + + + 563 + 51 + 52 + Water Node From + 1 + 1 + Exporting Water Pipelines + 0 + -1 + true + false + 201 + Water Node the Water Pipeline exports from + set of Water Pipelines exporting from the Water Node + 563 + + + 564 + 51 + 52 + Water Node To + 1 + 1 + Importing Water Pipelines + 0 + -1 + true + false + 202 + Water Node the Water Pipeline imports to + set of Water Pipelines importing to the Water Node + 564 + + + 565 + 51 + 65 + Maintenances + 0 + -1 + Water Pipelines + 0 + -1 + true + false + 179 + set of maintenance events on the water pipeline + set of water pipelines taken out by the maintenance event + 565 + + + 566 + 51 + 72 + Constraints + 0 + -1 + Water Pipelines + 0 + -1 + true + true + 12 + set of Constraints on the Water Pipeline + set of Water Pipelines in the Constraint + 566 + + + 567 + 51 + 73 + Objectives + 0 + -1 + Water Pipelines + 0 + -1 + true + true + 240 + set of Objectives on the Water Pipeline + set of Water Pipelines in the Objective + 567 + + + 568 + 1 + 52 + Water Nodes + 0 + -1 + true + true + 191 + Water Node objects + 568 + + + 569 + 52 + 52 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Node inherits from + Water Node objects inheriting from this template + 569 + + + 570 + 97 + 52 + Water Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 191 + set of Water Node objects in the List + set of Lists containing the Water Node + 570 + + + 571 + 52 + 24 + Node + 0 + 1 + Water Nodes + 0 + -1 + true + false + 67 + Node the Water Node connects to + set of Water Nodes connected to the Electric Node + 571 + + + 572 + 52 + 55 + Water Zones + 0 + -1 + Water Nodes + 0 + -1 + true + true + 193 + set of Water Zones the Water node belongs to + set of Water Nodes in the Water Zone + 572 + + + 573 + 52 + 64 + Facilities + 0 + -1 + Water Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Water Node + set of Water Nodes the Facility connects to + 573 + + + 574 + 52 + 71 + Markets + 0 + -1 + Water Nodes + 0 + 1 + true + true + 61 + external water market connected to the water node + water node the market can buy and sell water at + 574 + + + 575 + 52 + 72 + Constraints + 0 + -1 + Water Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Water Node + set of Water Nodes in the Constraint + 575 + + + 576 + 52 + 73 + Objectives + 0 + -1 + Water Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Water Node + set of Water Nodes in the Objective + 576 + + + 577 + 1 + 53 + Water Storages + 0 + -1 + true + true + 189 + Water Storage objects + 577 + + + 578 + 53 + 53 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Storage inherits from + Water Storage objects inheriting from this template + 578 + + + 579 + 97 + 53 + Water Storages + 0 + -1 + Lists + 0 + -1 + true + true + 189 + set of Water Storage objects in the List + set of Lists containing the Water Storage + 579 + + + 580 + 53 + 52 + Water Node + 1 + 1 + Water Storages + 0 + -1 + true + false + 200 + Water Node the Water Storage connects to + set of Water Storages connected to the Water Node + 580 + + + 581 + 53 + 65 + Maintenances + 0 + -1 + Water Storages + 0 + -1 + true + false + 179 + set of maintenance events on the water storage + set of water storages taken out by the maintenance event + 581 + + + 582 + 53 + 72 + Constraints + 0 + -1 + Water Storages + 0 + -1 + true + true + 12 + set of Constraints on the Water Storage + set of Water Storages in the Constraint + 582 + + + 583 + 53 + 73 + Objectives + 0 + -1 + Water Storages + 0 + -1 + true + true + 240 + set of Objectives on the Water Storage + set of Water Storages in the Objective + 583 + + + 584 + 1 + 54 + Water Demands + 0 + -1 + true + true + 192 + Water Demand objects + 584 + + + 585 + 54 + 54 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Demand inherits from + Water Demand objects inheriting from this template + 585 + + + 586 + 97 + 54 + Water Demands + 0 + -1 + Lists + 0 + -1 + true + true + 192 + set of Water Demand objects in the List + set of Lists containing the Water Demand + 586 + + + 587 + 54 + 52 + Water Nodes + 1 + -1 + Water Demands + 0 + -1 + true + false + 191 + set of Water Nodes the Water Demand occurs at + set of Water Demands at this Water Node + 587 + + + 588 + 1 + 55 + Water Zones + 0 + -1 + true + true + 193 + Water Zone objects + 588 + + + 589 + 55 + 55 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Zone inherits from + Water Zone objects inheriting from this template + 589 + + + 590 + 97 + 55 + Water Zones + 0 + -1 + Lists + 0 + -1 + true + true + 193 + set of Water Zone objects in the List + set of Lists containing the Water Zone + 590 + + + 591 + 55 + 50 + Water Plants + 0 + -1 + false + true + 188 + 591 + + + 592 + 55 + 51 + Exporting Water Pipelines + 0 + -1 + false + true + 203 + 592 + + + 593 + 55 + 51 + Importing Water Pipelines + 0 + -1 + false + true + 204 + 593 + + + 594 + 55 + 51 + Interzonal Water Pipelines + 0 + -1 + false + true + 205 + 594 + + + 595 + 55 + 51 + Intrazonal Water Pipelines + 0 + -1 + false + true + 206 + 595 + + + 596 + 55 + 53 + Water Storages + 0 + -1 + false + true + 189 + 596 + + + 597 + 55 + 54 + Water Demands + 0 + -1 + false + true + 192 + 597 + + + 598 + 1 + 56 + Water Pump Stations + 0 + -1 + true + true + 254 + Water Pump Station objects + 598 + + + 599 + 56 + 56 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pump Station inherits from + Water Pump Station objects inheriting from this template + 599 + + + 600 + 97 + 56 + Water Pump Stations + 0 + -1 + Lists + 0 + -1 + true + true + 254 + set of Water Pump Station objects in the List + set of Lists containing the Water Pump Station + 600 + + + 601 + 56 + 51 + Water Pipeline + 0 + 1 + true + false + 256 + Water Pipeline connected to the water pump station + 601 + + + 602 + 56 + 53 + Downstream Water Storage + 0 + 1 + true + false + 258 + Water Storage situated downstream to the pump station + 602 + + + 603 + 56 + 53 + Upstream Water Storage + 0 + 1 + true + false + 257 + Water Storage situated upstream to the water pump station + 603 + + + 604 + 56 + 57 + Water Pumps + 0 + -1 + Water Pump Stations + 0 + 1 + true + true + 255 + Collection of water pumps associated with the water pump station + Water pump stations associated with a water pump + 604 + + + 605 + 56 + 72 + Constraints + 0 + -1 + Water Pump Stations + 0 + -1 + true + true + 12 + set of Constraints on the Water Pump Station + set of Water Pump Stations in the Constraint + 605 + + + 606 + 56 + 73 + Objectives + 0 + -1 + Water Pump Stations + 0 + -1 + true + true + 240 + set of Objectives on the Water Pump Station + set of Water Pump Stations in the Objective + 606 + + + 607 + 1 + 57 + Water Pumps + 0 + -1 + true + true + 255 + Water Pump objects + 607 + + + 608 + 57 + 57 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pump inherits from + Water Pump objects inheriting from this template + 608 + + + 609 + 97 + 57 + Water Pumps + 0 + -1 + Lists + 0 + -1 + true + true + 255 + set of Water Pump objects in the List + set of Lists containing the Water Pump + 609 + + + 610 + 57 + 72 + Constraints + 0 + -1 + Water Pumps + 0 + -1 + true + true + 12 + set of Constraints on the Water Pumps + set of Water Pumps in the Constraint + 610 + + + 611 + 1 + 58 + Vehicles + 0 + -1 + true + true + 241 + Vehicle objects + 611 + + + 612 + 58 + 58 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Vehicle inherits from + Vehicle objects inheriting from this template + 612 + + + 613 + 97 + 58 + Vehicles + 0 + -1 + Lists + 0 + -1 + true + true + 241 + set of Vehicle objects in the List + set of Lists containing the Vehicle + 613 + + + 614 + 58 + 59 + Charging Stations + 0 + -1 + Vehicles + 0 + -1 + true + true + 242 + set of Charging Stations used by the Vehicle + set of Vehicles that use the Charging Station + 614 + + + 615 + 58 + 60 + Fleets + 0 + -1 + Vehicles + 0 + -1 + true + false + 243 + set of Fleets the Vehicle belongs to + set of Vehicles in the Fleet + 615 + + + 616 + 58 + 62 + Commodities + 0 + -1 + Vehicles + 0 + -1 + true + false + 260 + set of Commodities consumed by the Vehicle + set of Vehicles consuming the Commodity + 616 + + + 617 + 58 + 72 + Constraints + 0 + -1 + Vehicles + 0 + -1 + true + true + 12 + set of Constraints on the Vehicle + set of Vehicles in the Constraint + 617 + + + 618 + 58 + 73 + Objectives + 0 + -1 + Vehicles + 0 + -1 + true + true + 240 + set of Objectives on the Vehicle + set of Vehicles in the Objective + 618 + + + 619 + 1 + 59 + Charging Stations + 0 + -1 + true + true + 242 + Charging Station objects + 619 + + + 620 + 59 + 59 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Charging Station inherits from + Charging Station objects inheriting from this template + 620 + + + 621 + 97 + 59 + Charging Stations + 0 + -1 + Lists + 0 + -1 + true + true + 242 + set of Charging Station objects in the List + set of Lists containing the Charging Station + 621 + + + 622 + 59 + 15 + Reserves + 0 + -1 + Charging Stations + 0 + -1 + true + true + 88 + set of Reserves provided by the Charging Station + set of Charging Stations providing the Reserve + 622 + + + 623 + 59 + 24 + Node + 1 + 1 + Charging Stations + 0 + -1 + true + false + 67 + Charging Station connection point in the electric network + set of Charging Stations connected to the electric Node + 623 + + + 624 + 59 + 62 + Commodities + 0 + -1 + Charging Stations + 0 + -1 + true + false + 260 + set of Commodities consumed by the Charging Station + set of Charging Stations consuming the Commodity + 624 + + + 625 + 59 + 72 + Constraints + 0 + -1 + Charging Stations + 0 + -1 + true + true + 12 + set of Constraints on the Charging Station + set of Charging Stations in the Constraint + 625 + + + 626 + 1 + 60 + Fleets + 0 + -1 + true + true + 243 + Fleet objects + 626 + + + 627 + 60 + 60 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fleet inherits from + Fleet objects inheriting from this template + 627 + + + 628 + 97 + 60 + Fleets + 0 + -1 + Lists + 0 + -1 + true + true + 243 + set of Fleet objects in the List + set of Lists containing the Fleet + 628 + + + 629 + 60 + 61 + Companies + 0 + -1 + Fleets + 0 + -1 + true + false + 9 + set of Companies that own the Fleet + set of Fleets owned by the Company + 629 + + + 630 + 1 + 61 + Companies + 0 + -1 + true + true + 9 + Company objects + 630 + + + 631 + 61 + 61 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Company inherits from + Company objects inheriting from this template + 631 + + + 632 + 97 + 61 + Companies + 0 + -1 + Lists + 0 + -1 + true + true + 9 + set of Company objects in the List + set of Lists containing the Company + 632 + + + 633 + 61 + 4 + Fuels + 0 + -1 + true + true + 31 + 633 + + + 634 + 61 + 11 + Emissions + 0 + -1 + Companies + 0 + -1 + true + true + 20 + set of emissions produced by the company + set of companies that produce the emission + 634 + + + 635 + 61 + 15 + Reserves + 0 + -1 + true + true + 88 + 635 + + + 636 + 61 + 21 + Regions + 0 + -1 + Companies + 0 + -1 + true + true + 85 + set of regions the company has load responsibilities in + set of companies that are responsible for the load in the region + 636 + + + 637 + 61 + 58 + Vehicles + 0 + -1 + true + true + 241 + 637 + + + 638 + 61 + 61 + Companies + 0 + -1 + false + true + 9 + set of Companies the Company connects to + 638 + + + 639 + 61 + 62 + Commodities + 0 + -1 + true + true + 260 + 639 + + + 640 + 61 + 64 + Facilities + 0 + -1 + Companies + 0 + -1 + true + true + 267 + set of Facilities owned by the Company + Companies that own the Facility + 640 + + + 641 + 61 + 71 + Markets + 0 + -1 + Companies + 0 + -1 + true + true + 61 + Markets the Company own trades in + Companies that own the trades in the Market + 641 + + + 642 + 61 + 72 + Constraints + 0 + -1 + Companies + 0 + -1 + true + true + 12 + set of Constraints on the Company + set of Companies in the Constraint + 642 + + + 643 + 61 + 73 + Objectives + 0 + -1 + Companies + 0 + -1 + true + true + 240 + set of Objectives on the Company + set of Companies in the Objective + 643 + + + 644 + 1 + 62 + Commodities + 0 + -1 + true + true + 260 + Commodity objects + 644 + + + 645 + 62 + 62 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Commodity inherits from + Commodity objects inheriting from this template + 645 + + + 646 + 97 + 62 + Commodities + 0 + -1 + Lists + 0 + -1 + true + true + 260 + set of Commodity objects in the List + set of Lists containing the Commodity + 646 + + + 647 + 62 + 71 + Markets + 0 + -1 + Commodities + 0 + 1 + true + false + 61 + Markets the Commodity is traded in + Commodity traded in the Market + 647 + + + 648 + 62 + 72 + Constraints + 0 + -1 + Commodities + 0 + -1 + true + true + 12 + set of Constraints on the Commodity + set of Commodities in the Constraint + 648 + + + 649 + 62 + 73 + Objectives + 0 + -1 + Commodities + 0 + -1 + true + true + 240 + set of Objectives on the Commodity + set of Commodities in the Objective + 649 + + + 650 + 1 + 63 + Processes + 0 + -1 + true + true + 261 + Process objects + 650 + + + 651 + 63 + 63 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Process inherits from + Process objects inheriting from this template + 651 + + + 652 + 97 + 63 + Processes + 0 + -1 + Lists + 0 + -1 + true + true + 261 + set of Process objects in the List + set of Lists containing the Process + 652 + + + 653 + 63 + 62 + Primary Input + 0 + 1 + Primary Consumers + 0 + -1 + true + true + 263 + the primary input Commodity to the Process + set of Processes for which this Commodity is the primary input + 653 + + + 654 + 63 + 62 + Primary Output + 0 + 1 + Primary Producers + 0 + -1 + true + true + 265 + the primary output Commodity of the Process + set of Processes for which this Commodity is the primary output + 654 + + + 655 + 63 + 62 + Secondary Inputs + 0 + -1 + Secondary Consumers + 0 + -1 + true + true + 264 + the set of secondary input Commodities to the Process + set of Processes for which this Commodity is a secondary input + 655 + + + 656 + 63 + 62 + Secondary Outputs + 0 + -1 + Secondary Producers + 0 + -1 + true + true + 266 + the set of secondary output Commodities of the Process + set of Processes for which this Commodity is a secondary output + 656 + + + 657 + 63 + 72 + Constraints + 0 + -1 + Processes + 0 + -1 + true + true + 12 + set of Constraints on the Process + set of Processes in the Constraint + 657 + + + 658 + 63 + 73 + Objectives + 0 + -1 + Processes + 0 + -1 + true + true + 240 + set of Objectives on the Process + set of Processes in the Objective + 658 + + + 659 + 1 + 64 + Facilities + 0 + -1 + true + true + 267 + Facility objects + 659 + + + 660 + 64 + 64 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Facility inherits from + Facility objects inheriting from this template + 660 + + + 661 + 97 + 64 + Facilities + 0 + -1 + Lists + 0 + -1 + true + true + 267 + set of Facility objects in the List + set of Lists containing the Facility + 661 + + + 662 + 64 + 62 + Primary Inputs + 0 + -1 + Primary Consuming Facilities + 0 + -1 + true + true + 268 + 662 + + + 663 + 64 + 62 + Primary Outputs + 0 + -1 + Primary Producing Facilities + 0 + -1 + true + true + 270 + 663 + + + 664 + 64 + 62 + Secondary Inputs + 0 + -1 + Secondary Consuming Facilities + 0 + -1 + true + true + 264 + 664 + + + 665 + 64 + 62 + Secondary Outputs + 0 + -1 + Secondary Producing Facilities + 0 + -1 + true + true + 266 + 665 + + + 666 + 64 + 63 + Primary Process + 0 + 1 + Primary Facilities + 0 + -1 + true + false + 276 + the primary Process performed by the Facility + set of Facilities where this is the primary Process + 666 + + + 667 + 64 + 63 + Secondary Processes + 0 + -1 + Secondary Facilities + 0 + -1 + true + true + 277 + set of secondary Processes performed by the Facility + set of Facilities where this is a secondary Process + 667 + + + 668 + 64 + 63 + Warm Up Process + 0 + 1 + Facilities Warmed Up + 0 + -1 + true + false + 295 + the Process that runs during the Facility warm up time + set of Facilities where this is the Warm Up Process + 668 + + + 669 + 64 + 65 + Maintenances + 0 + -1 + Facilities + 0 + -1 + true + false + 179 + set of maintenance events on the facility + set of Facilities taken out on maintenance + 669 + + + 670 + 64 + 67 + Flow Nodes + 0 + -1 + Facilities + 0 + -1 + true + true + 279 + Set of Flow Nodes the Facility connects to + set of Facilities connected to the Flow Node + 670 + + + 671 + 64 + 70 + Entities + 0 + -1 + Facilities + 0 + -1 + true + true + 273 + set of Entities associated with the Facility + set of Facilities associated with the Entity + 671 + + + 672 + 64 + 72 + Constraints + 0 + -1 + Facilities + 0 + -1 + true + true + 12 + set of Constraints on the Facility + set of Facilities in the Constraint + 672 + + + 673 + 64 + 73 + Objectives + 0 + -1 + Facilities + 0 + -1 + true + true + 240 + set of Objectives on the Facility + set of Facilities in the Objective + 673 + + + 674 + 64 + 77 + Conditions + 0 + -1 + Facilities + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Facility + set of Facilities that define when the Variable is active + 674 + + + 675 + 1 + 65 + Maintenances + 0 + -1 + true + true + 179 + Maintenance objects + 675 + + + 676 + 65 + 65 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Maintenance inherits from + Maintenance objects inheriting from this template + 676 + + + 677 + 97 + 65 + Maintenances + 0 + -1 + Lists + 0 + -1 + true + true + 179 + set of Maintenance objects in the List + set of Lists containing the Maintenance + 677 + + + 678 + 65 + 65 + Prerequisites + 0 + -1 + Dependencies + 0 + -1 + true + false + 180 + set of maintenance events that must precede this event + set of maintenance events that depend on the completion of this event + 678 + + + 679 + 65 + 72 + Constraints + 0 + -1 + Maintenances + 0 + -1 + true + true + 12 + set of Constraints on the Maintenance + set of Maintenances in the Constraint + 679 + + + 680 + 65 + 73 + Objectives + 0 + -1 + Maintenances + 0 + -1 + true + true + 240 + set of Objectives on the Maintenance + set of Maintenances in the Objective + 680 + + + 681 + 1 + 66 + Flow Networks + 0 + -1 + true + true + 278 + Flow Network objects + 681 + + + 682 + 66 + 66 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Network inherits from + Flow Network objects inheriting from this template + 682 + + + 683 + 97 + 66 + Flow Networks + 0 + -1 + Lists + 0 + -1 + true + true + 278 + set of Flow Network objects in the List + set of Lists containing the Flow Network + 683 + + + 684 + 66 + 62 + Commodity + 1 + 1 + Flow Networks + 0 + -1 + true + true + 287 + Commodity flowing on the Flow Network + set of Flow Networks flowing the Commodity + 684 + + + 685 + 66 + 64 + Facilities + 0 + -1 + Flow Networks + 0 + -1 + true + true + 267 + 685 + + + 686 + 66 + 67 + Flow Nodes + 0 + -1 + Flow Network + 0 + 1 + true + true + 279 + Set of Flow Nodes in the Flow Network + Flow Network the Flow Node belongs to + 686 + + + 687 + 66 + 69 + Flow Storages + 0 + -1 + Flow Network + 0 + -1 + true + true + 294 + 687 + + + 688 + 66 + 72 + Constraints + 0 + -1 + Flow Networks + 0 + -1 + true + true + 12 + set of Constraints on the Flow Network + set of Flow Networks in the Constraint + 688 + + + 689 + 66 + 73 + Objectives + 0 + -1 + Flow Networks + 0 + -1 + true + true + 240 + set of Objectives on the Flow Network + set of Flow Networks in the Objective + 689 + + + 690 + 1 + 67 + Flow Nodes + 0 + -1 + true + true + 279 + Flow Node objects + 690 + + + 691 + 67 + 67 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Node inherits from + Flow Node objects inheriting from this template + 691 + + + 692 + 97 + 67 + Flow Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 279 + set of Flow Node objects in the List + set of Lists containing the Flow Node + 692 + + + 693 + 67 + 70 + Entities + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 273 + set of Entities associated with the Flow Node + set of Flow Nodes associated with the Entity + 693 + + + 694 + 67 + 71 + Markets + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 61 + set of Markets connected to the Flow Node + Flow Nodes the Market is connected to + 694 + + + 695 + 67 + 72 + Constraints + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Flow Node + set of Flow Nodes in the Constraint + 695 + + + 696 + 67 + 73 + Objectives + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Flow Node + set of Flow Nodes in the Objective + 696 + + + 697 + 1 + 68 + Flow Paths + 0 + -1 + true + true + 280 + Flow Path objects + 697 + + + 698 + 68 + 68 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Path inherits from + Flow Path objects inheriting from this template + 698 + + + 699 + 97 + 68 + Flow Paths + 0 + -1 + Lists + 0 + -1 + true + true + 280 + set of Flow Path objects in the List + set of Lists containing the Flow Path + 699 + + + 700 + 68 + 67 + Flow Node From + 0 + 1 + Exporting Flow Paths + 0 + -1 + true + false + 282 + Flow Node the Flow Path exports from + set of Flow Paths exporting from the Flow Node + 700 + + + 701 + 68 + 67 + Flow Node To + 0 + 1 + Importing Flow Paths + 0 + -1 + true + false + 283 + Flow Node the Flow Path imports to + set of Flow Paths importing to the Flow Node + 701 + + + 702 + 68 + 70 + Entities + 0 + -1 + Flow Paths + 0 + -1 + true + true + 273 + set of Entities associated with the Flow Paths + set of Flow Paths associated with the Entity + 702 + + + 703 + 68 + 72 + Constraints + 0 + -1 + Flow Paths + 0 + -1 + true + true + 12 + set of Constraints on the Flow Path + set of Flow Paths in the Constraint + 703 + + + 704 + 68 + 73 + Objectives + 0 + -1 + Flow Paths + 0 + -1 + true + true + 240 + set of Objectives on the Flow Path + set of Flow Paths in the Objective + 704 + + + 705 + 1 + 69 + Flow Storages + 0 + -1 + true + true + 294 + Flow Storage objects + 705 + + + 706 + 69 + 69 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Storage inherits from + Flow Storage objects inheriting from this template + 706 + + + 707 + 97 + 69 + Flow Storages + 0 + -1 + Lists + 0 + -1 + true + true + 294 + set of Flow Storage objects in the List + set of Lists containing the Flow Storage + 707 + + + 708 + 69 + 67 + Flow Node + 1 + 1 + Flow Storages + 0 + -1 + true + false + 284 + Flow Node the Flow Storage connects to + 708 + + + 709 + 69 + 70 + Entities + 0 + -1 + Flow Storages + 0 + -1 + true + true + 273 + set of Entities associated with the Flow Storages + set of Flow Storage associated with the Entity + 709 + + + 710 + 69 + 72 + Constraints + 0 + -1 + Flow Storages + 0 + -1 + true + true + 12 + set of Constraints on the Flow Storage + set of Flow Storages in the Constraint + 710 + + + 711 + 69 + 73 + Objectives + 0 + -1 + Flow Storages + 0 + -1 + true + true + 240 + set of Objectives on the Flow Storage + set of Flow Storages in the Objective + 711 + + + 712 + 1 + 70 + Entities + 0 + -1 + true + true + 273 + Entity objects + 712 + + + 713 + 70 + 70 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Entity inherits from + Entity objects inheriting from this template + 713 + + + 714 + 97 + 70 + Entities + 0 + -1 + Lists + 0 + -1 + true + true + 273 + set of Entity objects in the List + set of Lists containing the Entity + 714 + + + 715 + 70 + 62 + Commodities + 0 + -1 + true + true + 260 + 715 + + + 716 + 70 + 72 + Constraints + 0 + -1 + Entities + 0 + -1 + true + true + 12 + set of Constraints on the Entity + set of Entities in the Constraint + 716 + + + 717 + 70 + 73 + Objectives + 0 + -1 + Entities + 0 + -1 + true + true + 240 + set of Objectives on the Entity + set of Entities in the Objective + 717 + + + 718 + 1 + 71 + Markets + 0 + -1 + true + true + 61 + Market objects + 718 + + + 719 + 71 + 71 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Market inherits from + Market objects inheriting from this template + 719 + + + 720 + 97 + 71 + Markets + 0 + -1 + Lists + 0 + -1 + true + true + 61 + set of Market objects in the List + set of Lists containing the Market + 720 + + + 721 + 71 + 70 + Entities + 0 + -1 + Markets + 0 + -1 + true + true + 273 + Entities that own the trades in the Market + Markets the Entity trades in + 721 + + + 722 + 71 + 72 + Constraints + 0 + -1 + Markets + 0 + -1 + true + true + 12 + set of Constraints on the Market + set of Markets in the Constraint + 722 + + + 723 + 71 + 73 + Objectives + 0 + -1 + Markets + 0 + -1 + true + true + 240 + set of Objectives on the Market + set of Markets in the Objective + 723 + + + 724 + 1 + 72 + Constraints + 0 + -1 + true + true + 12 + Constraint objects + 724 + + + 725 + 72 + 72 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Constraint inherits from + Constraint objects inheriting from this template + 725 + + + 726 + 97 + 72 + Constraints + 0 + -1 + Lists + 0 + -1 + true + true + 12 + set of Constraint objects in the List + set of Lists containing the Constraint + 726 + + + 727 + 72 + 77 + Conditions + 0 + -1 + Conditional Constraints + 0 + -1 + true + true + 11 + set of switching variables for this constraint + set of constraints switched by this variable + 727 + + + 728 + 1 + 73 + Objectives + 0 + -1 + true + true + 240 + Objective + 728 + + + 729 + 73 + 73 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Objective inherits from + Objective objects inheriting from this template + 729 + + + 730 + 97 + 73 + Objectives + 0 + -1 + Lists + 0 + -1 + true + true + 240 + set of Objective objects in the List + set of Lists containing the Objective + 730 + + + 731 + 1 + 74 + Decision Variables + 0 + -1 + true + true + 166 + Decision Variable objects + 731 + + + 732 + 74 + 74 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Decision Variable inherits from + Decision Variable objects inheriting from this template + 732 + + + 733 + 97 + 74 + Decision Variables + 0 + -1 + Lists + 0 + -1 + true + true + 166 + set of Decision Variable objects in the List + set of Lists containing the Decision Variable + 733 + + + 734 + 74 + 72 + Constraints + 0 + -1 + Decision Variables + 0 + -1 + true + true + 12 + set of Constraints on the Decision Variable + set of Decision Variables in the Constraint + 734 + + + 735 + 74 + 72 + Definition + 0 + 1 + Definitions + 0 + 1 + true + false + 168 + Constraint that defines the Decision Variable value + Decision Variable defined by this Constraint + 735 + + + 736 + 74 + 73 + Objectives + 0 + -1 + Decision Variables + 0 + -1 + true + true + 240 + set of Objectives on the Decision Variable + set of Decision Variables in the Objective + 736 + + + 737 + 1 + 75 + Nonlinear Constraints + 0 + -1 + true + true + 250 + Nonlinear Constraint objects + 737 + + + 738 + 75 + 75 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Nonlinear Constraint inherits from + Nonlinear Constraint objects inheriting from this template + 738 + + + 739 + 97 + 75 + Nonlinear Constraints + 0 + -1 + Lists + 0 + -1 + true + true + 250 + set of Nonlinear Constraint objects in the List + set of Lists containing the Nonlinear Constraint + 739 + + + 740 + 75 + 74 + Decision Variable X + 1 + 1 + true + false + 251 + Decision Variable object specifying "X" for the Nonlinear Constraint + 740 + + + 741 + 75 + 74 + Decision Variable Y + 1 + 1 + true + false + 252 + Decision Variable object specifying "Y" for the Nonlinear Constraint + 741 + + + 742 + 1 + 76 + Data Files + 0 + -1 + true + true + 16 + Data File objects + 742 + + + 743 + 97 + 76 + Data Files + 0 + -1 + Lists + 0 + -1 + true + true + 16 + set of Data File objects in the List + set of Lists containing the Data File + 743 + + + 744 + 1 + 77 + Variables + 0 + -1 + true + true + 103 + Variable objects + 744 + + + 745 + 97 + 77 + Variables + 0 + -1 + Lists + 0 + -1 + true + true + 103 + set of Variable objects in the List + set of Lists containing the Variable + 745 + + + 746 + 77 + 72 + Constraints + 0 + -1 + Variables + 0 + -1 + true + true + 12 + set of Constraints on the Variable + set of Variables in the Constraint + 746 + + + 747 + 77 + 73 + Objectives + 0 + -1 + Variables + 0 + -1 + true + true + 240 + set of Objectives on the Variable + set of Variables in the Objective + 747 + + + 748 + 77 + 77 + Variables + 0 + -1 + true + true + 103 + correlation matrix + 748 + + + 749 + 77 + 77 + Conditions + 0 + -1 + true + true + 11 + set of conditions the condition depends on + 749 + + + 750 + 1 + 78 + Timeslices + 0 + -1 + true + true + 98 + Timeslice objects + 750 + + + 751 + 97 + 78 + Timeslices + 0 + -1 + Lists + 0 + -1 + true + true + 98 + set of Timeslice objects in the List + set of Lists containing the Timeslice + 751 + + + 752 + 1 + 79 + Globals + 0 + -1 + true + true + 167 + Global objects + 752 + + + 753 + 97 + 79 + Globals + 0 + -1 + Lists + 0 + -1 + true + true + 167 + set of Global objects in the List + set of Lists containing the Global + 753 + + + 754 + 1 + 80 + Scenarios + 0 + -1 + true + true + 90 + Scenario objects + 754 + + + 755 + 97 + 80 + Scenarios + 0 + -1 + Lists + 0 + -1 + true + true + 90 + set of Scenario objects in the List + set of Lists containing the Scenario + 755 + + + 756 + 1 + 81 + Weather Stations + 0 + -1 + true + true + 233 + Weather station objects + 756 + + + 757 + 97 + 81 + Weather Stations + 0 + -1 + Lists + 0 + -1 + true + true + 233 + set of Weather Station objects in the List + set of Lists containing the Weather Station + 757 + + + 758 + 81 + 40 + Gas Node + 0 + -1 + Weather Stations + 0 + 1 + true + false + 117 + gas node the weather station connects to + set of weather stations connected to the gas node + 758 + + + 759 + 81 + 41 + Gas Storages + 0 + -1 + false + true + 113 + 759 + + + 760 + 81 + 42 + Gas Demands + 0 + -1 + false + true + 116 + 760 + + + 761 + 1 + 82 + Models + 0 + -1 + true + true + 64 + Model objects + 761 + + + 762 + 82 + 80 + Scenarios + 0 + -1 + Models + 0 + -1 + true + true + 90 + set of scenarios used by the model + set of models that use the scenario + 762 + + + 763 + 82 + 16 + Reliability + 0 + 1 + Models + 0 + -1 + true + false + 249 + Reliability object evaluated in the model + set of models that run this Reliability object + 763 + + + 764 + 82 + 84 + Horizon + 1 + 1 + Models + 0 + -1 + true + false + 43 + horizon for the model + set of models that run this Horizon + 764 + + + 765 + 82 + 85 + Report + 1 + 1 + Models + 0 + -1 + true + false + 86 + report for the model + set of models that use these Report settings + 765 + + + 766 + 82 + 87 + Preview + 0 + 1 + Models + 0 + -1 + true + false + 302 + Preview settings for the model + set of models that run this Preview + 766 + + + 767 + 82 + 88 + LT Plan + 0 + 1 + Models + 0 + -1 + true + false + 60 + LT Plan settings for the model + set of models that run this LT Plan + 767 + + + 768 + 82 + 89 + PASA + 0 + 1 + Models + 0 + -1 + true + false + 71 + PASA settings for the model + set of models that run the this PASA + 768 + + + 769 + 82 + 90 + MT Schedule + 0 + 1 + Models + 0 + -1 + true + false + 65 + MT Schedule settings for the model + set of models that run this MT Schedule + 769 + + + 770 + 82 + 91 + ST Schedule + 0 + 1 + Models + 0 + -1 + true + false + 91 + ST Schedule settings for the model + set of models that run this ST Schedule + 770 + + + 771 + 82 + 86 + Stochastic + 0 + 1 + Models + 0 + -1 + true + false + 93 + Stochastic settings for the model + set of models using these Stochastic settings + 771 + + + 772 + 82 + 92 + Transmission + 0 + 1 + Models + 0 + -1 + true + false + 100 + Transmission settings for Model + set of Models using these Transmission settings + 772 + + + 773 + 82 + 93 + Production + 0 + 1 + Models + 0 + -1 + true + false + 78 + Production settings for Model + set of Models using these Production settings + 773 + + + 774 + 82 + 94 + Competition + 0 + 1 + Models + 0 + -1 + true + false + 10 + Competition settings for Model + set of Models using these Competition settings + 774 + + + 775 + 82 + 95 + Performance + 0 + 1 + Models + 0 + -1 + true + false + 72 + Performance settings for Model + set of Models using these Performance settings + 775 + + + 776 + 82 + 96 + Diagnostic + 0 + 1 + Models + 0 + -1 + true + false + 18 + Diagnostic settings for Model + set of Models using these Diagnostic settings + 776 + + + 777 + 82 + 82 + Interleaved + 0 + 1 + true + false + 155 + model run interleaved with this model + 777 + + + 778 + 1 + 83 + Projects + 0 + -1 + true + true + 79 + Project objects + 778 + + + 779 + 83 + 82 + Models + 1 + -1 + Projects + 0 + -1 + true + true + 64 + set of models included in the project + set of projects the model is included in + 779 + + + 780 + 83 + 84 + Horizon + 1 + 1 + Projects + 0 + -1 + true + false + 43 + horizon for the project + set of projects that run this Horizon + 780 + + + 781 + 83 + 85 + Report + 1 + 1 + Projects + 0 + -1 + true + false + 86 + report for the project + set of projects using these Report settings + 781 + + + 782 + 1 + 84 + Horizons + 0 + -1 + true + true + 44 + Horizon objects + 782 + + + 783 + 1 + 85 + Reports + 0 + -1 + true + true + 87 + Report objects + 783 + + + 784 + 85 + 77 + Master Filter + 0 + 1 + Master Filtered Reports + 0 + -1 + true + true + 236 + master conditional filter that defines which periods will be reported + Report object which the master filter condition belongs to + 784 + + + 785 + 85 + 77 + Object Filter + 0 + -1 + Object Filtered Reports + 0 + -1 + true + true + 237 + set of filter conditions that define which objects will be reported + Report object which the condition belongs to + 785 + + + 786 + 85 + 97 + Lists + 0 + -1 + Reports + 0 + -1 + true + true + 120 + set of Lists in the Report + set of Report objects containing the List + 786 + + + 787 + 1 + 86 + Stochastic + 0 + -1 + true + true + 93 + Stochastic objects + 787 + + + 788 + 1 + 87 + Preview + 0 + -1 + true + true + 302 + Preview objects + 788 + + + 789 + 1 + 88 + LT Plan + 0 + -1 + true + true + 60 + LT Plan objects + 789 + + + 790 + 88 + 77 + Variables + 0 + -1 + LT Plans + 0 + -1 + true + true + 103 + Variables providing profiles for chronological slicing, fitting or sampling + set of LT Plans using the Variable profile for chronological slicing, fitting or sampling + 790 + + + 791 + 88 + 92 + Transmission + 0 + 1 + LT Plans + 0 + -1 + true + false + 100 + Transmission settings for LT Plan + set of LT Plans using these Transmission settings + 791 + + + 792 + 88 + 93 + Production + 0 + 1 + LT Plans + 0 + -1 + true + false + 78 + Production settings for LT Plan + set of LT Plans using these Production settings + 792 + + + 793 + 88 + 94 + Competition + 0 + 1 + LT Plans + 0 + -1 + true + false + 10 + Competition settings for LT Plan + set of LT Plans using these Competition settings + 793 + + + 794 + 88 + 95 + Performance + 0 + 1 + LT Plans + 0 + -1 + true + false + 72 + Performance settings for LT Plan + set of LT Plans using these Performance settings + 794 + + + 795 + 88 + 96 + Diagnostic + 0 + 1 + LT Plans + 0 + -1 + true + false + 18 + Diagnostic settings for LT Plan + set of LT Plans using these Diagnostic settings + 795 + + + 796 + 1 + 89 + PASA + 0 + -1 + true + true + 71 + PASA objects + 796 + + + 797 + 89 + 92 + Transmission + 0 + 1 + PASAs + 0 + -1 + true + false + 100 + Transmission settings for PASA + set of PASAs using these Transmission settings + 797 + + + 798 + 89 + 93 + Production + 0 + 1 + PASAs + 0 + -1 + true + false + 78 + Production settings for PASA + set of PASAs using these Production settings + 798 + + + 799 + 89 + 94 + Competition + 0 + 1 + PASAs + 0 + -1 + true + false + 10 + Competition settings for PASA + set of PASAs using these Competition settings + 799 + + + 800 + 89 + 95 + Performance + 0 + 1 + PASAs + 0 + -1 + true + false + 72 + Performance settings for PASA + set of PASAs using these Performance settings + 800 + + + 801 + 89 + 96 + Diagnostic + 0 + 1 + PASAs + 0 + -1 + true + false + 18 + Diagnostic settings for PASA + set of PASAs using these Diagnostic settings + 801 + + + 802 + 1 + 90 + MT Schedule + 0 + -1 + true + true + 65 + MT Schedule objects + 802 + + + 803 + 90 + 77 + Variables + 0 + -1 + MT Schedules + 0 + -1 + true + true + 103 + Variables providing profiles for chronological slicing, fitting or sampling + set of MT Schedules using the Variable profile for chronological slicing, fitting or sampling + 803 + + + 804 + 90 + 92 + Transmission + 0 + 1 + MT Schedules + 0 + -1 + true + false + 100 + Transmission settings for MT Schedule + set of MT Schedules using these Transmission settings + 804 + + + 805 + 90 + 93 + Production + 0 + 1 + MT Schedules + 0 + -1 + true + false + 78 + Production settings for MT Schedule + set of MT Schedules using these Production settings + 805 + + + 806 + 90 + 94 + Competition + 0 + 1 + MT Schedules + 0 + -1 + true + false + 10 + Competition settings for MT Schedule + set of MT Schedules using these Competition settings + 806 + + + 807 + 90 + 95 + Performance + 0 + 1 + MT Schedules + 0 + -1 + true + false + 72 + Performance settings for MT Schedule + set of MT Schedules using these Performance settings + 807 + + + 808 + 90 + 96 + Diagnostic + 0 + 1 + MT Schedules + 0 + -1 + true + false + 18 + Diagnostic settings for MT Schedule + set of MT Schedules using these Diagnostic settings + 808 + + + 809 + 1 + 91 + ST Schedule + 0 + -1 + true + true + 91 + ST Schedule objects + 809 + + + 810 + 91 + 92 + Transmission + 0 + 1 + ST Schedules + 0 + -1 + true + false + 100 + Transmission settings for ST Schedule + set of ST Schedules using these Transmission settings + 810 + + + 811 + 91 + 93 + Production + 0 + 1 + ST Schedules + 0 + -1 + true + false + 78 + Production settings for ST Schedule + set of ST Schedules using these Production settings + 811 + + + 812 + 91 + 94 + Competition + 0 + 1 + ST Schedules + 0 + -1 + true + false + 10 + Competition settings for ST Schedule + set of ST Schedules using these Competition settings + 812 + + + 813 + 91 + 95 + Performance + 0 + 1 + ST Schedules + 0 + -1 + true + false + 72 + Performance settings for ST Schedule + set of ST Schedules using these Performance settings + 813 + + + 814 + 91 + 96 + Diagnostic + 0 + 1 + ST Schedules + 0 + -1 + true + false + 18 + Diagnostic settings for ST Schedule + set of ST Schedules using these Diagnostic settings + 814 + + + 815 + 1 + 92 + Transmission + 0 + -1 + true + true + 100 + Transmission objects + 815 + + + 816 + 1 + 93 + Production + 0 + -1 + true + true + 78 + Production objects + 816 + + + 817 + 1 + 94 + Competition + 0 + -1 + true + true + 10 + Competition objects + 817 + + + 818 + 1 + 95 + Performance + 0 + -1 + true + true + 72 + Performance objects + 818 + + + 819 + 1 + 96 + Diagnostics + 0 + -1 + true + true + 19 + Diagnostic objects + 819 + + + 820 + 1 + 97 + Lists + 0 + -1 + true + true + 120 + List objects + 820 + + + 821 + 97 + 97 + Lists + 0 + -1 + true + true + 120 + set of List objects in the List + 821 + + + 822 + 1 + 98 + Layouts + 0 + -1 + true + true + 296 + Layout objects + 822 + + + 823 + 98 + 98 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Layout inherits from + Layout objects inheriting from this template + 823 + + + 824 + 97 + 98 + Layouts + 0 + -1 + Lists + 0 + -1 + true + true + 296 + set of Layout objects in the List + set of Lists containing the Layout + 824 + + + 825 + 98 + 9 + Storages + 0 + -1 + Layouts + 0 + -1 + true + true + 96 + set of Storage objects in the Layout + set of Layouts containing the Storage + 825 + + + 826 + 98 + 24 + Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 70 + set of Node objects in the Layout + set of Layouts containing the Node + 826 + + + 827 + 98 + 35 + Heat Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 220 + set of Heat Node objects in the Layout + set of Layouts containing the Heat Node + 827 + + + 828 + 98 + 40 + Gas Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 115 + set of Gas Node objects in the Layout + set of Layouts containing the Gas Node + 828 + + + 829 + 98 + 52 + Water Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 191 + set of Water Node objects in the Layout + set of Layouts containing the Water Node + 829 + + + 830 + 98 + 67 + Flow Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 279 + set of FlowNode objects in the Layout + set of Layouts containing the Flow Node + 830 + + + 117 + 7 + 118 + + + 117 + 8 + 118 + + + 193 + 188 + 214 + + + 207 + 201 + 630 + + + 217 + 12 + 301 + + + 218 + 85 + 301 + + + 219 + 214 + 114 + + + 220 + 149 + 301 + + + 221 + 150 + 301 + + + 222 + 158 + 301 + + + 224 + 214 + 214 + + + 227 + 325 + 301 + 326 + 301 + 1 + + + 228 + 326 + 301 + 325 + 301 + 1 + + + 229 + 325 + 301 + 326 + 301 + 1 + + + 229 + 326 + 301 + 325 + 301 + 1 + + + 230 + 325 + 301 + 326 + 301 + 0 + + + 230 + 326 + 301 + 325 + 301 + 0 + + + 231 + 341 + 301 + 342 + 301 + 1 + + + 232 + 342 + 301 + 341 + 301 + 1 + + + 233 + 341 + 301 + 342 + 301 + 1 + + + 233 + 342 + 301 + 341 + 301 + 1 + + + 234 + 341 + 301 + 342 + 301 + 0 + + + 234 + 342 + 301 + 341 + 301 + 0 + + + 235 + 393 + 301 + + + 236 + 428 + 301 + + + 237 + 461 + 301 + + + 238 + 553 + 301 + + + 240 + 301 + 307 + + + 241 + 301 + 310 + + + 255 + 12 + 302 + + + 256 + 12 + 303 + + + 257 + 85 + 302 + + + 258 + 85 + 303 + + + 259 + 252 + 114 + + + 260 + 149 + 303 + + + 261 + 150 + 303 + + + 262 + 149 + 302 + + + 263 + 150 + 302 + + + 264 + 158 + 302 + + + 265 + 158 + 303 + + + 268 + 252 + 252 + + + 270 + 325 + 303 + 326 + 303 + 1 + + + 271 + 325 + 302 + 326 + 302 + 1 + + + 272 + 326 + 303 + 325 + 303 + 1 + + + 273 + 326 + 302 + 325 + 302 + 1 + + + 274 + 325 + 302 + 326 + 302 + 1 + + + 274 + 326 + 302 + 325 + 302 + 1 + + + 275 + 325 + 302 + 326 + 302 + 0 + + + 275 + 326 + 302 + 325 + 302 + 0 + + + 276 + 341 + 303 + 342 + 303 + 1 + + + 277 + 341 + 302 + 342 + 302 + 1 + + + 278 + 342 + 303 + 341 + 303 + 1 + + + 279 + 342 + 302 + 341 + 302 + 1 + + + 280 + 341 + 302 + 342 + 302 + 1 + + + 280 + 342 + 302 + 341 + 302 + 1 + + + 281 + 341 + 302 + 342 + 302 + 0 + + + 281 + 342 + 302 + 341 + 302 + 0 + + + 282 + 393 + 302 + + + 283 + 393 + 303 + + + 284 + 428 + 302 + + + 285 + 428 + 303 + + + 286 + 461 + 302 + + + 287 + 461 + 303 + + + 288 + 553 + 302 + + + 290 + 302 + 307 + + + 291 + 303 + 307 + + + 292 + 302 + 310 + + + 293 + 303 + 310 + + + 499 + 18 + 450 + + + 500 + 419 + 450 + + + 501 + 430 + 450 + + + 502 + 439 + 450 + 440 + 450 + 1 + + + 503 + 440 + 450 + 439 + 450 + 1 + + + 504 + 439 + 450 + 440 + 450 + 1 + + + 504 + 440 + 450 + 439 + 450 + 1 + + + 505 + 439 + 450 + 440 + 450 + 0 + + + 505 + 440 + 450 + 439 + 450 + 0 + + + 506 + 464 + 450 + + + 507 + 479 + 450 + + + 508 + 518 + 450 + + + 509 + 530 + 450 + 531 + 450 + 1 + + + 510 + 531 + 450 + 530 + 450 + 1 + + + 511 + 530 + 450 + 531 + 450 + 1 + + + 511 + 531 + 450 + 530 + 450 + 1 + + + 512 + 530 + 450 + 531 + 450 + 0 + + + 512 + 531 + 450 + 530 + 450 + 0 + + + 591 + 555 + 572 + + + 592 + 563 + 572 + 564 + 572 + 1 + + + 593 + 564 + 572 + 563 + 572 + 1 + + + 594 + 563 + 572 + 564 + 572 + 1 + + + 594 + 564 + 572 + 563 + 572 + 1 + + + 595 + 563 + 572 + 564 + 572 + 0 + + + 595 + 564 + 572 + 563 + 572 + 0 + + + 596 + 580 + 572 + + + 597 + 587 + 572 + + + 633 + 24 + 7 + + + 634 + 630 + 114 + + + 635 + 630 + 163 + + + 636 + 630 + 214 + + + 637 + 629 + 615 + + + 639 + 640 + 663 + + + 639 + 640 + 665 + + + 662 + 653 + 666 + + + 663 + 654 + 666 + + + 664 + 655 + 666 + + + 664 + 655 + 667 + + + 665 + 656 + 666 + + + 665 + 656 + 667 + + + 685 + 670 + 686 + + + 687 + 708 + 686 + + + 715 + 671 + 663 + + + 715 + 671 + 665 + + + Dynamic + 0 + + + Hydro Model + Energy + + + Interface + 5 + + + Language + 9 + + + Lock Attributes + 0 + + + Lock Configuration + 0 + + + Lock Memberships + 0 + + + Lock Objects + 0 + + + Lock Properties + 0 + + + Revision + 97 + + + Units + Metric + + + Validated + 0 + + + Version + 11.000 + + + Saved With + PLEXOS 9.200 R06 x64 Edition + + + Culture + en-US English (United States) + + + UICulture + en-US English (United States) + + + Decimal + . + + + DBID + 7d279306-ff8a-4911-a567-f9fe3924b032 + + + 1 + 1 + 1 + 761 + 82 + 2 + + + 2 + 1 + 1 + 761 + 82 + 3 + + + 3 + 1 + 1 + 761 + 82 + 4 + + + 4 + 1 + 1 + 761 + 82 + 5 + + + 5 + 1 + 1 + 782 + 84 + 6 + + + 6 + 1 + 1 + 782 + 84 + 7 + + + 7 + 1 + 1 + 783 + 85 + 8 + + + 8 + 1 + 1 + 783 + 85 + 9 + + + 9 + 1 + 1 + 783 + 85 + 10 + + + 10 + 1 + 1 + 783 + 85 + 11 + + + 11 + 1 + 1 + 787 + 86 + 12 + + + 12 + 1 + 1 + 789 + 88 + 13 + + + 13 + 1 + 1 + 796 + 89 + 14 + + + 14 + 1 + 1 + 802 + 90 + 15 + + + 15 + 1 + 1 + 809 + 91 + 16 + + + 16 + 1 + 1 + 809 + 91 + 17 + + + 17 + 1 + 1 + 815 + 92 + 18 + + + 18 + 1 + 1 + 818 + 95 + 19 + + + 19 + 82 + 2 + 764 + 84 + 7 + + + 20 + 82 + 3 + 764 + 84 + 6 + + + 21 + 82 + 4 + 764 + 84 + 6 + + + 22 + 82 + 5 + 764 + 84 + 6 + + + 23 + 82 + 2 + 765 + 85 + 8 + + + 24 + 82 + 3 + 765 + 85 + 9 + + + 25 + 82 + 4 + 765 + 85 + 10 + + + 26 + 82 + 5 + 765 + 85 + 11 + + + 27 + 82 + 5 + 771 + 86 + 12 + + + 28 + 82 + 2 + 767 + 88 + 13 + + + 29 + 82 + 3 + 768 + 89 + 14 + + + 30 + 82 + 4 + 768 + 89 + 14 + + + 31 + 82 + 5 + 768 + 89 + 14 + + + 32 + 82 + 3 + 769 + 90 + 15 + + + 33 + 82 + 4 + 769 + 90 + 15 + + + 34 + 82 + 5 + 769 + 90 + 15 + + + 35 + 82 + 3 + 770 + 91 + 16 + + + 36 + 82 + 4 + 770 + 91 + 17 + + + 37 + 82 + 5 + 770 + 91 + 16 + + + 38 + 82 + 3 + 772 + 92 + 18 + + + 39 + 82 + 2 + 775 + 95 + 19 + + + 40 + 82 + 3 + 775 + 95 + 19 + + + 41 + 82 + 4 + 775 + 95 + 19 + + + 42 + 82 + 5 + 775 + 95 + 19 + + + 1 + 1 + System + 1 + the system object + 98bd24fd-e92b-4738-92d4-3f03a8a09cc3 + + + 2 + 82 + Long Term + 82 + Long Term model with LT Plan + 8ac14ba8-c29d-4805-a7c4-185199e7fe8b + + + 3 + 82 + Nodal + 82 + Nodal model with MT and ST Schedule + 480a9f72-97d2-47fc-bcd2-1e4e8d6dc089 + + + 4 + 82 + Regional + 82 + Regional model with MT and ST Schedule + d4b86f02-f545-4369-9b15-7f9fd90bcb77 + + + 5 + 82 + Reliability + 82 + Reliability study with MT and ST Schedule + d463d7cb-8038-4071-9b99-ee5970a45c2a + + + 6 + 84 + 2020 + 84 + The year 2020 + fc5f8da4-3567-44c9-aa2b-57434d2095c0 + + + 7 + 84 + 2020-29 + 84 + The 10-year study period 2020-29 + 459b3309-93ee-49b9-9272-7fb9a1329ea9 + + + 8 + 85 + Long Term + 85 + Reporting for Long Term model + 7b86dc77-6df9-4029-a7c9-a959bfc2dcb6 + + + 9 + 85 + Nodal + 85 + Reporting for Nodal model + 5ea40b2b-5b80-4523-ac3b-cda13d882afb + + + 10 + 85 + Regional + 85 + Reporting for Regional model + b72a94d3-ba54-402e-8391-52855d8aa49a + + + 11 + 85 + Reliability + 85 + Reporting for Reliability model + 606146e3-cbc4-4b78-bca4-70ae44a133bc + + + 12 + 86 + Monte Carlo s=20 + 86 + Monte Carlo simulation with a sample size of 20 + c217c361-f9b5-4434-9994-4514a249a0b8 + + + 13 + 88 + LDC r=10 + 88 + LT Plan for capacity expansion planning using LDC and discount rate of 10% + 72dd0286-9f68-4d74-bb24-c191c159e0d6 + + + 14 + 89 + Regional + 89 + PASA for maintenance scheduling + 45297721-62a1-457e-8891-0d644b7c3733 + + + 15 + 90 + Regional + 90 + MT Schedule for constraint decomposition in regional mode + 40f2a2ef-50fa-40dd-8779-885e4bde2cf6 + + + 16 + 91 + Nodal + 91 + ST Schedule chronological simulation in nodal mode + b1e6d38e-4b17-4b24-aec2-65ab7f1826ff + + + 17 + 91 + Regional + 91 + ST Schedule chronological simulation in regional mode + fbc7fb10-1173-4412-a0b7-0a64a178a59d + + + 18 + 92 + Large-scale 230kV + 92 + Transmission options for large-scale networks + e943f5d6-8907-468c-80f6-49e35620f1d9 + + + 19 + 95 + Gurobi + 95 + bb2917d7-545e-4de0-b95c-af1e9d373382 + + + 1 + 1 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the generator must be reported even if it is out-of-service + 800000 + true + + + 2 + 1 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the generator for the generation of outages + 101000000 + true + + + 3 + 1 + 2 + 3 + Dispatchable + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2895 + A dispatchable generator operates anywhere within its technical limits whereas a non-dispatchable generator operates at its maximum available rating at all times + 800000 + true + + + 4 + 1 + 2 + 4 + Max Heat Rate Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 432 + Maximum number of tranches in the fuel function piecewise linear approximation. + 1000 + true + + + 5 + 1 + 2 + 5 + Formulate Non-convex + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order. + 1000 + true + + + 6 + 1 + 2 + 6 + Hydro Efficiency Optimality + 0 + -1 + In (-1,0,2) + -1;"Auto";0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2763 + Controls when integers are used to enforce multi-band hydro efficiency functions to dispatch in order + true + + + 7 + 1 + 2 + 7 + Head Effects Method + 0 + 0 + In (0,1) + 0;"Backward Looking";1;"Dynamic" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1920 + Method used to account for the effects of storage head on efficiency + 41000 + true + + + 8 + 1 + 2 + 8 + Min Down Time Mode + 0 + 1 + In (0,1) + 0;"Relaxed";1;"Enforced" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1652 + Controls how [Min Down Time] is applied after outages. + 1000000080 + true + + + 9 + 1 + 2 + 9 + Forced Outage Rate Denominator + 0 + 0 + In (0,1) + 0;"Time";1;"Operating Time" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1819 + Denominator for Forced Outage Rate calculations + 100000000 + true + + + 10 + 1 + 2 + 10 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 100000000 + true + + + 11 + 1 + 2 + 11 + Fixed Load Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 202 + Method of interpreting zero values of the [Fixed Load] property. + 80 + true + + + 12 + 1 + 2 + 12 + Fixed Load Global + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2465 + If [Fixed Load] applies across all units or unit-by-unit + true + + + 13 + 1 + 2 + 13 + Min Load Global + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2321 + If [Min Load] applies across all units or unit-by-unit + true + + + 14 + 1 + 2 + 14 + Load Subtracter Global + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2846 + If [Load Subtracter] applies across all units or unit-by-unit + true + + + 15 + 1 + 2 + 15 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the generator can set price + 4000000 + true + + + 16 + 1 + 2 + 16 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 400000 + true + + + 17 + 1 + 2 + 17 + Offers Must Clear in Order + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 576 + Flag to control ordering of clearing of user-defined generator offers. + 400000 + true + + + 18 + 1 + 2 + 18 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the generator. + 1000000000 + true + + + 19 + 1 + 2 + 19 + Unit Commitment Period + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2389 + Period between unit commitment (on/off) decisions. + 1000000000 + true + + + 20 + 1 + 2 + 20 + Unit Commitment Aggregation + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2412 + Flag if the generator is aggregated into an equivalent single unit for the purpose of unit commitment + 1000000000 + true + + + 21 + 1 + 2 + 21 + Rounding Up Threshold + 0 + -1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 711 + Threshold at which non-integers are rounded up. + 1000000000 + true + + + 22 + 1 + 2 + 22 + Include in Rounded Relaxation Merit Order + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1792 + Flag if Generator is included in the Region merit order for Rounded Relaxation unit commitment. + 1000000000 + true + + + 23 + 1 + 2 + 23 + Start Profile Range + 0 + 0 + In (0,1) + 0;"Min Stable Level";1;"Max Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1615 + Maximum range for [Start Profile] + 1000000000 + true + + + 24 + 1 + 2 + 24 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 25 + 1 + 2 + 25 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 26 + 1 + 2 + 26 + Declining Depreciation Balance + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 130 + Balance applied to declining depreciation method + 8 + true + + + 27 + 1 + 2 + 27 + Production Decomposition Method + 0 + 0 + In (0,1) + 0;"Optimized";1;"Fixed" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 931 + Method used to decompose generator production from MT to ST Schedule + 200 + true + + + 28 + 1 + 2 + 28 + Include in Uplift + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1362 + If this generator's costs are included in the uplift calculations. + 4000000 + true + + + 29 + 1 + 2 + 29 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this generator receives capacity payments. + 8 + true + + + 30 + 1 + 2 + 30 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 31 + 1 + 2 + 31 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 20 + true + + + 32 + 1 + 2 + 32 + End Effects Method + 0 + 2 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period heat volumes. + 20 + true + + + 33 + 1 + 2 + 33 + Recycle Penalty + 61 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 20 + true + + + 34 + 1 + 2 + 34 + Pump Timeframe + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2545 + Maximum hours to pump after generation + false + + + 35 + 1 + 2 + 35 + Controllable Inflow + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2779 + Proportion of Natural Inflow that is controllable + 40000 + true + + + 36 + 1 + 2 + 36 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 20 + true + + + 37 + 1 + 2 + 37 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 20 + true + + + 38 + 1 + 2 + 38 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 20 + true + + + 39 + 1 + 2 + 39 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 20 + true + + + 40 + 1 + 2 + 40 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 20 + true + + + 41 + 1 + 2 + 41 + Decomposition Bound Penalty + 61 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 20 + true + + + 42 + 1 + 2 + 42 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 20 + true + + + 43 + 1 + 2 + 43 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the generator's capacity acts strategically + 40 + true + + + 44 + 1 + 2 + 44 + Transition Type + 0 + 0 + In (0,1) + 0;"Individual";1;"Group" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1881 + If the generator can transition between a single generator or to a group of generators. + 1000000000 + true + + + 45 + 1 + 2 + 45 + Simultaneous Pump and Generation + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2628 + Pumped storage can pump and generate simultaneously + 80 + true + + + 46 + 1 + 2 + 46 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 47 + 1 + 2 + 47 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 48 + 1 + 2 + 48 + Min Up Time by Cooling State + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2832 + determines whether cooling states are considered for Min Up Time + true + + + 49 + 1 + 2 + 49 + Scale Participation Factors + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2993 + Flag if participation factors should be scaled for a generator + 800000 + false + + + 50 + 1 + 3 + 50 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 51 + 1 + 3 + 51 + Max Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 414 + Maximum generating capacity of each unit + 5 + true + + + 52 + 1 + 3 + 52 + Min Stable Level + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 501 + Minimum stable generation level + 1000000081 + true + + + 53 + 1 + 3 + 53 + Min Stable Level Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2629 + Penalty applied to violation of min stable level. + 1000000081 + true + + + 54 + 1 + 3 + 54 + Min Stable Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1372 + Minimum stable generation level as a proportion of [Max Capacity] + 1000000080 + true + + + 55 + 1 + 3 + 55 + Fuel Price + 29 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 225 + Fuel price (when not using Fuels collection) + 2000000000 + true + + + 56 + 1 + 3 + 56 + Load Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate. + 1000 + true + + + 57 + 1 + 3 + 57 + Heat Rate + 36 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 260 + Average heat rate (total fuel divided by total generation) + 1001 + true + + + 58 + 1 + 3 + 58 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 59 + 1 + 3 + 59 + Heat Rate Incr + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 60 + 1 + 3 + 60 + Heat Rate Incr2 + 38 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 264 + Second-order polynomial term in unit fuel use function + 1000 + true + + + 61 + 1 + 3 + 61 + Heat Rate Incr3 + 44 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 265 + Third-order polynomial term in unit fuel use function + 1000 + true + + + 62 + 1 + 3 + 62 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 63 + 1 + 3 + 63 + Pump VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2626 + Variable operation and maintenance charge for pump + 2000000001 + false + + + 64 + 1 + 3 + 64 + Generating VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2627 + Variable operation and maintenance charge for generating + 2000000001 + false + + + 65 + 1 + 3 + 65 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 66 + 1 + 3 + 66 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge for generation + 2000000000 + true + + + 67 + 1 + 3 + 67 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running a generating unit when on-line + 20000000 + true + + + 68 + 1 + 3 + 68 + Generation Credit + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2764 + Credit received for generation + 2000000000 + true + + + 69 + 1 + 3 + 69 + Generation Credit Start Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2765 + Year to start applying Generation Credits + 1000000080 + true + + + 70 + 1 + 3 + 70 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 71 + 1 + 3 + 71 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 72 + 1 + 3 + 72 + Run Up Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while running the unit up from zero to [Min Stable Level]. + 80000000 + true + + + 73 + 1 + 3 + 73 + Start Profile + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for running the unit up from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 74 + 1 + 3 + 74 + Start Profile Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2639 + Penalty for violation of [Start Profile]. + 80 + true + + + 75 + 1 + 3 + 75 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 76 + 1 + 3 + 76 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 77 + 1 + 3 + 77 + Run Down Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1020 + Ramp rate that applies while running the unit down from [Min Stable Level] to zero + 200000000 + true + + + 78 + 1 + 3 + 78 + Shutdown Profile + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 933 + Detailed regime for running the unit down from [Min Stable Level] when [Run Down Rate] is non-constant. + 200000000 + true + + + 79 + 1 + 3 + 79 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 80 + 1 + 3 + 80 + Rolling Planning Bonus + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2519 + Bonus for remaining online at the end of the look-ahead + 1000000000 + true + + + 81 + 1 + 3 + 81 + Rating + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 665 + Rated capacity of units + 81 + true + + + 82 + 1 + 3 + 82 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + true + + + 83 + 1 + 3 + 83 + Rating Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2631 + Penalty for violation of Rating + true + + + 84 + 1 + 3 + 84 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 85 + 1 + 3 + 85 + Min Up Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2592 + Penalty for violation of min up time + 1000000080 + true + + + 86 + 1 + 3 + 86 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 87 + 1 + 3 + 87 + Min Down Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2593 + Penalty for violation of min down time + 1000000080 + true + + + 88 + 1 + 3 + 88 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 89 + 1 + 3 + 89 + Max Up Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2594 + Penalty for violation of max up time + 1000000080 + true + + + 90 + 1 + 3 + 90 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 91 + 1 + 3 + 91 + Max Down Time Penalty + 48 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2620 + Penalty for violation of max down time + 1000000080 + true + + + 92 + 1 + 3 + 92 + Generating Units + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2531 + Number of generating units + 1000000080 + true + + + 93 + 1 + 3 + 93 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 94 + 1 + 3 + 94 + Fixed Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load + 10000080 + true + + + 95 + 1 + 3 + 95 + Fixed Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1092 + Penalty for violation of [Fixed Load]. + 80 + true + + + 96 + 1 + 3 + 96 + Min Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 486 + Minimum level of station load (must run/run of river) + 80 + true + + + 97 + 1 + 3 + 97 + Min Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1093 + Penalty for violation of [Min Load]. + 80 + true + + + 98 + 1 + 3 + 98 + Max Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 436 + Maximum level of unit load (unit may provide spinning reserve with remainder of spare capacity) + 80 + true + + + 99 + 1 + 3 + 99 + Max Load Penalty + 33 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2595 + Penalty for violation of [Max Load]. + 80 + true + + + 100 + 1 + 3 + 100 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Number of units that should be committed + 1000000080 + true + + + 101 + 1 + 3 + 101 + Fuel Mix Penalty + 29 + 0 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 222 + Penalty applied to violations of fuel mixing constraints + 1000 + true + + + 102 + 1 + 3 + 102 + Ramp Up Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Load point for use with multi-band Max Ramp Up constraints + 80 + true + + + 103 + 1 + 3 + 103 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate that applies at the given load point + 80 + true + + + 104 + 1 + 3 + 104 + Ramp Up Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 105 + 1 + 3 + 105 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 106 + 1 + 3 + 106 + Ramp Down Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Load point for use with multi-band Max Ramp Down constraints + 80 + true + + + 107 + 1 + 3 + 107 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate that applies at the given load point + 80 + true + + + 108 + 1 + 3 + 108 + Ramp Down Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 109 + 1 + 3 + 109 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 110 + 1 + 3 + 110 + Rough Running Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 709 + Start point of rough running range + 80 + true + + + 111 + 1 + 3 + 111 + Rough Running Range + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 710 + Length of rough running range (must be paired with Rough Running Point) + 80 + true + + + 112 + 1 + 3 + 112 + Regulation Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 673 + Start point of regulation reserve range + 2 + true + + + 113 + 1 + 3 + 113 + Regulation Range + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 674 + Length of regulation reserve range (must be paired with Regulation Point) + 2 + true + + + 114 + 1 + 3 + 114 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of capacity + 2 + true + + + 115 + 1 + 3 + 115 + Aux Fixed + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 116 + 1 + 3 + 116 + Aux Base + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 117 + 1 + 3 + 117 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of generation + 200000 + true + + + 118 + 1 + 3 + 118 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) + 600000 + true + + + 119 + 1 + 3 + 119 + Natural Inflow + 25 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 530 + Natural inflow to the generator (controllable and uncontrolled) + 40000 + true + + + 120 + 1 + 3 + 120 + Efficiency Base + 119 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 887 + Flow rate at notional zero load for hydro unit + 41000 + true + + + 121 + 1 + 3 + 121 + Efficiency Incr + 120 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Efficiency of hydro generation + 41000 + true + + + 122 + 1 + 3 + 122 + Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1831 + Annual degradation in generating efficiency with age + 1000 + false + + + 123 + 1 + 3 + 123 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 639 + Efficiency of pumping + 8041001 + true + + + 124 + 1 + 3 + 124 + Pump Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 642 + Load drawn by a unit in pumping mode + 8040001 + true + + + 125 + 1 + 3 + 125 + Pump Load Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2736 + A multiplier (percentage) on the pump load + 80 + true + + + 126 + 1 + 3 + 126 + Pump Load Penalty + 33 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2596 + Penalty for violation of Pump Load. + 8040080 + true + + + 127 + 1 + 3 + 127 + Pump Units + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 645 + Number of pump units + 8040004 + true + + + 128 + 1 + 3 + 128 + Min Pump Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 490 + Minimum unit load while pumping + 8040080 + true + + + 129 + 1 + 3 + 129 + Must Pump Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 915 + Number of pump units that must be running in pump mode + 1008040080 + true + + + 130 + 1 + 3 + 130 + Max Units Pumping + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1145 + Maximum number of units allowed to be running in pump mode. + 1008040080 + true + + + 131 + 1 + 3 + 131 + Fixed Pump Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1328 + Fixed pump load + 8040080 + true + + + 132 + 1 + 3 + 132 + Fixed Pump Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1329 + Penalty for violation of [Fixed Pump Load]. + 8040080 + true + + + 133 + 1 + 3 + 133 + Pump UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1229 + Use of system charge for pump load + 2008040000 + true + + + 134 + 1 + 3 + 134 + Min Pump Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1802 + Minimum number of hours a unit must be run in pump mode after being started + 1000000080 + true + + + 135 + 1 + 3 + 135 + Min Pump Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1829 + Minimum number of hours a unit must be off after being shut down from pump mode + 1000000080 + true + + + 136 + 1 + 3 + 136 + Max Pump Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2888 + Maximum number of hours a unit can be run in pump mode after being started + 1000000080 + true + + + 137 + 1 + 3 + 137 + Generation Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1932 + Minimum time between operating in generation mode and pump mode + 8000000 + true + + + 138 + 1 + 3 + 138 + Pump Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1933 + Minimum time between operating in pump mode and generation mode + 8000000 + true + + + 139 + 1 + 3 + 139 + Reserves VO&M Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 690 + Variable O&M cost associated with providing spinning reserve + 2000000002 + true + + + 140 + 1 + 3 + 140 + Sync Cond Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 775 + Maximum number of synchronous condenser units + 40006 + true + + + 141 + 1 + 3 + 141 + Must-run Sync Cond Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 526 + Number of must-run synchronous condenser units + 40082 + true + + + 142 + 1 + 3 + 142 + Sync Cond Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 772 + Load drawn by a unit in synchronous condenser mode + 40002 + true + + + 143 + 1 + 3 + 143 + Sync Cond VO&M Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 776 + Variable O&M cost associated with running a unit in synchronous condenser mode + 2000040002 + true + + + 144 + 1 + 3 + 144 + Reserve Share + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 689 + Proportion of maximum capacity that must be set aside for reserves + 2 + true + + + 145 + 1 + 3 + 145 + Initial Generation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 313 + Generation at time zero + 80000 + true + + + 146 + 1 + 3 + 146 + Initial Units Generating + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 317 + Number of units generating at time zero + 1000080000 + true + + + 147 + 1 + 3 + 147 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the unit has been up for at time zero + 1000080000 + true + + + 148 + 1 + 3 + 148 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the unit has been down for at time zero + 1000080000 + true + + + 149 + 1 + 3 + 149 + Initial Pumping + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1827 + Generator pump load at time zero + 80000 + false + + + 150 + 1 + 3 + 150 + Initial Units Pumping + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1828 + Number of units pumping at time zero + 1000080000 + true + + + 151 + 1 + 3 + 151 + Initial Hours Pumping + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1931 + Hours the unit has been pumping for at time zero + 1000080000 + true + + + 152 + 1 + 3 + 152 + Last Start State + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 934 + Number of hours the unit had been down before the last start + 1000080000 + true + + + 153 + 1 + 3 + 153 + Reference Generation + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 669 + Generation level for generation slack PTDF calculation + 800000000 + true + + + 154 + 1 + 3 + 154 + Load Subtracter + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1296 + Generation subtracted from the System load duration curve prior to slicing. + 10100000 + true + + + 155 + 1 + 3 + 155 + Price Following + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1775 + Proportion of energy optimized, where the remainder is proportional load following + 40000 + true + + + 156 + 1 + 3 + 156 + Load Following Profile + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1773 + Profile to follow for proportional load following + 40000 + true + + + 157 + 1 + 3 + 157 + Load Following Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1774 + Regression factor for proportional load following + 40000 + true + + + 158 + 1 + 3 + 158 + Boiler Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 40 + Efficiency of the boiler component of a combined-cycle plant + 10 + true + + + 159 + 1 + 3 + 159 + Heat Load + 15 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 255 + Waste heat that must be extracted for exogenous loads (CCGT) + 30 + true + + + 160 + 1 + 3 + 160 + Power to Heat Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 611 + Ratio of heat production to electric production + 20 + true + + + 161 + 1 + 3 + 161 + CHP Electric Heat Rate Incr + 36 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 71 + Incremental electric heat rate in heating mode + 20 + true + + + 162 + 1 + 3 + 162 + CHP Heat Surrogate Rate Incr + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 72 + Notional value for heat fuel offtake estimation. + 20 + true + + + 163 + 1 + 3 + 163 + Boiler Heat Rate Incr + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 42 + Incremental heat rate for heat production from boiler + 20 + true + + + 164 + 1 + 3 + 164 + Max Boiler Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 413 + Maximum heat production from ancillary boiler + 20 + true + + + 165 + 1 + 3 + 165 + Max Heat + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1514 + Maximum heat allowed in storage + 400020000 + true + + + 166 + 1 + 3 + 166 + Min Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1515 + Minimum heat allowed in storage + 400020000 + true + + + 167 + 1 + 3 + 167 + Max Heat Penalty + 29 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2597 + Adds a penalty to the max heat constraint to allow for relaxation + 2000000000 + true + + + 168 + 1 + 3 + 168 + Opening Heat + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1513 + Initial heat in the storage + 400020000 + true + + + 169 + 1 + 3 + 169 + Heat Withdrawal Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1518 + Incremental cost of withdrawing heat from the storage + 400020000 + true + + + 170 + 1 + 3 + 170 + Heat Injection Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1519 + Incremental cost of injecting heat into the storage + 400020000 + true + + + 171 + 1 + 3 + 171 + Fixed Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1338 + Generic annual fixed charge + 8008 + true + + + 172 + 1 + 3 + 172 + Heat Loss + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1516 + Rate at which heat is lost from storage + 400020000 + true + + + 173 + 1 + 3 + 173 + Water Offtake + 68 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1801 + Water recycled through the generator (e.g. for cooling) + 8000000000 + true + + + 174 + 1 + 3 + 174 + Water Consumption + 68 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1803 + Water consumed by the generator (e.g. evaporative cooling losses) + 8000000000 + true + + + 175 + 1 + 3 + 175 + Max Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 451 + Maximum rate of release from each unit + 40080 + true + + + 176 + 1 + 3 + 176 + AC Reactive Power Minimum + 122 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2953 + The minimum reactive power available + 800000000 + false + + + 177 + 1 + 3 + 177 + AC Reactive Power Maximum + 122 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2954 + The maximum reactive power available + 800000000 + false + + + 178 + 1 + 3 + 178 + Turbine Blade Radius + 23 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 3018 + Turbine Blade Radius + 10000080 + true + + + 179 + 1 + 3 + 179 + Wind Power Coefficient + 0 + 0.593 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 3019 + Wind Power Coefficient + 10000080 + true + + + 180 + 1 + 9 + 180 + Max Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 423 + Maximum energy + 80 + true + + + 181 + 1 + 9 + 180 + Max Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1548 + Maximum energy in hour + 80 + true + + + 182 + 1 + 9 + 180 + Max Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 424 + Maximum energy in day + 80 + true + + + 183 + 1 + 9 + 180 + Max Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 426 + Maximum energy in week + 80 + true + + + 184 + 1 + 9 + 180 + Max Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 425 + Maximum energy in month + 80 + true + + + 185 + 1 + 9 + 180 + Max Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 427 + Maximum energy in year + 80 + true + + + 186 + 1 + 9 + 181 + Min Energy + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1110 + Minimum energy + 80 + true + + + 187 + 1 + 9 + 181 + Min Energy Hour + 1 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1549 + Minimum energy in hour + 80 + true + + + 188 + 1 + 9 + 181 + Min Energy Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1111 + Minimum energy in day + 80 + true + + + 189 + 1 + 9 + 181 + Min Energy Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1112 + Minimum energy in week + 80 + true + + + 190 + 1 + 9 + 181 + Min Energy Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1113 + Minimum energy in month + 80 + true + + + 191 + 1 + 9 + 181 + Min Energy Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1114 + Minimum energy in year + 80 + true + + + 192 + 1 + 9 + 182 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor (energy constraint) + 80 + true + + + 193 + 1 + 9 + 182 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 194 + 1 + 9 + 182 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 195 + 1 + 9 + 182 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 196 + 1 + 9 + 182 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 197 + 1 + 9 + 182 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 198 + 1 + 9 + 183 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor + 80 + true + + + 199 + 1 + 9 + 183 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 200 + 1 + 9 + 183 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 201 + 1 + 9 + 183 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 202 + 1 + 9 + 183 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 203 + 1 + 9 + 183 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 204 + 1 + 9 + 184 + Max Energy Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1190 + Penalty applied to violations of [Max Energy] and [Max Capacity Factor] constraints. + 80 + true + + + 205 + 1 + 9 + 185 + Min Energy Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1191 + Penalty applied to violations of [Min Energy] and [Min Capacity Factor] constraints. + 80 + true + + + 206 + 1 + 9 + 186 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 207 + 1 + 9 + 186 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 208 + 1 + 9 + 186 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 209 + 1 + 9 + 186 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 210 + 1 + 9 + 186 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 211 + 1 + 9 + 186 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 212 + 1 + 9 + 187 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints. + 1080000080 + true + + + 213 + 1 + 9 + 188 + Energy Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 868 + Scalar applied to generator energy limits and energy implied by capacity factor constraints + 80 + true + + + 214 + 1 + 9 + 189 + Max Generation Curtailed + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2922 + Maximum generation curtailed + 80 + true + + + 215 + 1 + 9 + 189 + Max Generation Curtailed Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2923 + Maximum generation curtailed in hour + 80 + true + + + 216 + 1 + 9 + 189 + Max Generation Curtailed Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2924 + Maximum generation curtailed in day + 80 + true + + + 217 + 1 + 9 + 189 + Max Generation Curtailed Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2925 + Maximum generation curtailed in week + 80 + true + + + 218 + 1 + 9 + 189 + Max Generation Curtailed Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2926 + Maximum generation curtailed in month + 80 + true + + + 219 + 1 + 9 + 189 + Max Generation Curtailed Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2927 + Maximum generation curtailed in year + 80 + true + + + 220 + 1 + 9 + 190 + Max Generation Curtailment Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2928 + Maximum proportion of generation curtailed + 80 + true + + + 221 + 1 + 9 + 190 + Max Generation Curtailment Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2929 + Maximum proportion of generation curtailed in hour + 80 + true + + + 222 + 1 + 9 + 190 + Max Generation Curtailment Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2930 + Maximum proportion of generation curtailed in day + 80 + true + + + 223 + 1 + 9 + 190 + Max Generation Curtailment Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2931 + Maximum proportion of generation curtailed in week + 80 + true + + + 224 + 1 + 9 + 190 + Max Generation Curtailment Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2932 + Maximum proportion of generation curtailed in month + 80 + true + + + 225 + 1 + 9 + 190 + Max Generation Curtailment Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2933 + Maximum proportion of generation curtailed in year + 80 + true + + + 226 + 1 + 9 + 191 + Max Heat Withdrawal + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1520 + Maximum amount of heat that can be withdrawn from the storage + 400020000 + true + + + 227 + 1 + 9 + 191 + Max Heat Withdrawal Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1553 + Maximum amount of heat that can be withdrawn from the storage in a hour + 400020000 + true + + + 228 + 1 + 9 + 191 + Max Heat Withdrawal Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1521 + Maximum amount of heat that can be withdrawn from the storage in a day + 400020000 + true + + + 229 + 1 + 9 + 191 + Max Heat Withdrawal Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1522 + Maximum amount of heat that can be withdrawn from the storage in a week + 400020000 + true + + + 230 + 1 + 9 + 191 + Max Heat Withdrawal Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1523 + Maximum amount of heat that can be withdrawn from the storage in a month + 400020000 + true + + + 231 + 1 + 9 + 191 + Max Heat Withdrawal Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1524 + Maximum amount of heat that can be withdrawn from the storage in a year + 400020000 + true + + + 232 + 1 + 9 + 192 + Max Heat Injection + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1525 + Maximum amount of heat that can be injected into the storage + 400020000 + true + + + 233 + 1 + 9 + 192 + Max Heat Injection Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1554 + Maximum amount of heat that can be injected into the storage in a hour + 400020000 + true + + + 234 + 1 + 9 + 192 + Max Heat Injection Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1526 + Maximum amount of heat that can be injected into the storage in a day + 400020000 + true + + + 235 + 1 + 9 + 192 + Max Heat Injection Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1527 + Maximum amount of heat that can be injected into the storage in a week + 400020000 + true + + + 236 + 1 + 9 + 192 + Max Heat Injection Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1528 + Maximum amount of heat that can be injected into the storage in a month + 400020000 + true + + + 237 + 1 + 9 + 192 + Max Heat Injection Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1529 + Maximum amount of heat that can be injected into the storage in a year + 400020000 + true + + + 238 + 1 + 9 + 193 + Min Heat Withdrawal + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1530 + Amount of heat that must be withdrawn from storage + 400020000 + true + + + 239 + 1 + 9 + 193 + Min Heat Withdrawal Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1555 + Amount of heat that must be withdrawn from storage each hour + 400020000 + true + + + 240 + 1 + 9 + 193 + Min Heat Withdrawal Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1531 + Amount of heat that must be withdrawn from storage each day + 400020000 + true + + + 241 + 1 + 9 + 193 + Min Heat Withdrawal Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1532 + Amount of heat that must be withdrawn from storage each week + 400020000 + true + + + 242 + 1 + 9 + 193 + Min Heat Withdrawal Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1533 + Amount of heat that must be withdrawn from storage each month + 400020000 + true + + + 243 + 1 + 9 + 193 + Min Heat Withdrawal Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1534 + Amount of heat that must be withdrawn from storage each year + 400020000 + true + + + 244 + 1 + 9 + 194 + Min Heat Injection + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1535 + Amount of heat that must be injected into the storage + 400020000 + true + + + 245 + 1 + 9 + 194 + Min Heat Injection Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1556 + Amount of heat that must be injected into the storage each hour + 400020000 + true + + + 246 + 1 + 9 + 194 + Min Heat Injection Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1536 + Amount of heat that must be injected into the storage each day + 400020000 + true + + + 247 + 1 + 9 + 194 + Min Heat Injection Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1537 + Amount of heat that must be injected into the storage each week + 400020000 + true + + + 248 + 1 + 9 + 194 + Min Heat Injection Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1538 + Amount of heat that must be injected into the storage each month + 400020000 + true + + + 249 + 1 + 9 + 194 + Min Heat Injection Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1539 + Amount of heat that must be injected into the storage each year + 400020000 + true + + + 250 + 1 + 4 + 195 + Offer Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for incr/decr style offer + 400000 + true + + + 251 + 1 + 4 + 196 + Offer No Load Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 568 + Fixed dispatch cost component of generator offer. + 400000 + true + + + 252 + 1 + 4 + 197 + Offer Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band + 400001 + true + + + 253 + 1 + 4 + 198 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400001 + true + + + 254 + 1 + 4 + 199 + Offer Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1368 + Scalar applied to the [Offer Quantity] property + 400000 + true + + + 255 + 1 + 4 + 200 + Offer Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1386 + Adder applied to the [Offer Price] property + 400000 + true + + + 256 + 1 + 4 + 201 + Offer Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1365 + Scalar applied to the [Offer Price] property + 400000 + true + + + 257 + 1 + 4 + 202 + Mark-up + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 408 + Mark-up above marginal cost + 400040 + true + + + 258 + 1 + 4 + 203 + Bid-Cost Mark-up + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + 400040 + true + + + 259 + 1 + 4 + 204 + Mark-up Point + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1091 + Load point for use with multi-point [Mark-up] or [Bid-Cost Mark-up]. + 400040 + true + + + 260 + 1 + 4 + 205 + Pump Bid Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1301 + Base pump load for balancing bid + 8400000 + true + + + 261 + 1 + 4 + 206 + Pump Bid Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 1303 + Pump load bid quantity in band + 8400000 + true + + + 262 + 1 + 4 + 207 + Pump Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1302 + Bid price of pump load in band + 8400000 + true + + + 263 + 1 + 4 + 208 + Pump Bid Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1369 + Scalar applied to the [Pump Bid Quantity] property + 8400000 + true + + + 264 + 1 + 4 + 209 + Pump Bid Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1387 + Adder applied to the [Pump Bid Price] property + 8400000 + true + + + 265 + 1 + 4 + 210 + Pump Bid Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1367 + Scalar applied to the [Pump Bid Price] property + 8400000 + true + + + 266 + 1 + 4 + 211 + Simultaneous Increment and Decrement + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2868 + Degenerate increment and decrement offers and bids can be cleared simultaneously + 400000 + true + + + 267 + 1 + 4 + 212 + Strategic Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1009 + Generating unit rating for application in RSI capacity calculations + 40 + true + + + 268 + 1 + 4 + 213 + Strategic Reference Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1031 + Sent-out marginal generation reference price for RSI markup application. + 40 + true + + + 269 + 1 + 4 + 214 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Pumping unit/Anti-generation rating for application in RSI capacity calculations. + 40 + true + + + 270 + 1 + 4 + 215 + Economic Maximum + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2240 + Unit maximum generation economically available + 40 + true + + + 271 + 1 + 4 + 216 + Economic Minimum + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2241 + Unit minimum generation economically available + 40 + true + + + 272 + 1 + 4 + 217 + Tie Break Group + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2962 + TieBreak group that the generator belongs to + 40 + false + + + 273 + 1 + 5 + 218 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 274 + 1 + 5 + 219 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 275 + 1 + 5 + 220 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 276 + 1 + 6 + 221 + Initial Age + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Average age of units at the start of the simulation horizon + 80000 + true + + + 277 + 1 + 6 + 222 + Power Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1830 + Annual degradation of power with age + 4 + true + + + 278 + 1 + 6 + 223 + Capacity Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1960 + Annual degradation in storage capacity with age + 4 + false + + + 279 + 1 + 6 + 224 + Equity Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 180 + Annual required return on equity + 8000 + true + + + 280 + 1 + 6 + 225 + Debt Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 127 + Annual debt charge + 8000 + true + + + 281 + 1 + 6 + 226 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the generator to capacity reserves + C + true + + + 282 + 1 + 6 + 227 + Firm Capacity Unit Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2664 + The total number of units installed in band corresponding to the same band of [Firm Capacity] + C + true + + + 283 + 1 + 7 + 228 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 284 + 1 + 7 + 229 + Effective Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2672 + Effective forced outage rate for use in calculation of reliability indices + true + + + 285 + 1 + 7 + 230 + Forced Outage + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 286 + 1 + 7 + 231 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 287 + 1 + 7 + 232 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 288 + 1 + 7 + 233 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 289 + 1 + 7 + 234 + Min Time Between Maintenance + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2506 + Minimum time between maintenance events + 1000000 + true + + + 290 + 1 + 7 + 235 + Min Total Maintenance Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2543 + Minimum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 291 + 1 + 7 + 236 + Max Total Maintenance Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2544 + Maximum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 292 + 1 + 7 + 237 + Maintenance + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 392 + Capacity lost to maintenance + 1000000 + false + + + 293 + 1 + 7 + 238 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Unit rating during outage + 1000000 + true + + + 294 + 1 + 7 + 239 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 295 + 1 + 7 + 240 + Outage Pump Load + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1402 + Load drawn by a unit in pumping mode + 1000000 + true + + + 296 + 1 + 7 + 241 + Initial Operating Hours + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1820 + Hours the unit has been operating since the last forced outage + 1000080000 + true + + + 297 + 1 + 7 + 242 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 298 + 1 + 7 + 243 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 299 + 1 + 7 + 244 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 300 + 1 + 7 + 245 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 301 + 1 + 7 + 246 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 302 + 1 + 8 + 247 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 303 + 1 + 8 + 248 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 304 + 1 + 8 + 249 + One-time Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1958 + One-time cost associated with the project + 8 + true + + + 305 + 1 + 8 + 250 + Investment Tax Credit + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2850 + Percentage of the annualized build cost to apply to investment credit + 2000000000 + true + + + 306 + 1 + 8 + 251 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 307 + 1 + 8 + 252 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning. + 8 + true + + + 308 + 1 + 8 + 253 + Commission Date + 0 + 1 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the generator was commissioned for use with [Technical Life] + 8 + true + + + 309 + 1 + 8 + 254 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 310 + 1 + 8 + 255 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 311 + 1 + 8 + 256 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 312 + 1 + 8 + 257 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered). + 9 + true + + + 313 + 1 + 8 + 258 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 314 + 1 + 8 + 259 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 315 + 1 + 8 + 260 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 316 + 1 + 8 + 261 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 317 + 1 + 8 + 262 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 318 + 1 + 8 + 263 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 319 + 1 + 8 + 264 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 320 + 1 + 8 + 265 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 321 + 1 + 8 + 266 + Build Set Size + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1453 + Expansion must occur in sets of this many units where zero indicates any set size + 88 + true + + + 322 + 1 + 8 + 267 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 323 + 1 + 8 + 268 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 324 + 1 + 8 + 269 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 325 + 1 + 8 + 270 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the generator for capacity + 4000008 + true + + + 326 + 1 + 8 + 271 + Expansion Economy Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 2959 + Cost of building a unit at economy of scale (band) + 8008 + true + + + 327 + 1 + 8 + 272 + Expansion Economy Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 999 + 2960 + Minimum number of units required for the expansion economy (band) + 88 + true + + + 328 + 1 + 8 + 273 + Recovery Price Adder + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Recovery price adder to include for MT/ST optimization + 8008 + false + + + 329 + 1 + 8 + 274 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Generator production + 8009 + false + + + 330 + 1 + 11 + 275 + Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 968 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 331 + 1 + 11 + 276 + Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 969 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 1100000000 + true + + + 332 + 1 + 11 + 277 + Pump Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1394 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 333 + 1 + 11 + 278 + Pump Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1395 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 1100000000 + true + + + 334 + 1 + 11 + 279 + Generation Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1608 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 335 + 1 + 11 + 280 + Generation Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1609 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 336 + 1 + 11 + 281 + Pump Load Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1610 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 337 + 1 + 11 + 282 + Pump Load Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1611 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 338 + 1 + 11 + 283 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 339 + 1 + 11 + 284 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 340 + 1 + 12 + 285 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 341 + 1 + 12 + 286 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 342 + 1 + 12 + 287 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 343 + 5 + 1 + 1 + Transition Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1139 + Cost required for a Generator transition + 1000000000 + true + + + 344 + 7 + 1 + 1 + Transport Charge + 29 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 800 + Transport charge (added to base fuel price) + 2000000000 + true + + + 345 + 7 + 1 + 2 + Mutually Exclusive + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 998 + If the Fuel cannot be mixed with other Fuels associated with this Generator. + 80 + true + + + 346 + 7 + 1 + 3 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Fixed fuel mix ratio + 80 + true + + + 347 + 7 + 1 + 4 + Min Ratio + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 494 + Minimum fuel mix ratio + 80 + true + + + 348 + 7 + 1 + 5 + Max Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 450 + Maximum fuel mix ratio + 80 + true + + + 349 + 7 + 1 + 6 + Max Input + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 433 + Maximum amount of fuel input to generator + 80 + true + + + 350 + 7 + 1 + 7 + Rating + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 665 + Rating of generating units when running this fuel + 80 + true + + + 351 + 7 + 1 + 8 + Is Available + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 332 + If the fuel is available for use by the generator + 800000 + true + + + 352 + 7 + 1 + 9 + Heat Rate Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 266 + Scalar on base generator heat rate function + 1000 + true + + + 353 + 7 + 1 + 10 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 354 + 7 + 1 + 11 + Heat Rate + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Heat-rate at load point (used with Load Point) or 'b' in the heat input function + 1000 + true + + + 355 + 7 + 1 + 12 + Heat Rate Incr + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + Average marginal heat-rate in band + 1000 + true + + + 356 + 7 + 1 + 13 + Heat Rate Incr2 + 38 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 264 + Second-order polynomial term in unit fuel use function + 1000 + true + + + 357 + 7 + 1 + 14 + Heat Rate Incr3 + 44 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 265 + Third-order polynomial term in unit fuel use function + 1000 + true + + + 358 + 7 + 1 + 15 + Transition Cost Down + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1134 + Cost required for Fuel Transition shutdown process (surplus over Production Offtake). + 1000000000 + true + + + 359 + 7 + 1 + 16 + Transition Cost Up + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1135 + Cost required for Fuel Transition start-up process (surplus over Production Offtake). + 1000000000 + true + + + 360 + 7 + 1 + 17 + Decoupling Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1136 + Number of hours Fuel can’t be used for Generation after a shutdown + 1000000000 + true + + + 361 + 7 + 1 + 18 + Coupling Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1137 + Number of hours Fuel has to be used after a start-up + 1000000000 + true + + + 362 + 7 + 1 + 19 + Emission Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 165 + Scalar on emissions from this generator and fuel combination + 2000 + true + + + 363 + 7 + 1 + 20 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + MW offer in band + 400000 + true + + + 364 + 7 + 1 + 21 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400000 + true + + + 365 + 8 + 1 + 1 + Offtake at Start + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 578 + Fuel required to start a unit + 1080000000 + true + + + 366 + 8 + 1 + 2 + Transport Charge + 29 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 800 + Cost of transporting the fuel to the generator + 1080000000 + true + + + 367 + 8 + 1 + 3 + Emission Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 165 + Scalar on emissions from this generator and start fuel combination + 80002000 + true + + + 368 + 10 + 1 + 1 + Flow Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 210 + Units of storage received per unit of generation + 40000 + true + + + 369 + 10 + 1 + 2 + Flow at Start + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1208 + The amount of water released when starting a generating unit. + 1080040000 + true + + + 370 + 10 + 1 + 3 + Efficiency Point + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1340 + Storage percentage full associated with [Efficiency Scalar] + 41000 + true + + + 371 + 10 + 1 + 4 + Efficiency Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1341 + Generation efficiency scalar at the given [Efficiency Point] + 41000 + true + + + 372 + 11 + 1 + 1 + Flow Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 210 + Units of storage received per unit of generation + 40000 + true + + + 373 + 12 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator output injected at the node + true + + + 374 + 12 + 1 + 2 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of pump load at the node + true + + + 375 + 13 + 1 + 1 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of installed units at the Node + 800000 + true + + + 376 + 15 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 377 + 18 + 1 + 1 + Enable Co-optimization + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2558 + If the gas node is available for use by the generator + true + + + 378 + 19 + 1 + 1 + Offtake at Start + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 578 + Amount of gas required to start a unit + 1080000000 + true + + + 379 + 19 + 1 + 2 + Transport Charge + 29 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 800 + Cost of transporting the gas to the generator + 1080000000 + true + + + 380 + 19 + 1 + 3 + Emission Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 165 + Scalar on emissions from this generator and start gas node combination + 80002000 + true + + + 381 + 24 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 382 + 25 + 3 + 1 + Generation Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity consumed per unit of generation + true + + + 383 + 25 + 3 + 2 + Pump Load Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity consumed per unit of pump load + true + + + 384 + 25 + 3 + 3 + Fuel Offtake Coefficient + 106 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity consumed per unit of fuel used + true + + + 385 + 25 + 8 + 4 + Capacity Built Coefficient + 107 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Amount of the Commodity consumed per unit of capacity built + true + + + 386 + 25 + 8 + 5 + Capacity Retired Coefficient + 107 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Amount of the Commodity consumed per unit of capacity retired + true + + + 387 + 26 + 2 + 1 + Mutually Exclusive Production + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2756 + If the energy used for producing commodities and serving load are mutually exclusive + 800000 + true + + + 388 + 26 + 3 + 2 + Generation Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity produced per unit of generation + true + + + 389 + 26 + 3 + 3 + Pump Load Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity produced per unit of pump load + true + + + 390 + 26 + 3 + 4 + Fuel Offtake Coefficient + 106 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity produced per unit of fuel used + true + + + 391 + 27 + 1 + 1 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 585 + Unit rating during outage + 4 + true + + + 392 + 27 + 1 + 2 + Outage Rating Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1715 + Proportion of [Rating] during outage + 4 + true + + + 393 + 27 + 1 + 3 + Outage Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1716 + Unit [Firm Capacity] during outage + 4 + true + + + 394 + 27 + 1 + 4 + Outage Firm Capacity Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1717 + Proportion of [Firm Capacity] during outage + 4 + true + + + 395 + 28 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of generation + true + + + 396 + 28 + 3 + 2 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of pump load + true + + + 397 + 28 + 3 + 3 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of fuel offtake + true + + + 398 + 29 + 4 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for capacity market + true + + + 399 + 29 + 4 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band for capacity market + true + + + 400 + 30 + 1 + 1 + Conversion Rate + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 115 + Conversion rate of generator heat input to waste heat input. + 1000 + true + + + 401 + 32 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 402 + 32 + 3 + 2 + Generation Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 239 + Coefficient of the square of generation + true + + + 403 + 32 + 3 + 3 + Generation SUM Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 240 + Coefficient of the square of the summed generation + true + + + 404 + 32 + 3 + 4 + Generation Sent Out Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1147 + Coefficient of generation measured at the station gate + true + + + 405 + 32 + 3 + 5 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor. + true + + + 406 + 32 + 3 + 6 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation. + 1000000000 + true + + + 407 + 32 + 3 + 7 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + 1000000000 + true + + + 408 + 32 + 3 + 8 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 409 + 32 + 3 + 9 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 410 + 32 + 3 + 10 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the generating unit has been off + 1000000000 + true + + + 411 + 32 + 3 + 11 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 412 + 32 + 3 + 12 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of committed capacity + 1000000004 + true + + + 413 + 32 + 3 + 13 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 414 + 32 + 3 + 14 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + 1000 + true + + + 415 + 32 + 3 + 15 + Waste Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1887 + Coefficient of waste heat + 20000 + true + + + 416 + 32 + 3 + 16 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of emission production + 2000 + true + + + 417 + 32 + 3 + 17 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + 20 + true + + + 418 + 32 + 3 + 18 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 643 + Coefficient of pump load + 8040000 + true + + + 419 + 32 + 3 + 19 + Pump Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1645 + Coefficient of number of hours the generating unit is running in pump mode + 8040000 + true + + + 420 + 32 + 3 + 20 + Units Pumping Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1148 + Coefficient on the number of units pumping + 1008040000 + true + + + 421 + 32 + 3 + 21 + Pump Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1323 + Coefficient on the number of pump units started + 1088040000 + true + + + 422 + 32 + 3 + 22 + Sync Cond Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1646 + Coefficient of synchronous condenser load + 1000000002 + true + + + 423 + 32 + 3 + 23 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + 1000000002 + true + + + 424 + 32 + 3 + 24 + Sync Cond Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1648 + Coefficient of number of hours the generating unit is running in synchronous condenser mode + 1000000002 + true + + + 425 + 32 + 3 + 25 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 426 + 32 + 3 + 26 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 427 + 32 + 3 + 27 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 428 + 32 + 3 + 28 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 429 + 32 + 3 + 29 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 430 + 32 + 3 + 30 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 431 + 32 + 3 + 31 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + 2 + true + + + 432 + 32 + 3 + 32 + Sync Cond Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 774 + Coefficient of synchronous condenser reserve provision + 2 + true + + + 433 + 32 + 3 + 33 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + 2 + true + + + 434 + 32 + 3 + 34 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 435 + 32 + 3 + 35 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 436 + 32 + 3 + 36 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 437 + 32 + 3 + 37 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 438 + 32 + 3 + 38 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 439 + 32 + 3 + 39 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + 2 + true + + + 440 + 32 + 3 + 40 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + 2 + true + + + 441 + 32 + 3 + 41 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + 2 + true + + + 442 + 32 + 3 + 42 + Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1469 + Coefficient of flexibility up + 2 + true + + + 443 + 32 + 3 + 43 + Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1470 + Coefficient of flexibility down + 2 + true + + + 444 + 32 + 3 + 44 + Ramp Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1471 + Coefficient of ramp flexibility up + 2 + true + + + 445 + 32 + 3 + 45 + Ramp Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1472 + Coefficient of ramp flexibility down + 2 + true + + + 446 + 32 + 3 + 46 + Withdrawal Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of generator heat withdrawal + 20000 + true + + + 447 + 32 + 3 + 47 + Injection Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of generator heat injection + 20000 + true + + + 448 + 32 + 3 + 48 + Water Offtake Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1804 + Coefficient of generator water offtake + 8000000000 + true + + + 449 + 32 + 3 + 49 + Water Consumption Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1805 + Coefficient of generator water consumption + 8000000000 + true + + + 450 + 32 + 3 + 50 + Reserve Provision Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2893 + Generation coefficient of reserve provision + 2 + false + + + 451 + 32 + 3 + 51 + Reserve Provision Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2894 + Load coefficient of reserve provision + 2 + false + + + 452 + 32 + 5 + 52 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 453 + 32 + 5 + 53 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 454 + 32 + 5 + 54 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 455 + 32 + 5 + 55 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 456 + 32 + 5 + 56 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 457 + 32 + 5 + 57 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 458 + 32 + 6 + 58 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 459 + 32 + 6 + 59 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 460 + 32 + 6 + 60 + Rated Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 664 + Coefficient of capacity as measured by Rating + C + true + + + 461 + 32 + 6 + 61 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 462 + 32 + 6 + 62 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the average age of units + 8 + true + + + 463 + 32 + 6 + 63 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of generator contribution to capacity reserves + C + true + + + 464 + 32 + 7 + 64 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 465 + 32 + 7 + 65 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 466 + 32 + 8 + 66 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 467 + 32 + 8 + 67 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 468 + 32 + 8 + 68 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 469 + 32 + 8 + 69 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 470 + 32 + 8 + 70 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 471 + 32 + 8 + 71 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 472 + 32 + 8 + 72 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 473 + 32 + 8 + 73 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 474 + 32 + 8 + 74 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 475 + 33 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation measured at the generator-terminal + true + + + 476 + 33 + 3 + 2 + Generation Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 239 + Coefficient of the square of generation measured at the generator terminal + false + + + 477 + 33 + 3 + 3 + Generation SUM Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 240 + Coefficient of the square of the summed generation measured at the generator terminal + false + + + 478 + 33 + 3 + 4 + Generation Sent Out Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1147 + Coefficient of generation measured at the station gate + true + + + 479 + 33 + 3 + 5 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor. + true + + + 480 + 33 + 3 + 6 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation. + true + + + 481 + 33 + 3 + 7 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 482 + 33 + 3 + 8 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + true + + + 483 + 33 + 3 + 9 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + true + + + 484 + 33 + 3 + 10 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the generating unit has been off + true + + + 485 + 33 + 3 + 11 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + true + + + 486 + 33 + 3 + 12 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of committed capacity + true + + + 487 + 33 + 3 + 13 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 488 + 33 + 3 + 14 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + true + + + 489 + 33 + 3 + 15 + Waste Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1887 + Coefficient of waste heat + true + + + 490 + 33 + 3 + 16 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of emission production + true + + + 491 + 33 + 3 + 17 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + true + + + 492 + 33 + 3 + 18 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 643 + Coefficient of pump load + true + + + 493 + 33 + 3 + 19 + Pump Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1645 + Coefficient of number of hours the generating unit is running in pump mode + true + + + 494 + 33 + 3 + 20 + Units Pumping Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1148 + Coefficient on the number of units pumping + true + + + 495 + 33 + 3 + 21 + Pump Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1323 + Coefficient on the number of pump units started + true + + + 496 + 33 + 3 + 22 + Sync Cond Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1646 + Coefficient of synchronous condenser load + true + + + 497 + 33 + 3 + 23 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + true + + + 498 + 33 + 3 + 24 + Sync Cond Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1648 + Coefficient of number of hours the generating unit is running in synchronous condenser mode + true + + + 499 + 33 + 3 + 25 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 500 + 33 + 3 + 26 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 501 + 33 + 3 + 27 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 502 + 33 + 3 + 28 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 503 + 33 + 3 + 29 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 504 + 33 + 3 + 30 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + true + + + 505 + 33 + 3 + 31 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + true + + + 506 + 33 + 3 + 32 + Sync Cond Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 774 + Coefficient of synchronous condenser reserve provision + true + + + 507 + 33 + 3 + 33 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + true + + + 508 + 33 + 3 + 34 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + true + + + 509 + 33 + 3 + 35 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + true + + + 510 + 33 + 3 + 36 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + true + + + 511 + 33 + 3 + 37 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + true + + + 512 + 33 + 3 + 38 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + true + + + 513 + 33 + 3 + 39 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 514 + 33 + 3 + 40 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + true + + + 515 + 33 + 3 + 41 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + true + + + 516 + 33 + 3 + 42 + Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1469 + Coefficient of flexibility up + true + + + 517 + 33 + 3 + 43 + Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1470 + Coefficient of flexibility down + true + + + 518 + 33 + 3 + 44 + Ramp Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1471 + Coefficient of ramp flexibility up + true + + + 519 + 33 + 3 + 45 + Ramp Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1472 + Coefficient of ramp flexibility down + true + + + 520 + 33 + 3 + 46 + Withdrawal Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of generator heat withdrawal + true + + + 521 + 33 + 3 + 47 + Injection Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of generator heat injection + true + + + 522 + 33 + 3 + 48 + Water Offtake Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1804 + Coefficient of generator water offtake + true + + + 523 + 33 + 3 + 49 + Water Consumption Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1805 + Coefficient of generator water consumption + true + + + 524 + 33 + 5 + 50 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 525 + 33 + 5 + 51 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 526 + 33 + 5 + 52 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 527 + 33 + 5 + 53 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 528 + 33 + 5 + 54 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 529 + 33 + 5 + 55 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 530 + 33 + 6 + 56 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 531 + 33 + 6 + 57 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 532 + 33 + 6 + 58 + Rated Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 664 + Coefficient of capacity as measured by Rating + true + + + 533 + 33 + 6 + 59 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 534 + 33 + 6 + 60 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + true + + + 535 + 33 + 6 + 61 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of generator contribution to capacity reserves + true + + + 536 + 33 + 7 + 62 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 537 + 33 + 7 + 63 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 538 + 33 + 8 + 64 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 539 + 33 + 8 + 65 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 540 + 33 + 8 + 66 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 541 + 33 + 8 + 67 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 542 + 33 + 8 + 68 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 543 + 33 + 8 + 69 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 544 + 33 + 8 + 70 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 545 + 33 + 8 + 71 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 546 + 33 + 8 + 72 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 547 + 34 + 1 + 1 + Heat Input Definition Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1885 + Coefficient of the Decision Variable in the Generator Heat Input definition equation + true + + + 548 + 35 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation in condition + true + + + 549 + 35 + 3 + 2 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 550 + 35 + 3 + 3 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit starts + true + + + 551 + 35 + 3 + 4 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + true + + + 552 + 35 + 3 + 5 + Efficiency Coefficient + 120 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2643 + Coefficient of generator efficiency + true + + + 553 + 35 + 3 + 6 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + true + + + 554 + 35 + 3 + 7 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 643 + Coefficient of pump load + 8040000 + true + + + 555 + 35 + 6 + 8 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 556 + 35 + 6 + 9 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 557 + 35 + 6 + 10 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 558 + 35 + 6 + 11 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 559 + 35 + 7 + 12 + Outage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2563 + Coefficient of capacity on outage + 4 + true + + + 560 + 35 + 7 + 13 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 4 + true + + + 561 + 35 + 7 + 14 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 562 + 35 + 8 + 15 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 563 + 35 + 8 + 16 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 564 + 35 + 8 + 17 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 565 + 35 + 8 + 18 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 566 + 35 + 8 + 19 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 567 + 35 + 8 + 20 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 568 + 35 + 8 + 21 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 569 + 35 + 8 + 22 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 570 + 36 + 1 + 1 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + false + false + false + 1 + 335 + Flag if the Power Station is enabled + 800000 + true + + + 571 + 39 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator load injected at the node + true + + + 572 + 40 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 573 + 40 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 574 + 40 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal stockpile trajectory from one simulation phase to the next. + 400000000 + true + + + 575 + 40 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition stockpile target penalty function 'a' term. + 400000000 + true + + + 576 + 40 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition stockpile target penalty function 'b' term. + 400000000 + true + + + 577 + 40 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition stockpile target penalty function 'c' term. + 400000000 + true + + + 578 + 40 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition stockpile target penalty function 'x' term. + 400000000 + true + + + 579 + 40 + 2 + 8 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of stockpile bounds when the decomposition implies possible violations. + 400000000 + true + + + 580 + 40 + 3 + 9 + Units + 0 + 1 + In (0,1) + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 812 + Flag if fuel exists + 800000 + true + + + 581 + 40 + 3 + 10 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Fuel price + 2000000001 + true + + + 582 + 40 + 3 + 11 + Tax + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 785 + Fuel tax + 2000000000 + true + + + 583 + 40 + 3 + 12 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 905 + Increment to the price of the fuel + 2000000000 + true + + + 584 + 40 + 3 + 13 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Multiplier on the price of the fuel + 2000000000 + true + + + 585 + 40 + 3 + 14 + Heat Value + 37 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of fuel + 100 + false + + + 586 + 40 + 3 + 15 + Shadow Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 742 + Shadow price of fuel (if defined as input, sets the internal price for fuel) + 2000000000 + true + + + 587 + 40 + 3 + 16 + Shadow Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1082 + Increment to the shadow price of the fuel (use only when Shadow Price is defined) + 2000000000 + true + + + 588 + 40 + 3 + 17 + Shadow Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 896 + Multiplier on the shadow price of the fuel (use only when Shadow Price is defined) + 2000000000 + true + + + 589 + 40 + 3 + 18 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 590 + 40 + 10 + 19 + Max Inventory + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1589 + Maximum fuel allowed in stockpile + 400000000 + true + + + 591 + 40 + 10 + 20 + Min Inventory + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum fuel required in stockpile + 400000000 + true + + + 592 + 40 + 10 + 21 + Opening Inventory + 87 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1591 + Initial fuel in the stockpile + 400000000 + true + + + 593 + 40 + 10 + 22 + Delivery + 87 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Fuel delivered to the stockpile + 400000000 + true + + + 594 + 40 + 10 + 23 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of delivering fuel to the stockpile + 400000000 + true + + + 595 + 40 + 10 + 24 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost applied to closing inventory in the stockpile + 400000000 + true + + + 596 + 40 + 10 + 25 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity in the stockpile + 400000000 + true + + + 597 + 40 + 10 + 26 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Incremental cost of taking fuel from stockpile + 400000000 + true + + + 598 + 40 + 9 + 27 + Max Offtake + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 939 + Maximum fuel offtake per interval + 80 + true + + + 599 + 40 + 9 + 27 + Max Offtake Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1557 + Maximum fuel offtake in hour + 80 + true + + + 600 + 40 + 9 + 27 + Max Offtake Day + 87 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 940 + Maximum fuel offtake in day + 80 + true + + + 601 + 40 + 9 + 27 + Max Offtake Week + 87 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 941 + Maximum fuel offtake in week + 80 + true + + + 602 + 40 + 9 + 27 + Max Offtake Month + 87 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 942 + Maximum fuel offtake in month + 80 + true + + + 603 + 40 + 9 + 27 + Max Offtake Year + 87 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 943 + Maximum fuel offtake in year + 80 + true + + + 604 + 40 + 9 + 28 + Min Offtake + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 944 + Minimum fuel offtake per interval + 80 + true + + + 605 + 40 + 9 + 28 + Min Offtake Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1558 + Minimum fuel offtake in hour + 80 + true + + + 606 + 40 + 9 + 28 + Min Offtake Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 945 + Minimum fuel offtake in day + 80 + true + + + 607 + 40 + 9 + 28 + Min Offtake Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 946 + Minimum fuel offtake in week + 80 + true + + + 608 + 40 + 9 + 28 + Min Offtake Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 947 + Minimum fuel offtake in month + 80 + true + + + 609 + 40 + 9 + 28 + Min Offtake Year + 87 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 948 + Minimum fuel offtake in year + 80 + true + + + 610 + 40 + 9 + 29 + Max Offtake Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2426 + Penalty applied to violations of [Max Offtake]constraints + 80 + true + + + 611 + 40 + 9 + 30 + Min Offtake Penalty + 88 + 1000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2427 + Penalty applied to violations of [Min Offtake] constraints + 80 + true + + + 612 + 40 + 9 + 31 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of fuel that can be taken from stockpile + 400000000 + true + + + 613 + 40 + 9 + 31 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of fuel that can be taken from stockpile in a hour + 400000000 + true + + + 614 + 40 + 9 + 31 + Max Withdrawal Day + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of fuel that can be taken from stockpile in a day + 400000000 + true + + + 615 + 40 + 9 + 31 + Max Withdrawal Week + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of fuel that can be taken from stockpile in a week + 400000000 + true + + + 616 + 40 + 9 + 31 + Max Withdrawal Month + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of fuel that can be taken from stockpile in a month + 400000000 + true + + + 617 + 40 + 9 + 31 + Max Withdrawal Year + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of fuel that can be taken from stockpile in a year + 400000000 + true + + + 618 + 40 + 9 + 32 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1258 + Amount of fuel that must be taken from stockpile + 400000000 + true + + + 619 + 40 + 9 + 32 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of fuel that must be taken from stockpile each hour + 400000000 + true + + + 620 + 40 + 9 + 32 + Min Withdrawal Day + 87 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of fuel that must be taken from stockpile each day + 400000000 + true + + + 621 + 40 + 9 + 32 + Min Withdrawal Week + 87 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of fuel that must be taken from stockpile each week + 400000000 + true + + + 622 + 40 + 9 + 32 + Min Withdrawal Month + 87 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of fuel that must be taken from stockpile each month + 400000000 + true + + + 623 + 40 + 9 + 32 + Min Withdrawal Year + 87 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of fuel that must be taken from stockpile each year + 400000000 + true + + + 624 + 40 + 12 + 33 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 625 + 40 + 12 + 34 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 626 + 40 + 12 + 35 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 627 + 50 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 628 + 51 + 3 + 1 + Consumption Rate + 113 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2752 + Fuel consumed per unit of the Primary Output from the Facility + true + + + 629 + 54 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 630 + 54 + 1 + 2 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of fuel emission + 2000 + true + + + 631 + 54 + 1 + 3 + In Use Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1382 + Boolean value (1 if the Fuel is in use, 0 otherwise) + 1000000000 + true + + + 632 + 54 + 1 + 4 + Closing Inventory Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of fuel stockpile closing inventory. + 400000000 + true + + + 633 + 54 + 1 + 5 + Inventory Change Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in fuel stockpile level. + 400000000 + true + + + 634 + 54 + 1 + 6 + Delivery Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of delivery to fuel stockpile. + 400000000 + true + + + 635 + 54 + 1 + 7 + Withdrawal Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal from fuel stockpile. + 400000000 + true + + + 636 + 54 + 1 + 8 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation with given fuel + true + + + 637 + 55 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 638 + 55 + 1 + 2 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of fuel emission + true + + + 639 + 55 + 1 + 3 + In Use Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1382 + Boolean value (1 if the Fuel is in use, 0 otherwise) + true + + + 640 + 55 + 1 + 4 + Closing Inventory Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of fuel stockpile closing inventory + true + + + 641 + 55 + 1 + 5 + Inventory Change Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in fuel stockpile level + true + + + 642 + 55 + 1 + 6 + Delivery Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of delivery to fuel stockpile + true + + + 643 + 55 + 1 + 7 + Withdrawal Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal from fuel stockpile + true + + + 644 + 55 + 1 + 8 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation with given fuel + true + + + 645 + 56 + 3 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 646 + 57 + 9 + 1 + Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 650 + Contract quantity + 80 + true + + + 647 + 57 + 9 + 1 + Quantity Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + true + 1 + 1559 + Total contract quantity in hour + 80 + true + + + 648 + 57 + 9 + 1 + Quantity Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + true + 1 + 651 + Total contract quantity in day + 80 + true + + + 649 + 57 + 9 + 1 + Quantity Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + true + 1 + 653 + Total contract quantity in week + 80 + true + + + 650 + 57 + 9 + 1 + Quantity Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + true + 1 + 652 + Total contract quantity in month + 80 + true + + + 651 + 57 + 9 + 1 + Quantity Year + 87 + 0 + 1 + 0 + 0 + 4 + false + false + true + true + 1 + 654 + Total contract quantity in year + 80 + true + + + 652 + 57 + 3 + 2 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 612 + Contract price + 2000000001 + true + + + 653 + 57 + 3 + 3 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 905 + Increment to the price of the fuel contract. + 2000000000 + true + + + 654 + 57 + 3 + 4 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Multiplier on the price of the fuel contract. + 2000000000 + true + + + 655 + 57 + 3 + 5 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed charge for the fuel contract + 8000 + true + + + 656 + 57 + 9 + 6 + Take-or-Pay Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 778 + Contract take-or-pay quantity + 80 + true + + + 657 + 57 + 9 + 6 + Take-or-Pay Quantity Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1560 + Contract take-or-pay quantity in hour + 80 + true + + + 658 + 57 + 9 + 6 + Take-or-Pay Quantity Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 779 + Contract take-or-pay quantity in day + 80 + true + + + 659 + 57 + 9 + 6 + Take-or-Pay Quantity Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 781 + Contract take-or-pay quantity in week + 80 + true + + + 660 + 57 + 9 + 6 + Take-or-Pay Quantity Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 780 + Contract take-or-pay quantity in month + 80 + true + + + 661 + 57 + 9 + 6 + Take-or-Pay Quantity Year + 87 + 0 + 1 + 0 + 0 + 4 + false + true + true + false + 1 + 782 + Contract take-or-pay quantity in year + 80 + true + + + 662 + 57 + 9 + 7 + Take-or-Pay Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 777 + Contract take-or-pay price + 80 + true + + + 663 + 57 + 12 + 8 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 664 + 57 + 12 + 9 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 665 + 57 + 12 + 10 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 666 + 62 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of fuel contract + 40 + true + + + 667 + 63 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel contract offtake + true + + + 668 + 64 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel contract offtake + true + + + 669 + 65 + 2 + 1 + Max Efficiency Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2443 + Maximum number of tranches in the efficiency piecewise linear approximation + 1000 + true + + + 670 + 65 + 2 + 2 + Formulate Non-convex + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order + 1000 + true + + + 671 + 65 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 100000000 + true + + + 672 + 65 + 2 + 4 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 673 + 65 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 674 + 65 + 2 + 6 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 675 + 65 + 2 + 7 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled + 8 + true + + + 676 + 65 + 3 + 8 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 677 + 65 + 3 + 9 + Max Load + 1 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 436 + Maximum load of each unit + 5 + true + + + 678 + 65 + 3 + 10 + Min Stable Level + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 501 + Minimum allowed electric load when operating + 1000000081 + true + + + 679 + 65 + 3 + 11 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 680 + 65 + 3 + 12 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 681 + 65 + 3 + 13 + Load Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point efficiency + 1000 + true + + + 682 + 65 + 3 + 14 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1209 + Efficiency of energy conversion process + 1000 + true + + + 683 + 65 + 3 + 15 + Energy Conversion Factor + 0 + 3.6 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3015 + Power2X customized energy conversion factor represents a conversion from MWh to GJ + 1000 + true + + + 684 + 65 + 3 + 16 + Water Consumption + 68 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1803 + Water consumed by the Power2X facility + 1000 + true + + + 685 + 65 + 3 + 17 + Ramp Up Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Load point for use with multi-band Max Ramp Up constraints + 80 + true + + + 686 + 65 + 3 + 18 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate that applies at the given load point + 80 + true + + + 687 + 65 + 3 + 19 + Ramp Up Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 688 + 65 + 3 + 20 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 689 + 65 + 3 + 21 + Ramp Down Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Load point for use with multi-band Max Ramp Down constraints + 80 + true + + + 690 + 65 + 3 + 22 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate that applies at the given load point + 80 + true + + + 691 + 65 + 3 + 23 + Ramp Down Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 692 + 65 + 3 + 24 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 693 + 65 + 3 + 25 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 694 + 65 + 3 + 26 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 695 + 65 + 3 + 27 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 696 + 65 + 3 + 28 + Run Up Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while increasing load from zero to [Min Stable Level]. + 80000000 + true + + + 697 + 65 + 3 + 29 + Start Profile + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for increasing load from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 698 + 65 + 3 + 30 + Start Profile Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2639 + Penalty for violation of [Start Profile]. + 80 + true + + + 699 + 65 + 3 + 31 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 700 + 65 + 3 + 32 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 701 + 65 + 3 + 33 + Run Down Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1020 + Ramp rate that applies while running the unit down from [Min Stable Level] to zero + 200000000 + true + + + 702 + 65 + 3 + 34 + Shutdown Profile + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 933 + Detailed regime for running the unit down from [Min Stable Level] when [Run Down Rate] is non-constant. + 200000000 + true + + + 703 + 65 + 3 + 35 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 704 + 65 + 3 + 36 + Aux Fixed + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 705 + 65 + 3 + 37 + Aux Base + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 706 + 65 + 3 + 38 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of production + 200000 + true + + + 707 + 65 + 3 + 39 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 708 + 65 + 3 + 40 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 709 + 65 + 3 + 41 + Min Stable Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1372 + Minimum stable operation level as a proportion of [Max Load] + 1000000080 + true + + + 710 + 65 + 3 + 42 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Power2X object + 100 + true + + + 711 + 65 + 3 + 43 + Bid Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2547 + Base load for balancing bid + true + + + 712 + 65 + 3 + 44 + Bid Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + true + + + 713 + 65 + 3 + 45 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Energy bid price + true + + + 714 + 65 + 9 + 46 + Max Production + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum production + 80 + true + + + 715 + 65 + 9 + 46 + Max Production Hour + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production in hour + 80 + true + + + 716 + 65 + 9 + 46 + Max Production Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production in day + 80 + true + + + 717 + 65 + 9 + 46 + Max Production Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production in week + 80 + true + + + 718 + 65 + 9 + 46 + Max Production Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production in month + 80 + true + + + 719 + 65 + 9 + 46 + Max Production Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production in year + 80 + true + + + 720 + 65 + 9 + 47 + Min Production + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1275 + Minimum production + 80 + true + + + 721 + 65 + 9 + 47 + Min Production Hour + 15 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production in hour + 80 + true + + + 722 + 65 + 9 + 47 + Min Production Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production in day + 80 + true + + + 723 + 65 + 9 + 47 + Min Production Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production in week + 80 + true + + + 724 + 65 + 9 + 47 + Min Production Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production in month + 80 + true + + + 725 + 65 + 9 + 47 + Min Production Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production in year + 80 + true + + + 726 + 65 + 9 + 48 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor (production constraint) + 80 + true + + + 727 + 65 + 9 + 48 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 728 + 65 + 9 + 48 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 729 + 65 + 9 + 48 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 730 + 65 + 9 + 48 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 731 + 65 + 9 + 48 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 732 + 65 + 9 + 49 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor + 80 + true + + + 733 + 65 + 9 + 49 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 734 + 65 + 9 + 49 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 735 + 65 + 9 + 49 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 736 + 65 + 9 + 49 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 737 + 65 + 9 + 49 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 738 + 65 + 9 + 50 + Max Production Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1361 + Penalty applied to violations of [Max Production] and [Max Capacity Factor] constraints. + 80 + true + + + 739 + 65 + 9 + 51 + Min Production Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2292 + Penalty applied to violations of [Min Production] and [Min Capacity Factor] constraints. + 80 + true + + + 740 + 65 + 9 + 52 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 741 + 65 + 9 + 52 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 742 + 65 + 9 + 52 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 743 + 65 + 9 + 52 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 744 + 65 + 9 + 52 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 745 + 65 + 9 + 52 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 746 + 65 + 9 + 53 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints. + 1080000080 + true + + + 747 + 65 + 6 + 54 + Initial Age + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Age of the Power2X in years at the start of the simulation horizon + 80000 + true + + + 748 + 65 + 6 + 55 + Power Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1830 + Annual degradation of maximum electrical load with age + 4 + true + + + 749 + 65 + 6 + 56 + Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 1831 + Annual degradation in efficiency when operated at maximum capacity. Bands 2+ define candidates with lower degradation but lower maximum capacity factors + 4 + true + + + 750 + 65 + 6 + 57 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the Power2X to capacity reserves + C + true + + + 751 + 65 + 6 + 58 + Firm Capacity Unit Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2664 + The total number of units installed in band corresponding to the same band of [Firm Capacity] + C + true + + + 752 + 65 + 7 + 59 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 753 + 65 + 7 + 60 + Forced Outage + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 754 + 65 + 7 + 61 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 755 + 65 + 7 + 62 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 756 + 65 + 7 + 63 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 757 + 65 + 7 + 64 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 758 + 65 + 7 + 65 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Unit rating during outage + 1000000 + true + + + 759 + 65 + 7 + 66 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 760 + 65 + 7 + 67 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 761 + 65 + 7 + 68 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 762 + 65 + 7 + 69 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 763 + 65 + 7 + 70 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 764 + 65 + 8 + 71 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 765 + 65 + 8 + 72 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a Power2X production unit + 8 + true + + + 766 + 65 + 8 + 73 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 767 + 65 + 8 + 74 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning. + 8 + true + + + 768 + 65 + 8 + 75 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 769 + 65 + 8 + 76 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 770 + 65 + 8 + 77 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered). + 9 + true + + + 771 + 65 + 8 + 78 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 772 + 65 + 8 + 79 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units allowed to be retired in aggregate over the planning horizon + 88 + true + + + 773 + 65 + 8 + 80 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 774 + 65 + 8 + 81 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 775 + 65 + 8 + 82 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 776 + 65 + 8 + 83 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 777 + 65 + 8 + 84 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 778 + 65 + 8 + 85 + Min Units Retired in Year + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 779 + 65 + 8 + 86 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 780 + 65 + 8 + 87 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 781 + 65 + 8 + 88 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 782 + 65 + 8 + 89 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the Power2X production for capacity + 4000008 + true + + + 783 + 65 + 8 + 90 + Expansion Economy Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 2959 + Cost of building a unit at economy of scale (band) + 8008 + true + + + 784 + 65 + 8 + 91 + Expansion Economy Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 999 + 2960 + Minimum number of units required for the expansion economy (band) + 88 + true + + + 785 + 65 + 8 + 92 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 786 + 65 + 8 + 93 + Recovery Price Adder + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Recovery price adder to include for MT/ST optimization + 8008 + false + + + 787 + 65 + 8 + 94 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Power2X production + 8009 + false + + + 788 + 65 + 11 + 95 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 789 + 65 + 11 + 96 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 790 + 65 + 12 + 97 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 791 + 65 + 12 + 98 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 792 + 65 + 12 + 99 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 793 + 68 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this fuel produced + true + + + 794 + 69 + 1 + 1 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of facility load at the node + true + + + 795 + 70 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Heat Node + true + + + 796 + 71 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Heat Storage + true + + + 797 + 72 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Gas Node + true + + + 798 + 72 + 1 + 2 + Min Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by Power2X in the blend + 100 + true + + + 799 + 72 + 1 + 3 + Max Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by Power2X in the blend + 100 + true + + + 800 + 73 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Gas Storage + true + + + 801 + 74 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's water consumption that gets drawn from this Water Node + true + + + 802 + 75 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 803 + 76 + 1 + 1 + Ratio + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 666 + Amount of the Commodity produced per unit of input energy to the facility + true + + + 804 + 77 + 3 + 1 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 626 + Amount of the Power2X production on the Flow Node injected(positive)/withdrawn(negative) per unit of production + true + + + 805 + 78 + 3 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 806 + 78 + 3 + 2 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 807 + 78 + 3 + 3 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 808 + 78 + 3 + 4 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load drawn by the facility + true + + + 809 + 78 + 3 + 5 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of facility production + true + + + 810 + 78 + 3 + 6 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 811 + 78 + 3 + 7 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 812 + 78 + 3 + 8 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 813 + 78 + 3 + 9 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 814 + 78 + 3 + 10 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 815 + 78 + 3 + 11 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 816 + 78 + 3 + 12 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 817 + 78 + 5 + 13 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 818 + 78 + 5 + 14 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 819 + 78 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 820 + 78 + 5 + 16 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 821 + 78 + 5 + 17 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 822 + 78 + 5 + 18 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 823 + 78 + 6 + 19 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 824 + 78 + 6 + 20 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 825 + 78 + 8 + 21 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built constraint + 8 + true + + + 826 + 78 + 8 + 22 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired constraint + 8 + true + + + 827 + 78 + 8 + 23 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 828 + 78 + 8 + 24 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 829 + 78 + 8 + 25 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 830 + 78 + 8 + 26 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 831 + 78 + 8 + 27 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 832 + 78 + 8 + 28 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 833 + 78 + 8 + 29 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 834 + 79 + 3 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 835 + 79 + 3 + 2 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 836 + 79 + 3 + 3 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 837 + 79 + 3 + 4 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load drawn by the facility + true + + + 838 + 79 + 3 + 5 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of facility production + false + + + 839 + 79 + 3 + 6 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 840 + 79 + 3 + 7 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 841 + 79 + 3 + 8 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 842 + 79 + 3 + 9 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 843 + 79 + 3 + 10 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 844 + 79 + 3 + 11 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 845 + 79 + 3 + 12 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 846 + 79 + 5 + 13 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 847 + 79 + 5 + 14 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 848 + 79 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 849 + 79 + 5 + 16 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 850 + 79 + 5 + 17 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 851 + 79 + 5 + 18 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 852 + 79 + 6 + 19 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 853 + 79 + 6 + 20 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 854 + 79 + 8 + 21 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 855 + 79 + 8 + 22 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 856 + 79 + 8 + 23 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 857 + 79 + 8 + 24 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 858 + 79 + 8 + 25 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 859 + 79 + 8 + 26 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 860 + 80 + 6 + 1 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 861 + 81 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the generator for the generation of outages + 101000000 + true + + + 862 + 81 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 100000000 + true + + + 863 + 81 + 2 + 3 + End Effects Method + 0 + 2 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period energy. + 20 + true + + + 864 + 81 + 2 + 4 + Recharge Timeframe + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2546 + Maximum hours to recharge after discharge + true + + + 865 + 81 + 2 + 5 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the battery can set price + 4000000 + true + + + 866 + 81 + 2 + 6 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal state-of-charge from one simulation phase to the next + 400000000 + true + + + 867 + 81 + 2 + 7 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition state-of-charge target penalty function 'a' term + 400000000 + true + + + 868 + 81 + 2 + 8 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition state-of-charge target penalty function 'b' term + 400000000 + true + + + 869 + 81 + 2 + 9 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition state-of-charge target penalty function 'c' term + 400000000 + true + + + 870 + 81 + 2 + 10 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition state-of-charge target penalty function 'x' term + 400000000 + true + + + 871 + 81 + 2 + 11 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of state-of-charge bounds when the decomposition implies possible violations + 400000000 + true + + + 872 + 81 + 2 + 12 + Non-physical Charge Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2870 + Penalty applied to non-physical charging of the battery. A value of -1 means none is allowed. + 400000000 + true + + + 873 + 81 + 2 + 13 + Non-physical Discharge Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2871 + Penalty applied to non-physical discharging of the battery. A value of -1 means none is allowed. + 400000000 + true + + + 874 + 81 + 2 + 14 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 875 + 81 + 2 + 15 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 876 + 81 + 2 + 16 + Declining Depreciation Balance + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 130 + Balance applied to declining depreciation method + 8 + true + + + 877 + 81 + 2 + 17 + Build Cost Multiplier + 0 + 1 + In (0,1,2) + 0;"None";1;"Production Capacity";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 878 + 81 + 2 + 18 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if the capital cost recovery feature is modeled for expansion planning + 8 + true + + + 879 + 81 + 2 + 19 + Simultaneous Charge and Discharge + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2632 + Battery can charge and discharge simultaneously + 80 + true + + + 880 + 81 + 2 + 20 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the battery. + 1000000000 + true + + + 881 + 81 + 2 + 21 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the battery acts strategically + 40 + true + + + 882 + 81 + 2 + 22 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 883 + 81 + 2 + 23 + Scale Distribution Factors + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3012 + Flag if distribution factors should be scaled for a battery + 800000 + false + + + 884 + 81 + 3 + 24 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of BESS units installed + 800001 + true + + + 885 + 81 + 3 + 25 + Capacity + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of the BESS + 5 + true + + + 886 + 81 + 3 + 26 + Duration + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1476 + Battery duration used to determine the MWh capacity + 4 + true + + + 887 + 81 + 3 + 27 + Max Power + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1756 + Power at full discharge + 5 + true + + + 888 + 81 + 3 + 28 + Max Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 436 + Power at full charge including inverter losses + 5 + true + + + 889 + 81 + 3 + 29 + Max SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1666 + Allowable maximum State of Charge + 5 + true + + + 890 + 81 + 3 + 30 + Min SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1667 + Allowable minimum state of charge + 5 + true + + + 891 + 81 + 3 + 31 + Initial SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1670 + Initial State of Charge + 5 + true + + + 892 + 81 + 3 + 32 + Charge Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 893 + 81 + 3 + 33 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 894 + 81 + 3 + 34 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 895 + 81 + 3 + 35 + Charging VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2624 + Variable operation and maintenance charge for charging + 2000000001 + true + + + 896 + 81 + 3 + 36 + Discharging VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2625 + Variable operation and maintenance charge for discharging + 2000000001 + true + + + 897 + 81 + 3 + 37 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Fixed operations and maintenance charge + 8000 + true + + + 898 + 81 + 3 + 38 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge for generation + 2000000000 + true + + + 899 + 81 + 3 + 39 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 900 + 81 + 3 + 40 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 901 + 81 + 3 + 41 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 902 + 81 + 3 + 42 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 656 + Penalty for violating Max Ramp Down constraint. + 80 + true + + + 903 + 81 + 3 + 43 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 904 + 81 + 3 + 44 + Aux Fixed + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 905 + 81 + 3 + 45 + Aux Base + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 906 + 81 + 3 + 46 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of generation and load + 200000 + true + + + 907 + 81 + 3 + 47 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Battery marginal loss factor (MLF or TLF) + 600000 + true + + + 908 + 81 + 3 + 48 + Min Discharge Level + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2553 + Minimum discharge level when discharging + 80 + true + + + 909 + 81 + 3 + 49 + Min Charge Level + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2554 + Minimum unit charge level when charging + 80 + true + + + 910 + 81 + 3 + 50 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a battery must discharge after discharging starts + 1000000080 + true + + + 911 + 81 + 3 + 51 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a battery must have zero discharge after discharging stops + 1000000080 + true + + + 912 + 81 + 3 + 52 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a battery can discharge after discharging starts + 1000000080 + true + + + 913 + 81 + 3 + 53 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a battery can have zero discharge after discharging stops + 1000000080 + true + + + 914 + 81 + 3 + 54 + Min Charge Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2876 + Minimum number of hours a unit must be run in charge mode after being started + 1000000080 + true + + + 915 + 81 + 3 + 55 + Min Charge Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2877 + Minimum number of hours a unit must refrain from charging after being shut down from charge mode + 1000000080 + true + + + 916 + 81 + 3 + 56 + Max Charge Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2889 + Maximum number of hours a unit can be run in charge mode after being started + 1000000080 + true + + + 917 + 81 + 3 + 57 + Discharge Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2657 + Minimum time between operating in discharge mode and charge mode + 80 + true + + + 918 + 81 + 3 + 58 + Charge Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2658 + Minimum time between operating in charge mode and discharge mode + 80 + true + + + 919 + 81 + 3 + 59 + Self Discharge Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2710 + Percentage of stored energy lost per hour due to self-discharge. + 200000 + true + + + 920 + 81 + 9 + 60 + Max Cycles + 62 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1832 + Number of cycles allowed each interval + 80 + true + + + 921 + 81 + 9 + 60 + Max Cycles Hour + 62 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1833 + Number of cycles allowed each hour + 80 + true + + + 922 + 81 + 9 + 60 + Max Cycles Day + 62 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1834 + Number of cycles allowed each day + 80 + true + + + 923 + 81 + 9 + 60 + Max Cycles Week + 62 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1835 + Number of cycles allowed each week + 80 + true + + + 924 + 81 + 9 + 60 + Max Cycles Month + 62 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1836 + Number of cycles allowed each month + 80 + true + + + 925 + 81 + 9 + 60 + Max Cycles Year + 62 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1837 + Number of cycles allowed each year + 80 + true + + + 926 + 81 + 9 + 61 + Energy Target + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1861 + Battery stored energy target + 80 + true + + + 927 + 81 + 9 + 61 + Energy Target Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1862 + end of hour battery stored energy target + 80 + true + + + 928 + 81 + 9 + 61 + Energy Target Day + 3 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1863 + end of day battery stored energy target + 80 + true + + + 929 + 81 + 9 + 61 + Energy Target Week + 3 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1864 + end of week battery stored energy target + 80 + true + + + 930 + 81 + 9 + 61 + Energy Target Month + 3 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1865 + end of month battery stored energy target + 80 + true + + + 931 + 81 + 9 + 61 + Energy Target Year + 3 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1866 + end of year battery stored energy target + 80 + true + + + 932 + 81 + 9 + 62 + Energy Target Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1867 + Penalty for violating the battery stored energy target. + 80 + true + + + 933 + 81 + 9 + 63 + Max Energy Discharging + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3045 + Max Energy Discharging + 80 + true + + + 934 + 81 + 9 + 63 + Max Energy Discharging Hour + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3046 + Max Energy Discharging Hour + 80 + true + + + 935 + 81 + 9 + 63 + Max Energy Discharging Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3047 + Max Energy Discharging Day + 80 + true + + + 936 + 81 + 9 + 63 + Max Energy Discharging Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3048 + Max Energy Discharging Week + 80 + true + + + 937 + 81 + 9 + 63 + Max Energy Discharging Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3049 + Max Energy Discharging Month + 80 + true + + + 938 + 81 + 9 + 63 + Max Energy Discharging Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3050 + Max Energy Discharging Year + 80 + true + + + 939 + 81 + 9 + 64 + Min Energy Discharging + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3052 + Min Energy Discharging + 80 + true + + + 940 + 81 + 9 + 64 + Min Energy Discharging Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3053 + Min Energy Discharging Hour + 80 + true + + + 941 + 81 + 9 + 64 + Min Energy Discharging Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3054 + Min Energy Discharging Day + 80 + true + + + 942 + 81 + 9 + 64 + Min Energy Discharging Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3055 + Min Energy Discharging Week + 80 + true + + + 943 + 81 + 9 + 64 + Min Energy Discharging Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3056 + Min Energy Discharging Month + 80 + true + + + 944 + 81 + 9 + 64 + Min Energy Discharging Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3057 + Min Energy Discharging Year + 80 + true + + + 945 + 81 + 9 + 65 + Max Energy Discharging Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3058 + Max Energy Discharging Penalty + 80 + true + + + 946 + 81 + 9 + 66 + Min Energy Discharging Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3059 + Min Energy Discharging Penalty + 80 + true + + + 947 + 81 + 9 + 67 + Max Energy Charging + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3063 + Max Energy Discharging + 80 + true + + + 948 + 81 + 9 + 67 + Max Energy Charging Hour + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3064 + Max Energy Discharging Hour + 80 + true + + + 949 + 81 + 9 + 67 + Max Energy Charging Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3065 + Max Energy Discharging Day + 80 + true + + + 950 + 81 + 9 + 67 + Max Energy Charging Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3066 + Max Energy Discharging Week + 80 + true + + + 951 + 81 + 9 + 67 + Max Energy Charging Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3067 + Max Energy Discharging Month + 80 + true + + + 952 + 81 + 9 + 67 + Max Energy Charging Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3068 + Max Energy Discharging Year + 80 + true + + + 953 + 81 + 9 + 68 + Min Energy Charging + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3069 + Min Energy Discharging + 80 + true + + + 954 + 81 + 9 + 68 + Min Energy Charging Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3070 + Min Energy Discharging Hour + 80 + true + + + 955 + 81 + 9 + 68 + Min Energy Charging Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3071 + Min Energy Discharging Day + 80 + true + + + 956 + 81 + 9 + 68 + Min Energy Charging Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3072 + Min Energy Discharging Week + 80 + true + + + 957 + 81 + 9 + 68 + Min Energy Charging Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3073 + Min Energy Discharging Month + 80 + true + + + 958 + 81 + 9 + 68 + Min Energy Charging Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3074 + Min Energy Discharging Year + 80 + true + + + 959 + 81 + 9 + 69 + Max Energy Charging Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3075 + Max Energy Discharging Penalty + 80 + true + + + 960 + 81 + 9 + 70 + Min Energy Charging Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3076 + Min Energy Discharging Penalty + 80 + true + + + 961 + 81 + 11 + 71 + Non-anticipativity + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 962 + 81 + 11 + 72 + Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1858 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 963 + 81 + 4 + 73 + Offer Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for incr/decr style offer + 400000 + true + + + 964 + 81 + 4 + 74 + Offer No Load Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 568 + Fixed dispatch cost component of generator offer. + 400000 + true + + + 965 + 81 + 4 + 75 + Offer Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band + 400001 + true + + + 966 + 81 + 4 + 76 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400001 + true + + + 967 + 81 + 4 + 77 + Offer Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1368 + Scalar applied to the [Offer Quantity] property + 400000 + true + + + 968 + 81 + 4 + 78 + Offer Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1386 + Adder applied to the [Offer Price] property + 400000 + true + + + 969 + 81 + 4 + 79 + Offer Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1365 + Scalar applied to the [Offer Price] property + 400000 + true + + + 970 + 81 + 4 + 80 + Mark-up + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 408 + Mark-up above marginal cost + 400040 + true + + + 971 + 81 + 4 + 81 + Bid-Cost Mark-up + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + 400040 + true + + + 972 + 81 + 4 + 82 + Mark-up Point + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1091 + Load point for use with multi-point [Mark-up] or [Bid-Cost Mark-up]. + 400040 + true + + + 973 + 81 + 4 + 83 + Bid Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2547 + Base load for balancing bid + 400400000 + true + + + 974 + 81 + 4 + 84 + Bid Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 34 + load bid quantity in band + 400400000 + true + + + 975 + 81 + 4 + 85 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 33 + Bid price of load in band + 400400000 + true + + + 976 + 81 + 4 + 86 + Bid Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2548 + Scalar applied to the [Bid Quantity] property + 400400000 + true + + + 977 + 81 + 4 + 87 + Bid Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2549 + Adder applied to the [Bid Price] property + 400400000 + true + + + 978 + 81 + 4 + 88 + Bid Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2550 + Scalar applied to the [Bid Price] property + 400400000 + true + + + 979 + 81 + 4 + 89 + Simultaneous Increment and Decrement + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2868 + Degenerate increment and decrement offers and bids can be cleared simultaneously + 400000 + true + + + 980 + 81 + 4 + 90 + Strategic Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1009 + Generating unit rating for application in RSI capacity calculations + 40 + true + + + 981 + 81 + 4 + 91 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Pumping unit rating for application in RSI capacity calculations. + 40 + true + + + 982 + 81 + 6 + 92 + Initial Age + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Age of the battery in number of cycles at the start of the simulation horizon + 80000 + true + + + 983 + 81 + 6 + 93 + Power Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1830 + Degradation of battery power with cycles + 4 + true + + + 984 + 81 + 6 + 94 + Capacity Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1960 + Degradation in capacity with age in number of cycles + 4 + true + + + 985 + 81 + 6 + 95 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the battery to capacity reserves + C + true + + + 986 + 81 + 6 + 96 + Firm Capacity Unit Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2664 + The total number of units installed in band corresponding to the same band of [Firm Capacity] + C + true + + + 987 + 81 + 7 + 97 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 988 + 81 + 7 + 98 + Effective Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2672 + Effective forced outage rate for use in calculation of reliability indices + true + + + 989 + 81 + 7 + 99 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 990 + 81 + 7 + 100 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 991 + 81 + 7 + 101 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 992 + 81 + 7 + 102 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Unit rating during outage + 1000000 + true + + + 993 + 81 + 7 + 103 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Battery outage rating based on max power + 1000000 + true + + + 994 + 81 + 7 + 104 + Outage Pump Load + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1402 + Load drawn by a unit in pumping mode + 1000000 + true + + + 995 + 81 + 7 + 105 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 996 + 81 + 7 + 106 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 997 + 81 + 7 + 107 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 998 + 81 + 7 + 108 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 999 + 81 + 7 + 109 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 1000 + 81 + 8 + 110 + Max Units Built + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of BESS units that can be built + 89 + true + + + 1001 + 81 + 8 + 111 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 1002 + 81 + 8 + 112 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + First date at which a BESS unit can be built + 8 + true + + + 1003 + 81 + 8 + 113 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of a BESS unit + 8 + true + + + 1004 + 81 + 8 + 114 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a BESS unit + 8009 + true + + + 1005 + 81 + 8 + 115 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 1006 + 81 + 8 + 116 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of a BESS unit (period over which fixed costs are recovered) + 9 + true + + + 1007 + 81 + 8 + 117 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 1008 + 81 + 8 + 118 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of BESS units that can be built in a year + 88 + true + + + 1009 + 81 + 8 + 119 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units allowed to be constructed in any single year of the planning horizon + 88 + true + + + 1010 + 81 + 8 + 120 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units allowed to be retired in aggregate over the planning horizon + 88 + true + + + 1011 + 81 + 8 + 121 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a BESS unit + 8 + true + + + 1012 + 81 + 8 + 122 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 1013 + 81 + 8 + 123 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 1014 + 81 + 8 + 124 + Min Units Retired in Year + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 1015 + 81 + 8 + 125 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 1016 + 81 + 8 + 126 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 1017 + 81 + 8 + 127 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 1018 + 81 + 8 + 128 + Expansion Economy Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 2959 + Cost of building a unit at economy of scale (band) + 8008 + true + + + 1019 + 81 + 8 + 129 + Expansion Economy Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 999 + 2960 + Minimum number of units required for the expansion economy (band) + 88 + true + + + 1020 + 81 + 8 + 130 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 1021 + 81 + 8 + 131 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the battery for capacity + 4000008 + true + + + 1022 + 81 + 11 + 132 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1023 + 81 + 11 + 133 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1024 + 81 + 12 + 134 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1025 + 81 + 12 + 135 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1026 + 81 + 12 + 136 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1027 + 85 + 1 + 1 + Distribution Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2713 + Proportion of battery charge and discharge at the node + true + + + 1028 + 86 + 1 + 1 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of installed units at the Node + 800000 + true + + + 1029 + 87 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 1030 + 88 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity consumed per unit of generation + true + + + 1031 + 88 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Amount of the Commodity consumed per unit of load + true + + + 1032 + 88 + 8 + 3 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Amount of the Commodity consumed per unit of capacity built + true + + + 1033 + 88 + 8 + 4 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Amount of the Commodity consumed per unit of capacity retired + true + + + 1034 + 89 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity produced per unit of generation + true + + + 1035 + 89 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Amount of the Commodity produced per unit of load + true + + + 1036 + 90 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of generation + true + + + 1037 + 90 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 80 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of load + true + + + 1038 + 91 + 4 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for capacity market + true + + + 1039 + 91 + 4 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band for capacity market + true + + + 1040 + 92 + 3 + 1 + Energy Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1859 + Coefficient of energy stored in the BESS + true + + + 1041 + 92 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 1042 + 92 + 3 + 3 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load consumption (charging) in the constraint + true + + + 1043 + 92 + 3 + 4 + Discharging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2938 + Coefficient of hours discharging + 1000000000 + true + + + 1044 + 92 + 3 + 5 + Charging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2939 + Coefficient of hours charging + 1000000000 + true + + + 1045 + 92 + 3 + 6 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 1046 + 92 + 3 + 7 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 1047 + 92 + 3 + 8 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 1048 + 92 + 3 + 9 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 1049 + 92 + 3 + 10 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 1050 + 92 + 3 + 11 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 1051 + 92 + 3 + 12 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + 2 + true + + + 1052 + 92 + 3 + 13 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + 2 + true + + + 1053 + 92 + 3 + 14 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 1054 + 92 + 3 + 15 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 1055 + 92 + 3 + 16 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 1056 + 92 + 3 + 17 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 1057 + 92 + 3 + 18 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 1058 + 92 + 3 + 19 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 1059 + 92 + 3 + 20 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + 2 + true + + + 1060 + 92 + 3 + 21 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + 2 + true + + + 1061 + 92 + 3 + 22 + Reserve Provision Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2893 + Generation coefficient of reserve provision + 2 + true + + + 1062 + 92 + 3 + 23 + Reserve Provision Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2894 + Load coefficient of reserve provision + 2 + true + + + 1063 + 92 + 6 + 24 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 1064 + 92 + 6 + 25 + Installed Capacity Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 1065 + 92 + 6 + 26 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of generation capacity (power) + true + + + 1066 + 92 + 6 + 27 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 1067 + 92 + 6 + 28 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of battery contribution to capacity reserves + C + true + + + 1068 + 92 + 6 + 29 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 1069 + 92 + 6 + 30 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + 8 + true + + + 1070 + 92 + 5 + 31 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 1071 + 92 + 5 + 32 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 1072 + 92 + 5 + 33 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 1073 + 92 + 5 + 34 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 1074 + 92 + 5 + 35 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 1075 + 92 + 7 + 36 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 1076 + 92 + 7 + 37 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 1077 + 92 + 8 + 38 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 1078 + 92 + 8 + 39 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 1079 + 92 + 8 + 40 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 1080 + 92 + 8 + 41 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 1081 + 92 + 8 + 42 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 1082 + 92 + 8 + 43 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 1083 + 92 + 8 + 44 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 1084 + 92 + 8 + 45 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 1085 + 92 + 8 + 46 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 1086 + 93 + 3 + 1 + Energy Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1859 + Coefficient of energy stored in the BESS + true + + + 1087 + 93 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 1088 + 93 + 3 + 3 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load obligation + true + + + 1089 + 93 + 3 + 4 + Discharging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2938 + Coefficient of hours discharging + 1000000000 + true + + + 1090 + 93 + 3 + 5 + Charging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2939 + Coefficient of hours charging + 1000000000 + true + + + 1091 + 93 + 3 + 6 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 1092 + 93 + 3 + 7 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 1093 + 93 + 3 + 8 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 1094 + 93 + 3 + 9 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 1095 + 93 + 3 + 10 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 1096 + 93 + 3 + 11 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + true + + + 1097 + 93 + 3 + 12 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + true + + + 1098 + 93 + 3 + 13 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + true + + + 1099 + 93 + 3 + 14 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + true + + + 1100 + 93 + 3 + 15 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + true + + + 1101 + 93 + 3 + 16 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + true + + + 1102 + 93 + 3 + 17 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + true + + + 1103 + 93 + 3 + 18 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + true + + + 1104 + 93 + 3 + 19 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 1105 + 93 + 3 + 20 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + true + + + 1106 + 93 + 3 + 21 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + true + + + 1107 + 93 + 6 + 22 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 1108 + 93 + 6 + 23 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 1109 + 93 + 6 + 24 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 1110 + 93 + 6 + 25 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of battery contribution to capacity reserves + C + true + + + 1111 + 93 + 6 + 26 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 2 + 1838 + Coefficient of cycles + true + + + 1112 + 93 + 6 + 27 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + true + + + 1113 + 93 + 5 + 28 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 1114 + 93 + 5 + 29 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 1115 + 93 + 5 + 30 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 1116 + 93 + 5 + 31 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 1117 + 93 + 5 + 32 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 1118 + 93 + 7 + 33 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 1119 + 93 + 7 + 34 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 1120 + 93 + 8 + 35 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 1121 + 93 + 8 + 36 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 1122 + 93 + 8 + 37 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 1123 + 93 + 8 + 38 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 1124 + 93 + 8 + 39 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 1125 + 93 + 8 + 40 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 1126 + 93 + 8 + 41 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 1127 + 93 + 8 + 42 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + true + + + 1128 + 93 + 8 + 43 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + true + + + 1129 + 94 + 3 + 1 + Energy Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1859 + Coefficient of energy stored in the BESS + true + + + 1130 + 94 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 1131 + 94 + 3 + 3 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load consumption (charging) in the constraint + true + + + 1132 + 94 + 6 + 4 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 1133 + 94 + 6 + 5 + Installed Capacity Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 1134 + 94 + 6 + 6 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + true + + + 1135 + 94 + 6 + 7 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 1136 + 94 + 7 + 8 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 1137 + 94 + 7 + 9 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 1138 + 94 + 8 + 10 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + true + + + 1139 + 94 + 8 + 11 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + true + + + 1140 + 94 + 8 + 12 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 1141 + 94 + 8 + 13 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 1142 + 94 + 8 + 14 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 1143 + 94 + 8 + 15 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 1144 + 94 + 8 + 16 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 1145 + 94 + 8 + 17 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 1146 + 95 + 1 + 1 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + false + false + false + 1 + 335 + Flag if the Battery Station is enabled + 800000 + true + + + 1147 + 98 + 1 + 1 + Distribution Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2713 + Proportion of battery charge and discharge at the node + true + + + 1148 + 99 + 2 + 1 + Model + 0 + 0 + In (0,1,2,3) + 0;"Auto";1;"Energy";3;"Volume";2;"Level" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1079 + Model used to define and model storage volumes (used to override the file-level Hydro Model setting). + 40000 + true + + + 1149 + 99 + 2 + 2 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 1150 + 99 + 2 + 3 + Internal Volume Scalar + 0 + 1000 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 1151 + 99 + 2 + 4 + End Effects Method + 0 + 0 + In (0,1,2) + 0;"Auto";1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 168 + Method used to handle end-of-period storage. + 4000 + true + + + 1152 + 99 + 2 + 5 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 1153 + 99 + 2 + 6 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 1154 + 99 + 2 + 7 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 1155 + 99 + 2 + 8 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 1156 + 99 + 2 + 9 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 1157 + 99 + 2 + 10 + Decomposition Bound Penalty + 46 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 1158 + 99 + 2 + 11 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 40080 + true + + + 1159 + 99 + 2 + 12 + Spill Penalty + 46 + 0.0001 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1238 + Penalty applied to spill from the storage to "the sea" in the last period of each simulation step. + 40000 + true + + + 1160 + 99 + 2 + 13 + Non-physical Inflow Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1130 + Penalty applied to non-physical inflow to the storage. A value of -1 means none are allowed. + 40000 + true + + + 1161 + 99 + 2 + 14 + Non-physical Spill Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1131 + Penalty applied to non-physical spill from the storage. A value of -1 means none are allowed. + 40000 + true + + + 1162 + 99 + 3 + 15 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Number of units of the storage + 840000 + true + + + 1163 + 99 + 3 + 16 + Max Volume + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 466 + Maximum volume + 40001 + true + + + 1164 + 99 + 3 + 17 + Max Volume Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2716 + Penalty for violatiog the Max Volume constraint + 40000 + true + + + 1165 + 99 + 3 + 18 + Initial Volume + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Storage volume at the start of the period + C0001 + true + + + 1166 + 99 + 3 + 19 + Min Volume + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 510 + Minimum volume + 40000 + true + + + 1167 + 99 + 3 + 20 + Min Volume Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2717 + Penalty for violatiog the Min Volume constraint + 40000 + true + + + 1168 + 99 + 3 + 21 + Max Level + 23 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 435 + Maximum level + 40000 + true + + + 1169 + 99 + 3 + 22 + Initial Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 316 + Initial level + 40000 + true + + + 1170 + 99 + 3 + 23 + Min Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 485 + Minimum level + 40000 + true + + + 1171 + 99 + 3 + 24 + Low Ref Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 389 + Low reference level for volume calculation + 40000 + true + + + 1172 + 99 + 3 + 25 + Low Ref Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 388 + Area of surface at low reference level + 40000 + true + + + 1173 + 99 + 3 + 26 + High Ref Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 269 + High reference level for volume calculation + 40000 + true + + + 1174 + 99 + 3 + 27 + High Ref Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 268 + Area of surface at high reference level + 40000 + true + + + 1175 + 99 + 3 + 28 + Natural Inflow + 25 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 530 + Rate of natural inflow + 40001 + true + + + 1176 + 99 + 3 + 29 + Natural Inflow Incr + 25 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1396 + Increment to [Natural Inflow] + 40000 + true + + + 1177 + 99 + 3 + 30 + Natural Inflow Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1397 + Multiplier on [Natural Inflow] + 40000 + true + + + 1178 + 99 + 3 + 31 + Water Value + 46 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 855 + Incremental price of water released from storage + 40000 + true + + + 1179 + 99 + 3 + 32 + Water Value Point + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 856 + Volume associated with [Water Value] in multiple bands + 40000 + true + + + 1180 + 99 + 3 + 33 + Energy Value + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 176 + Incremental price of energy generated from storage + 40000 + true + + + 1181 + 99 + 3 + 34 + Energy Value Point + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2538 + Energy associated with [Energy Value] in multiple bands + 40000 + true + + + 1182 + 99 + 3 + 35 + Downstream Efficiency + 120 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 153 + Aggregate efficiency of generation down the river chain + 40000 + true + + + 1183 + 99 + 3 + 36 + Loss Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to evaporation, leakage, etc + 240000 + true + + + 1184 + 99 + 3 + 37 + Recycle Penalty + 46 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 1185 + 99 + 3 + 38 + Rolling Planning Bonus + 46 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2519 + Bonus for storage contents at the end of the look-ahead + true + + + 1186 + 99 + 9 + 39 + Min Release + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 497 + Minimum rate of release from the storage + 40080 + true + + + 1187 + 99 + 9 + 40 + Max Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 451 + Maximum rate of release from the storage + 40080 + true + + + 1188 + 99 + 9 + 41 + Max Generator Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1210 + Maximum rate of release for generation from the storage + 40080 + true + + + 1189 + 99 + 9 + 42 + Min Release Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1947 + Penalty for violation of minimum rate of release constraints + 40080 + true + + + 1190 + 99 + 9 + 43 + Max Release Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1948 + Penalty for violation of maximum rate of release constraints + 40080 + true + + + 1191 + 99 + 9 + 44 + Max Spill + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 457 + Maximum allowable spill from the storage to "the sea" + 40080 + true + + + 1192 + 99 + 9 + 45 + Max Ramp + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in storage + 40080 + true + + + 1193 + 99 + 9 + 45 + Max Ramp Hour + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum change in storage across each hour. + 40080 + true + + + 1194 + 99 + 9 + 45 + Max Ramp Day + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum of change in storage across each day. + 40080 + true + + + 1195 + 99 + 9 + 45 + Max Ramp Week + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum of change in storage across each week. + 40080 + true + + + 1196 + 99 + 9 + 45 + Max Ramp Month + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum of change in storage across each month. + 40080 + true + + + 1197 + 99 + 9 + 45 + Max Ramp Year + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum of change in storage across each year. + 40080 + true + + + 1198 + 99 + 9 + 46 + Max Ramp Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 285 + Penalty for violating the [Max Ramp Day/Week/Month/Year] constraint. + 40080 + true + + + 1199 + 99 + 9 + 47 + Target + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 40080 + true + + + 1200 + 99 + 9 + 47 + Target Hour + 24 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 40080 + true + + + 1201 + 99 + 9 + 47 + Target Day + 24 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 40080 + true + + + 1202 + 99 + 9 + 47 + Target Week + 24 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of weekly storage target + 40080 + true + + + 1203 + 99 + 9 + 47 + Target Month + 24 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 40080 + true + + + 1204 + 99 + 9 + 47 + Target Year + 24 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 40080 + true + + + 1205 + 99 + 9 + 47 + Target Custom + 24 + 0 + >=0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2542 + end of horizon storage target + 40080 + true + + + 1206 + 99 + 9 + 48 + Target Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1703 + storage target + 40080 + true + + + 1207 + 99 + 9 + 48 + Target Level Hour + 23 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1704 + end of hour storage target + 40080 + true + + + 1208 + 99 + 9 + 48 + Target Level Day + 23 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1705 + end of day storage target + 40080 + true + + + 1209 + 99 + 9 + 48 + Target Level Week + 23 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1706 + end of week storage target + 40080 + true + + + 1210 + 99 + 9 + 48 + Target Level Month + 23 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1707 + end of month storage target + 40080 + true + + + 1211 + 99 + 9 + 48 + Target Level Year + 23 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1708 + end of year storage target + 40080 + true + + + 1212 + 99 + 9 + 49 + Target Penalty + 46 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 40080 + true + + + 1213 + 99 + 11 + 50 + Trajectory Non-anticipativity + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100040000 + true + + + 1214 + 99 + 11 + 51 + Trajectory Non-anticipativity Volume + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100040000 + true + + + 1215 + 99 + 11 + 52 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100040000 + true + + + 1216 + 99 + 11 + 53 + Trajectory Lower Bound Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2504 + Price for running the storage below the stochastic optimal storage trajectory + 100040000 + true + + + 1217 + 99 + 11 + 54 + Trajectory Upper Bound Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2505 + Price for running the storage above the stochastic optimal storage trajectory + 100040000 + true + + + 1218 + 99 + 12 + 55 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + 40000 + true + + + 1219 + 99 + 12 + 56 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + 40000 + true + + + 1220 + 99 + 12 + 57 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + 40000 + true + + + 1221 + 103 + 1 + 1 + Initial Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2566 + Coefficient of storage initial volume. + 40000 + true + + + 1222 + 103 + 1 + 2 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + 40000 + true + + + 1223 + 103 + 1 + 3 + End Level Coefficient + 23 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1720 + Coefficient of storage end level. + 40000 + true + + + 1224 + 103 + 1 + 4 + Capacity Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2942 + Coefficient of energy storage capacity. + 40000 + true + + + 1225 + 103 + 1 + 5 + Ramp Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in storage end volume. + 40000 + true + + + 1226 + 103 + 1 + 6 + Natural Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + 40000 + true + + + 1227 + 103 + 1 + 7 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow. + 40000 + true + + + 1228 + 103 + 1 + 8 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release. + 40000 + true + + + 1229 + 103 + 1 + 9 + Generator Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1124 + Coefficient of generator release. + 40000 + true + + + 1230 + 103 + 1 + 10 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill. + 40000 + true + + + 1231 + 103 + 1 + 11 + Hours Full Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1712 + Coefficient of the number of hours the storage is full. + 40000 + true + + + 1232 + 103 + 1 + 12 + Loss Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1942 + Coefficient of the loss from the storage. + 40000 + true + + + 1233 + 104 + 1 + 1 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 1234 + 104 + 1 + 2 + End Level Coefficient + 23 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1720 + Coefficient of storage end level + true + + + 1235 + 104 + 1 + 3 + Ramp Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in storage end volume + true + + + 1236 + 104 + 1 + 4 + Natural Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + true + + + 1237 + 104 + 1 + 5 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow + true + + + 1238 + 104 + 1 + 6 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release + true + + + 1239 + 104 + 1 + 7 + Generator Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1124 + Coefficient of generator release + true + + + 1240 + 104 + 1 + 8 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill + true + + + 1241 + 104 + 1 + 9 + Hours Full Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1712 + Coefficient of the number of hours the storage is full + true + + + 1242 + 104 + 1 + 10 + Loss Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1942 + Coefficient of the loss from the storage + true + + + 1243 + 105 + 1 + 1 + Initial Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2566 + Coefficient of the initial volume in storage in the condition equation + true + + + 1244 + 105 + 1 + 2 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of the end volume in storage in the condition equation + true + + + 1245 + 105 + 1 + 3 + Initial Potential Energy Coefficient + 2 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2612 + Coefficient of the initial potential energy in storage in the condition equation + true + + + 1246 + 105 + 1 + 4 + End Potential Energy Coefficient + 2 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2613 + Coefficient of the end potential energy in storage in the condition equation + true + + + 1247 + 105 + 1 + 5 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow in the condition equation + true + + + 1248 + 105 + 1 + 6 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release in the condition equation + true + + + 1249 + 105 + 1 + 7 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill in the condition equation + true + + + 1250 + 106 + 1 + 1 + FCF Shadow Price + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1486 + Shadow price of water in storage in Future Cost Function + true + + + 1251 + 107 + 2 + 1 + Traversal Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 801 + Time taken for flows to traverse the waterway + 40000 + true + + + 1252 + 107 + 2 + 2 + Flow Control + 0 + 0 + In (0,1) + 0;"Economic";1;"Spill Only" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 899 + Waterway flow optimization method (0=economic, 1=flow when spilling only) + 40000 + true + + + 1253 + 107 + 3 + 3 + Max Flow + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow limit + 40001 + true + + + 1254 + 107 + 3 + 4 + Min Flow + 25 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 481 + Minimum flow limit + 40000 + true + + + 1255 + 107 + 3 + 5 + Initial Flow + 25 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1174 + Initial flow on the waterway for use in enforcing first period ramp constraint. + 40000 + true + + + 1256 + 107 + 3 + 6 + Max Ramp + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 446 + Maximum change in flow (MW or cumecs per hour) + 40000 + true + + + 1257 + 107 + 3 + 7 + Max Flow Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1164 + Penalty for violating the [Max Flow] constraint. + 40000 + true + + + 1258 + 107 + 3 + 8 + Min Flow Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 286 + Penalty for violating the [Min Flow] constraint. + 40000 + true + + + 1259 + 107 + 3 + 9 + Max Ramp Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 285 + Penalty for violating the [Max Ramp] constraint. + 40000 + true + + + 1260 + 107 + 3 + 10 + Input Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 319 + Input flow scalar + 40000 + true + + + 1261 + 107 + 3 + 11 + Output Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 592 + Output flow scalar + 40000 + true + + + 1262 + 107 + 12 + 12 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + 40000 + true + + + 1263 + 107 + 12 + 13 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + 40000 + true + + + 1264 + 107 + 12 + 14 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + 40000 + true + + + 1265 + 112 + 1 + 1 + Flow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of waterway flow. + 40000 + true + + + 1266 + 112 + 1 + 2 + Ramp Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in waterway flow. + 40000 + true + + + 1267 + 112 + 1 + 3 + Hours Flowing Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1713 + Coefficient of the number of hours the waterway is flowing + 40000 + true + + + 1268 + 113 + 1 + 1 + Flow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of waterway flow + true + + + 1269 + 113 + 1 + 2 + Ramp Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in waterway flow + true + + + 1270 + 113 + 1 + 3 + Hours Flowing Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1713 + Coefficient of the number of hours the waterway is flowing + true + + + 1271 + 114 + 2 + 1 + Model Virtual Network + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 2998 + Flag to indicate if the emission virtual network is modeled + 800000 + true + + + 1272 + 114 + 3 + 2 + Price + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 612 + Price charged per unit of emission (accounting only) + 2000002000 + true + + + 1273 + 114 + 3 + 3 + Shadow Price + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 742 + Shadow price (marginal cost) of emissions + 2000002000 + true + + + 1274 + 114 + 9 + 4 + Max Production + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum emission production per interval + 2080 + true + + + 1275 + 114 + 9 + 4 + Max Production Hour + 19 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum emission production in hour + 2080 + true + + + 1276 + 114 + 9 + 4 + Max Production Day + 20 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum emission production in day + 2080 + true + + + 1277 + 114 + 9 + 4 + Max Production Week + 20 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum emission production in week + 2080 + true + + + 1278 + 114 + 9 + 4 + Max Production Month + 20 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum emission production in month + 2080 + true + + + 1279 + 114 + 9 + 4 + Max Production Year + 20 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum emission production in year + 2080 + true + + + 1280 + 114 + 9 + 5 + Max Production Penalty + 30 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1361 + Penalty for violation of [Max Production] constraints. + 2080 + true + + + 1281 + 114 + 12 + 6 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1282 + 114 + 12 + 7 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1283 + 114 + 12 + 8 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1284 + 117 + 1 + 1 + Production Rate + 40 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 627 + Emissions produced per MWh of generation + 2001 + true + + + 1285 + 117 + 1 + 2 + Removal Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 677 + Proportion of emissions removed (scrubbed) + 2000 + true + + + 1286 + 117 + 1 + 3 + Removal Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 911 + Incremental cost of emissions abatement + 2000 + true + + + 1287 + 117 + 1 + 4 + Production at Start + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 625 + Emissions produced at each unit start up + 80002000 + true + + + 1288 + 117 + 1 + 5 + Shadow Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 896 + Scalar on the incremental cost of generation for this emission + 2000002000 + true + + + 1289 + 117 + 1 + 6 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Scalar on the accounting cost of generation for this emission + 2000002000 + true + + + 1290 + 117 + 1 + 7 + Allocation + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3 + Emission rights allocation + 2080 + true + + + 1291 + 117 + 1 + 7 + Allocation Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1581 + Emission rights allocation + 2080 + true + + + 1292 + 117 + 1 + 7 + Allocation Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 4 + Emission rights allocation + 2080 + true + + + 1293 + 117 + 1 + 7 + Allocation Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 6 + Emission rights allocation + 2080 + true + + + 1294 + 117 + 1 + 7 + Allocation Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 5 + Emission rights allocation + 2080 + true + + + 1295 + 117 + 1 + 7 + Allocation Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 7 + Emission rights allocation + 2080 + true + + + 1296 + 117 + 1 + 8 + Fuel Production Rate + 39 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2036 + Emissions produced per unit of fuel usage + 2001 + true + + + 1297 + 118 + 1 + 1 + Production Rate + 39 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of energy + 2001 + true + + + 1298 + 119 + 1 + 1 + Production Rate + 63 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the Power2X object + 2000 + true + + + 1299 + 120 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the gas field + 2000 + true + + + 1300 + 121 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of gas + 2000 + true + + + 1301 + 122 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of fuel processed + 2000 + true + + + 1302 + 123 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the gas demand + 2000 + true + + + 1303 + 124 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas procured from the gas contract + 2000 + true + + + 1304 + 125 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of gas + 2000 + true + + + 1305 + 126 + 1 + 1 + Production Rate + 71 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of water + 2000 + true + + + 1306 + 127 + 1 + 1 + Distance Coefficient + 91 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2458 + Emissions produced per unit distance travelled + 2000 + true + + + 1307 + 127 + 1 + 2 + Charging Coefficient + 92 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2459 + Emissions produced per unit of charging + 2000 + true + + + 1308 + 128 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 626 + Amount of the Commodity produced (positive value) or consumed (negative value) per unit of the emission produced + 2000 + true + + + 1309 + 128 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Amount of the Commodity consumed (positive value) or produced (negative value) per unit of the emission abated + 2000 + true + + + 1310 + 129 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of the Primary Output of the Facility + 2001 + true + + + 1311 + 129 + 1 + 2 + Removal Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 677 + Proportion of emissions removed (scrubbed) + 2000 + true + + + 1312 + 130 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Emissions produced for each unit sold to the market + 2000 + true + + + 1313 + 130 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Emissions produced for each unit purchased from the market + 2000 + true + + + 1314 + 131 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of emission production + 2000 + true + + + 1315 + 131 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1316 + 132 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of emissions produced + 2000 + true + + + 1317 + 132 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1318 + 133 + 3 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Flag if emission abatement technology is installed + 802000 + true + + + 1319 + 133 + 3 + 2 + Abatement Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1426 + Cost per unit of emission removed + 2000002000 + true + + + 1320 + 133 + 3 + 3 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running emission abatement when generators are on-line + 20002000 + true + + + 1321 + 133 + 3 + 4 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 849 + Cost per unit of generation + 2000002000 + true + + + 1322 + 133 + 3 + 5 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1209 + Efficiency of emission abatement + 3000 + true + + + 1323 + 133 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed charge for emission abatement technology + A000 + true + + + 1324 + 133 + 7 + 7 + Units Out + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 818 + Flag if emission abatement technology is out-of-service + 1002000 + true + + + 1325 + 133 + 9 + 8 + Max Abatement + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1427 + Maximum emission abatement rate + 2080 + true + + + 1326 + 133 + 9 + 8 + Max Abatement Hour + 19 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2746 + Maximum abatement in an hour + 2080 + true + + + 1327 + 133 + 9 + 8 + Max Abatement Day + 20 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2747 + Maximum abatement in a day + 2080 + true + + + 1328 + 133 + 9 + 8 + Max Abatement Week + 20 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2748 + Maximum abatement in a week + 2080 + true + + + 1329 + 133 + 9 + 8 + Max Abatement Month + 20 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2749 + Maximum abatement in a month + 2080 + true + + + 1330 + 133 + 9 + 8 + Max Abatement Year + 20 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2750 + Maximum abatement in a year + 2080 + true + + + 1331 + 133 + 12 + 9 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1332 + 133 + 12 + 10 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1333 + 133 + 12 + 11 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1334 + 136 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator emissions that feed into the abatement technology + 2000 + true + + + 1335 + 137 + 1 + 1 + Consumption Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1428 + Consumption at notional zero generation level + 2000 + true + + + 1336 + 137 + 1 + 2 + Consumption Incr + 36 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1429 + Incremental consumption as a function of generation + 2000 + true + + + 1337 + 138 + 1 + 1 + Abatement Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1426 + Cost per unit of emission removed for this emission + 2000 + true + + + 1338 + 138 + 1 + 2 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Efficiency of emission abatement for this emission + 2000 + true + + + 1339 + 138 + 1 + 3 + Max Abatement + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1427 + Maximum emission abatement rate for this emission + 2000 + true + + + 1340 + 139 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas field emissions that feed into the abatement technology + 2000 + true + + + 1341 + 140 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas plant emissions that feed into the abatement technology + 2000 + true + + + 1342 + 141 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas node emissions that feed into the abatement technology + 2000 + true + + + 1343 + 142 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas demand emissions that feed into the abatement technology + 2000 + true + + + 1344 + 143 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas contracts emissions that feed into the abatement technology + 2000 + true + + + 1345 + 144 + 1 + 1 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1346 + 144 + 1 + 2 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours the emission abatement technology is running + 2000 + true + + + 1347 + 145 + 1 + 1 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + true + + + 1348 + 145 + 1 + 2 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours the emission abatement technology is running + true + + + 1349 + 146 + 2 + 1 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer/Bid Quantity] and [Offer/Bid Price] + 100 + true + + + 1350 + 146 + 2 + 2 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Physical Contract can set price + 4000000 + true + + + 1351 + 146 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Physical Contract is in service + 800000 + true + + + 1352 + 146 + 3 + 4 + Max Generation + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 431 + Maximum generation cleared on physical contract + 5 + true + + + 1353 + 146 + 3 + 5 + Max Load + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 436 + Maximum load cleared on physical contract + 5 + true + + + 1354 + 146 + 3 + 6 + Min Generation + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 483 + Minimum generation cleared on physical contract + 80 + true + + + 1355 + 146 + 3 + 7 + Min Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 486 + Minimum load cleared on physical contract + 80 + true + + + 1356 + 146 + 4 + 8 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 572 + MW offer in band + 400000 + true + + + 1357 + 146 + 4 + 9 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 569 + Price of energy in band + 400000 + true + + + 1358 + 146 + 4 + 10 + Bid Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 34 + MW bid in band + 400000 + true + + + 1359 + 146 + 4 + 11 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 33 + Value of energy in band + 400000 + true + + + 1360 + 146 + 6 + 12 + Firm Capacity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the generation to capacity reserves. + C + true + + + 1361 + 146 + 6 + 13 + Load Obligation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Load obligation for capacity reserves. + C + true + + + 1362 + 146 + 8 + 14 + Capacity Charge + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 199 + Hourly fixed charge for contract capacity + 8008 + true + + + 1363 + 146 + 8 + 14 + Capacity Charge Hour + 52 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1564 + Hourly fixed charge for contract capacity + 8008 + true + + + 1364 + 146 + 8 + 14 + Capacity Charge Day + 51 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 201 + Daily fixed charge for contract capacity + 8008 + true + + + 1365 + 146 + 8 + 14 + Capacity Charge Week + 50 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 871 + Weekly fixed charge for contract capacity + 8008 + true + + + 1366 + 146 + 8 + 14 + Capacity Charge Month + 49 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 872 + Monthly fixed charge for contract capacity + 8008 + true + + + 1367 + 146 + 8 + 14 + Capacity Charge Year + 31 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 873 + Annual fixed charge for contract capacity + 8008 + true + + + 1368 + 146 + 8 + 15 + Max Generation Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 874 + Maximum generation capacity that can be contracted (LT Plan) + 8 + true + + + 1369 + 146 + 8 + 16 + Max Load Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 875 + Maximum load capacity that can be contracted (LT Plan) + 8 + true + + + 1370 + 146 + 8 + 17 + Min Generation Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 973 + Minimum generation capacity contracted (LT Plan) + 8 + true + + + 1371 + 146 + 8 + 18 + Min Load Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 974 + Minimum load capacity contracted (LT Plan) + 8 + true + + + 1372 + 146 + 11 + 19 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1373 + 146 + 12 + 20 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1374 + 146 + 12 + 21 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1375 + 146 + 12 + 22 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1376 + 151 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of physical contract + 40 + true + + + 1377 + 152 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of cleared load bids + 400000 + true + + + 1378 + 152 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of cleared generation offers + 400000 + true + + + 1379 + 152 + 3 + 3 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient of 0,1 value indicating if the physical contracting is generating. + 1000000000 + true + + + 1380 + 152 + 3 + 4 + Units Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1118 + Coefficient of 0,1 value indicating if the physical contracting is a load. + 1000000000 + true + + + 1381 + 152 + 6 + 5 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity contracted (LT Plan) + 4 + true + + + 1382 + 152 + 6 + 6 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of total load obligation contracted (LT Plan) + 4 + true + + + 1383 + 152 + 8 + 7 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 1384 + 153 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of cleared load bids + true + + + 1385 + 153 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of cleared generation offers + true + + + 1386 + 153 + 3 + 3 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient of 0,1 value indicating if the physical contracting is generating + true + + + 1387 + 153 + 3 + 4 + Units Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1118 + Coefficient of 0,1 value indicating if the physical contracting is a load + true + + + 1388 + 153 + 6 + 5 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity contracted + true + + + 1389 + 153 + 6 + 6 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of total load obligation contracted + true + + + 1390 + 153 + 8 + 7 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 1391 + 154 + 6 + 1 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 1392 + 155 + 2 + 1 + Benefit Function Shape + 0 + 1 + In (0,1) + 0;"Linear";1;"Quadratic" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 29 + Shape of the benefit function. + 100 + true + + + 1393 + 155 + 2 + 2 + Max Benefit Function Tranches + 0 + 10 + >=1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 412 + Maximum number of tranches in the piecewise linear benefit function. + 100 + true + + + 1394 + 155 + 2 + 3 + Interruptible Load Logic + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 13 + If the interruptible load supplied by the Purchaser is limited by the amount of cleared load bids. + 2 + true + + + 1395 + 155 + 2 + 4 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Purchaser can set price + 4000000 + true + + + 1396 + 155 + 2 + 5 + Load Settlement Source + 0 + 0 + In (0,1) + 0;"Node";1;"Region"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2728 + Source used to determine price paid by loads. + 4000000 + true + + + 1397 + 155 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Purchaser is in service + 800000 + true + + + 1398 + 155 + 3 + 7 + Min Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 486 + Minimum load if any load is cleared. + 100480 + true + + + 1399 + 155 + 3 + 8 + Max Load + 1 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 436 + Maximum load (sum of cleared demand bids) + 100480 + true + + + 1400 + 155 + 3 + 9 + Fixed Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load + 100480 + true + + + 1401 + 155 + 3 + 10 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 480 + true + + + 1402 + 155 + 3 + 11 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 480 + true + + + 1403 + 155 + 9 + 12 + Max Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 423 + Maximum energy + 480 + true + + + 1404 + 155 + 9 + 12 + Max Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1548 + Maximum energy in hour + 480 + true + + + 1405 + 155 + 9 + 12 + Max Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 424 + Maximum energy in day + 480 + true + + + 1406 + 155 + 9 + 12 + Max Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 426 + Maximum energy in week + 480 + true + + + 1407 + 155 + 9 + 12 + Max Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 425 + Maximum energy in month + 480 + true + + + 1408 + 155 + 9 + 12 + Max Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 427 + Maximum energy in year + 480 + true + + + 1409 + 155 + 9 + 13 + Min Energy + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1110 + Minimum energy + 480 + true + + + 1410 + 155 + 9 + 13 + Min Energy Hour + 1 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1549 + Minimum energy in hour + 480 + true + + + 1411 + 155 + 9 + 13 + Min Energy Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1111 + Minimum energy in day + 480 + true + + + 1412 + 155 + 9 + 13 + Min Energy Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1112 + Minimum energy in week + 480 + true + + + 1413 + 155 + 9 + 13 + Min Energy Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1113 + Minimum energy in month + 480 + true + + + 1414 + 155 + 9 + 13 + Min Energy Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1114 + Minimum energy in year + 480 + true + + + 1415 + 155 + 9 + 14 + Max Load Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1100 + Maximum load factor + 480 + true + + + 1416 + 155 + 9 + 14 + Max Load Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1567 + Maximum load factor in hour + 480 + true + + + 1417 + 155 + 9 + 14 + Max Load Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1101 + Maximum load factor in day + 480 + true + + + 1418 + 155 + 9 + 14 + Max Load Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1102 + Maximum load factor in week + 480 + true + + + 1419 + 155 + 9 + 14 + Max Load Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1103 + Maximum load factor in month + 480 + true + + + 1420 + 155 + 9 + 14 + Max Load Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1104 + Maximum load factor in year + 480 + true + + + 1421 + 155 + 9 + 15 + Min Load Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1105 + Minimum load factor + 480 + true + + + 1422 + 155 + 9 + 15 + Min Load Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1568 + Minimum load factor in hour + 480 + true + + + 1423 + 155 + 9 + 15 + Min Load Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1106 + Minimum load factor in day + 480 + true + + + 1424 + 155 + 9 + 15 + Min Load Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1107 + Minimum load factor in week + 480 + true + + + 1425 + 155 + 9 + 15 + Min Load Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1108 + Minimum load factor in month + 480 + true + + + 1426 + 155 + 9 + 15 + Min Load Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1109 + Minimum load factor in year + 480 + true + + + 1427 + 155 + 9 + 16 + Max Energy Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1190 + Penalty applied to violations of [Max Energy] and [Max Load Factor] constraints. + 480 + true + + + 1428 + 155 + 9 + 17 + Min Energy Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1191 + Penalty applied to violations of [Min Energy] and [Min Load Factor] constraints. + 480 + true + + + 1429 + 155 + 3 + 18 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) + 600000 + true + + + 1430 + 155 + 4 + 19 + Bid Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 34 + Quantity bid in band + 401 + true + + + 1431 + 155 + 4 + 20 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 33 + Value of energy in band + 401 + true + + + 1432 + 155 + 4 + 21 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Purchaser Load rating for application in RSI capacity calculations. + 40 + true + + + 1433 + 155 + 3 + 22 + Tariff + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 784 + Price paid by customers for load bid cleared + 2000000000 + true + + + 1434 + 155 + 3 + 23 + Demand Fn Slope + 33 + 0 + <=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 138 + Demand function slope + 400 + true + + + 1435 + 155 + 3 + 24 + Demand Fn Intercept + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 137 + Demand function vertical intercept + 400 + true + + + 1436 + 155 + 6 + 25 + Load Obligation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Load obligation for capacity reserves. + 404 + true + + + 1437 + 155 + 12 + 26 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1438 + 155 + 12 + 27 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1439 + 155 + 12 + 28 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1440 + 158 + 1 + 1 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of purchaser load taken at the node + 40 + true + + + 1441 + 159 + 1 + 1 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of installed units at the Node + 800000 + true + + + 1442 + 160 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 1443 + 161 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of purchaser demand + 400 + true + + + 1444 + 161 + 1 + 2 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of load obligation in the constraint + 404 + true + + + 1445 + 161 + 1 + 3 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of reserve provision + 2 + true + + + 1446 + 162 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of purchaser demand + true + + + 1447 + 162 + 1 + 2 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of load obligation + true + + + 1448 + 162 + 1 + 3 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of interruptible load provision + true + + + 1449 + 163 + 2 + 1 + Type + 0 + 1 + In (1,2,3,4,5,6,7,8) + 1;"Raise";2;"Lower";7;"Regulation";3;"Regulation Raise";4;"Regulation Lower";5;"Replacement";6;"Operational";8;"Inertia" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 927 + Reserve type + 3 + true + + + 1450 + 163 + 2 + 2 + Mutually Exclusive + 0 + 0 + In (0,1,2) + 0;"Auto";1;"Yes";2;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 998 + If generation capacity providing this reserve is mutually exclusive to other reserves + 82 + true + + + 1451 + 163 + 2 + 3 + Dynamic Risk + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 12 + If elements in the Generator Contingencies and Line Contingencies collections are considered for dynamic risk calculations + 2 + true + + + 1452 + 163 + 2 + 4 + Cost Allocation Model + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Runway";2;"Probabilistic Runway";3;"Prorata" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 11 + Reserve cost allocation method. + 2 + true + + + 1453 + 163 + 2 + 5 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 335 + Flag if the reserve is enabled + 800002 + true + + + 1454 + 163 + 2 + 6 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 301 + If the reserve is modelled in the LT Plan phase. + 800002 + true + + + 1455 + 163 + 2 + 7 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 302 + If the reserve is modelled in the MT Schedule phase. + 800002 + true + + + 1456 + 163 + 2 + 8 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 305 + If the reserve is modelled in the ST Schedule phase. + 800002 + true + + + 1457 + 163 + 2 + 9 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 810 + If the set of Generators providing the Reserve is optimized or always includes all members of the Reserve Generators collection. + 1000000002 + true + + + 1458 + 163 + 2 + 10 + Sharing Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1384 + If sharing of reserve across the transmission network is enabled. + 800000002 + true + + + 1459 + 163 + 2 + 11 + Sharing Losses Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1385 + If sharing of reserve accounts for transmission losses. + 800000002 + true + + + 1460 + 163 + 2 + 12 + Energy Usage For Replacement + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2145 + If Reserve energy usage is used for replacement reserve. + 40002 + true + + + 1461 + 163 + 2 + 13 + Prevent Replacement during MDT + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3051 + Whether to provide Replacement Reserves during a generator's Min Down Time. + 2 + true + + + 1462 + 163 + 3 + 14 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 489 + Minimum required reserve + 82 + true + + + 1463 + 163 + 3 + 15 + Static Risk + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 1004 + Additional static risk over and above dynamic risk + 82 + true + + + 1464 + 163 + 3 + 16 + Timeframe + 5 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 788 + Timeframe in which the reserve is required + 2 + true + + + 1465 + 163 + 3 + 17 + Duration + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1476 + Time over which the required response must be maintained + 2 + true + + + 1466 + 163 + 3 + 18 + Max Provision + 1 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 443 + Maximum provision allowed for reserve class + 82 + true + + + 1467 + 163 + 3 + 19 + Max Sharing + 1 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2881 + Maximum reserve contribution from other regions/zones + 82 + true + + + 1468 + 163 + 3 + 20 + Risk Adjustment Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 707 + Proportion of contingency size (MW reserve/MW contingency) + 2 + true + + + 1469 + 163 + 3 + 21 + Energy Usage + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Percentage of reserve dispatched in energy market + 40002 + true + + + 1470 + 163 + 3 + 22 + VoRS + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 851 + Value of reserve shortage (-1 sets hard constraint) + 40000002 + true + + + 1471 + 163 + 3 + 23 + Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on Reserve Price for settlement + 4000002 + true + + + 1472 + 163 + 3 + 24 + Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on Reserve Price for settlement + 4000002 + true + + + 1473 + 163 + 3 + 25 + Cut-off Size + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 124 + The size below which a generator will not be considered for a share in reserve costs + 2 + true + + + 1474 + 163 + 3 + 26 + Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 612 + Price + 4000002 + true + + + 1475 + 163 + 12 + 27 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1476 + 163 + 12 + 28 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1477 + 163 + 12 + 29 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1478 + 166 + 1 + 1 + Initial Pump Load Raise Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1934 + Pump load raise reserve provision at time zero + 82 + true + + + 1479 + 166 + 1 + 2 + Initial Raise Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1935 + Generator raise reserve provision at time zero + 82 + true + + + 1480 + 166 + 1 + 3 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum spinning reserve response from generation adjustments + 82 + true + + + 1481 + 166 + 1 + 4 + Max Sync Cond Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 458 + Maximum synchronous condenser reserve response + 82 + true + + + 1482 + 166 + 1 + 5 + Max Pump Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 444 + Maximum dispatchable pump load reserve response + 82 + true + + + 1483 + 166 + 1 + 6 + Total Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2782 + Maximum reserve response from generation, pumped load and synchronous condenser adjustments + 82 + true + + + 1484 + 166 + 1 + 7 + Max Replacement + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 452 + Maximum replacement (non-spinning) reserve capability + 82 + true + + + 1485 + 166 + 1 + 8 + Max Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1318 + Maximum spinning reserve response as a proportion of generation capacity + 82 + true + + + 1486 + 166 + 1 + 9 + Max Sync Cond Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1319 + Maximum synchronous condenser reserve response as a proportion of generation capacity + 82 + true + + + 1487 + 166 + 1 + 10 + Max Pump Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1320 + Maximum dispatchable pump load reserve response as a proportion of pump load + 82 + true + + + 1488 + 166 + 1 + 11 + Max Replacement Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1321 + Maximum replacement (non-spinning) reserve capability as a proportion of generation capacity + 82 + true + + + 1489 + 166 + 1 + 12 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 489 + Minimum reserve provision when generator is available + 82 + true + + + 1490 + 166 + 1 + 13 + Min Spinning Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1376 + Minimum spinning reserve provision when units are generating + 82 + true + + + 1491 + 166 + 1 + 14 + Min Regulation Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1377 + Minimum regulation reserve provision when units are in the regulation range + 82 + true + + + 1492 + 166 + 1 + 15 + Min Replacement Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1742 + Minimum replacement reserve provision when units are off-line + 82 + true + + + 1493 + 166 + 1 + 16 + Effectiveness + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 162 + Estimated reserve effectiveness (MW/MW) + 82 + true + + + 1494 + 166 + 1 + 17 + Response Ratio + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 694 + Ratio that converts energy ramping to units comparable to reserve ramping units + 82 + true + + + 1495 + 166 + 1 + 18 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Reserve offer quantity in offer band + 400002 + true + + + 1496 + 166 + 1 + 19 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Reserve offer price in offer band + 400002 + true + + + 1497 + 166 + 1 + 20 + Sync Cond Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 773 + Synchronous condenser reserve offer price + 440002 + true + + + 1498 + 166 + 1 + 21 + Pump Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 644 + Dispatchable pump load reserve offer price + 8440002 + true + + + 1499 + 166 + 1 + 22 + Replacement Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1731 + Replacement reserve offer quantity in offer band + 400002 + true + + + 1500 + 166 + 1 + 23 + Replacement Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1732 + Replacement reserve offer price in offer band + 400002 + true + + + 1501 + 169 + 1 + 1 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum reserve response + 82 + true + + + 1502 + 170 + 1 + 1 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum reserve response from discharging generation adjustment + 82 + true + + + 1503 + 170 + 1 + 2 + Max Charge Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2385 + Maximum reserve response from charging load adjustment + 82 + true + + + 1504 + 170 + 1 + 3 + Max Replacement + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 452 + Maximum replacement (non-spinning) reserve capability + 82 + true + + + 1505 + 170 + 1 + 4 + Max Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1318 + Maximum reserve response as a proportion of generation capacity + 82 + true + + + 1506 + 170 + 1 + 5 + Max Charge Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2386 + Maximum dispatchable charging load reserve response as a proportion of charge load + 82 + true + + + 1507 + 170 + 1 + 6 + Max Replacement Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1321 + Maximum replacement (non-spinning) reserve capability as a proportion of generation capacity + 82 + true + + + 1508 + 170 + 1 + 7 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 489 + Minimum reserve provision when generator is available + 82 + true + + + 1509 + 170 + 1 + 8 + Min Spinning Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1376 + Minimum spinning reserve provision when units are generating + 82 + true + + + 1510 + 170 + 1 + 9 + Min Regulation Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1377 + Minimum regulation reserve provision when units are in the regulation range + 82 + true + + + 1511 + 170 + 1 + 10 + Min Replacement Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1742 + Minimum replacement reserve provision when units are off-line + 82 + true + + + 1512 + 170 + 1 + 11 + Effectiveness + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 162 + Estimated reserve effectiveness (MW/MW) + 82 + true + + + 1513 + 170 + 1 + 12 + Response Ratio + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 694 + Ratio that converts energy ramping to units comparable to reserve ramping units + 82 + true + + + 1514 + 170 + 1 + 13 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Reserve offer quantity in offer band + 400002 + true + + + 1515 + 170 + 1 + 14 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Reserve offer price in offer band + 400002 + true + + + 1516 + 170 + 1 + 15 + Charge Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2226 + Charging reserve offer price + 400002 + true + + + 1517 + 170 + 1 + 16 + Total Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2782 + Maximum reserve response from charge and discharge adjustments + 82 + true + + + 1518 + 172 + 1 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Interruptible load offer price + 400002 + true + + + 1519 + 172 + 1 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Interruptible load offer quantity + 400002 + true + + + 1520 + 173 + 1 + 1 + Cascading + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2229 + If the relationship between the reserves is cascading or not + 2 + true + + + 1521 + 174 + 1 + 1 + Load Risk + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 140 + Percentage of region's load at risk + 2 + true + + + 1522 + 174 + 1 + 2 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this region + 82 + true + + + 1523 + 175 + 1 + 1 + Load Risk + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 140 + Percentage of zone's load at risk + 2 + true + + + 1524 + 175 + 1 + 2 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this zone + 82 + false + + + 1525 + 176 + 1 + 1 + Max Sharing + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2881 + Maximum amount of reserve shared on the line + 82 + true + + + 1526 + 177 + 1 + 1 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Multiplier on line flow in the reference direction in setting the contingency size (Risk >= Coefficient * Flow Forward) + 2 + true + + + 1527 + 177 + 1 + 2 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Multiplier on line flow in the counter reference direction in setting the contingency size (Risk >= Coefficient * Flow Back) + 2 + true + + + 1528 + 179 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + 2 + true + + + 1529 + 179 + 1 + 2 + Sharing Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2883 + Coefficient of reserve shared from other regions/zones + 2 + true + + + 1530 + 179 + 1 + 3 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + 2 + true + + + 1531 + 179 + 1 + 4 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + 40000002 + true + + + 1532 + 180 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + true + + + 1533 + 180 + 1 + 2 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + true + + + 1534 + 180 + 1 + 3 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + true + + + 1535 + 181 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + true + + + 1536 + 181 + 1 + 2 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + true + + + 1537 + 181 + 1 + 3 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + true + + + 1538 + 182 + 2 + 1 + Perform EFC Evaluation + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2218 + Flag indicating if the EFC should be evaluated for the Reliability object. + true + + + 1539 + 182 + 2 + 2 + EFC Risk Metric + 0 + 0 + In (0,1) + 0;"LOLE Hours";1;"EENS" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2160 + Risk Metric for EFC evaluation. + true + + + 1540 + 182 + 2 + 3 + Max EFC Iterations + 0 + 20 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2216 + Maximum number of ST Schedule iterations for EFC evaluation. + true + + + 1541 + 182 + 2 + 4 + EFC Convergence Threshold + 12 + 1 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2217 + Convergence criteria for Reliability evaluation. + true + + + 1542 + 182 + 2 + 5 + EFC Initial Estimate + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2215 + Initial Firm Capacity Estimate for the set of generators associated with the Reliability object. + true + + + 1543 + 182 + 3 + 6 + Simplify Generator Properties + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2219 + Flag indicating if Generator properties should be ignored for the model. + true + + + 1544 + 182 + 3 + 7 + Skip Steps + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2220 + Indicates steps that should be skipped. + true + + + 1545 + 182 + 12 + 8 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to a solution. + true + + + 1546 + 182 + 12 + 9 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to a solution + true + + + 1547 + 182 + 12 + 10 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to a solution + true + + + 1548 + 188 + 2 + 1 + Is Physical + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1295 + If the contract quantity must be matched by physical generation/load. + 4000000 + true + + + 1549 + 188 + 3 + 2 + Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 650 + Contract quantity + 5 + true + + + 1550 + 188 + 3 + 3 + Floor Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 204 + Contract floor price + 4000001 + true + + + 1551 + 188 + 3 + 4 + Cap Price + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 53 + Contract cap price + 4000001 + true + + + 1552 + 191 + 1 + 1 + Generation Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator load that is settled in the contract + 40 + true + + + 1553 + 192 + 1 + 1 + Load Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of region load that is settled in the contract + 40 + true + + + 1554 + 194 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of contract + 40 + true + + + 1555 + 195 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of contract + 40 + true + + + 1556 + 197 + 1 + 1 + Demand Intercept + 33 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 139 + Demand function vertical intercept + 40 + true + + + 1557 + 197 + 1 + 2 + Demand Slope + 56 + 0 + <0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 142 + Long-run demand function slope + 40 + true + + + 1558 + 201 + 2 + 1 + Allow Negative Mark-ups + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 980 + Flag if negative calculated markups are allowed or truncated at zero + 4000040 + true + + + 1559 + 201 + 1 + 2 + RSI + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 712 + Residual Supply Index + 4000040 + true + + + 1560 + 201 + 1 + 3 + Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 344 + Lerner Index (P-C)/P + 4000040 + true + + + 1561 + 201 + 1 + 4 + Bounded Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 43 + Lerner Index (P-C)/P + 4000040 + true + + + 1562 + 201 + 1 + 5 + Intercept + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 323 + Intercept in LI equation + 4000040 + true + + + 1563 + 201 + 1 + 6 + RSI Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 714 + RSI Coefficient in LI equation + 4000040 + true + + + 1564 + 201 + 1 + 7 + RSI-squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 717 + RSI-squared Coefficient in LI equation + 4000040 + true + + + 1565 + 201 + 1 + 8 + Load Unhedged Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 361 + Load Unhedged Coefficient in LI equation + 4000040 + true + + + 1566 + 201 + 1 + 9 + RSI Inverse Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 716 + RSI Inverse Coefficient + 4000040 + true + + + 1567 + 201 + 1 + 10 + Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Load Coefficient in LI equation + 4000040 + true + + + 1568 + 201 + 1 + 11 + Load Capacity Ratio Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 351 + Load Capacity Ratio Coefficient in LI equation + 4000040 + true + + + 1569 + 201 + 1 + 12 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Capacity Factor Coefficient in LI equation + 4000040 + true + + + 1570 + 201 + 1 + 13 + Load Variation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 363 + Load Variation Coefficient in LI equation + 4000040 + true + + + 1571 + 201 + 1 + 14 + Summer Period Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 769 + Summer Period Coefficient in LI equation + 4000040 + true + + + 1572 + 201 + 1 + 15 + Peak Period Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 601 + Peak Period Coefficient + 4000040 + true + + + 1573 + 201 + 1 + 16 + Average Load + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 26 + Average Load used in computation of Load Variation + 4000040 + true + + + 1574 + 201 + 1 + 17 + Lerner Index t-statistic + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 347 + T-statistic applied in low/high LI scenarios. + 4000040 + true + + + 1575 + 201 + 1 + 18 + Lerner Index Std Dev + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 346 + Standard deviation applied in low/high LI scenarios. + 4000040 + true + + + 1576 + 201 + 1 + 19 + Lerner Index Calibration Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 345 + Calibration factor added to Lerner Index + 4000040 + true + + + 1577 + 201 + 1 + 20 + Min Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 484 + Lower bound on Lerner Index + 40000C0 + true + + + 1578 + 201 + 1 + 21 + Max Lerner Index + 0 + 0.9 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 434 + Upper bound on Lerner Index + 40000C0 + true + + + 1579 + 208 + 1 + 1 + Max Tranches + 0 + 10 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2162 + Number of tranches to be used for piece-wise linear approximation + true + + + 1580 + 208 + 1 + 2 + Tranche Points + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 3077 + Input tranche points used in the piece-wise linear approximation + true + + + 1581 + 211 + 1 + 1 + Capacity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3078 + Capacity scalar for the Generator in the firm capacity approximation + true + + + 1582 + 212 + 1 + 1 + Capacity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3078 + Capacity scalar for the Power2X object in the firm capacity approximation + true + + + 1583 + 213 + 1 + 1 + Capacity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3078 + Capacity scalar for the Battery in the firm capacity approximation + true + + + 1584 + 214 + 2 + 1 + Generator Settlement Model + 0 + 0 + In (0,1,2,3,4,5,6,7) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average";3;"Pay-as-Bid";4;"Uniform";5;"None";6;"Custom";7;"Most Expensive Dispatched" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 252 + Model used to determine price paid to generators. + 4000000 + true + + + 1585 + 214 + 2 + 2 + Load Settlement Model + 0 + 2 + In (0,1,2,3,4,5,6,7) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average";3;"Pay-as-Bid";4;"Uniform";5;"None";6;"Custom";7;"Most Expensive Dispatched" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 359 + Model used to determine price paid by loads. + 4000000 + true + + + 1586 + 214 + 2 + 3 + Uniform Pricing Pumped Storage Price Setting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 805 + If pumped storage can set the SMP + 4000000 + true + + + 1587 + 214 + 2 + 4 + Uniform Pricing Relax Transmission Limits + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 809 + If transmission limits are relaxed in calculating SMP + 4000000 + true + + + 1588 + 214 + 2 + 5 + Uniform Pricing Relax Generic Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 808 + If other generic constraints are relaxed in calculating SMP + 4000000 + true + + + 1589 + 214 + 2 + 6 + Uniform Pricing Relax Generator Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 807 + If generator non-technical constraints are relaxed in calculating SMP + 4000000 + true + + + 1590 + 214 + 2 + 7 + Uniform Pricing Relax Ancillary Services + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 806 + If ancillary service requirements are relaxed in calculating SMP + 4000000 + true + + + 1591 + 214 + 2 + 8 + Uplift Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 833 + If uplift is added to market prices + 4000000 + true + + + 1592 + 214 + 2 + 9 + Uplift Cost Basis + 0 + 1 + In (1,2) + 1;"Cost-based";2;"Bid-based" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 830 + Basis for calculating generation cost for uplift calculations (cost-based or bid-base) + 4000000 + true + + + 1593 + 214 + 2 + 10 + Uplift Compatibility + 0 + 1 + In (1,2,3) + 1;"CBP";2;"SEM";3;"Custom" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 829 + Uplift calculation compatibility (match to market being modelled) + 4000000 + true + + + 1594 + 214 + 2 + 11 + Uplift Alpha + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 827 + Alpha parameter for SEM-style uplift payment (weight on total generation revenues) + 4000000 + true + + + 1595 + 214 + 2 + 12 + Uplift Beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 828 + Beta parameter for SEM-style uplift payment (weight on squared deviations from shadow price) + 4000000 + true + + + 1596 + 214 + 2 + 13 + Uplift Delta + 0 + 5 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1080 + Delta parameter for SEM-style uplift payment (proportion of shadow total system revenues after uplift) + 4000000 + true + + + 1597 + 214 + 2 + 14 + Uplift Include Start Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 835 + If the uplift calculation should include recovery of start costs + 4000000 + true + + + 1598 + 214 + 2 + 15 + Uplift Include No-Load Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 834 + If the uplift calculation should include recovery of no-load costs + 4000000 + true + + + 1599 + 214 + 2 + 16 + Uplift Detect Active Min Stable Level Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 831 + If the uplift calculation should exclude units running at min stable level + 4000000 + true + + + 1600 + 214 + 2 + 17 + Uplift Detect Active Ramp Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 832 + If the uplift calculation should exclude generators on ramp limits + 4000000 + true + + + 1601 + 214 + 2 + 18 + Include in Marginal Unit + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1446 + Flag if the region is included in the Region Marginal Unit Diagnostic + 800 + true + + + 1602 + 214 + 2 + 19 + Include in Uplift + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1362 + If uplift is allowed in the period + 4000000 + true + + + 1603 + 214 + 2 + 20 + Include in Kron Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2699 + A flag indicating if the selected region should be included in the Kron-reduction algorithm + true + + + 1604 + 214 + 2 + 21 + Constraint Payments Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 97 + Constraint payments compatibility (match to market being modelled) + 4000000 + true + + + 1605 + 214 + 2 + 22 + Constraint Payments Compatibility + 0 + 1 + In (1,2) + 1;"CBP";2;"SEM" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 96 + Constraint payments compatibility (match to market being modeled) + 4000000 + true + + + 1606 + 214 + 2 + 23 + Load Metering Point + 0 + 0 + In (0,1) + 0;"Generator Terminal";1;"Sent Out" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 930 + Metering point for input loads in the region + 200000 + true + + + 1607 + 214 + 2 + 24 + Load Includes Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 353 + Flag if input load includes transmission losses + 200000 + true + + + 1608 + 214 + 2 + 25 + Aggregate Transmission + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2 + If transmission should be aggregated to the region level + 2000000 + true + + + 1609 + 214 + 2 + 26 + Pool Type + 0 + 0 + In (0,1) + 0;"Gross Pool";1;"Net Pool" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 610 + Gross or Net Pool for settlement of Financial Contracts in the Region. + 4000000 + true + + + 1610 + 214 + 2 + 27 + MLF Adjusts Offer Price + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1196 + If Generator [Marginal Loss Factor] adjusts [Offer Price]. + 600000 + true + + + 1611 + 214 + 2 + 28 + MLF Adjusts Bid Price + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1197 + If Purchaser [Marginal Loss Factor] adjusts [Bid Price]. + 200000 + true + + + 1612 + 214 + 2 + 29 + MLF Adjusts No Load Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1198 + If Generator [Marginal Loss Factor] adjusts [Offer No Load Cost]. + 200000 + true + + + 1613 + 214 + 2 + 30 + MLF Adjusts Start Cost + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1199 + If Generator [Marginal Loss Factor] adjusts [Start Cost]. + 200000 + true + + + 1614 + 214 + 2 + 31 + Include in Region Supply + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 304 + Flag if the region is included in the Region Supply Diagnostic + 800 + true + + + 1615 + 214 + 2 + 32 + Transmission Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1673 + If transmission line constraints are enabled in this region. + 80 + true + + + 1616 + 214 + 2 + 33 + Transmission Constraint Voltage Threshold + 4 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1674 + Voltage level at which thermal limits are modeled in this region. + 80 + true + + + 1617 + 214 + 2 + 34 + Transmission Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1675 + If interface constraints are enabled in this region. + 80 + true + + + 1618 + 214 + 2 + 35 + Enforce Transmission Limits On Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1676 + If lines in interfaces should have their limits enforced regardless of voltage in this region. + 80 + true + + + 1619 + 214 + 2 + 36 + Transmission Report Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1677 + If transmission reporting is enabled in this region. + true + + + 1620 + 214 + 2 + 37 + Transmission Report Voltage Threshold + 4 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1678 + Voltage level at which transmission reporting begins in this region. + true + + + 1621 + 214 + 2 + 38 + Transmission Report Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1679 + If all flows on lines selected interfaces are reported in this region. + true + + + 1622 + 214 + 2 + 39 + Transmission Report Injection and Load Nodes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1680 + If all injection and load buses (nodes) are reported on (regardless of voltage) in this region. + true + + + 1623 + 214 + 2 + 40 + Transmission Clustering Level + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2026 + Cluster nodes until this number of equivalent nodes remain (-1 means no clustering) + true + + + 1624 + 214 + 2 + 41 + Transmission Clustering Tolerance + 12 + 100 + Between 0 and 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2027 + Cluster nodes until this level of accuracy is reached (100% means no clustering) + true + + + 1625 + 214 + 2 + 42 + Report Objects in Region + 0 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1807 + If objects in the Region such as Nodes, Lines, Generators, etc should be reported. + true + + + 1626 + 214 + 2 + 43 + Wheeling Method + 0 + 1 + In (1,2) + 1;"Net";2;"Gross" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1777 + Export wheeling charge method + 800000000 + true + + + 1627 + 214 + 2 + 44 + Decomposition Group + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1972 + The decomposition group that the region belongs to. + true + + + 1628 + 214 + 2 + 45 + Capacity Expansion Group + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2676 + The capacity expansion group that the region belongs to for LT decomposition. + true + + + 1629 + 214 + 2 + 46 + Solution Detail + 0 + 1 + In (1,2,3) + 1;"SCUC";2;"SCED";3;"Static" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2066 + Solution detail to be used for the region + true + + + 1630 + 214 + 2 + 47 + Unserved Energy Method + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Greedy Response";2;"Min LOLE";3;"Min Residual Shortfall" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2136 + Unserved Energy Method to be used for the region + true + + + 1631 + 214 + 2 + 48 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1632 + 214 + 2 + 49 + Report Marginal Resources + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2623 + If marginal resources are reported for the region in the solution + true + + + 1633 + 214 + 3 + 50 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Region is included in the simulation. + 800000 + true + + + 1634 + 214 + 3 + 51 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + true + true + true + 1 + 349 + Load + 100001 + true + + + 1635 + 214 + 3 + 52 + Load Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 358 + Scale factor for raw load figures (to convert as required to nodal load) + 100000 + true + + + 1636 + 214 + 3 + 53 + Fixed Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load + 100000 + true + + + 1637 + 214 + 3 + 54 + Fixed Generation + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 198 + Fixed (or embedded) generation + 100000 + true + + + 1638 + 214 + 3 + 55 + VoLL + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 847 + Value of lost load (VoLL) + 40000001 + true + + + 1639 + 214 + 3 + 56 + Price of Dump Energy + 33 + -1000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 616 + Price of dump energy per MWh (1=hard constraint) + 40000001 + true + + + 1640 + 214 + 3 + 57 + Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on generator offer prices + 4000000 + true + + + 1641 + 214 + 3 + 58 + Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on generator offer prices + 4000000 + true + + + 1642 + 214 + 3 + 59 + Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 612 + Price + 4000000 + true + + + 1643 + 214 + 3 + 60 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge on exports from the region + 2000000000 + true + + + 1644 + 214 + 3 + 61 + Fixed Cost Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 195 + This parameter is a percentage to represent the amount of fixed cost considered in the recovery algorithm (but PLEXOS will still report the full amount of fixed costs on each generator/line) + 8040 + true + + + 1645 + 214 + 3 + 62 + Elasticity + 56 + -0.2 + <0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1273 + Price elasticity of demand + 40 + true + + + 1646 + 214 + 3 + 63 + Reference Load + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 670 + Reference load for distributed load slack model + 800000000 + true + + + 1647 + 214 + 3 + 64 + Historical Peak Demand + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3092 + Historical demand data to be used as part of the Interruption Sharing process. + 800000000 + true + + + 1648 + 214 + 3 + 65 + Internal VoLL + 33 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 325 + Region specific value of lost load + 40000001 + true + + + 1649 + 214 + 3 + 66 + Internal VoLL Level + 3 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2077 + Level of unserved energy VoLL applies to + 40000001 + true + + + 1650 + 214 + 3 + 67 + Unmapped Resource Injection + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3060 + Regional unmapped resource injection calculated from MT phase that would be passed onto ST phase + 800000000 + false + + + 1651 + 214 + 9 + 68 + Max Unserved Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2014 + Maximum unserved energy + 80 + true + + + 1652 + 214 + 9 + 68 + Max Unserved Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2898 + Maximum unserved energy in hour + 80 + true + + + 1653 + 214 + 9 + 68 + Max Unserved Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2899 + Maximum unserved energy in day + 80 + true + + + 1654 + 214 + 9 + 68 + Max Unserved Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2900 + Maximum unserved energy in week + 80 + true + + + 1655 + 214 + 9 + 68 + Max Unserved Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2901 + Maximum unserved energy in month + 80 + true + + + 1656 + 214 + 9 + 68 + Max Unserved Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2902 + Maximum unserved energy in year + 80 + true + + + 1657 + 214 + 9 + 69 + Max Unserved Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2903 + Maximum proportion of energy unserved + 80 + true + + + 1658 + 214 + 9 + 69 + Max Unserved Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2904 + Maximum proportion of energy unserved in hour + 80 + true + + + 1659 + 214 + 9 + 69 + Max Unserved Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2905 + Maximum proportion of energy unserved in day + 80 + true + + + 1660 + 214 + 9 + 69 + Max Unserved Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2906 + Maximum proportion of energy unserved in week + 80 + true + + + 1661 + 214 + 9 + 69 + Max Unserved Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2907 + Maximum proportion of energy unserved in month + 80 + true + + + 1662 + 214 + 9 + 69 + Max Unserved Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2908 + Maximum proportion of energy unserved in year + 80 + true + + + 1663 + 214 + 9 + 70 + Max Dump Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2909 + Maximum dump energy + 80 + true + + + 1664 + 214 + 9 + 70 + Max Dump Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2910 + Maximum dump energy in hour + 80 + true + + + 1665 + 214 + 9 + 70 + Max Dump Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2911 + Maximum dump energy in day + 80 + true + + + 1666 + 214 + 9 + 70 + Max Dump Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2912 + Maximum dump energy in week + 80 + true + + + 1667 + 214 + 9 + 70 + Max Dump Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2913 + Maximum dump energy in month + 80 + true + + + 1668 + 214 + 9 + 70 + Max Dump Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2914 + Maximum dump energy in year + 80 + true + + + 1669 + 214 + 9 + 71 + Max Dump Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2915 + Maximum proportion of energy dumped + 80 + true + + + 1670 + 214 + 9 + 71 + Max Dump Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2916 + Maximum proportion of energy dumped in hour + 80 + true + + + 1671 + 214 + 9 + 71 + Max Dump Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2917 + Maximum proportion of energy dumped in day + 80 + true + + + 1672 + 214 + 9 + 71 + Max Dump Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2918 + Maximum proportion of energy dumped in week + 80 + true + + + 1673 + 214 + 9 + 71 + Max Dump Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2919 + Maximum proportion of energy dumped in month + 80 + true + + + 1674 + 214 + 9 + 71 + Max Dump Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2920 + Maximum proportion of energy dumped in year + 80 + true + + + 1675 + 214 + 9 + 72 + Max Generation Curtailed + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2922 + Maximum generation curtailed + 80 + true + + + 1676 + 214 + 9 + 72 + Max Generation Curtailed Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2923 + Maximum generation curtailed in hour + 80 + true + + + 1677 + 214 + 9 + 72 + Max Generation Curtailed Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2924 + Maximum generation curtailed in day + 80 + true + + + 1678 + 214 + 9 + 72 + Max Generation Curtailed Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2925 + Maximum generation curtailed in week + 80 + true + + + 1679 + 214 + 9 + 72 + Max Generation Curtailed Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2926 + Maximum generation curtailed in month + 80 + true + + + 1680 + 214 + 9 + 72 + Max Generation Curtailed Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2927 + Maximum generation curtailed in year + 80 + true + + + 1681 + 214 + 9 + 73 + Max Generation Curtailment Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2928 + Maximum proportion of generation curtailed + 80 + true + + + 1682 + 214 + 9 + 73 + Max Generation Curtailment Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2929 + Maximum proportion of generation curtailed in hour + 80 + true + + + 1683 + 214 + 9 + 73 + Max Generation Curtailment Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2930 + Maximum proportion of generation curtailed in day + 80 + true + + + 1684 + 214 + 9 + 73 + Max Generation Curtailment Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2931 + Maximum proportion of generation curtailed in week + 80 + true + + + 1685 + 214 + 9 + 73 + Max Generation Curtailment Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2932 + Maximum proportion of generation curtailed in month + 80 + true + + + 1686 + 214 + 9 + 73 + Max Generation Curtailment Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2933 + Maximum proportion of generation curtailed in year + 80 + true + + + 1687 + 214 + 4 + 74 + DSP Bid Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 156 + Bid quantity for demand-side participation + 400400 + true + + + 1688 + 214 + 4 + 75 + DSP Bid Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 155 + Bid price for demand-side participation + 400400 + true + + + 1689 + 214 + 4 + 76 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the Region's Generators are included in Competition modelling. + 40 + true + + + 1690 + 214 + 7 + 77 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1691 + 214 + 7 + 78 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance factor + 1000000 + true + + + 1692 + 214 + 6 + 79 + Peak Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 600 + Indicates periods that include the peak load + 100008 + true + + + 1693 + 214 + 6 + 80 + Firm Capacity Incr + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1959 + Firm Capacity not explicitly modeled that should be included in reserve margin calculations + 1000000 + true + + + 1694 + 214 + 6 + 81 + Firm Capacity Values + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2968 + Firm capacity values corresponding to the Capacity Points of connected Firm Capacity Groups + true + + + 1695 + 214 + 8 + 82 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 479 + Minimum capacity reserves allowed + 8C + true + + + 1696 + 214 + 8 + 83 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 421 + Maximum capacity reserves allowed + 8C + true + + + 1697 + 214 + 8 + 84 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 1698 + 214 + 8 + 85 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 1699 + 214 + 8 + 86 + Min Native Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1293 + Minimum capacity reserves supplied only by sources in the Region + 88 + true + + + 1700 + 214 + 8 + 87 + Min Native Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1294 + Minimum capacity reserve margin supplied only by sources in the Region + 88 + true + + + 1701 + 214 + 8 + 88 + Seasonal Reserve Constraint Active + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2984 + Specifies when a seasonal capacity reserve is active + 8C + true + + + 1702 + 214 + 8 + 89 + Capacity Shortage Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 69 + Penalty for a shortage of capacity reserves + 40000008 + true + + + 1703 + 214 + 8 + 90 + Capacity Excess Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 57 + Penalty for an excess of capacity reserves + 40000008 + true + + + 1704 + 214 + 8 + 91 + Capacity Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1752 + Cap on the capacity price + 4000008 + true + + + 1705 + 214 + 8 + 92 + Capacity Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1753 + Floor on the capacity price + 4000008 + true + + + 1706 + 214 + 8 + 93 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this region + 88 + true + + + 1707 + 214 + 12 + 94 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1708 + 214 + 12 + 95 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1709 + 214 + 12 + 96 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1710 + 219 + 1 + 1 + Max Production + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 949 + Maximum total emission production by emission producers in the region + 2000 + true + + + 1711 + 219 + 1 + 1 + Max Production Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum total emission production by emission producers in the region per hour + 2000 + true + + + 1712 + 219 + 1 + 1 + Max Production Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum total emission production by emission producers in the region per day + 2000 + true + + + 1713 + 219 + 1 + 1 + Max Production Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum total emission production by emission producers in the region per week + 2000 + true + + + 1714 + 219 + 1 + 1 + Max Production Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum total emission production by emission producers in the region per month + 2000 + true + + + 1715 + 219 + 1 + 1 + Max Production Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum total emission production by emission producers in the region per year + 2000 + true + + + 1716 + 223 + 1 + 1 + Capacity Points + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2967 + Capacity points used for approximating the firm capacity surface + true + + + 1717 + 224 + 1 + 1 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for exports to the region + 2000000000 + true + + + 1718 + 224 + 1 + 2 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the region + true + + + 1719 + 224 + 1 + 3 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports + true + + + 1720 + 224 + 1 + 4 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 429 + Maximum flow allowed between the regions + 4 + true + + + 1721 + 224 + 1 + 5 + Firm Exports + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2700 + The firm exports from the parent region to the child regions for Capacity Expansion Decomposition + 4 + true + + + 1722 + 242 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of region load + 100000 + true + + + 1723 + 242 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of region load + 100000 + true + + + 1724 + 242 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of region generation + true + + + 1725 + 242 + 3 + 4 + Imports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2944 + Coefficient of region imports + true + + + 1726 + 242 + 3 + 5 + Exports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2945 + Coefficient of region exports + true + + + 1727 + 242 + 3 + 6 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the region + 1000000004 + true + + + 1728 + 242 + 3 + 7 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1729 + 242 + 3 + 8 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1730 + 242 + 3 + 9 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1731 + 242 + 3 + 10 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 1732 + 242 + 6 + 11 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + 4 + true + + + 1733 + 242 + 6 + 12 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + 4 + true + + + 1734 + 242 + 6 + 13 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + 100004 + true + + + 1735 + 242 + 6 + 14 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + C + true + + + 1736 + 242 + 6 + 15 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 1737 + 242 + 6 + 16 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 1738 + 242 + 8 + 17 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + C + true + + + 1739 + 242 + 8 + 18 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + C + true + + + 1740 + 242 + 8 + 19 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + 8008 + true + + + 1741 + 242 + 8 + 20 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 1742 + 242 + 8 + 21 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 1743 + 242 + 8 + 22 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 1744 + 242 + 8 + 23 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 1745 + 243 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of region load + true + + + 1746 + 243 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of region load + true + + + 1747 + 243 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of region generation + true + + + 1748 + 243 + 3 + 4 + Imports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2944 + Coefficient of region imports + true + + + 1749 + 243 + 3 + 5 + Exports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2945 + Coefficient of region exports + true + + + 1750 + 243 + 3 + 6 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the region + true + + + 1751 + 243 + 3 + 7 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 1752 + 243 + 3 + 8 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1753 + 243 + 3 + 9 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1754 + 243 + 3 + 10 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 1755 + 243 + 6 + 11 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + true + + + 1756 + 243 + 6 + 12 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + true + + + 1757 + 243 + 6 + 13 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + true + + + 1758 + 243 + 6 + 14 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + true + + + 1759 + 243 + 6 + 15 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 1760 + 243 + 6 + 16 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 1761 + 243 + 8 + 17 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + true + + + 1762 + 243 + 8 + 18 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + true + + + 1763 + 243 + 8 + 19 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + true + + + 1764 + 243 + 8 + 20 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 1765 + 243 + 8 + 21 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 1766 + 243 + 8 + 22 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 1767 + 243 + 8 + 23 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 1768 + 244 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of region demand in condition + true + + + 1769 + 244 + 1 + 2 + Available Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2738 + Coefficient of region available capacity reserves in condition + true + + + 1770 + 244 + 1 + 3 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of region capacity reserves in condition + true + + + 1771 + 244 + 1 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 1772 + 244 + 1 + 5 + Price Coefficient + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1380 + Coefficient of region price in condition + true + + + 1773 + 245 + 3 + 1 + ORDC VOLL + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2678 + Value of Lost Load for ORDC calculations + true + + + 1774 + 245 + 3 + 2 + ORDC MCL + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2679 + Minimum Contingency Level for ORDC calculations + true + + + 1775 + 245 + 3 + 3 + ORDC Schedule Mu + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2680 + Average of the forecasted hourly reserve value for ORDC calculations + true + + + 1776 + 245 + 3 + 4 + ORDC Schedule Sigma + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2681 + Standard deviation of the forecasted hourly reserve value for ORDC calculations + true + + + 1777 + 245 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1778 + 245 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1779 + 245 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1780 + 249 + 1 + 1 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the regions in the pool + true + + + 1781 + 249 + 1 + 2 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports for regions in the Pool + true + + + 1782 + 252 + 2 + 1 + Load Settlement Model + 0 + 0 + In (0,1,2) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 359 + Model used to determine energy prices reported in the zone. + 4000000 + true + + + 1783 + 252 + 2 + 2 + Wheeling Method + 0 + 1 + In (1,2) + 1;"Net";2;"Gross" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1777 + Export wheeling charge method + 800000000 + true + + + 1784 + 252 + 2 + 3 + Transmission Clustering Level + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2026 + Cluster nodes until this number of equivalent nodes remain (-1 means no clustering) + true + + + 1785 + 252 + 2 + 4 + Transmission Clustering Tolerance + 12 + 100 + Between 0 and 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2027 + Cluster nodes until this level of accuracy is reached (100% means no clustering) + true + + + 1786 + 252 + 2 + 5 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1787 + 252 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Zone is in service + 800000 + true + + + 1788 + 252 + 3 + 7 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 349 + Load + 100000 + true + + + 1789 + 252 + 3 + 8 + Load Participation Factor + 0 + 0 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of region load that occurs in the zone + 100000 + true + + + 1790 + 252 + 3 + 9 + Load Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 358 + Scale factor for input [Load] + 100000 + true + + + 1791 + 252 + 3 + 10 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge on exports from the zone + 2000000000 + true + + + 1792 + 252 + 9 + 11 + Max Unserved Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2014 + Maximum unserved energy + 80 + true + + + 1793 + 252 + 9 + 11 + Max Unserved Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2898 + Maximum unserved energy in hour + 80 + true + + + 1794 + 252 + 9 + 11 + Max Unserved Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2899 + Maximum unserved energy in day + 80 + true + + + 1795 + 252 + 9 + 11 + Max Unserved Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2900 + Maximum unserved energy in week + 80 + true + + + 1796 + 252 + 9 + 11 + Max Unserved Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2901 + Maximum unserved energy in month + 80 + true + + + 1797 + 252 + 9 + 11 + Max Unserved Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2902 + Maximum unserved energy in year + 80 + true + + + 1798 + 252 + 9 + 12 + Max Unserved Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2903 + Maximum proportion of energy unserved + 80 + true + + + 1799 + 252 + 9 + 12 + Max Unserved Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2904 + Maximum proportion of energy unserved in hour + 80 + true + + + 1800 + 252 + 9 + 12 + Max Unserved Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2905 + Maximum proportion of energy unserved in day + 80 + true + + + 1801 + 252 + 9 + 12 + Max Unserved Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2906 + Maximum proportion of energy unserved in week + 80 + true + + + 1802 + 252 + 9 + 12 + Max Unserved Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2907 + Maximum proportion of energy unserved in month + 80 + true + + + 1803 + 252 + 9 + 12 + Max Unserved Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2908 + Maximum proportion of energy unserved in year + 80 + true + + + 1804 + 252 + 9 + 13 + Max Dump Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2909 + Maximum dump energy + 80 + true + + + 1805 + 252 + 9 + 13 + Max Dump Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2910 + Maximum dump energy in hour + 80 + true + + + 1806 + 252 + 9 + 13 + Max Dump Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2911 + Maximum dump energy in day + 80 + true + + + 1807 + 252 + 9 + 13 + Max Dump Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2912 + Maximum dump energy in week + 80 + true + + + 1808 + 252 + 9 + 13 + Max Dump Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2913 + Maximum dump energy in month + 80 + true + + + 1809 + 252 + 9 + 13 + Max Dump Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2914 + Maximum dump energy in year + 80 + true + + + 1810 + 252 + 9 + 14 + Max Dump Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2915 + Maximum proportion of energy dumped + 80 + true + + + 1811 + 252 + 9 + 14 + Max Dump Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2916 + Maximum proportion of energy dumped in hour + 80 + true + + + 1812 + 252 + 9 + 14 + Max Dump Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2917 + Maximum proportion of energy dumped in day + 80 + true + + + 1813 + 252 + 9 + 14 + Max Dump Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2918 + Maximum proportion of energy dumped in week + 80 + true + + + 1814 + 252 + 9 + 14 + Max Dump Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2919 + Maximum proportion of energy dumped in month + 80 + true + + + 1815 + 252 + 9 + 14 + Max Dump Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2920 + Maximum proportion of energy dumped in year + 80 + true + + + 1816 + 252 + 9 + 15 + Max Generation Curtailed + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2922 + Maximum generation curtailed + 80 + true + + + 1817 + 252 + 9 + 15 + Max Generation Curtailed Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2923 + Maximum generation curtailed in hour + 80 + true + + + 1818 + 252 + 9 + 15 + Max Generation Curtailed Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2924 + Maximum generation curtailed in day + 80 + true + + + 1819 + 252 + 9 + 15 + Max Generation Curtailed Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2925 + Maximum generation curtailed in week + 80 + true + + + 1820 + 252 + 9 + 15 + Max Generation Curtailed Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2926 + Maximum generation curtailed in month + 80 + true + + + 1821 + 252 + 9 + 15 + Max Generation Curtailed Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2927 + Maximum generation curtailed in year + 80 + true + + + 1822 + 252 + 9 + 16 + Max Generation Curtailment Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2928 + Maximum proportion of generation curtailed + 80 + true + + + 1823 + 252 + 9 + 16 + Max Generation Curtailment Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2929 + Maximum proportion of generation curtailed in hour + 80 + true + + + 1824 + 252 + 9 + 16 + Max Generation Curtailment Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2930 + Maximum proportion of generation curtailed in day + 80 + true + + + 1825 + 252 + 9 + 16 + Max Generation Curtailment Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2931 + Maximum proportion of generation curtailed in week + 80 + true + + + 1826 + 252 + 9 + 16 + Max Generation Curtailment Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2932 + Maximum proportion of generation curtailed in month + 80 + true + + + 1827 + 252 + 9 + 16 + Max Generation Curtailment Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2933 + Maximum proportion of generation curtailed in year + 80 + true + + + 1828 + 252 + 7 + 17 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1829 + 252 + 7 + 18 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance factor + 1000000 + true + + + 1830 + 252 + 6 + 19 + Peak Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 600 + Indicates periods that include the peak load + 100008 + true + + + 1831 + 252 + 6 + 20 + Firm Capacity Incr + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1959 + Firm Capacity not explicitly modeled that should be included in reserve margin calculations + 1000000 + true + + + 1832 + 252 + 6 + 21 + Firm Capacity Values + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2968 + Firm capacity values corresponding to the Capacity Points of connected Firm Capacity Groups + true + + + 1833 + 252 + 8 + 22 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 479 + Minimum capacity reserves allowed + 8C + true + + + 1834 + 252 + 8 + 23 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 421 + Maximum capacity reserves allowed + 8C + true + + + 1835 + 252 + 8 + 24 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 1836 + 252 + 8 + 25 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 1837 + 252 + 8 + 26 + Min Native Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1293 + Minimum capacity reserves supplied only by sources in the Zone + 88 + true + + + 1838 + 252 + 8 + 27 + Min Native Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1294 + Minimum capacity reserve margin supplied only by sources in the Zone + 88 + true + + + 1839 + 252 + 8 + 28 + Seasonal Reserve Constraint Active + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2984 + Specifies when a seasonal capacity reserve is active + 8C + true + + + 1840 + 252 + 8 + 29 + Capacity Shortage Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 69 + Penalty for a shortage of capacity reserves + 40000008 + true + + + 1841 + 252 + 8 + 30 + Capacity Excess Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 57 + Penalty for an excess of capacity reserves + 40000008 + true + + + 1842 + 252 + 8 + 31 + Capacity Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1752 + Cap on the capacity price + 4000008 + true + + + 1843 + 252 + 8 + 32 + Capacity Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1753 + Floor on the capacity price + 4000008 + true + + + 1844 + 252 + 8 + 33 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this zone + 88 + true + + + 1845 + 252 + 12 + 34 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1846 + 252 + 12 + 35 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1847 + 252 + 12 + 36 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1848 + 266 + 1 + 1 + Capacity Points + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2967 + Capacity points used for approximating the firm capacity surface + true + + + 1849 + 268 + 1 + 1 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for exports to the zone + 2000000000 + true + + + 1850 + 268 + 1 + 2 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the parent zone to child zone. + true + + + 1851 + 268 + 1 + 3 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports from parent zone to child zone. + true + + + 1852 + 268 + 1 + 4 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 429 + Maximum flow allowed between the zones + 4 + true + + + 1853 + 294 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of zone load + 100000 + true + + + 1854 + 294 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of zone load + 100000 + true + + + 1855 + 294 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of zone generation + true + + + 1856 + 294 + 3 + 4 + Imports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2944 + Coefficient of zone imports + true + + + 1857 + 294 + 3 + 5 + Exports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2945 + Coefficient of zone exports + true + + + 1858 + 294 + 3 + 6 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the zone + 1000000004 + true + + + 1859 + 294 + 3 + 7 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1860 + 294 + 3 + 8 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 1861 + 294 + 3 + 9 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1862 + 294 + 3 + 10 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 1863 + 294 + 6 + 11 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + 4 + true + + + 1864 + 294 + 6 + 12 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + C + true + + + 1865 + 294 + 6 + 13 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + C + true + + + 1866 + 294 + 6 + 14 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + C + true + + + 1867 + 294 + 6 + 15 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 1868 + 294 + 6 + 16 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 1869 + 294 + 8 + 17 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + C + true + + + 1870 + 294 + 8 + 18 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + C + true + + + 1871 + 294 + 8 + 19 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + 8008 + true + + + 1872 + 294 + 8 + 20 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity was built + 8 + true + + + 1873 + 294 + 8 + 21 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 1874 + 294 + 8 + 22 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 1875 + 294 + 8 + 23 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 1876 + 295 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of zone load + true + + + 1877 + 295 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of zone load + true + + + 1878 + 295 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of zone generation + true + + + 1879 + 295 + 3 + 4 + Imports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2944 + Coefficient of zone imports + true + + + 1880 + 295 + 3 + 5 + Exports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2945 + Coefficient of zone exports + true + + + 1881 + 295 + 3 + 6 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the zone + true + + + 1882 + 295 + 3 + 7 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 1883 + 295 + 3 + 8 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1884 + 295 + 3 + 9 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1885 + 295 + 3 + 10 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 1886 + 295 + 6 + 11 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + true + + + 1887 + 295 + 6 + 12 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + true + + + 1888 + 295 + 6 + 13 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + true + + + 1889 + 295 + 6 + 14 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + true + + + 1890 + 295 + 6 + 15 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 1891 + 295 + 6 + 16 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 1892 + 295 + 8 + 17 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + true + + + 1893 + 295 + 8 + 18 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + true + + + 1894 + 295 + 8 + 19 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + true + + + 1895 + 295 + 8 + 20 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 1896 + 295 + 8 + 21 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 1897 + 295 + 8 + 22 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 1898 + 295 + 8 + 23 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 1899 + 296 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of zone demand in condition + true + + + 1900 + 296 + 1 + 2 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of zone capacity reserves in condition + true + + + 1901 + 296 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 1902 + 297 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the node must be reported regardless of voltage + 800000 + true + + + 1903 + 297 + 2 + 2 + Is Slack Bus + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 339 + Set if this is the slack bus + 800000000 + true + + + 1904 + 297 + 2 + 3 + Is Unmapped Resource Bus + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3037 + Set if this is the unmapped resource bus + 800000000 + true + + + 1905 + 297 + 2 + 4 + Allow Dump Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 9 + Model Node [Dump Energy] in the mathematical program. + 40000000 + true + + + 1906 + 297 + 2 + 5 + Allow Unserved Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 10 + Model Node [Unserved Energy] in the mathematical program. + 40000000 + true + + + 1907 + 297 + 2 + 6 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1908 + 297 + 2 + 7 + Always Calculate PTDF + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2836 + Flag if the PTDFs associated with the node and transmission constraints will be calculated + 800000 + true + + + 1909 + 297 + 2 + 8 + Enable ATC Calculation + 13 + 0 + In (0,1,2,3) + 0;"None";1;"Generation ATC";2;"Load ATC";3;"Both" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3010 + Flag if ATC calculation should be enabled for the node. + 800000 + true + + + 1910 + 297 + 3 + 9 + Max Unserved Energy + 1 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2014 + Maximum allowed Unserved Energy at the node. + 40000000 + true + + + 1911 + 297 + 3 + 10 + Reference Load + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 670 + Reference load for distributed load slack model + 800000000 + true + + + 1912 + 297 + 3 + 11 + Reference Generation + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 669 + Reference generation from the network case file + 800000000 + true + + + 1913 + 297 + 3 + 12 + External Nodal Injection + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2708 + External nodal injection calculated from MT phase for Kron-reduction algorithm in ST phase + 800000000 + false + + + 1914 + 297 + 3 + 13 + External Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2715 + Regional price of the node calculated from MT phase for Kron-reduction algorithm in ST phase + 4000000 + false + + + 1915 + 297 + 3 + 14 + Voltage + 4 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 848 + Voltage + 800000000 + true + + + 1916 + 297 + 3 + 15 + AC Voltage Magnitude + 10 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2812 + The per-unit voltage magnitude of a node, as determined by an AC power flow solution + 800000000 + true + + + 1917 + 297 + 3 + 16 + AC Voltage Magnitude Target + 10 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2955 + The per-unit voltage magnitude target for the node, or the one being remotely regulated + 800000000 + false + + + 1918 + 297 + 3 + 17 + AC Reactive Power + 122 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2813 + The reactive power injected or withdrawn from a node, as determined by an AC power flow solution + 800000000 + true + + + 1919 + 297 + 3 + 18 + AC Reactive Load + 122 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2956 + The reactive load + 800000000 + false + + + 1920 + 297 + 3 + 19 + AC Shunt Reactive Power Minimum + 122 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2957 + The minimum reactive power available from all shunt devices located at the node + 800000000 + false + + + 1921 + 297 + 3 + 20 + AC Shunt Reactive Power Maximum + 122 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2958 + The maximum reactive power available from all shunt devices located at the node + 800000000 + false + + + 1922 + 297 + 3 + 21 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if bus is in service + 800000 + true + + + 1923 + 297 + 3 + 22 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of region load that occurs at the node + 100000 + true + + + 1924 + 297 + 3 + 23 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 349 + Load + 100000 + true + + + 1925 + 297 + 3 + 24 + Fixed Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load at the node + 100000 + true + + + 1926 + 297 + 3 + 25 + Fixed Generation + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 198 + Fixed (or embedded) generation at the node + 100000 + true + + + 1927 + 297 + 3 + 26 + Max Net Injection + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 440 + Maximum net injection + 80 + true + + + 1928 + 297 + 3 + 27 + Max Net Offtake + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 441 + Maximum net offtake + 80 + true + + + 1929 + 297 + 3 + 28 + Rating + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 665 + Maximum power flow through the Node + 80 + true + + + 1930 + 297 + 4 + 29 + DSP Bid Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 156 + Demand-side participation bid quantity + 400400 + true + + + 1931 + 297 + 4 + 30 + DSP Bid Ratio + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 157 + Demand-side participation quantity as a percentage of nodal load + 400400 + true + + + 1932 + 297 + 4 + 31 + DSP Bid Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 155 + Demand-side participation bid price + 400400 + true + + + 1933 + 297 + 3 + 32 + Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 612 + Locational marginal price + 4000000 + true + + + 1934 + 297 + 7 + 33 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1935 + 297 + 7 + 34 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance biasing factor + 1000000 + true + + + 1936 + 297 + 6 + 35 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves + 1000000 + true + + + 1937 + 297 + 6 + 36 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin + 1000000 + true + + + 1938 + 297 + 12 + 37 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1939 + 297 + 12 + 38 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1940 + 297 + 12 + 39 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1941 + 300 + 3 + 1 + Emission Charge + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2999 + Emission charge for emissions consumed at the node in a virtual emission network + true + + + 1942 + 300 + 3 + 2 + Max Emissions + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3000 + Maximum amount of emissions consumed at the node in a virtual emission network + true + + + 1943 + 305 + 1 + 1 + Pricing Weight + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1651 + Wheeling charge for exports to the zone + 2000000000 + true + + + 1944 + 306 + 1 + 1 + Load Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2004 + Percentage share of load ownership + 40 + true + + + 1945 + 307 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 1946 + 307 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Electric Load for each unit of consumption + true + + + 1947 + 307 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Electric Generation for each unit of production + true + + + 1948 + 307 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Electric Load for each unit operating + 1000000000 + true + + + 1949 + 307 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Electric Load for each installed unit + 4 + true + + + 1950 + 311 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node load + 100000 + true + + + 1951 + 311 + 1 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of node generation + true + + + 1952 + 311 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1953 + 311 + 1 + 4 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 1954 + 311 + 1 + 5 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 1955 + 311 + 1 + 6 + Net Injection Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 912 + Coefficient of node net injection + true + + + 1956 + 311 + 1 + 7 + Phase Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 913 + Coefficient of node phase angle + 800000000 + true + + + 1957 + 311 + 1 + 8 + MLF Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 517 + Coefficient of marginal loss factor + 200000 + true + + + 1958 + 312 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node load + true + + + 1959 + 312 + 1 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of node generation + true + + + 1960 + 312 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 1961 + 312 + 1 + 4 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1962 + 312 + 1 + 5 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 1963 + 312 + 1 + 6 + Net Injection Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 912 + Coefficient of node net injection + true + + + 1964 + 312 + 1 + 7 + Phase Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 913 + Coefficient of node phase angle + true + + + 1965 + 312 + 1 + 8 + MLF Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 517 + Coefficient of marginal loss factor + true + + + 1966 + 313 + 1 + 1 + Net Injection Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1547 + Coefficient of Decision Variable in Node net injection definition equation + true + + + 1967 + 314 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node demand in condition + true + + + 1968 + 314 + 1 + 2 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 1969 + 316 + 2 + 1 + Is Scalable + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2270 + Indicates if the load is scalable or flat load. + true + + + 1970 + 316 + 3 + 2 + Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 349 + Load at a node + 100000 + true + + + 1971 + 316 + 3 + 3 + Load Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of company load that occurs at a node + 100000 + true + + + 1972 + 316 + 12 + 4 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1973 + 316 + 12 + 5 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1974 + 316 + 12 + 6 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1975 + 321 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the Line must be reported regardless of Transmission [Report Voltage Threshold]. + 800000 + true + + + 1976 + 321 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Line for the generation of outages + 101000000 + true + + + 1977 + 321 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 1978 + 321 + 2 + 4 + Enforce Limits + 0 + 1 + In (0,1,2,3) + 0;"Never";1;"Voltage";2;"Always";3;"Contingency" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 177 + Controls when flow limits are enforced with regard to Transmission [Constraint Voltage Threshold]. + 80 + true + + + 1979 + 321 + 2 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 1980 + 321 + 2 + 6 + Formulate NPL Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1207 + If integer conditions that control non-physical losses should be formulated upfront rather than checked iteratively + 2200000 + true + + + 1981 + 321 + 2 + 7 + Max Loss Tranches + 0 + 2 + >=2 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 438 + Maximum number of tranches in piecewise linear loss function. + 2200000 + true + + + 1982 + 321 + 2 + 8 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Line can transfer price across the network + 4000000 + true + + + 1983 + 321 + 2 + 9 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 100 + true + + + 1984 + 321 + 2 + 10 + Fixed Flow Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1794 + Method of interpreting zero values of the [Fixed Flow] property. + 80 + true + + + 1985 + 321 + 2 + 11 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 1986 + 321 + 2 + 12 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 1987 + 321 + 2 + 13 + Screening Mode + 0 + 1 + In (0,1,2) + 0;"Never";1;"Default";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2859 + The set of lines that should be screened for post-contingency flow under screen contingencies + true + + + 1988 + 321 + 3 + 14 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the line is in service (0,1) + 800000 + true + + + 1989 + 321 + 3 + 15 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 429 + Maximum flow + 5 + true + + + 1990 + 321 + 3 + 16 + Min Flow + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 481 + Minimum flow + 5 + true + + + 1991 + 321 + 3 + 17 + Max Rating + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 449 + Rated maximum (overrides Max Flow) + 80 + true + + + 1992 + 321 + 3 + 18 + Min Rating + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 493 + Rated minimum (overrides Min Flow) + 80 + true + + + 1993 + 321 + 3 + 19 + Overload Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 596 + Emergency line rating in the reference direction + 80 + true + + + 1994 + 321 + 3 + 20 + Overload Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 597 + Emergency line rating in the counter-reference direction + 80 + true + + + 1995 + 321 + 3 + 21 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for exceeding the flow limits on the line + 80 + true + + + 1996 + 321 + 3 + 22 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 1997 + 321 + 3 + 23 + Resistance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 693 + A measure of the line's opposition to the flow of electric charge + 800000000 + true + + + 1998 + 321 + 3 + 24 + Reactance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 667 + Together with any resistance this makes up the lines impedance + 800000000 + true + + + 1999 + 321 + 3 + 25 + Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 771 + The reciprocal of the reactance of a circuit and thus the imaginary part of its admittance + 800000000 + true + + + 2000 + 321 + 3 + 26 + AC Line Charging Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2814 + The line-charging susceptance of a transmission line + 800000000 + true + + + 2001 + 321 + 3 + 27 + Ramp Up Point + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Flow for use with multi-band Max Ramp Up constraints + 80 + true + + + 2002 + 321 + 3 + 28 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate + 80 + true + + + 2003 + 321 + 3 + 29 + Ramp Down Point + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Flow for use with multi-band Max Ramp Down constraints + 80 + true + + + 2004 + 321 + 3 + 30 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate + 80 + true + + + 2005 + 321 + 3 + 31 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty for changes in flow on the line + 80 + true + + + 2006 + 321 + 3 + 32 + Loss Base + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 375 + Interconnector loss function constant parameter for reference direction flows + 200000 + true + + + 2007 + 321 + 3 + 33 + Loss Incr + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 380 + Interconnector loss function linear parameter for reference direction flows + 200000 + true + + + 2008 + 321 + 3 + 34 + Loss Incr2 + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 382 + Interconnector loss function quadratic parameter for reference direction flows + 200000 + true + + + 2009 + 321 + 3 + 35 + Loss Base Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 376 + Interconnector loss function constant parameter for counter-reference direction flows + 200000 + true + + + 2010 + 321 + 3 + 36 + Loss Incr Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 381 + Interconnector loss function linear parameter for counter-reference direction flows + 200000 + true + + + 2011 + 321 + 3 + 37 + Loss Incr2 Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 383 + Interconnector loss function quadratic parameter for counter-reference direction flows + 200000 + true + + + 2012 + 321 + 3 + 38 + Loss Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 373 + Proportion of line losses allocated to the receiving node + 200000 + true + + + 2013 + 321 + 3 + 39 + Fixed Flow + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 197 + Fixed flow on line + 80 + true + + + 2014 + 321 + 3 + 40 + Fixed Flow Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1324 + Penalty for violation of [Fixed Flow]. + 80 + true + + + 2015 + 321 + 3 + 41 + Fixed Loss + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 203 + Fixed loss on line + 200000 + true + + + 2016 + 321 + 3 + 42 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for reference direction flows + 2000000000 + true + + + 2017 + 321 + 3 + 43 + Wheeling Charge Back + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 859 + Wheeling charge for counter-reference direction flows + 2000000000 + true + + + 2018 + 321 + 3 + 44 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2019 + 321 + 3 + 45 + Marginal Loss Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) for exports + 600000 + true + + + 2020 + 321 + 3 + 46 + Marginal Loss Factor Back + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 378 + Transmission marginal loss factor (MLF or TLF) for imports + 600000 + true + + + 2021 + 321 + 4 + 47 + Offer Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for balancing offer + 400000 + true + + + 2022 + 321 + 4 + 48 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for reference direction flows + 400000 + true + + + 2023 + 321 + 4 + 49 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price offered in band for reference direction flows + 400000 + true + + + 2024 + 321 + 4 + 50 + Offer Quantity Back + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 573 + Quantity offered in band for counter-reference direction flows + 400000 + true + + + 2025 + 321 + 4 + 51 + Offer Price Back + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 570 + Price offered in band for counter-reference direction flows + 400000 + true + + + 2026 + 321 + 6 + 52 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum amount of capacity reserves supplied to the receiving Region/Zone. + 8 + true + + + 2027 + 321 + 6 + 53 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum amount of capacity reserves supplied to the receiving Region/Zone. + 8 + true + + + 2028 + 321 + 6 + 54 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Net capacity reserves exported + C + true + + + 2029 + 321 + 6 + 55 + Fixed Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1338 + Generic annual fixed charge + 8000 + true + + + 2030 + 321 + 6 + 56 + Equity Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 180 + Annual required return on equity + 8000 + true + + + 2031 + 321 + 6 + 57 + Debt Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 127 + Annual debt charge + 8000 + true + + + 2032 + 321 + 7 + 58 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2033 + 321 + 7 + 59 + Circuits + 0 + 1 + >=1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 909 + Number of circuits in the notional interconnector for the purposes of outage modelling + 1000000 + true + + + 2034 + 321 + 7 + 60 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units (circuits) out of service + 1000000 + true + + + 2035 + 321 + 7 + 61 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2036 + 321 + 7 + 62 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual timeframe + 1000000 + true + + + 2037 + 321 + 7 + 63 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Line rating in the reference direction during outage + 1000000 + true + + + 2038 + 321 + 7 + 64 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Line rating in the counter-reference direction during outage + 1000000 + true + + + 2039 + 321 + 7 + 65 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2040 + 321 + 7 + 66 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair (hr) + 1000000 + true + + + 2041 + 321 + 7 + 67 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair (hr) + 1000000 + true + + + 2042 + 321 + 7 + 68 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2043 + 321 + 7 + 69 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2044 + 321 + 8 + 70 + Type + 0 + 0 + In (0,1) + 0;"AC";1;"DC" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Line expansion type + 800000008 + true + + + 2045 + 321 + 8 + 71 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the line + 8009 + true + + + 2046 + 321 + 8 + 72 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the line + 8 + true + + + 2047 + 321 + 8 + 73 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2048 + 321 + 8 + 74 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of transmission project, for expansion planning. + 8 + true + + + 2049 + 321 + 8 + 75 + Commission Date + 0 + 1 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the line was commissioned for use with [Technical Life] + 8 + true + + + 2050 + 321 + 8 + 76 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the line + 8 + true + + + 2051 + 321 + 8 + 77 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2052 + 321 + 8 + 78 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the line (period over which fixed costs are recovered). + 8 + true + + + 2053 + 321 + 8 + 79 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2054 + 321 + 8 + 80 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 8 + true + + + 2055 + 321 + 8 + 81 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of lines automatically constructed + 8 + true + + + 2056 + 321 + 8 + 82 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of lines automatically retired + 8 + true + + + 2057 + 321 + 8 + 83 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 2058 + 321 + 8 + 84 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 8 + true + + + 2059 + 321 + 8 + 85 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 2060 + 321 + 8 + 86 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 8 + true + + + 2061 + 321 + 8 + 87 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 2062 + 321 + 8 + 88 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 2063 + 321 + 11 + 89 + Flow Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1115 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 2064 + 321 + 11 + 90 + Flow Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1116 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 2065 + 321 + 11 + 91 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2066 + 321 + 11 + 92 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2067 + 321 + 12 + 93 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2068 + 321 + 12 + 94 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2069 + 321 + 12 + 95 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2070 + 327 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 2071 + 328 + 1 + 1 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 583 + Line rating in the reference direction during outage + 4 + true + + + 2072 + 328 + 1 + 2 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 584 + Line rating in the counter-reference direction during outage + 4 + true + + + 2073 + 329 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + 800000000 + true + + + 2074 + 329 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + 800000000 + true + + + 2075 + 329 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + 800000000 + true + + + 2076 + 329 + 3 + 4 + Flow Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 212 + Coefficient of square of line flow + 800000000 + true + + + 2077 + 329 + 3 + 5 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 2078 + 329 + 3 + 6 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 2079 + 329 + 3 + 7 + Spare Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 866 + Coefficient on spare line capacity in the reference direction + 4 + true + + + 2080 + 329 + 3 + 8 + Spare Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 867 + Coefficient on spare line capacity in the counter-reference direction + 4 + true + + + 2081 + 329 + 3 + 9 + Sharing Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2883 + Coefficient of reserve shared on the line + 2 + true + + + 2082 + 329 + 7 + 10 + In Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2940 + Coefficient of 0,1 flag indicating if the Line is installed and in service + true + + + 2083 + 329 + 7 + 11 + Out of Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2941 + Coefficient of 0,1 flag indicating if the Line is either not installed or out of service + true + + + 2084 + 329 + 7 + 12 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + 1000000 + true + + + 2085 + 329 + 8 + 13 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 2086 + 329 + 8 + 14 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 2087 + 329 + 8 + 15 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + C + true + + + 2088 + 329 + 8 + 16 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + C + true + + + 2089 + 329 + 8 + 17 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of lines built in the year + C + true + + + 2090 + 329 + 8 + 18 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of lines retired in the year + C + true + + + 2091 + 329 + 8 + 19 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 2092 + 329 + 8 + 20 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 2093 + 329 + 8 + 21 + Export Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 191 + Coefficient of export capacity retired + C + true + + + 2094 + 329 + 8 + 22 + Import Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 293 + Coefficient of import capacity retired + C + true + + + 2095 + 329 + 8 + 23 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2096 + 330 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + true + + + 2097 + 330 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + true + + + 2098 + 330 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + true + + + 2099 + 330 + 3 + 4 + Flow Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 212 + Coefficient of square of line flow + false + + + 2100 + 330 + 3 + 5 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 2101 + 330 + 3 + 6 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 2102 + 330 + 3 + 7 + Spare Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 866 + Coefficient on spare line capacity in the reference direction + true + + + 2103 + 330 + 3 + 8 + Spare Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 867 + Coefficient on spare line capacity in the counter-reference direction + true + + + 2104 + 330 + 3 + 9 + Sharing Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2883 + Coefficient of reserve shared on the line + 2 + true + + + 2105 + 330 + 7 + 10 + In Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2940 + Coefficient of 0,1 flag indicating if the Line is installed and in service + true + + + 2106 + 330 + 7 + 11 + Out of Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2941 + Coefficient of 0,1 flag indicating if the Line is either not installed or out of service + true + + + 2107 + 330 + 7 + 12 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + true + + + 2108 + 330 + 8 + 13 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 2109 + 330 + 8 + 14 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 2110 + 330 + 8 + 15 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2111 + 330 + 8 + 16 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2112 + 330 + 8 + 17 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of lines built in the year + true + + + 2113 + 330 + 8 + 18 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of lines retired in the year + true + + + 2114 + 330 + 8 + 19 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 2115 + 330 + 8 + 20 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 2116 + 330 + 8 + 21 + Export Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 191 + Coefficient of export capacity retired + true + + + 2117 + 330 + 8 + 22 + Import Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 293 + Coefficient of import capacity retired + true + + + 2118 + 330 + 8 + 23 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2119 + 331 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of line flow in condition + true + + + 2120 + 331 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow in condition + true + + + 2121 + 331 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow in condition + true + + + 2122 + 331 + 3 + 4 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 2123 + 331 + 3 + 5 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 2124 + 331 + 7 + 6 + In Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2940 + Coefficient of 0,1 flag indicating if the Line is installed and in service + true + + + 2125 + 331 + 7 + 7 + Out of Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2941 + Coefficient of 0,1 flag indicating if the Line is either not installed or out of service + true + + + 2126 + 331 + 7 + 8 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + true + + + 2127 + 332 + 1 + 1 + Intercept + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 323 + Intercept of the MLF equation + 200000 + true + + + 2128 + 332 + 1 + 2 + Flow Coefficient + 1 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient on line flow + 200000 + true + + + 2129 + 335 + 1 + 1 + Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 80 + Coefficient of region demand in the MLF equation + 300000 + true + + + 2130 + 338 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the Transformer must be reported regardless of Transmission [Report Voltage Threshold]. + 800000 + true + + + 2131 + 338 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Line for the generation of outages + 101000000 + true + + + 2132 + 338 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2133 + 338 + 2 + 4 + Enforce Limits + 0 + 1 + In (0,1,2,3) + 0;"Never";1;"Voltage";2;"Always";3;"Contingency" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 177 + If flow limits are enforced regardless of Transmission [Constraint Voltage Threshold]. + 80 + true + + + 2134 + 338 + 2 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 2135 + 338 + 2 + 6 + Formulate NPL Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1207 + If integer conditions that control non-physical losses should be formulated upfront rather than checked iteratively + 2200000 + true + + + 2136 + 338 + 2 + 7 + Max Loss Tranches + 0 + 2 + >=2 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 438 + Maximum number of tranches in piecewise linear loss function. + 2200000 + true + + + 2137 + 338 + 2 + 8 + Screening Mode + 0 + 1 + In (0,1,2) + 0;"Never";1;"Default";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2859 + The set of transformers that should be screened for post-contingency flow under screen contingencies + true + + + 2138 + 338 + 3 + 9 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if transformer is in service + 800000 + true + + + 2139 + 338 + 3 + 10 + Rating + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 665 + Maximum MW rating + 5 + true + + + 2140 + 338 + 3 + 11 + Overload Rating + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1028 + Emergency rating in the reference direction + 80 + true + + + 2141 + 338 + 3 + 12 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for exceeding the flow limits on the Transformer. + 80 + true + + + 2142 + 338 + 3 + 13 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 2143 + 338 + 3 + 14 + Resistance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 693 + A measure of the transformer's opposition to the flow of electric charge + 800000000 + true + + + 2144 + 338 + 3 + 15 + Reactance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 667 + Together with any resistance this makes up the lines impedance + 800000000 + true + + + 2145 + 338 + 3 + 16 + Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 771 + The reciprocal of the reactance of a circuit and thus the imaginary part of its admittance + 800000000 + true + + + 2146 + 338 + 3 + 17 + AC Line Charging Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2814 + The line-charging susceptance of a transformer + 800000000 + true + + + 2147 + 338 + 3 + 18 + AC Tap Ratio + 0 + 1 + >0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2815 + The turns ratio of the primary winding of a transformer + 800000 + true + + + 2148 + 338 + 3 + 19 + AC Fixed Shift Angle + 11 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2816 + The fixed phase shift angle between the two windings of a single-phase transformer + 800000000 + true + + + 2149 + 338 + 3 + 20 + Loss Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 373 + Proportion of transformer losses allocated to the receiving node + 200000 + true + + + 2150 + 338 + 3 + 21 + Fixed Loss + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 203 + Fixed loss on transformer + 200000 + true + + + 2151 + 338 + 7 + 22 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2152 + 338 + 7 + 23 + Units Out + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 818 + Number of [Units] out of service + 1000000 + true + + + 2153 + 338 + 7 + 24 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2154 + 338 + 7 + 25 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual timeframe + 1000000 + true + + + 2155 + 338 + 7 + 26 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Transformer rating in the reference direction during outage + 1000000 + true + + + 2156 + 338 + 7 + 27 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Transformer rating in the counter-reference direction during outage + 1000000 + true + + + 2157 + 338 + 7 + 28 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair (hr) + 1000000 + true + + + 2158 + 338 + 7 + 29 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair (hr) + 1000000 + true + + + 2159 + 338 + 7 + 30 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair (hr) + 1000000 + true + + + 2160 + 338 + 7 + 31 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2161 + 338 + 7 + 32 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2162 + 338 + 12 + 33 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2163 + 338 + 12 + 34 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2164 + 338 + 12 + 35 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2165 + 343 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of transformer flow equation + 800000000 + true + + + 2166 + 344 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of transformer flow equation + true + + + 2167 + 345 + 2 + 1 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the flow control can transfer price across the network + 4000000 + true + + + 2168 + 345 + 2 + 2 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2169 + 345 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2170 + 345 + 2 + 4 + Type + 0 + 0 + In (0,1,2,3,4,5) + 0;"PST";1;"DSR";2;"DSSC";3;"MSSR";4;"TCSC";5;"SSSC" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Flow control type + true + + + 2171 + 345 + 3 + 5 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of installed units + 800000 + true + + + 2172 + 345 + 3 + 6 + Min Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 472 + Min angle set on the flow control + 5 + true + + + 2173 + 345 + 3 + 7 + Max Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 411 + Max angle set on the flow control + 5 + true + + + 2174 + 345 + 3 + 8 + Min Impedance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1778 + Min Impedance + 5 + true + + + 2175 + 345 + 3 + 9 + Max Impedance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1779 + Max Impedance + 5 + true + + + 2176 + 345 + 3 + 10 + Min Voltage + 4 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1780 + Min Voltage + 5 + true + + + 2177 + 345 + 3 + 11 + Max Voltage + 4 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1781 + Max Voltage + 5 + true + + + 2178 + 345 + 3 + 12 + Penalty + 43 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 602 + Penalty incurred for shifting the angle + 80 + true + + + 2179 + 345 + 3 + 13 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty price per MW change in flow on the device + 80 + true + + + 2180 + 345 + 3 + 14 + Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 14 + Angle (initial angle when used as input) + 80 + true + + + 2181 + 345 + 3 + 15 + Angle Points + 11 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1762 + Flow control angle points + true + + + 2182 + 345 + 3 + 16 + Flow Loading Points + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1763 + Flow control line flow points + true + + + 2183 + 345 + 3 + 17 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2184 + 345 + 8 + 18 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the flow control + 8009 + true + + + 2185 + 345 + 8 + 19 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2186 + 345 + 8 + 20 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of the project, for expansion planning. + 8 + true + + + 2187 + 345 + 8 + 21 + Commission Date + 0 + 1 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the flow control was commissioned for use with [Technical Life] + 8 + true + + + 2188 + 345 + 8 + 22 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the flow control + 8 + true + + + 2189 + 345 + 8 + 23 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2190 + 345 + 8 + 24 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the flow control (period over which fixed costs are recovered). + 8 + true + + + 2191 + 345 + 8 + 25 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2192 + 345 + 8 + 26 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2193 + 345 + 8 + 27 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 2194 + 345 + 8 + 28 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 2195 + 345 + 11 + 29 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2196 + 345 + 12 + 30 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2197 + 345 + 12 + 31 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2198 + 345 + 12 + 32 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2199 + 350 + 3 + 1 + Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1761 + Coefficient of flow control angle + 800000000 + true + + + 2200 + 350 + 3 + 2 + Positive Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1759 + Boolean value (1 if the flow control angle is positive, 0 otherwise) + 800000000 + true + + + 2201 + 350 + 3 + 3 + Negative Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1760 + Boolean value (1 if the flow control angle is negative, 0 otherwise) + 800000000 + true + + + 2202 + 350 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 2203 + 350 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 2204 + 350 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 2205 + 350 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 2206 + 350 + 8 + 8 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 2207 + 350 + 8 + 9 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 2208 + 350 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2209 + 350 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 2210 + 350 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 2211 + 351 + 3 + 1 + Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1761 + Coefficient of flow control angle + true + + + 2212 + 351 + 3 + 2 + Positive Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1759 + Boolean value (1 if the flow control angle is positive, 0 otherwise) + true + + + 2213 + 351 + 3 + 3 + Negative Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1760 + Boolean value (1 if the flow control angle is negative, 0 otherwise) + true + + + 2214 + 351 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2215 + 352 + 2 + 1 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 2216 + 352 + 2 + 2 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 100 + true + + + 2217 + 352 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if interface is in service + 800000 + true + + + 2218 + 352 + 3 + 4 + Min Flow + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 481 + Minimum flow on interface + 5 + true + + + 2219 + 352 + 3 + 5 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow on interface + 5 + true + + + 2220 + 352 + 3 + 6 + Overload Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 596 + Emergency rating in the reference direction + 80 + true + + + 2221 + 352 + 3 + 7 + Overload Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 597 + Emergency rating in the counter-reference direction + 80 + true + + + 2222 + 352 + 3 + 8 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for violation of limits + 80 + true + + + 2223 + 352 + 3 + 9 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 2224 + 352 + 3 + 10 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 2225 + 352 + 3 + 11 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 2226 + 352 + 3 + 12 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty for changes in flow on the line + 80 + true + + + 2227 + 352 + 3 + 13 + Fixed Flow + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 197 + Fixed flow on interface + 80 + true + + + 2228 + 352 + 3 + 14 + Fixed Flow Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1324 + Penalty for violation of [Fixed Flow]. + 80 + true + + + 2229 + 352 + 4 + 15 + Offer Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for balancing offer + 400000 + true + + + 2230 + 352 + 4 + 16 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for reference direction flows + 400000 + true + + + 2231 + 352 + 4 + 17 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price offered in band for reference direction flows + 400000 + true + + + 2232 + 352 + 4 + 18 + Offer Quantity Back + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 573 + Quantity offered in band for counter-reference direction flows + 400000 + true + + + 2233 + 352 + 4 + 19 + Offer Price Back + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 570 + Price offered in band for counter-reference direction flows + 400000 + true + + + 2234 + 352 + 11 + 20 + Flow Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1115 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 2235 + 352 + 11 + 21 + Flow Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1116 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 2236 + 352 + 6 + 22 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the interface to region capacity reserves + C + true + + + 2237 + 352 + 8 + 23 + Expansion Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 184 + Cost of expanding the interface by one megawatt + 8008 + true + + + 2238 + 352 + 8 + 24 + Max Expansion + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 428 + Maximum interface expansion + 8 + true + + + 2239 + 352 + 8 + 25 + Min Expansion + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2745 + Minimum interface expansion + 8 + true + + + 2240 + 352 + 8 + 26 + Max Expansion In Year + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2754 + Maximum interface expansion allowed in the year + 8 + true + + + 2241 + 352 + 8 + 27 + Min Expansion In Year + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2755 + Minimum interface expansion allowed in the year + 8 + true + + + 2242 + 352 + 8 + 28 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2243 + 352 + 8 + 29 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the interface (period over which expansion costs are recovered). + 8 + true + + + 2244 + 352 + 11 + 30 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2245 + 352 + 12 + 31 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2246 + 352 + 12 + 32 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2247 + 352 + 12 + 33 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2248 + 355 + 1 + 1 + Flow Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient of flow in interface + 800000000 + true + + + 2249 + 355 + 1 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow in interface + 800000000 + true + + + 2250 + 355 + 1 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow in interface + 800000000 + true + + + 2251 + 356 + 1 + 1 + Flow Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient of transformer flow in interface + 800000000 + true + + + 2252 + 357 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + 800000000 + true + + + 2253 + 357 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + 800000000 + true + + + 2254 + 357 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + 800000000 + true + + + 2255 + 357 + 8 + 4 + Expansion Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1220 + Coefficient of total build cost + 8008 + true + + + 2256 + 357 + 8 + 5 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 2257 + 357 + 8 + 6 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 2258 + 357 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 2259 + 357 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 2260 + 357 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 2261 + 357 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 2262 + 357 + 8 + 11 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 2263 + 357 + 8 + 12 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 2264 + 358 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + true + + + 2265 + 358 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + true + + + 2266 + 358 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + true + + + 2267 + 358 + 8 + 4 + Expansion Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1220 + Coefficient of total expansion cost + true + + + 2268 + 359 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow in condition + true + + + 2269 + 360 + 2 + 1 + Is Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 335 + If the contingency is enabled + 800000 + true + + + 2270 + 360 + 2 + 2 + Monitoring Threshold + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1628 + Monitor only this percentage of most affected Line/Transformer/Interface flows. + true + + + 2271 + 360 + 2 + 3 + Screening Elements + 0 + 0 + In (0,1,2) + 0;"None";1;"Monitored Memberships";2;"Network Selections" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2866 + Determines which lines/transformers would be screened for post-contingency flow under this contingency + true + + + 2272 + 360 + 12 + 4 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2273 + 360 + 12 + 5 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2274 + 360 + 12 + 6 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2275 + 366 + 1 + 1 + Max Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2950 + Post-contingency flow limit in the reference direction + 800000000 + true + + + 2276 + 366 + 1 + 2 + Min Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2951 + Post-contingency flow limit in the counter-reference direction + 800000000 + true + + + 2277 + 368 + 1 + 1 + Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2952 + Post-contingency flow limit + 800000000 + true + + + 2278 + 371 + 1 + 1 + Max Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2950 + Post-contingency flow limit in the reference direction + 800000000 + true + + + 2279 + 371 + 1 + 2 + Min Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2951 + Post-contingency flow limit in the counter-reference direction + 800000000 + true + + + 2280 + 372 + 2 + 1 + Pricing Method + 0 + 0 + In (0,1,2) + 0;"Load Weighted Average";1;"Generation Weighted Average";2;"Weighted Average" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 620 + Method used to calculate the hub price + 4000000 + true + + + 2281 + 372 + 3 + 2 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Hub is in service + 800000 + true + + + 2282 + 372 + 12 + 3 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2283 + 372 + 12 + 4 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2284 + 372 + 12 + 5 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2285 + 375 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of hub load + true + + + 2286 + 375 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of hub generation + true + + + 2287 + 376 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of hub load + true + + + 2288 + 376 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of hub generation + true + + + 2289 + 377 + 2 + 1 + Type + 0 + 0 + In (0,1,2) + 0;"TCC";1;"TCR";2;"CRR"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Type of transmission right + 4000000 + false + + + 2290 + 377 + 2 + 2 + Hedge Type + 0 + 0 + In (0,1) + 0;"Obligation";1;"Option"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2803 + Type of transmission right + 4000000 + true + + + 2291 + 377 + 2 + 3 + Settlement Model + 0 + 0 + In (0,1) + 0;"Buy";1;"Sell" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 1653 + Direction of settlement + 4000000 + true + + + 2292 + 377 + 2 + 4 + Pricing Method + 0 + 0 + In (0,1) + 0;"LMP";1;"Congestion Charge" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 620 + Pricing method + 4000000 + true + + + 2293 + 377 + 3 + 5 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Transmission Right is in service + 800000 + true + + + 2294 + 377 + 3 + 6 + Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 650 + Contract quantity + 5 + true + + + 2295 + 377 + 3 + 7 + Rental Share + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 682 + Percent of rent in the reference direction included in the contract + 4 + true + + + 2296 + 377 + 3 + 8 + Rental Back Share + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 680 + Percent of rent in the counter-reference direction included in the contract + 4 + true + + + 2297 + 377 + 3 + 9 + Price + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Scheduled price + true + + + 2298 + 387 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of the transmission right + 40 + true + + + 2299 + 388 + 2 + 1 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the Heat Plant. + 1000000000 + true + + + 2300 + 388 + 2 + 2 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2301 + 388 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2302 + 388 + 3 + 4 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of Heat Plant units in service + 800000 + true + + + 2303 + 388 + 3 + 5 + Max Capacity + 35 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 414 + Maximum heat production + 20000 + true + + + 2304 + 388 + 3 + 6 + Efficiency Base + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 887 + Heat production no-load efficiency + 21000 + true + + + 2305 + 388 + 3 + 7 + Efficiency Incr + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Heat production efficiency + 21000 + true + + + 2306 + 388 + 3 + 8 + VO&M Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 2307 + 388 + 3 + 9 + Load Point + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate. + 1000 + true + + + 2308 + 388 + 3 + 10 + Heat Rate + 37 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 260 + Average heat rate (total fuel divided by total heat production) + 1001 + true + + + 2309 + 388 + 3 + 11 + Heat Rate Base + 35 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 2310 + 388 + 3 + 12 + Heat Rate Incr + 37 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 2311 + 388 + 3 + 13 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 2312 + 388 + 3 + 14 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 2313 + 388 + 3 + 15 + Run Up Rate + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while running the unit up from zero to [Min Stable Level]. + 80000000 + true + + + 2314 + 388 + 3 + 16 + Start Profile + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for running the unit up from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 2315 + 388 + 3 + 17 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 2316 + 388 + 3 + 18 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 2317 + 388 + 3 + 19 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 2318 + 388 + 3 + 20 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 2319 + 388 + 3 + 21 + Max Ramp Up + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 2320 + 388 + 3 + 22 + Max Ramp Down + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 2321 + 388 + 3 + 23 + Min Stable Level + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 501 + Minimum stable Heat Production level + 1000000081 + true + + + 2322 + 388 + 3 + 24 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 2323 + 388 + 8 + 25 + Max Units Built + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 2324 + 388 + 8 + 26 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2325 + 388 + 8 + 27 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2326 + 388 + 8 + 28 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Heat Plant + 8 + true + + + 2327 + 388 + 8 + 29 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 2328 + 388 + 8 + 30 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 2329 + 388 + 8 + 31 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Heat Plant (period over which fixed costs are recovered). + 9 + true + + + 2330 + 388 + 8 + 32 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2331 + 388 + 8 + 33 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2332 + 388 + 8 + 34 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2333 + 388 + 8 + 35 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2334 + 388 + 8 + 36 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Heat Plant + 8 + true + + + 2335 + 388 + 8 + 37 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2336 + 388 + 8 + 38 + Max Units Retired in Year + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2337 + 388 + 8 + 39 + Min Units Retired in Year + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2338 + 388 + 11 + 40 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2339 + 388 + 11 + 41 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2340 + 388 + 12 + 42 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2341 + 388 + 12 + 43 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2342 + 388 + 12 + 44 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2343 + 391 + 1 + 1 + Mutually Exclusive + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 998 + If the Fuel cannot be mixed with other Fuels associated with this heat plant. + 80 + true + + + 2344 + 391 + 1 + 2 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Fixed fuel mix ratio + 80 + true + + + 2345 + 391 + 1 + 3 + Min Ratio + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 494 + Minimum fuel mix ratio + 80 + true + + + 2346 + 391 + 1 + 4 + Max Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 450 + Maximum fuel mix ratio + 80 + true + + + 2347 + 391 + 1 + 5 + Max Input + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 433 + Maximum amount of fuel input to heat plant + 80 + true + + + 2348 + 391 + 1 + 6 + Is Available + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 332 + If the fuel is available for use by the generator + 800000 + true + + + 2349 + 391 + 1 + 7 + Heat Rate Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 266 + Scalar on base heat plant heat rate function + 1000 + true + + + 2350 + 391 + 1 + 8 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 2351 + 391 + 1 + 9 + Heat Rate + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Heat-rate at load point (used with Load Point) or 'b' in the heat input function + 1000 + true + + + 2352 + 391 + 1 + 10 + Heat Rate Incr + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + Average marginal heat-rate in band + 1000 + true + + + 2353 + 392 + 1 + 1 + Offtake at Start + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 578 + Fuel required to start a unit + 1080000000 + true + + + 2354 + 395 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 2355 + 397 + 3 + 1 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + 1000000000 + true + + + 2356 + 397 + 3 + 2 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + 1000 + true + + + 2357 + 397 + 3 + 3 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + 1000 + true + + + 2358 + 397 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 2359 + 397 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 2360 + 397 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 2361 + 397 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 2362 + 397 + 8 + 8 + Capacity Built Coefficient + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 2363 + 397 + 8 + 9 + Capacity Retired Coefficient + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 2364 + 397 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2365 + 397 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 2366 + 397 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 2367 + 398 + 3 + 1 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 2368 + 398 + 3 + 2 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake of the heat plant + true + + + 2369 + 398 + 3 + 3 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + true + + + 2370 + 399 + 1 + 1 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake in condition + true + + + 2371 + 400 + 2 + 1 + Allow Dump Heat + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1927 + Model Heat Node [Dump Heat] in the mathematical program. + 40000000 + true + + + 2372 + 400 + 2 + 2 + Allow Unserved Heat + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2420 + Model Heat Node [Unserved Heat] in the mathematical program. + 40000000 + true + + + 2373 + 400 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of Heat Node units in service + 800000 + true + + + 2374 + 400 + 3 + 4 + Heat Demand + 15 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 1941 + Heat demand at the node + true + + + 2375 + 400 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2376 + 400 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2377 + 400 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2378 + 403 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 2379 + 404 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the water plant + 20000 + false + + + 2380 + 405 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 2381 + 405 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Heat consumption for each unit of consumption + true + + + 2382 + 405 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Heat production for each unit of production + true + + + 2383 + 405 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Heat consumption for each unit operating + 1000000000 + true + + + 2384 + 405 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Heat consumption for each installed unit + 4 + true + + + 2385 + 407 + 3 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node + true + + + 2386 + 408 + 3 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node + true + + + 2387 + 409 + 1 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node in condition + true + + + 2388 + 410 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of balancing the Heat Storage + true + + + 2389 + 410 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period heat volumes + 4000 + true + + + 2390 + 410 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next + 400000000 + true + + + 2391 + 410 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term + 400000000 + true + + + 2392 + 410 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term + 400000000 + true + + + 2393 + 410 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term + 400000000 + true + + + 2394 + 410 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term + 400000000 + true + + + 2395 + 410 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations + 400000000 + true + + + 2396 + 410 + 2 + 9 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2397 + 410 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2398 + 410 + 3 + 11 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of Heat Storage units in service + 800000 + true + + + 2399 + 410 + 3 + 12 + Max Heat + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1514 + Maximum heat allowed in storage + 400020000 + true + + + 2400 + 410 + 3 + 13 + Min Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1515 + Minimum heat allowed in storage + 400020000 + true + + + 2401 + 410 + 3 + 14 + Heat Loss + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1516 + Rate at which heat is lost from storage + 400020000 + true + + + 2402 + 410 + 3 + 15 + Heat Injection Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2222 + Efficiency of heat injection + 400020000 + true + + + 2403 + 410 + 3 + 16 + Heat Withdrawal Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2223 + Efficiency of heat withdrawal + 400020000 + true + + + 2404 + 410 + 3 + 17 + Heat Injection Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1519 + Incremental cost of injecting heat into the storage + 400020000 + true + + + 2405 + 410 + 3 + 18 + Heat Withdrawal Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1518 + Incremental cost of withdrawing heat from the storage + 400020000 + true + + + 2406 + 410 + 3 + 19 + Initial Heat + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2212 + Initial heat in the storage + 400020000 + true + + + 2407 + 410 + 3 + 20 + Dump Heat Penalty + 60 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2224 + Penalty applied to dump heat from the storage. A value of -1 means dump is not allowed. + 400020000 + true + + + 2408 + 410 + 9 + 21 + Max Heat Injection + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1525 + Maximum amount of heat that can be injected into the storage + 400020000 + true + + + 2409 + 410 + 9 + 21 + Max Heat Injection Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1554 + Maximum amount of heat that can be injected into the storage in a hour + 400020000 + true + + + 2410 + 410 + 9 + 21 + Max Heat Injection Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1526 + Maximum amount of heat that can be injected into the storage in a day + 400020000 + true + + + 2411 + 410 + 9 + 21 + Max Heat Injection Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1527 + Maximum amount of heat that can be injected into the storage in a week + 400020000 + true + + + 2412 + 410 + 9 + 21 + Max Heat Injection Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1528 + Maximum amount of heat that can be injected into the storage in a month + 400020000 + true + + + 2413 + 410 + 9 + 21 + Max Heat Injection Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1529 + Maximum amount of heat that can be injected into the storage in a year + 400020000 + true + + + 2414 + 410 + 9 + 22 + Min Heat Injection + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1535 + Amount of heat that must be injected into the storage + 400020000 + true + + + 2415 + 410 + 9 + 22 + Min Heat Injection Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1556 + Amount of heat that must be injected into the storage each hour + 400020000 + true + + + 2416 + 410 + 9 + 22 + Min Heat Injection Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1536 + Amount of heat that must be injected into the storage each day + 400020000 + true + + + 2417 + 410 + 9 + 22 + Min Heat Injection Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1537 + Amount of heat that must be injected into the storage each week + 400020000 + true + + + 2418 + 410 + 9 + 22 + Min Heat Injection Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1538 + Amount of heat that must be injected into the storage each month + 400020000 + true + + + 2419 + 410 + 9 + 22 + Min Heat Injection Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1539 + Amount of heat that must be injected into the storage each year + 400020000 + true + + + 2420 + 410 + 9 + 23 + Max Heat Withdrawal + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1520 + Maximum amount of heat that can be withdrawn from the storage + 400020000 + true + + + 2421 + 410 + 9 + 23 + Max Heat Withdrawal Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1553 + Maximum amount of heat that can be withdrawn from the storage in a hour + 400020000 + true + + + 2422 + 410 + 9 + 23 + Max Heat Withdrawal Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1521 + Maximum amount of heat that can be withdrawn from the storage in a day + 400020000 + true + + + 2423 + 410 + 9 + 23 + Max Heat Withdrawal Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1522 + Maximum amount of heat that can be withdrawn from the storage in a week + 400020000 + true + + + 2424 + 410 + 9 + 23 + Max Heat Withdrawal Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1523 + Maximum amount of heat that can be withdrawn from the storage in a month + 400020000 + true + + + 2425 + 410 + 9 + 23 + Max Heat Withdrawal Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1524 + Maximum amount of heat that can be withdrawn from the storage in a year + 400020000 + true + + + 2426 + 410 + 9 + 24 + Min Heat Withdrawal + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1530 + Amount of heat that must be withdrawn from storage + 400020000 + true + + + 2427 + 410 + 9 + 24 + Min Heat Withdrawal Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1555 + Amount of heat that must be withdrawn from storage each hour + 400020000 + true + + + 2428 + 410 + 9 + 24 + Min Heat Withdrawal Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1531 + Amount of heat that must be withdrawn from storage each day + 400020000 + true + + + 2429 + 410 + 9 + 24 + Min Heat Withdrawal Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1532 + Amount of heat that must be withdrawn from storage each week + 400020000 + true + + + 2430 + 410 + 9 + 24 + Min Heat Withdrawal Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1533 + Amount of heat that must be withdrawn from storage each month + 400020000 + true + + + 2431 + 410 + 9 + 24 + Min Heat Withdrawal Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1534 + Amount of heat that must be withdrawn from storage each year + 400020000 + true + + + 2432 + 410 + 9 + 25 + Target + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Storage target per interval + 80 + true + + + 2433 + 410 + 9 + 25 + Target Hour + 15 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + End of hour storage target + 80 + true + + + 2434 + 410 + 9 + 25 + Target Day + 15 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + End of day storage target + 80 + true + + + 2435 + 410 + 9 + 25 + Target Week + 15 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 2436 + 410 + 9 + 25 + Target Month + 15 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + End of month storage target + 80 + true + + + 2437 + 410 + 9 + 25 + Target Year + 15 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + End of year storage target + 80 + true + + + 2438 + 410 + 9 + 26 + Target Penalty + 60 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target + 80 + true + + + 2439 + 410 + 8 + 27 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2440 + 410 + 8 + 28 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of heat storage project, for expansion planning. + 8 + true + + + 2441 + 410 + 8 + 29 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the heat storage + 8 + true + + + 2442 + 410 + 8 + 30 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the heat storage + 8009 + true + + + 2443 + 410 + 8 + 31 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2444 + 410 + 8 + 32 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the heat storage (period over which fixed costs are recovered). + 8 + true + + + 2445 + 410 + 8 + 33 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2030 + Indicates if the heat storage is eligible for retirement planning + 8 + true + + + 2446 + 410 + 8 + 34 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the heat storage + 88 + true + + + 2447 + 410 + 8 + 35 + Max Units Built + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 2448 + 410 + 8 + 36 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2449 + 410 + 8 + 37 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2450 + 410 + 8 + 38 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2451 + 410 + 8 + 39 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2452 + 410 + 8 + 40 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2453 + 410 + 8 + 41 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2454 + 410 + 8 + 42 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2455 + 410 + 11 + 43 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 2456 + 410 + 11 + 44 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 2457 + 414 + 3 + 1 + End Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2214 + Coefficient of storage end heat. + true + + + 2458 + 414 + 3 + 2 + Injection Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of heat storage injection + true + + + 2459 + 414 + 3 + 3 + Withdrawal Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of heat storage withdrawal + true + + + 2460 + 414 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2461 + 414 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2462 + 414 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2463 + 414 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2464 + 414 + 8 + 8 + Capacity Built Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 2465 + 414 + 8 + 9 + Capacity Retired Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 2466 + 414 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2467 + 414 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 2468 + 414 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 2469 + 415 + 3 + 1 + End Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2214 + Coefficient of storage end heat + true + + + 2470 + 415 + 3 + 2 + Injection Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of heat storage injection + true + + + 2471 + 415 + 3 + 3 + Withdrawal Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of heat storage withdrawal + true + + + 2472 + 415 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2473 + 415 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2474 + 415 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2475 + 415 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2476 + 416 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 2477 + 416 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 2478 + 416 + 2 + 3 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 2479 + 416 + 2 + 4 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 2480 + 416 + 2 + 5 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 2481 + 416 + 2 + 6 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 2482 + 416 + 2 + 7 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 2483 + 416 + 2 + 8 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 2484 + 416 + 2 + 9 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 2485 + 416 + 2 + 10 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 2486 + 416 + 2 + 11 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 2487 + 416 + 2 + 12 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 2488 + 416 + 2 + 13 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2489 + 416 + 2 + 14 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2490 + 416 + 2 + 15 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2491 + 416 + 2 + 16 + Use Additive Ratchet + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2210 + If additive ratchet use is enforced. + 80 + true + + + 2492 + 416 + 2 + 17 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2493 + 416 + 3 + 18 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Field is in service + 800000 + true + + + 2494 + 416 + 3 + 19 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of gas in the field + 80001 + true + + + 2495 + 416 + 3 + 20 + Production Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1274 + Incremental cost of extracting gas from the field + 2000000000 + true + + + 2496 + 416 + 3 + 21 + Dispatch Production Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2142 + Incremental dispatch cost of extracting gas from the field + 2000000000 + true + + + 2497 + 416 + 3 + 22 + Production Volume + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 1743 + Volume of gas in Production Cost band + 2000000000 + true + + + 2498 + 416 + 3 + 23 + Production Tranches + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2521 + Number of production tranches to generate (must be > 1 to auto-generate) + 400000 + true + + + 2499 + 416 + 3 + 24 + Reset Production Volumes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2236 + If the production volumes should be reset in the current period. + 80 + true + + + 2500 + 416 + 3 + 25 + Withdrawal Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1937 + Maximum amount of gas that can be withdrawn from the field in any interval when defining a gas field ratchet. + true + + + 2501 + 416 + 3 + 26 + Withdrawal Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1744 + Maximum amount of gas that can be withdrawn from the field. + true + + + 2502 + 416 + 3 + 27 + Withdrawal Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1977 + Gas withdrawal factor for gas field. + true + + + 2503 + 416 + 3 + 28 + External Injection + 100 + 0 + 1 + 0 + 2 + 0 + false + false + false + false + 1 + 1460 + External injection into the gas field + true + + + 2504 + 416 + 3 + 29 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2505 + 416 + 3 + 30 + Loss Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to leakage, etc + 200000 + true + + + 2506 + 416 + 3 + 31 + Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1968 + Carrying rate for gas field per year + true + + + 2507 + 416 + 3 + 32 + Initial Inventory Price + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2074 + Price linked to initial inventory + true + + + 2508 + 416 + 3 + 33 + Inventory Charge + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Charge per unit of inventory each day + true + + + 2509 + 416 + 3 + 34 + Ratchet Type + 0 + 0 + In (0,1,2) + 2;"Linear Convex";1;"Linear";0;"Step" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2037 + Indicates how the gas field ratchets are represented + true + + + 2510 + 416 + 3 + 35 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Field + 100 + true + + + 2511 + 416 + 3 + 36 + Production Fuel Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3126 + Fuel rate per unit of production + true + + + 2512 + 416 + 9 + 37 + Max Ramp + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in gas field per interval + 80 + true + + + 2513 + 416 + 9 + 37 + Max Ramp Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum rate of change in gas field in an hour + 80 + true + + + 2514 + 416 + 9 + 37 + Max Ramp Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum rate of change in gas field in a day + 80 + true + + + 2515 + 416 + 9 + 37 + Max Ramp Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum rate of change in gas field in a week + 80 + true + + + 2516 + 416 + 9 + 37 + Max Ramp Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum rate of change in gas field in a month + 80 + true + + + 2517 + 416 + 9 + 37 + Max Ramp Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum rate of change in gas field in a year + 80 + true + + + 2518 + 416 + 9 + 38 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas from the field + 80 + true + + + 2519 + 416 + 9 + 38 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1561 + Maximum hourly production of gas from the field + 80 + true + + + 2520 + 416 + 9 + 38 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 1 + false + false + false + false + 1 + 950 + Maximum production of gas from the field in any day + 80 + true + + + 2521 + 416 + 9 + 38 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production of gas from the field in any week + 80 + true + + + 2522 + 416 + 9 + 38 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production of gas from the field in any month + 80 + true + + + 2523 + 416 + 9 + 38 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production of gas from the field in any year + 80 + true + + + 2524 + 416 + 9 + 39 + Min Production + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas from the field + 80 + true + + + 2525 + 416 + 9 + 39 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1572 + Minimum hourly production of gas from the field + 80 + true + + + 2526 + 416 + 9 + 39 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 1 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas from the field + 80 + true + + + 2527 + 416 + 9 + 39 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas from the field + 80 + true + + + 2528 + 416 + 9 + 39 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas from the field + 80 + true + + + 2529 + 416 + 9 + 39 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas from the field + 80 + true + + + 2530 + 416 + 9 + 40 + Target + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Gas Field Target + 80 + true + + + 2531 + 416 + 9 + 40 + Target Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + End of hour gas field target + 80 + true + + + 2532 + 416 + 9 + 40 + Target Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + End of day gas field target + 80 + true + + + 2533 + 416 + 9 + 40 + Target Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + End of week gas field target + 80 + true + + + 2534 + 416 + 9 + 40 + Target Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + End of month gas field target + 80 + true + + + 2535 + 416 + 9 + 40 + Target Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + End of year gas field target + 80 + true + + + 2536 + 416 + 9 + 41 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1187 + Penalty for violating the target + 80 + true + + + 2537 + 416 + 9 + 42 + Min Production Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2428 + Min Production Target Percent for gas fields + 80 + true + + + 2538 + 416 + 9 + 43 + Max Production Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2429 + Max Production Target Percent for gas fields + 80 + true + + + 2539 + 416 + 7 + 44 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2540 + 416 + 7 + 45 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2541 + 416 + 7 + 46 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2542 + 416 + 7 + 47 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Field Max Production during the outage + 1000000 + true + + + 2543 + 416 + 7 + 48 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2544 + 416 + 7 + 49 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2545 + 416 + 7 + 50 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2546 + 416 + 7 + 51 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2547 + 416 + 7 + 52 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2548 + 416 + 8 + 53 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 2549 + 416 + 8 + 54 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2550 + 416 + 8 + 55 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas field project, for expansion planning. + 8 + true + + + 2551 + 416 + 8 + 56 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas field + 8 + true + + + 2552 + 416 + 8 + 57 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of developing the gas field + 8009 + true + + + 2553 + 416 + 8 + 58 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2554 + 416 + 8 + 59 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas field (period over which fixed costs are recovered). + 8 + true + + + 2555 + 416 + 8 + 60 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 2556 + 416 + 8 + 61 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2557 + 416 + 8 + 62 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Field production + 8009 + false + + + 2558 + 416 + 12 + 63 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2559 + 416 + 12 + 64 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2560 + 416 + 12 + 65 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2561 + 419 + 1 + 1 + Min Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Field in the blend + 100 + true + + + 2562 + 419 + 1 + 2 + Max Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Field in the blend + 100 + true + + + 2563 + 419 + 1 + 3 + Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of gas field contributing to a gas node + true + + + 2564 + 420 + 1 + 1 + Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of gas field contributing to a gas basin + true + + + 2565 + 421 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of gas field + true + + + 2566 + 422 + 1 + 1 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 2567 + 423 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas field end volume + true + + + 2568 + 423 + 3 + 2 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas field production in the constraint + true + + + 2569 + 423 + 3 + 3 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas field end volume in the constraint + true + + + 2570 + 423 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2571 + 423 + 8 + 5 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2572 + 423 + 8 + 6 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 2573 + 423 + 8 + 7 + Initial Volume Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3080 + Coefficient of initial volume built + C + true + + + 2574 + 423 + 8 + 8 + Initial Volume Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3081 + Coefficient of initial volume retired + C + true + + + 2575 + 423 + 8 + 9 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2576 + 423 + 8 + 10 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 2577 + 423 + 8 + 11 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 2578 + 423 + 8 + 12 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 2579 + 424 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas field end volume + true + + + 2580 + 424 + 3 + 2 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas field production + true + + + 2581 + 424 + 3 + 3 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas field end volume + true + + + 2582 + 424 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2583 + 424 + 8 + 5 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2584 + 425 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Plant for the generation of outages + 101000000 + true + + + 2585 + 425 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2586 + 425 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2587 + 425 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2588 + 425 + 2 + 5 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2589 + 425 + 2 + 6 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this gas plant receives capacity payments. + 8 + false + + + 2590 + 425 + 9 + 7 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas + 80 + true + + + 2591 + 425 + 9 + 7 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1561 + Maximum hourly production of gas + 80 + true + + + 2592 + 425 + 9 + 7 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 1 + false + false + false + false + 1 + 950 + Maximum daily production of gas + 80 + true + + + 2593 + 425 + 9 + 7 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum weekly production of gas + 80 + true + + + 2594 + 425 + 9 + 7 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum monthly production of gas + 80 + true + + + 2595 + 425 + 9 + 7 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum annual production of gas + 80 + true + + + 2596 + 425 + 9 + 8 + Min Production + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas + 80 + true + + + 2597 + 425 + 9 + 8 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1572 + Minimum hourly production of gas + 80 + true + + + 2598 + 425 + 9 + 8 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 1 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas + 80 + true + + + 2599 + 425 + 9 + 8 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas + 80 + true + + + 2600 + 425 + 9 + 8 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas + 80 + true + + + 2601 + 425 + 9 + 8 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas + 80 + true + + + 2602 + 425 + 9 + 9 + Max Starts + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 80 + true + + + 2603 + 425 + 9 + 9 + Max Starts Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 80 + true + + + 2604 + 425 + 9 + 9 + Max Starts Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 80 + true + + + 2605 + 425 + 9 + 9 + Max Starts Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 80 + true + + + 2606 + 425 + 9 + 9 + Max Starts Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 80 + true + + + 2607 + 425 + 9 + 9 + Max Starts Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 80 + true + + + 2608 + 425 + 9 + 10 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints. + 80 + true + + + 2609 + 425 + 9 + 11 + Max Production Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3023 + Maximum production factor (production constraint) + 80 + true + + + 2610 + 425 + 9 + 11 + Max Production Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3024 + Maximum production factor in hour + 80 + true + + + 2611 + 425 + 9 + 11 + Max Production Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3025 + Maximum production factor in day + 80 + true + + + 2612 + 425 + 9 + 11 + Max Production Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3026 + Maximum production factor in week + 80 + true + + + 2613 + 425 + 9 + 11 + Max Production Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3027 + Maximum production factor in month + 80 + true + + + 2614 + 425 + 9 + 11 + Max Production Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3028 + Maximum production factor in year + 80 + true + + + 2615 + 425 + 9 + 12 + Max Production Factor Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3029 + Penalty applied to violations of [Max Production Factor] constraints. + 80 + true + + + 2616 + 425 + 9 + 13 + Min Production Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3030 + Minimum production factor (production constraint) + 80 + true + + + 2617 + 425 + 9 + 13 + Min Production Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3031 + Minimum production factor in hour + 80 + true + + + 2618 + 425 + 9 + 13 + Min Production Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3032 + Minimum production factor in day + 80 + true + + + 2619 + 425 + 9 + 13 + Min Production Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3033 + Minimum production factor in week + 80 + true + + + 2620 + 425 + 9 + 13 + Min Production Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3034 + Minimum production factor in month + 80 + true + + + 2621 + 425 + 9 + 13 + Min Production Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3035 + Minimum production factor in year + 80 + true + + + 2622 + 425 + 9 + 14 + Min Production Factor Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3036 + Penalty applied to violations of [Min Production Factor] constraints. + 80 + true + + + 2623 + 425 + 9 + 15 + Max Ramp + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in gas production per interval + 80 + false + + + 2624 + 425 + 9 + 15 + Max Ramp Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum rate of change in gas production in an hour + 80 + false + + + 2625 + 425 + 9 + 15 + Max Ramp Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum rate of change in gas production in a day + 80 + false + + + 2626 + 425 + 9 + 15 + Max Ramp Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum rate of change in gas production in a week + 80 + false + + + 2627 + 425 + 9 + 15 + Max Ramp Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum rate of change in gas production in a month + 80 + false + + + 2628 + 425 + 9 + 15 + Max Ramp Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum rate of change in gas production in a year + 80 + false + + + 2629 + 425 + 9 + 15 + Max Ramp Up Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2822 + Sets a limit on the rate at which the gas plant can increase production from one hour to the next + 80 + false + + + 2630 + 425 + 9 + 15 + Max Ramp Up Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2823 + Sets a limit on the rate at which the gas plant can increase production from one day to the next + 80 + false + + + 2631 + 425 + 9 + 15 + Max Ramp Up Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2824 + Sets a limit on the rate at which the gas plant can increase production from one week to the next + 80 + false + + + 2632 + 425 + 9 + 15 + Max Ramp Up Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2825 + Sets a limit on the rate at which the gas plant can increase production from one month to the next + 80 + false + + + 2633 + 425 + 9 + 15 + Max Ramp Up Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2826 + Sets a limit on the rate at which the gas plant can increase production from one year to the next + 80 + false + + + 2634 + 425 + 9 + 15 + Max Ramp Down Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2827 + Sets a limit on the rate at which the gas plant can decrease production from one hour to the next + 80 + false + + + 2635 + 425 + 9 + 15 + Max Ramp Down Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2828 + Sets a limit on the rate at which the gas plant can decrease production from one day to the next + 80 + false + + + 2636 + 425 + 9 + 15 + Max Ramp Down Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2829 + Sets a limit on the rate at which the gas plant can decrease production from one week to the next + 80 + false + + + 2637 + 425 + 9 + 15 + Max Ramp Down Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2830 + Sets a limit on the rate at which the gas plant can decrease production from one month to the next + 80 + false + + + 2638 + 425 + 9 + 15 + Max Ramp Down Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2831 + Sets a limit on the rate at which the gas plant can decrease production from one year to the next + 80 + false + + + 2639 + 425 + 3 + 16 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of Gas Plant units in service + 800000 + true + + + 2640 + 425 + 3 + 17 + Min Stable Level + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 501 + Minimum allowed gas production when operating + 1000000081 + true + + + 2641 + 425 + 3 + 18 + Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 665 + Rated capacity of units + 81 + false + + + 2642 + 425 + 3 + 19 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + false + + + 2643 + 425 + 3 + 20 + Heat Rate + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Average heat rate (total fuel divided by total generation) + 1001 + false + + + 2644 + 425 + 3 + 21 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + false + + + 2645 + 425 + 3 + 22 + Heat Rate Incr + 72 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + false + + + 2646 + 425 + 3 + 23 + Min Stable Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1372 + Minimum stable production level as a proportion of [Max Production] + 1000000080 + true + + + 2647 + 425 + 3 + 24 + Processing Rate + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1737 + Processing ratio to convert raw natural gas to pipeline quality + true + + + 2648 + 425 + 3 + 25 + Processing Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1738 + Incremental cost of processing gas + true + + + 2649 + 425 + 3 + 26 + Dispatch Processing Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2380 + This replaces the processing charge for the optimization, but on the output side the Processing Charge is used in the cost calculations. + true + + + 2650 + 425 + 3 + 27 + Production Volume + 100 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1743 + Production Volume are used in defining multi-point Gas Plant Production and Processing Charge + true + + + 2651 + 425 + 3 + 28 + Consumption + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1437 + The amount of pipeline quality gas consumed in processing + true + + + 2652 + 425 + 3 + 29 + Energy Usage + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption of Gas Plant + true + + + 2653 + 425 + 3 + 30 + Retail Electric Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2515 + Retail price of electric power used by the gas plant + true + + + 2654 + 425 + 3 + 31 + VO&M Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000000 + true + + + 2655 + 425 + 3 + 32 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2656 + 425 + 3 + 33 + Load Point + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point efficiency. + 1000 + false + + + 2657 + 425 + 3 + 34 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1209 + Efficiency of energy conversion process + 1000 + false + + + 2658 + 425 + 3 + 35 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Plant + 100 + true + + + 2659 + 425 + 3 + 36 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 2660 + 425 + 3 + 37 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 2661 + 425 + 3 + 38 + Run Up Rate + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while increasing gas production from zero to [Min Stable Level]. + 80000000 + true + + + 2662 + 425 + 3 + 39 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started for gas plants + 1000000080 + true + + + 2663 + 425 + 3 + 40 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started for gas plants + 1000000080 + true + + + 2664 + 425 + 3 + 41 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down for gas plants + 1000000080 + true + + + 2665 + 425 + 3 + 42 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down for gas plants + 1000000080 + true + + + 2666 + 425 + 3 + 43 + Start Profile + 100 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for increasing gas production from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 2667 + 425 + 3 + 44 + Start Profile Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2639 + Penalty for violation of [Start Profile]. + 80 + true + + + 2668 + 425 + 3 + 45 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 2669 + 425 + 3 + 46 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 2670 + 425 + 3 + 47 + Run Down Rate + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1020 + Ramp rate that applies while running the unit down from [Min Stable Level] to zero + 200000000 + true + + + 2671 + 425 + 3 + 48 + Shutdown Profile + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 933 + Detailed regime for running the unit down from [Min Stable Level] when [Run Down Rate] is non-constant. + 200000000 + true + + + 2672 + 425 + 3 + 49 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 2673 + 425 + 3 + 50 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units for gas plants + 1000000080 + true + + + 2674 + 425 + 3 + 51 + Max Ramp Up + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Sets a limit on the rate at which the gas plant can increase production from one interval to the next + 80 + true + + + 2675 + 425 + 3 + 52 + Ramp Up Point + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Gas production point for use with multi-band Max Ramp Up constraints + 80 + true + + + 2676 + 425 + 3 + 53 + Ramp Up Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 2677 + 425 + 3 + 54 + Max Ramp Up Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 2678 + 425 + 3 + 55 + Max Ramp Down + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Sets a limit on the rate at which the gas plant can decrease production from one interval to the next + 80 + true + + + 2679 + 425 + 3 + 56 + Ramp Down Point + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Gas production point for use with multi-band Max Ramp Down constraints + 80 + true + + + 2680 + 425 + 3 + 57 + Ramp Down Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 2681 + 425 + 3 + 58 + Max Ramp Down Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 2682 + 425 + 7 + 59 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2683 + 425 + 7 + 60 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + false + + + 2684 + 425 + 7 + 61 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2685 + 425 + 7 + 62 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2686 + 425 + 7 + 63 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Plant Max Production during the outage + 1000000 + true + + + 2687 + 425 + 7 + 64 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2688 + 425 + 7 + 65 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2689 + 425 + 7 + 66 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2690 + 425 + 7 + 67 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2691 + 425 + 7 + 68 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2692 + 425 + 8 + 69 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2693 + 425 + 8 + 70 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2694 + 425 + 8 + 71 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2695 + 425 + 8 + 72 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Gas Plant + 8 + true + + + 2696 + 425 + 8 + 73 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the Gas Plant + 8009 + true + + + 2697 + 425 + 8 + 74 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2698 + 425 + 8 + 75 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Gas Plant (period over which fixed costs are recovered). + 8 + true + + + 2699 + 425 + 8 + 76 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2700 + 425 + 8 + 77 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2701 + 425 + 8 + 78 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2702 + 425 + 8 + 79 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2703 + 425 + 8 + 80 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the Gas Plant + 88 + true + + + 2704 + 425 + 8 + 81 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2705 + 425 + 8 + 82 + Max Units Retired in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2706 + 425 + 8 + 83 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2707 + 425 + 8 + 84 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2708 + 425 + 8 + 85 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Plant production + 8009 + false + + + 2709 + 425 + 8 + 86 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the plant for capacity + 4000008 + false + + + 2710 + 425 + 11 + 87 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2711 + 425 + 11 + 88 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2712 + 425 + 12 + 89 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2713 + 425 + 12 + 90 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2714 + 425 + 12 + 91 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2715 + 430 + 1 + 1 + Min Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Plant in the blend + 100 + true + + + 2716 + 430 + 1 + 2 + Max Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Plant in the blend + 100 + true + + + 2717 + 431 + 1 + 1 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 2718 + 432 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas node production + true + + + 2719 + 432 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Gas Plant capacity factor + true + + + 2720 + 432 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + false + + + 2721 + 432 + 3 + 4 + Energy Usage Coefficient + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Gas Plant + true + + + 2722 + 432 + 3 + 5 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas production in the constraint + true + + + 2723 + 432 + 3 + 6 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit starts + true + + + 2724 + 432 + 3 + 7 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 2725 + 432 + 6 + 8 + Installed Capacity Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 2726 + 432 + 8 + 9 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2727 + 432 + 8 + 10 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2728 + 432 + 8 + 11 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2729 + 432 + 8 + 12 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2730 + 432 + 8 + 13 + Capacity Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 2731 + 432 + 8 + 14 + Capacity Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 2732 + 432 + 8 + 15 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2733 + 432 + 8 + 16 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 2734 + 432 + 8 + 17 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 2735 + 433 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas node production + true + + + 2736 + 433 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Gas Plant capacity factor + true + + + 2737 + 433 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + true + + + 2738 + 433 + 3 + 4 + Energy Usage Coefficient + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Gas Plant + true + + + 2739 + 433 + 6 + 5 + Installed Capacity Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 2740 + 433 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2741 + 433 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2742 + 433 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2743 + 433 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2744 + 433 + 8 + 10 + Capacity Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 2745 + 433 + 8 + 11 + Capacity Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 2746 + 433 + 8 + 12 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2747 + 433 + 8 + 13 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 2748 + 433 + 8 + 14 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 2749 + 434 + 1 + 1 + Energy Usage Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1886 + Coefficient of the Decision Variable in the Gas Plant Energy Usage definition equation + true + + + 2750 + 435 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 2751 + 435 + 2 + 2 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 2752 + 435 + 2 + 3 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 2753 + 435 + 2 + 4 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 2754 + 435 + 2 + 5 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 2755 + 435 + 2 + 6 + Decomposition Method + 0 + 0 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 2756 + 435 + 2 + 7 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 2757 + 435 + 2 + 8 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 2758 + 435 + 2 + 9 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 2759 + 435 + 2 + 10 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 2760 + 435 + 2 + 11 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 2761 + 435 + 2 + 12 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 2762 + 435 + 2 + 13 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2763 + 435 + 2 + 14 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2764 + 435 + 2 + 15 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2765 + 435 + 2 + 16 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2766 + 435 + 3 + 17 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Pipeline is in service + false + + + 2767 + 435 + 3 + 18 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Pipeline is available for flow. + true + + + 2768 + 435 + 3 + 19 + Max Daily Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2031 + Max daily total gas release for the pipeline + false + + + 2769 + 435 + 3 + 20 + Max Daily Flow Back + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2702 + Max daily total gas release back for the pipeline + false + + + 2770 + 435 + 3 + 21 + Is Bidirectional + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2033 + Indicates if the pipeline allows flow in both directions + 800000 + true + + + 2771 + 435 + 3 + 22 + Diameter + 23 + 0.762 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1796 + Gas pipeline diameter + false + + + 2772 + 435 + 3 + 23 + Roughness + 0 + 150 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1797 + Gas pipeline roughness constant + false + + + 2773 + 435 + 3 + 24 + Length + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1798 + Length of the Gas Pipeline + false + + + 2774 + 435 + 3 + 25 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 639 + Efficiency of Gas Pipeline pump + false + + + 2775 + 435 + 3 + 26 + Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1268 + Incremental cost of extracting gas from the pipeline + 2000000000 + true + + + 2776 + 435 + 3 + 27 + Dispatch Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2349 + Dispatch cost of extracting gas at the pipeline receiving node + 2000000000 + true + + + 2777 + 435 + 3 + 28 + Flow Charge Level + 100 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2376 + Level corresponding to Flow Charge + 2000000000 + true + + + 2778 + 435 + 3 + 29 + Flow Charge Level Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2788 + Level factor corresponding to Flow Charge + 2000000000 + true + + + 2779 + 435 + 3 + 30 + Flow Charge Back + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1639 + Incremental cost of extracting gas at the pipeline sending node + 2000000000 + true + + + 2780 + 435 + 3 + 31 + Dispatch Flow Charge Back + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2350 + Dispatch cost of extracting gas at the pipeline sending node + 2000000000 + true + + + 2781 + 435 + 3 + 32 + Flow Charge Back Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2377 + Level corresponding to Flow Charge Back + 2000000000 + true + + + 2782 + 435 + 3 + 33 + Flow Charge Back Level Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2789 + Level factor corresponding to Flow Charge Back + 2000000000 + true + + + 2783 + 435 + 3 + 34 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Volume of gas stored in the pipeline at the beginning of the horizon + 80000 + true + + + 2784 + 435 + 3 + 35 + Max Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 466 + Maximum volume of gas stored in the pipeline + 4 + true + + + 2785 + 435 + 3 + 36 + Min Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 510 + Minimum volume of gas stored in the pipeline + 4 + true + + + 2786 + 435 + 3 + 37 + Imbalance Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1655 + The charge applicable to the volume imbalance + 2000000000 + true + + + 2787 + 435 + 3 + 38 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2788 + 435 + 3 + 39 + Consumption Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1814 + Proportion of the electricity consumption allocated to the receiving gas node + false + + + 2789 + 435 + 3 + 40 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1602 + Reservation charge for gas pipeline + true + + + 2790 + 435 + 3 + 41 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1965 + Reservation volume for gas pipeline + true + + + 2791 + 435 + 3 + 42 + Loss Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Loss rate for gas pipeline flow + 200000 + true + + + 2792 + 435 + 3 + 43 + Initial Pressure + 89 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2421 + Pressure of gas stored in the pipeline at the beginning of the horizon + 80000 + true + + + 2793 + 435 + 3 + 44 + Min Volume Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2422 + Minimum percentage of max volume that must be stored in the Gas Pipeline to maintain pressure + true + + + 2794 + 435 + 3 + 45 + Min Pressure Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2423 + Minimum percentage of max pressure that must be stored in the Gas Pipeline to maintain pressure + true + + + 2795 + 435 + 3 + 46 + Max Pressure + 89 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2424 + Maximum pressure of gas stored in the pipeline + true + + + 2796 + 435 + 3 + 47 + Entitlement Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2503 + Indicates whether maximum flow entitlement is at the input node (gross) or at the output node (net). + true + + + 2797 + 435 + 3 + 48 + Fuel Loss Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3128 + Indicates whether fuel loss is applied at the input node (gross) or at the output node (net). + true + + + 2798 + 435 + 3 + 49 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the gas pipeline energy consumption curve. + false + + + 2799 + 435 + 3 + 50 + Energy Consumed Flow Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2122 + Flow level defining the gas pipeline energy consumption curve. + false + + + 2800 + 435 + 9 + 51 + Max Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 429 + Maximum quantity of gas that can be extracted from the pipeline + 5 + true + + + 2801 + 435 + 9 + 51 + Max Flow Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1584 + Maximum quantity of gas that can be extracted from the pipeline each hour + 4 + true + + + 2802 + 435 + 9 + 51 + Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum quantity of gas that can be extracted from the pipeline each day + 4 + true + + + 2803 + 435 + 9 + 51 + Max Flow Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1586 + Maximum quantity of gas that can be extracted from the pipeline each week + 4 + true + + + 2804 + 435 + 9 + 51 + Max Flow Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1587 + Maximum quantity of gas that can be extracted from the pipeline each month + 4 + true + + + 2805 + 435 + 9 + 51 + Max Flow Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1588 + Maximum quantity of gas that can be extracted from the pipeline each year + 4 + true + + + 2806 + 435 + 9 + 52 + Min Flow + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 481 + Minimum quantity of gas that can be extracted at the pipeline receiving node + 5 + true + + + 2807 + 435 + 9 + 52 + Min Flow Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2355 + Minimum quantity of gas that can be extracted at the pipeline receiving node each hour + 4 + true + + + 2808 + 435 + 9 + 52 + Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum quantity of gas that can be extracted at the pipeline receiving node each day + 4 + true + + + 2809 + 435 + 9 + 52 + Min Flow Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2357 + Minimum quantity of gas that can be extracted at the pipeline receiving node each week + 4 + true + + + 2810 + 435 + 9 + 52 + Min Flow Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2358 + Minimum quantity of gas that can be extracted at the pipeline receiving node each month + 4 + true + + + 2811 + 435 + 9 + 52 + Min Flow Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2359 + Minimum quantity of gas that can be extracted at the pipeline receiving node each year + 4 + true + + + 2812 + 435 + 9 + 53 + Max Flow Back + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1633 + Maximum quantity of gas that can be extracted from the pipeline sending node + 4 + true + + + 2813 + 435 + 9 + 53 + Max Flow Back Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1634 + Maximum quantity of gas that can be extracted at the pipeline sending node each hour + 4 + true + + + 2814 + 435 + 9 + 53 + Max Flow Back Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1635 + Maximum quantity of gas that can be extracted at the pipeline sending node each day + 4 + true + + + 2815 + 435 + 9 + 53 + Max Flow Back Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1636 + Maximum quantity of gas that can be extracted at the pipeline sending node each week + 4 + true + + + 2816 + 435 + 9 + 53 + Max Flow Back Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1637 + Maximum quantity of gas that can be extracted at the pipeline sending node each month + 4 + true + + + 2817 + 435 + 9 + 53 + Max Flow Back Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1638 + Minimum quantity of gas that can be extracted at the pipeline sending node each year + 4 + true + + + 2818 + 435 + 9 + 54 + Min Flow Back + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2360 + Minimum quantity of gas that can be extracted from the pipeline sending node + 4 + true + + + 2819 + 435 + 9 + 54 + Min Flow Back Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2361 + Minimum quantity of gas that can be extracted at the pipeline sending node each hour + 4 + true + + + 2820 + 435 + 9 + 54 + Min Flow Back Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2362 + Minimum quantity of gas that can be extracted at the pipeline sending node each day + 4 + true + + + 2821 + 435 + 9 + 54 + Min Flow Back Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2363 + Minimum quantity of gas that can be extracted at the pipeline sending node each week + 4 + true + + + 2822 + 435 + 9 + 54 + Min Flow Back Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2364 + Minimum quantity of gas that can be extracted at the pipeline sending node each month + 4 + true + + + 2823 + 435 + 9 + 54 + Min Flow Back Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2365 + Minimum quantity of gas that can be extracted at the pipeline sending node each year + 4 + true + + + 2824 + 435 + 9 + 55 + Max Flow Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1164 + Penalty for violating the [Max Flow] constraints. + 80 + true + + + 2825 + 435 + 9 + 56 + Min Flow Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 286 + Penalty for violating the [Min Flow] constraints. + 80 + true + + + 2826 + 435 + 9 + 57 + Max Flow Back Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2661 + Penalty for violating the [Max Flow Back] constraints. + 80 + true + + + 2827 + 435 + 9 + 58 + Min Flow Back Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2660 + Penalty for violating the [Min Flow Back] constraints. + 80 + true + + + 2828 + 435 + 7 + 59 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2829 + 435 + 7 + 60 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2830 + 435 + 7 + 61 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2831 + 435 + 7 + 62 + Outage Max Flow + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1640 + Pipeline Max Flow during the outage + 1000000 + true + + + 2832 + 435 + 7 + 63 + Outage Max Flow Back + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1641 + Pipeline Max Flow Back during the outage + 1000000 + true + + + 2833 + 435 + 7 + 64 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2834 + 435 + 7 + 65 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2835 + 435 + 7 + 66 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2836 + 435 + 7 + 67 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2837 + 435 + 7 + 68 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2838 + 435 + 8 + 69 + Expansion Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2034 + Indicates if the gas pipeline is eligible for expansion planning + 8 + true + + + 2839 + 435 + 8 + 70 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2840 + 435 + 8 + 71 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas pipeline project, for expansion planning. + 8 + true + + + 2841 + 435 + 8 + 72 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas pipeline + 8 + true + + + 2842 + 435 + 8 + 73 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the gas pipeline + 8009 + true + + + 2843 + 435 + 8 + 74 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2844 + 435 + 8 + 75 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas pipeline (period over which fixed costs are recovered). + 8 + true + + + 2845 + 435 + 8 + 76 + Retirement Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2035 + Indicates if the gas pipeline is eligible for retirement planning + 88 + true + + + 2846 + 435 + 8 + 77 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas pipeline + 88 + true + + + 2847 + 435 + 8 + 78 + Retirement Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3102 + Retirement Max Flow Daily is the total maximum gas retired for the pipeline + 8 + true + + + 2848 + 435 + 8 + 79 + Retirement Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3103 + Retirement Min Flow Daily is the minimum gas retired for the pipeline + 8 + true + + + 2849 + 435 + 8 + 80 + Annual Retirement Max Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3104 + Annual Retirement Max Flow Daily is the total maximum annual gas retired for the pipeline + 8 + true + + + 2850 + 435 + 8 + 81 + Annual Retirement Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3105 + Annual Retirement Min Flow Daily is the total minimum annual gas retired for the pipeline + 8 + true + + + 2851 + 435 + 8 + 82 + Expansion Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2032 + Expansion Max Flow Daily total maximum gas release for the pipeline + 8 + true + + + 2852 + 435 + 8 + 83 + Expansion Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3106 + Expansion Min Flow Daily is the minimum gas release for the pipeline + 8 + true + + + 2853 + 435 + 8 + 84 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 2854 + 435 + 8 + 85 + Annual Expansion Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2667 + Annual Expansion Max Flow Daily total maximum annual gas release for the pipeline + 8 + true + + + 2855 + 435 + 8 + 86 + Annual Expansion Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3107 + Annual Expansion Min Flow Daily is the total minimum annual gas release for the pipeline + 8 + true + + + 2856 + 435 + 8 + 87 + Monthly Expansion Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2976 + Monthly Expansion Max Flow Daily total maximum monthly gas release for the pipeline + 8 + true + + + 2857 + 435 + 8 + 88 + Term Expansion Max Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2981 + Expansion Max Flow Daily total gas release for the term based Gas Pipeline + 8 + true + + + 2858 + 435 + 8 + 89 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2859 + 435 + 8 + 90 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Pipeline operation + 8009 + false + + + 2860 + 435 + 11 + 91 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2861 + 435 + 11 + 92 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2862 + 435 + 12 + 93 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2863 + 435 + 12 + 94 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2864 + 435 + 12 + 95 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2865 + 442 + 1 + 1 + Outage Max Flow + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1640 + Pipeline Max Flow during the outage + 4 + true + + + 2866 + 442 + 1 + 2 + Outage Max Flow Back + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1641 + Pipeline Max Flow Back during the outage + 4 + true + + + 2867 + 443 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas in storage. + true + + + 2868 + 443 + 3 + 2 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas pipeline flow in the constraint + true + + + 2869 + 443 + 3 + 3 + Flow Forward Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of gas pipeline flow at the receiving node + true + + + 2870 + 443 + 3 + 4 + Flow Back Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of gas pipeline flow at the sending node + true + + + 2871 + 443 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2872 + 443 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2873 + 443 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2874 + 443 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2875 + 443 + 8 + 9 + Expansion Flow Day Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3082 + Coefficient of expansion flow day built + C + true + + + 2876 + 443 + 8 + 10 + Expansion Flow Day Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3083 + Coefficient of expansion flow day retired + C + true + + + 2877 + 443 + 8 + 11 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2878 + 443 + 8 + 12 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 2879 + 443 + 8 + 13 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 2880 + 444 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas in storage + true + + + 2881 + 444 + 3 + 2 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas pipeline flow + true + + + 2882 + 444 + 3 + 3 + Flow Forward Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of gas pipeline flow at the receiving node + true + + + 2883 + 444 + 3 + 4 + Flow Back Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of gas pipeline flow at the sending node + true + + + 2884 + 444 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2885 + 444 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2886 + 444 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2887 + 444 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2888 + 445 + 1 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient on gas pipeline flow + true + + + 2889 + 445 + 1 + 2 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of the end volume in Gas Pipeline in the condition equation + true + + + 2890 + 446 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2891 + 446 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2892 + 446 + 2 + 3 + Report Marginal Resources + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2623 + If marginal resources are reported for the gas node in the solution + true + + + 2893 + 446 + 3 + 4 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Node is in service + 800000 + true + + + 2894 + 446 + 3 + 5 + Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1268 + Incremental cost of flowing gas through the node + 2000000000 + true + + + 2895 + 446 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2896 + 446 + 9 + 7 + Max Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 429 + Maximum flow through the gas node + 5 + true + + + 2897 + 446 + 9 + 7 + Max Flow Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1584 + Maximum flow through the gas node each hour + 80 + true + + + 2898 + 446 + 9 + 7 + Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow through the gas node each day + 80 + true + + + 2899 + 446 + 9 + 7 + Max Flow Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1586 + Maximum flow through the gas node each week + 80 + true + + + 2900 + 446 + 9 + 7 + Max Flow Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1587 + Maximum flow through the gas node each month + 80 + true + + + 2901 + 446 + 9 + 7 + Max Flow Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1588 + Maximum flow through the gas node each year + 80 + true + + + 2902 + 446 + 3 + 8 + Gas Security + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1811 + Proportion of local Gas Demand that must be covered by Gas Storage at the Gas Node + false + + + 2903 + 446 + 9 + 9 + Min Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2394 + Minimum heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2904 + 446 + 9 + 9 + Min Heat Value Hour + 0 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2395 + Minimum hourly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2905 + 446 + 9 + 9 + Min Heat Value Day + 0 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2396 + Minimum daily heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2906 + 446 + 9 + 9 + Min Heat Value Week + 0 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2397 + Minimum weekly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2907 + 446 + 9 + 9 + Min Heat Value Month + 0 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2398 + Minimum monthly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2908 + 446 + 9 + 9 + Min Heat Value Year + 0 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2399 + Minimum annual heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2909 + 446 + 9 + 10 + Max Heat Value + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2400 + Maximum heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2910 + 446 + 9 + 10 + Max Heat Value Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2401 + Maximum hourly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2911 + 446 + 9 + 10 + Max Heat Value Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2402 + Maximum daily heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2912 + 446 + 9 + 10 + Max Heat Value Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2403 + Maximum weekly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2913 + 446 + 9 + 10 + Max Heat Value Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2404 + Maximum monthly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2914 + 446 + 9 + 10 + Max Heat Value Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2405 + Maximum annual heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2915 + 446 + 9 + 11 + Max Terminal Limit + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2757 + Maximum number of Gas Transports delivering to a Gas Node. + 80 + true + + + 2916 + 446 + 8 + 12 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 2917 + 446 + 8 + 13 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2918 + 446 + 8 + 14 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2919 + 446 + 8 + 15 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas node + 8 + true + + + 2920 + 446 + 8 + 16 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the gas node + 8009 + true + + + 2921 + 446 + 8 + 17 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2922 + 446 + 8 + 18 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas node (period over which fixed costs are recovered). + 8 + true + + + 2923 + 446 + 8 + 19 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2924 + 446 + 8 + 20 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 2925 + 446 + 8 + 21 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2926 + 446 + 8 + 22 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2927 + 446 + 8 + 23 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas node + 88 + true + + + 2928 + 446 + 8 + 24 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2929 + 446 + 8 + 25 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2930 + 446 + 8 + 26 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2931 + 446 + 12 + 27 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2932 + 446 + 12 + 28 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2933 + 446 + 12 + 29 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2934 + 449 + 3 + 1 + Emission Charge + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2999 + Emission charge for emissions consumed at the Gas Node in a virtual emission network + 2000 + true + + + 2935 + 449 + 3 + 2 + Max Emissions + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3000 + Maximum amount of emissions consumed at the Gas Node in a virtual emission network + 2000 + true + + + 2936 + 452 + 1 + 1 + Sequence + 0 + 0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 2709 + Sequence number of the Gas node in the Gas path + true + + + 2937 + 452 + 1 + 2 + Voyage Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + true + true + true + false + 1 + 1841 + Time taken for the voyage from one Gas Node on the Gas path to the next Gas Node + true + + + 2938 + 453 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 2939 + 453 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Gas consumption for each unit of consumption + true + + + 2940 + 453 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Gas production for each unit of production + true + + + 2941 + 453 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Gas consumption for each unit operating + 1000000000 + true + + + 2942 + 453 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Gas consumption for each installed unit + 4 + true + + + 2943 + 455 + 3 + 1 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas Node flow in the constraint + true + + + 2944 + 455 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2945 + 455 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2946 + 455 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2947 + 455 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2948 + 455 + 8 + 6 + Flow Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3084 + Coefficient of flow built + C + true + + + 2949 + 455 + 8 + 7 + Flow Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3085 + Coefficient of flow retired + C + true + + + 2950 + 455 + 8 + 8 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2951 + 455 + 8 + 9 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 2952 + 455 + 8 + 10 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 2953 + 455 + 3 + 11 + Heat Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2413 + Coefficient of gas node heat value + true + + + 2954 + 456 + 3 + 1 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas node flow + true + + + 2955 + 456 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2956 + 456 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2957 + 456 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2958 + 456 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2959 + 457 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 2960 + 457 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 2961 + 457 + 2 + 3 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 2962 + 457 + 2 + 4 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 2963 + 457 + 2 + 5 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 2964 + 457 + 2 + 6 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 2965 + 457 + 2 + 7 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 2966 + 457 + 2 + 8 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 2967 + 457 + 2 + 9 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 2968 + 457 + 2 + 10 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 2969 + 457 + 2 + 11 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 2970 + 457 + 2 + 12 + Initial Value Inclusion + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2271 + If initial value in the gas storage is included in optimization. + 80 + true + + + 2971 + 457 + 2 + 13 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Storage for the generation of outages + 101000000 + true + + + 2972 + 457 + 2 + 14 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2973 + 457 + 2 + 15 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2974 + 457 + 2 + 16 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2975 + 457 + 2 + 17 + Use Additive Ratchet + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2210 + If additive ratchet use is enforced. + 80 + true + + + 2976 + 457 + 2 + 18 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2977 + 457 + 3 + 19 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Storage is in service + false + + + 2978 + 457 + 3 + 20 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Storage is available + true + + + 2979 + 457 + 3 + 21 + Max Volume + 100 + 1E+30 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 466 + Maximum volume of gas allowed in storage + 5 + true + + + 2980 + 457 + 3 + 22 + Min Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 510 + Minimum volume of gas allowed in storage + 4 + true + + + 2981 + 457 + 3 + 23 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of gas in the storage + 80001 + true + + + 2982 + 457 + 3 + 24 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1246 + Incremental cost of withdrawing gas from the storage + 2000000000 + true + + + 2983 + 457 + 3 + 25 + Dispatch Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2381 + Incremental dispatch cost of withdrawing gas from the storage + 2000000000 + true + + + 2984 + 457 + 3 + 26 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1252 + Incremental cost of injecting gas into the storage + 2000000000 + true + + + 2985 + 457 + 3 + 27 + Dispatch Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2695 + Incremental dispatch cost of injecting gas into the storage + 2000000000 + true + + + 2986 + 457 + 3 + 28 + Injection Withdrawal Charge Level + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2744 + Percentage of volume that correspond to bands of Injection Withdrawal Charge or Dispatch Injection Withdrawal Charge + true + + + 2987 + 457 + 3 + 29 + Injection Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1936 + Maximum amount of gas that can be injected into the storage in any interval when defining a gas storage ratchet. + 80 + true + + + 2988 + 457 + 3 + 30 + Withdrawal Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1937 + Maximum amount of gas that can be withdrawn from the storage in any interval when defining a gas storage ratchet. + 80 + true + + + 2989 + 457 + 3 + 31 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1602 + Reservation charge for gas storage + true + + + 2990 + 457 + 3 + 32 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1965 + Reservation volume for gas storage + true + + + 2991 + 457 + 3 + 33 + Injection Fuel Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1966 + Fuel injection rate for gas storage + true + + + 2992 + 457 + 3 + 34 + Withdrawal Fuel Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1967 + Fuel withdrawal rate for gas storage + true + + + 2993 + 457 + 3 + 35 + Loss Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to leakage, etc + 200000 + true + + + 2994 + 457 + 3 + 36 + Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1968 + Carrying rate for gas storage per year + true + + + 2995 + 457 + 3 + 37 + Ratchet Type + 0 + 0 + In (0,1,2) + 2;"Linear Convex";1;"Linear";0;"Step" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2037 + Indicates how the gas storage ratchets are represented + true + + + 2996 + 457 + 3 + 38 + Initial Inventory Price + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2074 + Price linked to initial inventory + true + + + 2997 + 457 + 3 + 39 + Inventory Charge + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Charge per unit of inventory each day + true + + + 2998 + 457 + 3 + 40 + External Injection + 100 + 0 + 1 + 0 + 2 + 0 + false + false + false + false + 1 + 1460 + External injection into the gas storage + true + + + 2999 + 457 + 3 + 41 + External Injection Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3125 + Incremental cost of injecting gas from outside of the network into the storage + 2000000000 + true + + + 3000 + 457 + 3 + 42 + Min Temperature Withdrawal + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2244 + Minimum temperature at which the gas storage is allowed to withdraw gas + true + + + 3001 + 457 + 3 + 43 + Max Temperature Withdrawal + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2245 + Maximum temperature at which the gas storage is allowed to withdraw gas + true + + + 3002 + 457 + 3 + 44 + Min Temperature Injection + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2246 + Minimum temperature at which the gas storage is allowed to inject gas + true + + + 3003 + 457 + 3 + 45 + Max Temperature Injection + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2247 + Maximum temperature at which the gas storage is allowed to inject gas + true + + + 3004 + 457 + 3 + 46 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3005 + 457 + 3 + 47 + Initial Heat Value + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2433 + Initial heat value of the gas stored in the gas storage + true + + + 3006 + 457 + 3 + 48 + Initial Carbon Content + 102 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2407 + Initial carbon content of the gas stored in the gas storage + true + + + 3007 + 457 + 3 + 49 + Entitlement Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2503 + Indicates whether maximum injection or withdrawal entitlement does not include loss (gross) or includes loss (net). + true + + + 3008 + 457 + 3 + 50 + Power Consumption + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2784 + power consumption of Gas Storage + true + + + 3009 + 457 + 3 + 51 + Volume Power Consumption + 116 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2785 + constant of proportionality for power consumption of Gas Storage current volume + true + + + 3010 + 457 + 3 + 52 + Max Storage Power Consumption + 116 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2786 + constant of proportionality for power consumption of Gas Storage max volume + true + + + 3011 + 457 + 3 + 53 + Injection Energy Consumption + 117 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2787 + constant of proportionality for energy consumption of Gas Storage injection + true + + + 3012 + 457 + 3 + 54 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the gas storage energy consumption curve. + false + + + 3013 + 457 + 3 + 55 + Energy Consumed Withdrawal Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2131 + Withdrawal level defining the gas storage energy consumption curve. + false + + + 3014 + 457 + 9 + 56 + Max Withdrawal + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of gas that can be withdrawn from the storage + 80 + true + + + 3015 + 457 + 9 + 56 + Max Withdrawal Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of gas that can be withdrawn from the storage in a hour + 80 + true + + + 3016 + 457 + 9 + 56 + Max Withdrawal Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1247 + Maximum amount of gas that can be withdrawn from the storage in day + 80 + true + + + 3017 + 457 + 9 + 56 + Max Withdrawal Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of gas that can be withdrawn from the storage in a week + 80 + true + + + 3018 + 457 + 9 + 56 + Max Withdrawal Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of gas that can be withdrawn from the storage in a month + 80 + true + + + 3019 + 457 + 9 + 56 + Max Withdrawal Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of gas that can be withdrawn from the storage in a year + 80 + true + + + 3020 + 457 + 9 + 57 + Max Injection + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of gas that can be injected into the storage + 80 + true + + + 3021 + 457 + 9 + 57 + Max Injection Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of gas that can be injected into the storage in a hour + 80 + true + + + 3022 + 457 + 9 + 57 + Max Injection Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of gas that can be injected into the storage in a day + 80 + true + + + 3023 + 457 + 9 + 57 + Max Injection Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of gas that can be injected into the storage in a week + 80 + true + + + 3024 + 457 + 9 + 57 + Max Injection Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of gas that can be injected into the storage in a month + 80 + true + + + 3025 + 457 + 9 + 57 + Max Injection Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of gas that can be injected into the storage in a year + 80 + true + + + 3026 + 457 + 9 + 58 + Min Withdrawal + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1258 + Amount of gas that must be withdrawn from storage + 80 + true + + + 3027 + 457 + 9 + 58 + Min Withdrawal Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of gas that must be withdrawn from storage each hour + 80 + true + + + 3028 + 457 + 9 + 58 + Min Withdrawal Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of gas that must be withdrawn from storage in a day + 80 + true + + + 3029 + 457 + 9 + 58 + Min Withdrawal Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of gas that must be withdrawn from storage in a week + 80 + true + + + 3030 + 457 + 9 + 58 + Min Withdrawal Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of gas that must be withdrawn from storage in a month + 80 + true + + + 3031 + 457 + 9 + 58 + Min Withdrawal Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of gas that must be withdrawn from storage in a year + 80 + true + + + 3032 + 457 + 9 + 59 + Min Injection + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1263 + Amount of gas that must be injected into the storage + 80 + true + + + 3033 + 457 + 9 + 59 + Min Injection Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of gas that must be injected into the storage each hour + 80 + true + + + 3034 + 457 + 9 + 59 + Min Injection Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of gas that must be injected into the storage in a day + 80 + true + + + 3035 + 457 + 9 + 59 + Min Injection Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of gas that must be injected into the storage in a week + 80 + true + + + 3036 + 457 + 9 + 59 + Min Injection Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of gas that must be injected into the storage in a month + 80 + true + + + 3037 + 457 + 9 + 59 + Min Injection Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of gas that must be injected into the storage in a year + 80 + true + + + 3038 + 457 + 9 + 60 + Max Ramp + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in storage per interval + 80 + true + + + 3039 + 457 + 9 + 60 + Max Ramp Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum rate of change in storage in an hour + 80 + true + + + 3040 + 457 + 9 + 60 + Max Ramp Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum rate of change in storage in a day + 80 + true + + + 3041 + 457 + 9 + 60 + Max Ramp Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum rate of change in storage in a week + 80 + true + + + 3042 + 457 + 9 + 60 + Max Ramp Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum rate of change in storage in a month + 80 + true + + + 3043 + 457 + 9 + 60 + Max Ramp Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum rate of change in storage in a year + 80 + true + + + 3044 + 457 + 9 + 61 + Target + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 80 + true + + + 3045 + 457 + 9 + 61 + Target Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 80 + true + + + 3046 + 457 + 9 + 61 + Target Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 80 + true + + + 3047 + 457 + 9 + 61 + Target Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 3048 + 457 + 9 + 61 + Target Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 80 + true + + + 3049 + 457 + 9 + 61 + Target Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 80 + true + + + 3050 + 457 + 9 + 62 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 80 + true + + + 3051 + 457 + 9 + 63 + Target Penalty Under + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2378 + Penalty for violating the Min Storage Target. + 80 + true + + + 3052 + 457 + 3 + 64 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption associated with releases from the Gas Storage + false + + + 3053 + 457 + 9 + 65 + Min Storage Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2075 + Minimum Storage Target Percent for gas storage + 80 + true + + + 3054 + 457 + 9 + 66 + Max Storage Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2076 + Max Storage Target Percent for gas storage + 80 + true + + + 3055 + 457 + 9 + 67 + Withdrawal Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1744 + Scalar to set the maximum amount of gas that can be withdrawn from the storage + 80 + true + + + 3056 + 457 + 9 + 68 + Withdrawal Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 1745 + Storage volume for which withdrawal is allowed + 80 + true + + + 3057 + 457 + 9 + 69 + Withdrawal Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1977 + Fuel withdrawal factor for gas storage + true + + + 3058 + 457 + 9 + 70 + Injection Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1746 + Scalar to set the maximum amount of gas that can be injected into the storage + 80 + true + + + 3059 + 457 + 9 + 71 + Injection Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 1747 + Storage volume for which injection is allowed + 80 + true + + + 3060 + 457 + 9 + 72 + Injection Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1976 + Fuel injection factor for gas storage + true + + + 3061 + 457 + 9 + 73 + Min Withdrawal Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3008 + Minimum quantity of gas, expressed as a percentage of Gas Storage inventory, that must be withdrawn during a given interval + true + + + 3062 + 457 + 7 + 74 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3063 + 457 + 7 + 75 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3064 + 457 + 7 + 76 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3065 + 457 + 7 + 77 + Outage Max Withdrawal + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2353 + Storage Max Withdrawal during the outage + 1000000 + true + + + 3066 + 457 + 7 + 78 + Outage Max Injection + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2354 + Storage Max Injection during the outage + 1000000 + true + + + 3067 + 457 + 7 + 79 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3068 + 457 + 7 + 80 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3069 + 457 + 7 + 81 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3070 + 457 + 7 + 82 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3071 + 457 + 7 + 83 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3072 + 457 + 8 + 84 + Expansion Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2029 + Indicates if the gas storage is eligible for expansion planning + 8 + true + + + 3073 + 457 + 8 + 85 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3074 + 457 + 8 + 86 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas storage project, for expansion planning. + 8 + true + + + 3075 + 457 + 8 + 87 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas storage + 8 + true + + + 3076 + 457 + 8 + 88 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 44 + Cost of building the gas storage + 8009 + true + + + 3077 + 457 + 8 + 89 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3078 + 457 + 8 + 90 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas storage (period over which fixed costs are recovered). + 8 + true + + + 3079 + 457 + 8 + 91 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2030 + Indicates if the gas storage is eligible for retirement planning + 8 + true + + + 3080 + 457 + 8 + 92 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas storage + 88 + true + + + 3081 + 457 + 8 + 93 + Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2028 + Expansion max volume associated with the Gas Storage + 8 + true + + + 3082 + 457 + 8 + 94 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 3083 + 457 + 8 + 95 + Annual Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2668 + Annual Expansion max volume associated with the Gas Storage + 8 + true + + + 3084 + 457 + 8 + 96 + Monthly Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2977 + Monthly Expansion max volume associated with the Gas Storage + 8 + true + + + 3085 + 457 + 8 + 97 + Term Expansion Max Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2982 + Expansion max volume associated with the term based Gas Storage + 8 + true + + + 3086 + 457 + 8 + 98 + Expansion Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3108 + Expansion min volume associated with the Gas Storage + 8 + true + + + 3087 + 457 + 8 + 99 + Annual Expansion Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3109 + Annual Expansion min volume associated with the Gas Storage + 8 + true + + + 3088 + 457 + 8 + 100 + Retirement Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3110 + Retirement max volume associated with the Gas Storage + 8 + true + + + 3089 + 457 + 8 + 101 + Retirement Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3111 + Retirement min volume associated with the Gas Storage + 8 + true + + + 3090 + 457 + 8 + 102 + Annual Retirement Max Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3112 + Annual retirement max volume associated with the Gas Storage + 8 + true + + + 3091 + 457 + 8 + 103 + Annual Retirement Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3113 + Annual retirement min volume associated with the Gas Storage + 8 + true + + + 3092 + 457 + 8 + 104 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 3093 + 457 + 8 + 105 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost in the gas storage operation + 8009 + false + + + 3094 + 457 + 11 + 106 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 3095 + 457 + 11 + 107 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 3096 + 457 + 11 + 108 + Trajectory Non-anticipativity + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 3097 + 457 + 11 + 109 + Trajectory Non-anticipativity Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100000000 + true + + + 3098 + 457 + 11 + 110 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 3099 + 457 + 12 + 111 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3100 + 457 + 12 + 112 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3101 + 457 + 12 + 113 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3102 + 464 + 1 + 1 + Node Type + 0 + 0 + In (0,1,2) + 0;"Both";1;"Injection Only";2;"Withdrawal Only" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2085 + Using this input property, a Gas Node defined in the Gas Node collection of a Gas Storage can act as injection only, withdrawal only or both. + 800000 + true + + + 3103 + 468 + 1 + 1 + Outage Max Withdrawal + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2353 + Gas Storage Max Withdrawal during the outage + 4 + true + + + 3104 + 468 + 1 + 2 + Outage Max Injection + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2354 + Gas Storage Max Injection during the outage + 4 + true + + + 3105 + 469 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + true + + + 3106 + 469 + 3 + 2 + Withdrawal Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of gas storage withdrawal in the constraint + true + + + 3107 + 469 + 3 + 3 + Injection Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of gas storage injection in the constraint + true + + + 3108 + 469 + 3 + 4 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas storage end volume in the constraint + true + + + 3109 + 469 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3110 + 469 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3111 + 469 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 3112 + 469 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 3113 + 469 + 8 + 9 + Expansion Volume Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3086 + Coefficient of expansion volume built + C + true + + + 3114 + 469 + 8 + 10 + Expansion Volume Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3087 + Coefficient of expansion volume retired + C + true + + + 3115 + 469 + 8 + 11 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3116 + 469 + 8 + 12 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3117 + 469 + 8 + 13 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3118 + 470 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 3119 + 470 + 3 + 2 + Withdrawal Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of gas storage withdrawal + true + + + 3120 + 470 + 3 + 3 + Injection Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of gas storage injection + true + + + 3121 + 470 + 3 + 4 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas storage end volume + true + + + 3122 + 470 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3123 + 470 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3124 + 470 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3125 + 470 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3126 + 471 + 1 + 1 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of the end volume in Gas Storage in the condition equation + true + + + 3127 + 472 + 2 + 1 + Demand Type + 0 + 0 + In (0,1,2) + 0;"Input";1;"Temperature";2;"Heating Degree Days" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2000 + Function structure for demand type inputs + true + + + 3128 + 472 + 3 + 2 + Demand + 100 + 0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 133 + Demand for gas + 400 + true + + + 3129 + 472 + 3 + 3 + Shortage Price + 88 + 1000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1270 + Notional price of gas shortage + 40000000 + true + + + 3130 + 472 + 3 + 4 + Shortage Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2230 + Level corresponding to the Shortage Price + true + + + 3131 + 472 + 3 + 5 + Excess Price + 88 + -100 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1271 + Notional price of gas oversupply + 40000000 + true + + + 3132 + 472 + 3 + 6 + Excess Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2231 + Level corresponding to the Excess Price + true + + + 3133 + 472 + 3 + 7 + Usage Factor Base + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2001 + Scalar demand value regardless of heat + true + + + 3134 + 472 + 3 + 8 + Usage Factor Heat + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2002 + Scalar heat value regardless of demand + true + + + 3135 + 472 + 3 + 9 + Customer Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2003 + Number of customers (that have demand values) + true + + + 3136 + 472 + 3 + 10 + Usage Factor Heat Point + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2005 + Scalar temperature or HDD levels for piecewise linear function + true + + + 3137 + 472 + 3 + 11 + Weather Data Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2012 + Weather data factor for gas demand function + true + + + 3138 + 472 + 3 + 12 + Weather Data Variable + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2013 + Weather data variable for gas demand function + true + + + 3139 + 472 + 3 + 13 + Unaccounted Demand + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2351 + Percentage of unaccounted gas demand + 400 + true + + + 3140 + 472 + 4 + 14 + Bid Quantity + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + 400000 + true + + + 3141 + 472 + 4 + 15 + Bid Price + 88 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Value of gas in band + 400000 + true + + + 3142 + 472 + 4 + 16 + Bid Slope + 0 + 0 + <0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2522 + Demand bid slope for modeling elasticity. Must be entered to auto-generate steps. + 400000 + true + + + 3143 + 472 + 4 + 17 + Bid Tranches + 0 + 5 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2523 + Number of bid points to generate when auto-generating tranches + 400000 + true + + + 3144 + 472 + 4 + 18 + Max Bid Quantity + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2524 + Maximum bid quantity when auto-generating steps + 400000 + true + + + 3145 + 472 + 12 + 19 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3146 + 472 + 12 + 20 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3147 + 472 + 12 + 21 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3148 + 479 + 1 + 1 + Demand Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1448 + Proportion of gas demand that occurs at the gas node + 400 + true + + + 3149 + 484 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of the gas demand + true + + + 3150 + 484 + 1 + 2 + Customer Count + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2003 + Customer count used to calculate company's share of gas demand + true + + + 3151 + 484 + 1 + 3 + Direct Demand + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2132 + Company's amount of direct gas demand + true + + + 3152 + 485 + 2 + 1 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3153 + 485 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3154 + 485 + 2 + 3 + Reduction Type + 0 + 0 + In (0,2) + 0;"Input";2;"Usage Factor" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2051 + Function structure for gas dsm program type inputs + true + + + 3155 + 485 + 3 + 4 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Share of demand reduction available + false + + + 3156 + 485 + 3 + 5 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas DSM Program is available + true + + + 3157 + 485 + 3 + 6 + Reduction Amount + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2025 + Demand reduction caused by gas dsm program + true + + + 3158 + 485 + 3 + 7 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3159 + 485 + 3 + 8 + Variable Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2017 + Variable cost of gas dsm program + 2000000000 + true + + + 3160 + 485 + 3 + 9 + Usage Factor Base + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2001 + Scalar demand value regardless of heat + true + + + 3161 + 485 + 3 + 10 + Usage Factor Heat + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2002 + Scalar heat value regardless of demand + true + + + 3162 + 485 + 3 + 11 + Customer Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2003 + Number of customers (that have demand values) + true + + + 3163 + 485 + 3 + 12 + Usage Factor Heat Point + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2005 + Scalar temperature or HDD levels for piecewise linear function + true + + + 3164 + 485 + 3 + 13 + Weather Data Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2012 + Weather data factor for gas demand function + true + + + 3165 + 485 + 3 + 14 + Weather Data Variable + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2013 + Weather data variable for gas demand function + true + + + 3166 + 485 + 8 + 15 + Capital Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2018 + Capital cost of gas dsm program + 8000 + true + + + 3167 + 485 + 8 + 16 + Expansion Max Reduction + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2019 + Expansion max reduction offtake associated with the gas dsm program + true + + + 3168 + 485 + 8 + 17 + Expansion Program + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2020 + Indicates if Gas DSM program is eligible + true + + + 3169 + 485 + 8 + 18 + Eligibility Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2021 + Start date of Gas dsm program planning. + true + + + 3170 + 485 + 8 + 19 + Program Length + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2022 + Technical Life of Gas dsm program + true + + + 3171 + 485 + 8 + 20 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Gas dsm program (period over which fixed costs are recovered). + true + + + 3172 + 485 + 8 + 21 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + true + + + 3173 + 485 + 8 + 22 + Annual Expansion Max Reduction + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2669 + Annual Expansion max reduction offtake associated with the gas dsm program + true + + + 3174 + 485 + 8 + 23 + Monthly Expansion Max Reduction + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2978 + Monthly Expansion max reduction offtake associated with the gas dsm program + true + + + 3175 + 485 + 12 + 24 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3176 + 485 + 12 + 25 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3177 + 485 + 12 + 26 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3178 + 488 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + DSM Program's share of the gas demand + true + + + 3179 + 489 + 8 + 1 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3180 + 489 + 8 + 2 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3181 + 489 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 3182 + 489 + 8 + 4 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 3183 + 489 + 8 + 5 + Expansion Reduction Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3088 + Coefficient of expansion reduction built + C + true + + + 3184 + 489 + 8 + 6 + Expansion Reduction Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3089 + Coefficient of expansion reduction retired + C + true + + + 3185 + 489 + 8 + 7 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3186 + 489 + 8 + 8 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3187 + 489 + 8 + 9 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3188 + 490 + 8 + 1 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3189 + 490 + 8 + 2 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3190 + 491 + 9 + 1 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas from the basin + 80 + true + + + 3191 + 491 + 9 + 1 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1561 + Maximum daily production of gas from the basin + 80 + true + + + 3192 + 491 + 9 + 1 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 1 + false + false + false + false + 1 + 950 + Maximum daily production of gas from the basin + 80 + true + + + 3193 + 491 + 9 + 1 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum weekly production of gas from the basin + 80 + true + + + 3194 + 491 + 9 + 1 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum monthly production of gas from the basin + 80 + true + + + 3195 + 491 + 9 + 1 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum annual production of gas from the basin + 80 + true + + + 3196 + 491 + 9 + 2 + Min Production + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas from the basin + 80 + true + + + 3197 + 491 + 9 + 2 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1572 + Minimum daily production of gas from the basin + 80 + true + + + 3198 + 491 + 9 + 2 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 1 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas from the basin + 80 + true + + + 3199 + 491 + 9 + 2 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas from the basin + 80 + true + + + 3200 + 491 + 9 + 2 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas from the basin + 80 + true + + + 3201 + 491 + 9 + 2 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas from the basin + 80 + true + + + 3202 + 491 + 12 + 3 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3203 + 491 + 12 + 4 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3204 + 491 + 12 + 5 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3205 + 494 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas basin production + true + + + 3206 + 494 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of gas field units built + true + + + 3207 + 494 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of gas field units built in the year + true + + + 3208 + 495 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas basin production + true + + + 3209 + 495 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of gas field units built + true + + + 3210 + 495 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of gas field units built in the year + true + + + 3211 + 496 + 8 + 1 + Max Capacity Reserves + 75 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + false + + + 3212 + 496 + 8 + 2 + Min Capacity Reserves + 75 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + false + + + 3213 + 496 + 8 + 3 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + false + + + 3214 + 496 + 8 + 4 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + false + + + 3215 + 496 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3216 + 496 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3217 + 496 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3218 + 513 + 2 + 1 + Price Setting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the gas contract can set price at the Gas Node + 4000000 + true + + + 3219 + 513 + 2 + 2 + Contract Type + 0 + 0 + In (0,1,2) + 0;"Swing";1;"Base";2;"Take-or-Pay" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1969 + Type of gas contract + true + + + 3220 + 513 + 2 + 3 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3221 + 513 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3222 + 513 + 2 + 5 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 3223 + 513 + 9 + 6 + Quantity + 100 + 0 + 1 + 0 + 1 + 0 + true + false + false + false + 1 + 650 + Gas contract quantity + true + + + 3224 + 513 + 9 + 6 + Quantity Hour + 100 + 0 + 1 + 0 + 1 + 6 + true + false + true + false + 1 + 1559 + Total gas contract quantity in hour + true + + + 3225 + 513 + 9 + 6 + Quantity Day + 100 + 0 + 1 + 0 + 1 + 1 + true + true + true + false + 1 + 651 + Total gas contract quantity in day + true + + + 3226 + 513 + 9 + 6 + Quantity Week + 100 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 653 + Total gas contract quantity in week + true + + + 3227 + 513 + 9 + 6 + Quantity Month + 100 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 652 + Total gas contract quantity in month + true + + + 3228 + 513 + 9 + 6 + Quantity Year + 100 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 654 + Total gas contract quantity in year + true + + + 3229 + 513 + 9 + 7 + Min Quantity + 100 + 0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 2414 + Minimum total gas contract quantity in interval + true + + + 3230 + 513 + 9 + 7 + Min Quantity Hour + 100 + 0 + 1 + 0 + 0 + 6 + true + false + true + false + 1 + 2415 + Minimum total gas contract quantity in hour + true + + + 3231 + 513 + 9 + 7 + Min Quantity Day + 100 + 0 + 1 + 0 + 0 + 1 + true + false + true + false + 1 + 2416 + Minimum total gas contract quantity in day + true + + + 3232 + 513 + 9 + 7 + Min Quantity Week + 100 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 2417 + Minimum total gas contract quantity in week + true + + + 3233 + 513 + 9 + 7 + Min Quantity Month + 100 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 2418 + Minimum total gas contract quantity in month + true + + + 3234 + 513 + 9 + 7 + Min Quantity Year + 100 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 2419 + Minimum total gas contract quantity in year + true + + + 3235 + 513 + 3 + 8 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Share of total Gas Contract available + false + + + 3236 + 513 + 3 + 9 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Contract is available for production + true + + + 3237 + 513 + 3 + 10 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 612 + Price of gas contract + true + + + 3238 + 513 + 3 + 11 + Price Collar Min + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2242 + Minimum price allowed for the gas contract + true + + + 3239 + 513 + 3 + 12 + Price Collar Max + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2243 + Maximum price allowed for the gas contract + true + + + 3240 + 513 + 3 + 13 + Dispatch Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2141 + Dispatch Price of Gas Contract + true + + + 3241 + 513 + 3 + 14 + Take-or-Pay Swing Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2740 + Price to charge for swing portion of Take or Pay contract + true + + + 3242 + 513 + 3 + 15 + Take-or-Pay Penalty Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2781 + Penalty price on the take violation for a Take or Pay contract + true + + + 3243 + 513 + 3 + 16 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1602 + Reservation charge for gas contract + true + + + 3244 + 513 + 3 + 17 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1965 + Reservation volume for gas contract + true + + + 3245 + 513 + 3 + 18 + Min Daily Take + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2239 + Min daily gas offtake associated with the contract + false + + + 3246 + 513 + 3 + 19 + Max Daily Take + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1985 + Max daily gas offtake associated with the contract + false + + + 3247 + 513 + 3 + 20 + Min Temperature + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2248 + Minimum temperature at which the gas contract is allowed to produce + true + + + 3248 + 513 + 3 + 21 + Max Temperature + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2249 + Maximum temperature at which the gas contract is allowed to produce + true + + + 3249 + 513 + 3 + 22 + Max Renomination + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1990 + Maximum number of renominations allowed per renomination window for Base Gas Contracts + true + + + 3250 + 513 + 3 + 23 + Min Days Between Renomination + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1991 + Minimum number of days between renominations of Base Gas Contracts + true + + + 3251 + 513 + 3 + 24 + Renomination Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2010 + User defined renomination windows for Base Gas Contracts + true + + + 3252 + 513 + 3 + 25 + Percentage of Demand + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2086 + Percentage that maximum daily take value (supply) will be adjusted according to + 400 + true + + + 3253 + 513 + 3 + 26 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Contract + 100 + true + + + 3254 + 513 + 8 + 27 + Expansion Contract + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1980 + Indicates if Gas Contract is eligible for expansion planning + 8 + true + + + 3255 + 513 + 8 + 28 + Retirement Contract + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2087 + Indicates if Gas Contract is eligible for retirement planning + 8 + true + + + 3256 + 513 + 8 + 29 + Contract Eligibility Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1982 + Start date of Gas Contract expansion planning. + 8 + true + + + 3257 + 513 + 8 + 30 + Contract Length + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1984 + Technical Life of Gas Contract + 8 + true + + + 3258 + 513 + 8 + 31 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas contract (period over which fixed costs are recovered). + 8 + true + + + 3259 + 513 + 8 + 32 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3260 + 513 + 8 + 33 + Build Cost + 34 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of Gas Contract expansion + 8009 + true + + + 3261 + 513 + 8 + 34 + Expansion Quantity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1986 + LT Max daily gas offtake associated with the contract + true + + + 3262 + 513 + 8 + 35 + Term Expansion Quantity Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2892 + LT Max daily gas offtake for the term based contract + true + + + 3263 + 513 + 8 + 36 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 3264 + 513 + 8 + 37 + Annual Expansion Quantity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2670 + LT Annual Max daily gas offtake associated with the contract + true + + + 3265 + 513 + 8 + 38 + Monthly Expansion Quantity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2975 + Maximum monthly LT expansion for the contract + true + + + 3266 + 513 + 8 + 39 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 3267 + 513 + 8 + 40 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost in the gas contract production + 8009 + false + + + 3268 + 513 + 8 + 41 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Gas Contract + 88 + true + + + 3269 + 513 + 8 + 42 + Min Expansion Quantity Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2973 + LT Min daily gas offtake associated with the contract being built + true + + + 3270 + 513 + 8 + 43 + Max Quantity Day Retired + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2971 + Maximum amount the contract can be retired in aggregate over the planning horizon + true + + + 3271 + 513 + 8 + 44 + Min Quantity Day Retired + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2972 + Minimum amount the contract must be retired in aggregate over the planning horizon + true + + + 3272 + 513 + 12 + 45 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Pass-through value (summed in summary) + true + + + 3273 + 513 + 12 + 46 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Pass-through value (summed in summary) + true + + + 3274 + 513 + 12 + 47 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Pass-through value (summed in summary) + true + + + 3275 + 518 + 1 + 1 + Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2084 + Price adder to gas nodes in contract + true + + + 3276 + 518 + 1 + 2 + Min Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Contract in the blend + 100 + true + + + 3277 + 518 + 1 + 3 + Max Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Contract in the blend + 100 + true + + + 3278 + 521 + 1 + 1 + Demand Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2133 + Supply provided to the company based on the company gas demand + true + + + 3279 + 521 + 1 + 2 + Averaging Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2134 + Indicates if the period is a start period for Demand Share + true + + + 3280 + 521 + 1 + 3 + Direct Supply + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2135 + Supply provided to the company + true + + + 3281 + 522 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas contract production + true + + + 3282 + 522 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of units built in Custom Constraint + true + + + 3283 + 522 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3284 + 522 + 8 + 4 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3285 + 522 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of the number of units retired in the year + true + + + 3286 + 522 + 8 + 6 + Expansion Quantity Day Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3090 + Coefficient of expansion quantity day built + C + true + + + 3287 + 522 + 8 + 7 + Expansion Quantity Day Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3091 + Coefficient of expansion quantity day retired + C + true + + + 3288 + 522 + 8 + 8 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3289 + 522 + 8 + 9 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3290 + 522 + 8 + 10 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3291 + 523 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas contract production + true + + + 3292 + 523 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3293 + 523 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3294 + 524 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Gas transport for the generation of outages + 101000000 + true + + + 3295 + 524 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3296 + 524 + 2 + 3 + Formulate Round Trip + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2758 + If the Gas Transport should return to the Export node before setting out on the next voyage + true + + + 3297 + 524 + 2 + 4 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3298 + 524 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3299 + 524 + 2 + 6 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + false + + + 3300 + 524 + 3 + 7 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Transports is in service + false + + + 3301 + 524 + 3 + 8 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Transport is available for flow. + true + + + 3302 + 524 + 3 + 9 + Voyage Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1841 + Time taken for the voyage from Export Node to Import Node + true + + + 3303 + 524 + 3 + 10 + Loading Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1842 + Time taken to load gas into the transport + true + + + 3304 + 524 + 3 + 11 + Discharge Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1843 + Time taken to unload gas from the transport + true + + + 3305 + 524 + 3 + 12 + Min Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 510 + Minimum volume of gas the transport can carry + true + + + 3306 + 524 + 3 + 13 + Max Volume + 100 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 466 + Maximum volume of gas the transport can carry + true + + + 3307 + 524 + 3 + 14 + Shipping Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1844 + The per unit cost of shipping the gas on the transport + 2000000000 + true + + + 3308 + 524 + 3 + 15 + Charter Rate + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2790 + The charter cost of gas transport per delivery + 2000000000 + true + + + 3309 + 524 + 3 + 16 + Charter Rate Day + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2791 + The charter cost of gas transport per day + 2000000000 + true + + + 3310 + 524 + 3 + 17 + Boil off Rate + 70 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1845 + Rate of boil off of gas during the voyage + true + + + 3311 + 524 + 3 + 18 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas shipped by the Gas Transport + 100 + true + + + 3312 + 524 + 3 + 19 + Idle Boil off Rate + 70 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2966 + Rate of boil off of gas during the harbouring at the export and import gas nodes + true + + + 3313 + 524 + 3 + 20 + Imports + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 294 + false + + + 3314 + 524 + 3 + 21 + Exports + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 192 + false + + + 3315 + 524 + 9 + 22 + Max Shipments + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1846 + Maximum number of voyages in each step in the simulation horizon + 80 + true + + + 3316 + 524 + 9 + 22 + Max Shipments Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1847 + Maximum hourly number of voyages + 80 + true + + + 3317 + 524 + 9 + 22 + Max Shipments Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + true + false + false + 1 + 1848 + Maximum daily number of voyages + 80 + true + + + 3318 + 524 + 9 + 22 + Max Shipments Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1849 + Maximum weekly number of voyages + 80 + true + + + 3319 + 524 + 9 + 22 + Max Shipments Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1850 + Maximum monthly number of voyages + 80 + true + + + 3320 + 524 + 9 + 22 + Max Shipments Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1851 + Maximum annual number of voyages + 80 + true + + + 3321 + 524 + 7 + 23 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the Gas Transport is unavailable due to forced outage + 1000000 + true + + + 3322 + 524 + 7 + 24 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the Gas Transport is unavailable due to maintenance + 1000000 + true + + + 3323 + 524 + 7 + 25 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3324 + 524 + 7 + 26 + Outage Max Volume + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2847 + Gas Transport Max Volume during the outage + 1000000 + false + + + 3325 + 524 + 7 + 27 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3326 + 524 + 7 + 28 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3327 + 524 + 7 + 29 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3328 + 524 + 7 + 30 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3329 + 524 + 7 + 31 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3330 + 524 + 8 + 32 + Expansion Transport + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2848 + Indicates if the gas Transport is eligible for expansion planning + 8 + true + + + 3331 + 524 + 8 + 33 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3332 + 524 + 8 + 34 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Gas Transport project, for expansion planning. + 8 + true + + + 3333 + 524 + 8 + 35 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Gas Transport + 8 + true + + + 3334 + 524 + 8 + 36 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the Gas Transport + 8009 + true + + + 3335 + 524 + 8 + 37 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3336 + 524 + 8 + 38 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas transport (period over which fixed costs are recovered). + 8 + true + + + 3337 + 524 + 8 + 39 + Retirement Transport + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2849 + Indicates if the gas transport is eligible for retirement planning + 88 + true + + + 3338 + 524 + 8 + 40 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas transport + 88 + true + + + 3339 + 524 + 8 + 41 + Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2028 + Expansion Max Volume is the volume up to which the capacity of the transport can be expanded + 8 + true + + + 3340 + 524 + 8 + 42 + Expansion Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 3108 + Expansion Min Volume is the volume up to which the capacity of the gas transport can be expanded + 8 + true + + + 3341 + 524 + 8 + 43 + Retirement Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 3110 + Retirement max volume associated with the Gas Transport + 8 + true + + + 3342 + 524 + 8 + 44 + Retirement Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 3111 + Retirement min volume associated with the Gas Transport + 8 + true + + + 3343 + 524 + 8 + 45 + Max Build Events + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 3344 + 524 + 8 + 46 + Annual Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2668 + Annual Expansion Max Volume for the Transports + 8 + true + + + 3345 + 524 + 8 + 47 + Annual Expansion Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3109 + Annual Expansion Min Volume associated with the Gas Transport + 8 + true + + + 3346 + 524 + 8 + 48 + Annual Retirement Max Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 3112 + Annual retirement max volume associated with the Gas Transport + 8 + true + + + 3347 + 524 + 8 + 49 + Annual Retirement Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 3113 + Annual retirement min volume associated with the Gas Transport + 8 + true + + + 3348 + 524 + 12 + 50 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Pass-through value (summed in summary) + true + + + 3349 + 524 + 12 + 51 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Pass-through value (summed in summary) + true + + + 3350 + 524 + 12 + 52 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Pass-through value (averaged in summary) + true + + + 3351 + 530 + 1 + 1 + Port Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2792 + Cost of using Gas Node by gas transport per day + 2000000000 + true + + + 3352 + 531 + 1 + 1 + Port Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2792 + Cost of using gas node by gas transport per day + 2000000000 + true + + + 3353 + 531 + 1 + 2 + Initial Gas Delivered + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2890 + The amount of gas to be delivered to a gas node on the initial gas path + true + + + 3354 + 535 + 1 + 1 + Canal Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2793 + Cost of using all canals in gas path by gas transport + 2000000000 + true + + + 3355 + 536 + 1 + 1 + Voyage Progress + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 2891 + Percentage of voyage already completed + true + + + 3356 + 536 + 1 + 2 + Initial Volume + 100 + 1E+30 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 318 + Initial volume of gas being carried by the gas transport + true + + + 3357 + 537 + 1 + 1 + Outage Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1892 + Proportion of capacity during outage + 4 + true + + + 3358 + 538 + 3 + 1 + Shipments Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1873 + Coefficient of gas transport voyage count + true + + + 3359 + 538 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3360 + 538 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3361 + 538 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 3362 + 538 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 3363 + 538 + 8 + 6 + Expansion Volume Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3086 + Coefficient of expansion volume built + C + true + + + 3364 + 538 + 8 + 7 + Expansion Volume Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3087 + Coefficient of expansion volume retired + C + true + + + 3365 + 538 + 8 + 8 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3366 + 538 + 8 + 9 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3367 + 538 + 8 + 10 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3368 + 539 + 3 + 1 + Shipments Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1873 + Coefficient of gas transport voyage count + true + + + 3369 + 543 + 2 + 1 + Release Type + 0 + 0 + In (0,1,2) + 0;"Swing";1;"Base";2;"Deal" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2040 + Function structure for capacity release type inputs + true + + + 3370 + 543 + 9 + 2 + Max Released Capacity + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2571 + Maximum capacity that can be released + 80 + true + + + 3371 + 543 + 9 + 2 + Max Released Capacity Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2572 + Maximum capacity that can be released in a hour + 80 + true + + + 3372 + 543 + 9 + 2 + Max Released Capacity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2573 + Maximum capacity that can be released in a day + 80 + true + + + 3373 + 543 + 9 + 2 + Max Released Capacity Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2574 + Maximum capacity that can be released in a week + 80 + true + + + 3374 + 543 + 9 + 2 + Max Released Capacity Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2575 + Maximum capacity that can be released in a month + 80 + true + + + 3375 + 543 + 9 + 2 + Max Released Capacity Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2576 + Maximum capacity that can be released in a year + 80 + true + + + 3376 + 543 + 9 + 3 + Min Released Capacity + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2577 + Minimum capacity that can be released + 80 + true + + + 3377 + 543 + 9 + 3 + Min Released Capacity Hour + 100 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2578 + Minimum capacity that can be released in hour + 80 + true + + + 3378 + 543 + 9 + 3 + Min Released Capacity Day + 100 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2579 + Minimum capacity that can be released in day + 80 + true + + + 3379 + 543 + 9 + 3 + Min Released Capacity Week + 100 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2580 + Minimum capacity that can be released in week + 80 + true + + + 3380 + 543 + 9 + 3 + Min Released Capacity Month + 100 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2581 + Minimum capacity that can be released in month + 80 + true + + + 3381 + 543 + 9 + 3 + Min Released Capacity Year + 100 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2582 + Minimum capacity that can be released in year + 80 + true + + + 3382 + 543 + 3 + 4 + Term Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2041 + Flag to indicate start of the capacity release term + true + + + 3383 + 543 + 3 + 5 + Revenue Basis + 88 + 0 + >=0 + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2042 + Revenue Basis for capacity release offer + true + + + 3384 + 543 + 3 + 6 + Revenue Adder + 88 + 0 + >=0 + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2043 + Revenue Adder for capacity release offer + true + + + 3385 + 543 + 3 + 7 + Entitlement Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2503 + Capacity Release Offer Entitlement type: Gross of pipeline fuel (inflow quantity) or Net of pipeline fuel (outflow quantity). + true + + + 3386 + 543 + 12 + 8 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3387 + 543 + 12 + 9 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3388 + 543 + 12 + 10 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3389 + 548 + 3 + 1 + Release Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of gas capacity release offers + true + + + 3390 + 549 + 3 + 1 + Release Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of gas capacity release offers + true + + + 3391 + 550 + 2 + 1 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3392 + 550 + 2 + 2 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3393 + 550 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3394 + 550 + 2 + 4 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this water plant receives capacity payments + 8 + false + + + 3395 + 550 + 9 + 5 + Max Starts + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 80 + true + + + 3396 + 550 + 9 + 5 + Max Starts Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 80 + true + + + 3397 + 550 + 9 + 5 + Max Starts Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 80 + true + + + 3398 + 550 + 9 + 5 + Max Starts Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 80 + true + + + 3399 + 550 + 9 + 5 + Max Starts Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 80 + true + + + 3400 + 550 + 9 + 5 + Max Starts Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 80 + true + + + 3401 + 550 + 9 + 6 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of Water Plant [Max Starts] constraints. + 80 + true + + + 3402 + 550 + 9 + 7 + Min Production + 65 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production of water plants + 80 + true + + + 3403 + 550 + 3 + 8 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of Water Plant units in service + 800000 + true + + + 3404 + 550 + 3 + 9 + Max Capacity + 65 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 414 + Maximum production of Water Plant + 5 + true + + + 3405 + 550 + 3 + 10 + Min Stable Production + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1928 + Minimum production level + 1000000000 + true + + + 3406 + 550 + 3 + 11 + Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 665 + Rated capacity of units + 81 + true + + + 3407 + 550 + 3 + 12 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + true + + + 3408 + 550 + 3 + 13 + Aux Fixed + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 3409 + 550 + 3 + 14 + Aux Base + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 3410 + 550 + 3 + 15 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of generation + 200000 + true + + + 3411 + 550 + 3 + 16 + Load Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate + 1000 + true + + + 3412 + 550 + 3 + 17 + Heat Usage + 72 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1926 + Heat consumption of Water Plant + 2000000000 + true + + + 3413 + 550 + 3 + 18 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + false + + + 3414 + 550 + 3 + 19 + Heat Usage Incr + 72 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2525 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 3415 + 550 + 3 + 20 + Water Yield + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1795 + Yield rate of water for the Water Plant + 2000000000 + true + + + 3416 + 550 + 3 + 21 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 175 + Energy consumption of Water Plant + 2000000000 + true + + + 3417 + 550 + 3 + 22 + Max Up Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started for water plants + true + + + 3418 + 550 + 3 + 23 + Min Up Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must run after being started for water plants + true + + + 3419 + 550 + 3 + 24 + Max Down Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down for water plants + true + + + 3420 + 550 + 3 + 25 + Min Down Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down for water plants + true + + + 3421 + 550 + 3 + 26 + Retail Electric Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2515 + Retail price of electric power used by the water plant + true + + + 3422 + 550 + 3 + 27 + VO&M Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 849 + Variable operations and maintenance costs of the Water Plant + 2000000000 + true + + + 3423 + 550 + 3 + 28 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3424 + 550 + 3 + 29 + Max Ramp Up + 129 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Sets a limit on the rate at which the water plant can increase production from one interval to the next + 80 + true + + + 3425 + 550 + 3 + 30 + Max Ramp Down + 129 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Sets a limit on the rate at which the water plant can decrease production from one interval to the next + 80 + true + + + 3426 + 550 + 3 + 31 + Max Ramp Up Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 3427 + 550 + 3 + 32 + Max Ramp Down Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 3428 + 550 + 7 + 33 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3429 + 550 + 7 + 34 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 3430 + 550 + 7 + 35 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3431 + 550 + 7 + 36 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3432 + 550 + 7 + 37 + Outage Max Production + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Plant Max Production during the outage + 1000000 + true + + + 3433 + 550 + 7 + 38 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3434 + 550 + 7 + 39 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3435 + 550 + 7 + 40 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3436 + 550 + 7 + 41 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3437 + 550 + 7 + 42 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3438 + 550 + 8 + 43 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 3439 + 550 + 8 + 44 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3440 + 550 + 8 + 45 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water Plant project, for expansion planning. + 8 + true + + + 3441 + 550 + 8 + 46 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water Plant + 8 + true + + + 3442 + 550 + 8 + 47 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of developing the Water Plant + 8009 + true + + + 3443 + 550 + 8 + 48 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3444 + 550 + 8 + 49 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water Plant (period over which fixed costs are recovered). + 8 + true + + + 3445 + 550 + 8 + 50 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3446 + 550 + 8 + 51 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3447 + 550 + 8 + 52 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3448 + 550 + 8 + 53 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3449 + 550 + 8 + 54 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water Plant + 88 + true + + + 3450 + 550 + 8 + 55 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3451 + 550 + 8 + 56 + Max Units Retired in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3452 + 550 + 8 + 57 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3453 + 550 + 8 + 58 + Capacity Price + 99 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the plant for capacity + 4000008 + true + + + 3454 + 550 + 11 + 59 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 3455 + 550 + 11 + 60 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 3456 + 550 + 12 + 61 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3457 + 550 + 12 + 62 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3458 + 550 + 12 + 63 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3459 + 556 + 1 + 1 + Outage Max Production + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 3460 + 557 + 3 + 1 + Production Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Water Plant Production + true + + + 3461 + 557 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Water Plant capacity factor + true + + + 3462 + 557 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + false + + + 3463 + 557 + 3 + 4 + Energy Usage Coefficient + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Water Plant + true + + + 3464 + 557 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 3465 + 557 + 6 + 6 + Installed Capacity Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 3466 + 557 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3467 + 557 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3468 + 557 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3469 + 557 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3470 + 557 + 8 + 11 + Capacity Built Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3471 + 557 + 8 + 12 + Capacity Retired Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3472 + 557 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3473 + 557 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3474 + 557 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3475 + 558 + 3 + 1 + Production Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Water Plant Production + true + + + 3476 + 558 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Water Plant capacity factor + true + + + 3477 + 558 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + true + + + 3478 + 558 + 3 + 4 + Energy Usage Coefficient + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Water Plant + true + + + 3479 + 558 + 6 + 5 + Installed Capacity Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 3480 + 558 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3481 + 558 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3482 + 558 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3483 + 558 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3484 + 558 + 8 + 10 + Capacity Built Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 3485 + 558 + 8 + 11 + Capacity Retired Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 3486 + 558 + 8 + 12 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 3487 + 558 + 8 + 13 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 3488 + 558 + 8 + 14 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 3489 + 559 + 1 + 1 + Energy Usage Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1886 + Coefficient of the Decision Variable in the Water Plant Energy Usage definition equation + true + + + 3490 + 560 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 3491 + 560 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3492 + 560 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3493 + 560 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3494 + 560 + 3 + 5 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Flag if the Water Pipeline is in service + 800000 + false + + + 3495 + 560 + 3 + 6 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Water Pipeline is available for flow. + true + + + 3496 + 560 + 3 + 7 + Is Bidirectional + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2033 + Indicates if the pipeline allows flow in both directions + 800000 + true + + + 3497 + 560 + 3 + 8 + Max Capacity + 65 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 414 + Maximum flow rate on the water pipeline + 5 + true + + + 3498 + 560 + 3 + 9 + Diameter + 23 + 0.762 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1796 + Water Pipeline diameter + true + + + 3499 + 560 + 3 + 10 + Roughness + 0 + 150 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1797 + Water Pipeline roughness constant + true + + + 3500 + 560 + 3 + 11 + Length + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1798 + Length of the Water Pipeline + true + + + 3501 + 560 + 3 + 12 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 639 + Efficiency of Water Pipeline pump + true + + + 3502 + 560 + 3 + 13 + VO&M Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 849 + Variable operations and maintenance costs of the Water Pipeline + 2000000000 + true + + + 3503 + 560 + 3 + 14 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3504 + 560 + 3 + 15 + Consumption Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1814 + Proportion of the electricity consumption allocated to the receiving water node + true + + + 3505 + 560 + 3 + 16 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the pipeline energy consumption curve. + true + + + 3506 + 560 + 3 + 17 + Energy Consumed Flow Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2122 + Flow level defining the water pipeline energy consumption curve. + true + + + 3507 + 560 + 3 + 18 + System Curve Coefficient A + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2250 + System curve coefficient A for the quadratic term + true + + + 3508 + 560 + 3 + 19 + System Curve Coefficient B + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2251 + System curve coefficient B for the linear term + true + + + 3509 + 560 + 3 + 20 + System Curve Coefficient C + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2252 + System curve coefficient C for the constant term + true + + + 3510 + 560 + 3 + 21 + Flow Rate Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2511 + Flow rate point for the system curve + true + + + 3511 + 560 + 3 + 22 + Head Point + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2512 + Head point for the system curve + true + + + 3512 + 560 + 7 + 23 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3513 + 560 + 7 + 24 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3514 + 560 + 7 + 25 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3515 + 560 + 7 + 26 + Outage Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Water pipeline Max Capacity during the outage + 1000000 + true + + + 3516 + 560 + 7 + 27 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3517 + 560 + 7 + 28 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3518 + 560 + 7 + 29 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3519 + 560 + 7 + 30 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3520 + 560 + 7 + 31 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3521 + 560 + 8 + 32 + Expansion Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2034 + Indicates if the water pipeline is eligible for expansion planning + 8 + true + + + 3522 + 560 + 8 + 33 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3523 + 560 + 8 + 34 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water pipeline project, for expansion planning. + 8 + true + + + 3524 + 560 + 8 + 35 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water pipeline + 8 + true + + + 3525 + 560 + 8 + 36 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Water pipeline + 8009 + true + + + 3526 + 560 + 8 + 37 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3527 + 560 + 8 + 38 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water pipeline (period over which fixed costs are recovered). + 8 + true + + + 3528 + 560 + 8 + 39 + Retirement Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2035 + Indicates if the water pipeline is eligible for retirement planning + 88 + true + + + 3529 + 560 + 8 + 40 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water pipeline + 88 + true + + + 3530 + 560 + 8 + 41 + Expansion Max Capacity + 65 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2379 + Expansion max daily total water release for the pipeline + 8 + true + + + 3531 + 560 + 12 + 42 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3532 + 560 + 12 + 43 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3533 + 560 + 12 + 44 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3534 + 565 + 1 + 1 + Outage Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 585 + Max Rating during the outage + 4 + true + + + 3535 + 566 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Water Pipeline flow + true + + + 3536 + 566 + 3 + 2 + Flow Forward Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Water Pipeline flow at the receiving node + true + + + 3537 + 566 + 3 + 3 + Flow Back Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Water Pipeline flow at the sending node + true + + + 3538 + 566 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3539 + 566 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3540 + 566 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3541 + 566 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3542 + 566 + 8 + 8 + Capacity Built Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3543 + 566 + 8 + 9 + Capacity Retired Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3544 + 566 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3545 + 566 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3546 + 566 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3547 + 567 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Water Pipeline flow + true + + + 3548 + 567 + 3 + 2 + Flow Forward Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Water Pipeline flow at the receiving node + true + + + 3549 + 567 + 3 + 3 + Flow Back Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Water Pipeline flow at the sending node + true + + + 3550 + 567 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3551 + 567 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3552 + 567 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3553 + 567 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3554 + 568 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3555 + 568 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3556 + 568 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Water Node is in service + 800000 + true + + + 3557 + 568 + 3 + 4 + Water Security + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1799 + Proportion of local Water Demand that must be covered by Water Storage at the Water Node + false + + + 3558 + 568 + 3 + 5 + Flow Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1268 + Incremental cost of flowing water through the node + 2000000000 + true + + + 3559 + 568 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3560 + 568 + 8 + 7 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 3561 + 568 + 8 + 8 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3562 + 568 + 8 + 9 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of water node project, for expansion planning. + 8 + true + + + 3563 + 568 + 8 + 10 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the water node + 8 + true + + + 3564 + 568 + 8 + 11 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the water node + 8009 + true + + + 3565 + 568 + 8 + 12 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3566 + 568 + 8 + 13 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the water node (period over which fixed costs are recovered). + 8 + true + + + 3567 + 568 + 8 + 14 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3568 + 568 + 8 + 15 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 3569 + 568 + 8 + 16 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3570 + 568 + 8 + 17 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3571 + 568 + 8 + 18 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the water node + 88 + true + + + 3572 + 568 + 8 + 19 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3573 + 568 + 8 + 20 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3574 + 568 + 8 + 21 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3575 + 568 + 8 + 22 + Max Flow + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 429 + Expansion maximum flow through the water node + 8 + true + + + 3576 + 568 + 12 + 23 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3577 + 568 + 12 + 24 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3578 + 568 + 12 + 25 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3579 + 573 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 3580 + 573 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Water consumption for each unit of consumption + true + + + 3581 + 573 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Water production for each unit of production + true + + + 3582 + 573 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Water consumption for each unit operating + 1000000000 + true + + + 3583 + 573 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Water consumption for each installed unit + 4 + true + + + 3584 + 575 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of water node flow + true + + + 3585 + 575 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3586 + 575 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3587 + 575 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3588 + 575 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3589 + 575 + 8 + 6 + Flow Built Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3084 + Coefficient of flow built + C + true + + + 3590 + 575 + 8 + 7 + Flow Retired Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3085 + Coefficient of flow retired + C + true + + + 3591 + 575 + 8 + 8 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3592 + 575 + 8 + 9 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3593 + 575 + 8 + 10 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3594 + 576 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of water node flow + true + + + 3595 + 576 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3596 + 576 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3597 + 576 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3598 + 576 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3599 + 577 + 2 + 1 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 3600 + 577 + 2 + 2 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 3601 + 577 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3602 + 577 + 2 + 4 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3603 + 577 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3604 + 577 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Water Storage is in service + 800000 + false + + + 3605 + 577 + 3 + 7 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Water Storage is available. + true + + + 3606 + 577 + 3 + 8 + Max Volume + 64 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 466 + Maximum volume of Water allowed in storage + 5 + true + + + 3607 + 577 + 3 + 9 + Min Volume + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 510 + Minimum volume of Water allowed in storage + 4 + true + + + 3608 + 577 + 3 + 10 + Initial Volume + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of Water in the storage + 80001 + true + + + 3609 + 577 + 3 + 11 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption associated with releases from the water storage + false + + + 3610 + 577 + 3 + 12 + Natural Inflow + 65 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 530 + Rate of inflow + true + + + 3611 + 577 + 3 + 13 + Loss Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to evaporation, leakage, etc + 200000 + true + + + 3612 + 577 + 3 + 14 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3613 + 577 + 3 + 15 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the water storage energy consumption curve. + true + + + 3614 + 577 + 3 + 16 + Energy Consumed Withdrawal Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2131 + Withdrawal level defining the water storage energy consumption curve. + true + + + 3615 + 577 + 3 + 17 + Max Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 435 + Max water storage level + 80001 + true + + + 3616 + 577 + 3 + 18 + System Curve Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2254 + Level for which system curve is specified + 80001 + true + + + 3617 + 577 + 3 + 19 + Cross Section Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2255 + Cross sectional area of the water storage + 80001 + true + + + 3618 + 577 + 3 + 20 + Reference Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2513 + Reference storage level + 80001 + true + + + 3619 + 577 + 3 + 21 + Reference Volume + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2514 + Reference volume of water in the storage + 80001 + true + + + 3620 + 577 + 9 + 22 + Target + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 80 + true + + + 3621 + 577 + 9 + 22 + Target Hour + 64 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 80 + true + + + 3622 + 577 + 9 + 22 + Target Day + 64 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 80 + true + + + 3623 + 577 + 9 + 22 + Target Week + 64 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 3624 + 577 + 9 + 22 + Target Month + 64 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 80 + true + + + 3625 + 577 + 9 + 22 + Target Year + 64 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 80 + true + + + 3626 + 577 + 9 + 23 + Target Penalty + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 80 + true + + + 3627 + 577 + 9 + 24 + Target Penalty Under + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2378 + Penalty for violating the Min Storage Target. + 80 + true + + + 3628 + 577 + 9 + 25 + Max Withdrawal + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of water that can be withdrawn from the storage + 80 + true + + + 3629 + 577 + 9 + 25 + Max Withdrawal Hour + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of water that can be withdrawn from the storage in a hour + 80 + true + + + 3630 + 577 + 9 + 25 + Max Withdrawal Day + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1247 + Maximum amount of water that can be withdrawn from the storage in day + 80 + true + + + 3631 + 577 + 9 + 25 + Max Withdrawal Week + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of water that can be withdrawn from the storage in a week + 80 + true + + + 3632 + 577 + 9 + 25 + Max Withdrawal Month + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of water that can be withdrawn from the storage in a month + 80 + true + + + 3633 + 577 + 9 + 25 + Max Withdrawal Year + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of water that can be withdrawn from the storage in a year + 80 + true + + + 3634 + 577 + 9 + 26 + Min Storage Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2075 + Minimum Storage Target Percent for water storage + 80 + true + + + 3635 + 577 + 9 + 27 + Max Storage Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2076 + Max Storage Target Percent for water storage + 80 + true + + + 3636 + 577 + 7 + 28 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3637 + 577 + 7 + 29 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3638 + 577 + 7 + 30 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3639 + 577 + 7 + 31 + Outage Max Withdrawal + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2353 + Storage Max Withdrawal during the outage + 1000000 + true + + + 3640 + 577 + 7 + 32 + Outage Max Injection + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2354 + Storage Max Injection during the outage + 1000000 + true + + + 3641 + 577 + 7 + 33 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3642 + 577 + 7 + 34 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3643 + 577 + 7 + 35 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3644 + 577 + 7 + 36 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3645 + 577 + 7 + 37 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3646 + 577 + 8 + 38 + Expansion Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2029 + Indicates if Water Storage is eligible for expansion planning + 8 + true + + + 3647 + 577 + 8 + 39 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3648 + 577 + 8 + 40 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water storage project, for expansion planning. + 8 + true + + + 3649 + 577 + 8 + 41 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water storage + 8 + true + + + 3650 + 577 + 8 + 42 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Water storage + 8009 + true + + + 3651 + 577 + 8 + 43 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3652 + 577 + 8 + 44 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water storage (period over which fixed costs are recovered). + 8 + true + + + 3653 + 577 + 8 + 45 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2030 + Indicates if Water Storage is eligible for retirement planning + 8 + true + + + 3654 + 577 + 8 + 46 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water storage + 88 + true + + + 3655 + 577 + 8 + 47 + Expansion Max Volume + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2028 + Expansion max volume associated with the Water Storage + 8 + true + + + 3656 + 577 + 11 + 48 + Trajectory Non-anticipativity + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 3657 + 577 + 11 + 49 + Trajectory Non-anticipativity Volume + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100000000 + true + + + 3658 + 577 + 11 + 50 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 3659 + 577 + 12 + 51 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3660 + 577 + 12 + 52 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3661 + 577 + 12 + 53 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3662 + 581 + 1 + 1 + Outage Max Withdrawal + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2353 + Water Storage Max Withdrawal during the outage + 4 + true + + + 3663 + 581 + 1 + 2 + Outage Max Injection + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2354 + Water Storage Max Injection during the outage + 4 + true + + + 3664 + 582 + 3 + 1 + Natural Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + false + + + 3665 + 582 + 3 + 2 + End Volume Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + true + + + 3666 + 582 + 3 + 3 + Release Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of water release + true + + + 3667 + 582 + 3 + 4 + Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of water inflow + true + + + 3668 + 582 + 3 + 5 + Ramp Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in water storage end volume + true + + + 3669 + 582 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3670 + 582 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3671 + 582 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3672 + 582 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3673 + 582 + 8 + 10 + Expansion Volume Built Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3086 + Coefficient of expansion volume built + C + true + + + 3674 + 582 + 8 + 11 + Expansion Volume Retired Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3087 + Coefficient of expansion volume retired + C + true + + + 3675 + 582 + 8 + 12 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3676 + 582 + 8 + 13 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3677 + 582 + 8 + 14 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3678 + 583 + 3 + 1 + Natural Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + true + + + 3679 + 583 + 3 + 2 + End Volume Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 3680 + 583 + 3 + 3 + Release Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of water release + true + + + 3681 + 583 + 3 + 4 + Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of water inflow + true + + + 3682 + 583 + 3 + 5 + Ramp Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in water storage end volume + true + + + 3683 + 583 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3684 + 583 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3685 + 583 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3686 + 583 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3687 + 584 + 3 + 1 + Demand + 65 + 0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 133 + Demand for water + 400 + true + + + 3688 + 584 + 3 + 2 + Shortage Price + 67 + 1000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1270 + Notional price of water shortage + 40000000 + true + + + 3689 + 584 + 3 + 3 + Excess Price + 67 + -100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1271 + Notional price of water oversupply + 40000000 + true + + + 3690 + 584 + 4 + 4 + Bid Quantity + 65 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + 400000 + true + + + 3691 + 584 + 4 + 5 + Bid Price + 67 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Value of water in band + 400000 + true + + + 3692 + 584 + 12 + 6 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3693 + 584 + 12 + 7 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3694 + 584 + 12 + 8 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3695 + 587 + 1 + 1 + Demand Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1448 + Proportion of water demand that occurs at the water node + 400 + true + + + 3696 + 588 + 8 + 1 + Max Capacity Reserves + 65 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + false + + + 3697 + 588 + 8 + 2 + Min Capacity Reserves + 65 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + false + + + 3698 + 588 + 8 + 3 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 3699 + 588 + 8 + 4 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 3700 + 588 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3701 + 588 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3702 + 588 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3703 + 598 + 2 + 1 + Configuration + 0 + 0 + In (0,1) + 0;"Parallel";1;"Series" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2256 + Water Pump configuration (series or parallel) + true + + + 3704 + 598 + 3 + 2 + Max Head + 23 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2261 + Maximum head of pump station + true + + + 3705 + 598 + 3 + 3 + Max Flow Rate + 65 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2260 + Maximum flow rate of pump station + true + + + 3706 + 598 + 3 + 4 + Max Power + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1756 + Maximum power of pump station + true + + + 3707 + 605 + 3 + 1 + Flow Rate Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2257 + Coefficient of Water Pump Station flow rate + true + + + 3708 + 605 + 3 + 2 + Head Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2258 + Coefficient of Water Pump Station head + true + + + 3709 + 605 + 3 + 3 + Power Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2259 + Coefficient of Water Pump Station power + true + + + 3710 + 606 + 3 + 1 + Flow Rate Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2257 + Coefficient of Water Pump Station flow rate + true + + + 3711 + 606 + 3 + 2 + Head Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2258 + Coefficient of Water Pump Station head + true + + + 3712 + 606 + 3 + 3 + Power Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2259 + Coefficient of Water Pump Station power + true + + + 3713 + 607 + 3 + 1 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 3714 + 607 + 3 + 2 + Efficiency + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 1209 + Water Pump efficiency + true + + + 3715 + 607 + 3 + 3 + Max Flow Rate + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2260 + Max Flow Rate + true + + + 3716 + 607 + 3 + 4 + Max Head + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2261 + Max pump head + true + + + 3717 + 607 + 3 + 5 + Pump Curve Coefficient A + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2262 + Pump Curve Coefficient A for the quadratic term + true + + + 3718 + 607 + 3 + 6 + Pump Curve Coefficient B + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2263 + Pump Curve Coefficient B for the linear term + true + + + 3719 + 607 + 3 + 7 + Pump Curve Coefficient C + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2264 + Pump Curve Coefficient C for the constant term + true + + + 3720 + 607 + 3 + 8 + Flow Rate Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2511 + Flow rate point for the pump curve + true + + + 3721 + 607 + 3 + 9 + Head Point + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2512 + Head point for the pump curve + true + + + 3722 + 607 + 3 + 10 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 3723 + 607 + 3 + 11 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 3724 + 607 + 3 + 12 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a pump must be run after being started + 1000000080 + true + + + 3725 + 607 + 3 + 13 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a pump must be off after being shut down + 1000000080 + true + + + 3726 + 607 + 3 + 14 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a pump can be run after being started + 1000000080 + true + + + 3727 + 607 + 3 + 15 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a pump can be off after being shut down + 1000000080 + true + + + 3728 + 607 + 3 + 16 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 3729 + 607 + 3 + 17 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Number of units that should be committed + 1000000080 + true + + + 3730 + 607 + 3 + 18 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the pump has been up for at time zero + 1000080000 + true + + + 3731 + 607 + 3 + 19 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the pump has been down for at time zero + 1000080000 + true + + + 3732 + 607 + 9 + 20 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 3733 + 607 + 9 + 20 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 3734 + 607 + 9 + 20 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 3735 + 607 + 9 + 20 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 3736 + 607 + 9 + 20 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 3737 + 607 + 9 + 20 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 3738 + 607 + 9 + 21 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints + 1080000080 + true + + + 3739 + 607 + 7 + 22 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 818 + Number of units out of service + 1000000 + true + + + 3740 + 610 + 3 + 1 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 3741 + 611 + 9 + 1 + Energy Target + 80 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1861 + Vehicle stored energy target + 80 + true + + + 3742 + 611 + 9 + 1 + Energy Target Hour + 80 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1862 + End of hour vehicle stored energy target + 80 + true + + + 3743 + 611 + 9 + 1 + Energy Target Day + 80 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1863 + End of day vehicle stored energy target + 80 + true + + + 3744 + 611 + 9 + 1 + Energy Target Week + 80 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1864 + End of week vehicle stored energy target + 80 + true + + + 3745 + 611 + 9 + 1 + Energy Target Month + 80 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1865 + End of month vehicle stored energy target + 80 + true + + + 3746 + 611 + 9 + 1 + Energy Target Year + 80 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1866 + End of year vehicle stored energy target + 80 + true + + + 3747 + 611 + 9 + 2 + Energy Target Penalty + 52 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1867 + Penalty for violating the vehicle stored energy target. + 80 + true + + + 3748 + 611 + 2 + 3 + Fixed Load Global + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 1 + 0 + false + false + false + false + 1 + 2465 + If [Fixed Load] applies across all Vehicles or unit-by-unit + true + + + 3749 + 611 + 2 + 4 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3750 + 611 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3751 + 611 + 2 + 6 + End Effects Method + 0 + 2 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period energy. + 4 + true + + + 3752 + 611 + 2 + 7 + Simultaneous Charge and Discharge + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2632 + Vehicle can charge and discharge simultaneously + 80 + true + + + 3753 + 611 + 2 + 8 + Non-physical Charge Penalty + 47 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2870 + Penalty applied to non-physical charging of the vehicle. A value of -1 means none is allowed. + 4 + true + + + 3754 + 611 + 2 + 9 + Non-physical Discharge Penalty + 47 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2871 + Penalty applied to non-physical discharging of the vehicle. A value of -1 means none is allowed. + 4 + true + + + 3755 + 611 + 3 + 10 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of vehicles + 800001 + true + + + 3756 + 611 + 3 + 11 + Capacity + 80 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of the vehicle + 5 + true + + + 3757 + 611 + 3 + 12 + Efficiency + 82 + 200 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Electric vehicle efficiency + 1000 + true + + + 3758 + 611 + 3 + 13 + Demand + 81 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + true + false + 1 + 133 + Travel demand for vehicle + true + + + 3759 + 611 + 3 + 14 + Initial SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1670 + Initial state of charge + 5 + true + + + 3760 + 611 + 3 + 15 + Max SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1666 + Allowable maximum state of charge + 5 + true + + + 3761 + 611 + 3 + 16 + Min SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1667 + Allowable minimum state of charge + 5 + true + + + 3762 + 611 + 3 + 17 + Max Charge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2109 + Maximum charge rate + 5 + true + + + 3763 + 611 + 3 + 18 + Max Discharge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2110 + Maximum discharge rate + 5 + true + + + 3764 + 611 + 3 + 19 + Self Discharge Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2710 + Percentage of stored energy lost per hour due to self-discharge. + 200000 + true + + + 3765 + 611 + 9 + 20 + Max Cycles + 62 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1832 + Number of cycles allowed each interval + 80 + true + + + 3766 + 611 + 9 + 20 + Max Cycles Hour + 62 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1833 + Number of cycles allowed each hour + 80 + true + + + 3767 + 611 + 9 + 20 + Max Cycles Day + 62 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1834 + Number of cycles allowed each day + 80 + true + + + 3768 + 611 + 9 + 20 + Max Cycles Week + 62 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1835 + Number of cycles allowed each week + 80 + true + + + 3769 + 611 + 9 + 20 + Max Cycles Month + 62 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1836 + Number of cycles allowed each month + 80 + true + + + 3770 + 611 + 9 + 20 + Max Cycles Year + 62 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1837 + Number of cycles allowed each year + 80 + true + + + 3771 + 611 + 9 + 21 + Max Energy Discharging + 80 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3045 + Max Energy Discharging + 80 + true + + + 3772 + 611 + 9 + 21 + Max Energy Discharging Hour + 80 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3046 + Max Energy Discharging Hour + 80 + true + + + 3773 + 611 + 9 + 21 + Max Energy Discharging Day + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3047 + Max Energy Discharging Day + 80 + true + + + 3774 + 611 + 9 + 21 + Max Energy Discharging Week + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3048 + Max Energy Discharging Week + 80 + true + + + 3775 + 611 + 9 + 21 + Max Energy Discharging Month + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3049 + Max Energy Discharging Month + 80 + true + + + 3776 + 611 + 9 + 21 + Max Energy Discharging Year + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3050 + Max Energy Discharging Year + 80 + true + + + 3777 + 611 + 9 + 22 + Min Energy Discharging + 80 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3052 + Min Energy Discharging + 80 + true + + + 3778 + 611 + 9 + 22 + Min Energy Discharging Hour + 80 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3053 + Min Energy Discharging Hour + 80 + true + + + 3779 + 611 + 9 + 22 + Min Energy Discharging Day + 3 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3054 + Min Energy Discharging Day + 80 + true + + + 3780 + 611 + 9 + 22 + Min Energy Discharging Week + 3 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3055 + Min Energy Discharging Week + 80 + true + + + 3781 + 611 + 9 + 22 + Min Energy Discharging Month + 3 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3056 + Min Energy Discharging Month + 80 + true + + + 3782 + 611 + 9 + 22 + Min Energy Discharging Year + 3 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3057 + Min Energy Discharging Year + 80 + true + + + 3783 + 611 + 9 + 23 + Max Energy Discharging Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3058 + Max Energy Discharging Penalty + 80 + true + + + 3784 + 611 + 9 + 24 + Min Energy Discharging Penalty + 33 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3059 + Min Energy Discharging Penalty + 80 + true + + + 3785 + 611 + 9 + 25 + Max Energy Charging + 80 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3063 + Max Energy Discharging + 80 + true + + + 3786 + 611 + 9 + 25 + Max Energy Charging Hour + 80 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3064 + Max Energy Discharging Hour + 80 + true + + + 3787 + 611 + 9 + 25 + Max Energy Charging Day + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3065 + Max Energy Discharging Day + 80 + true + + + 3788 + 611 + 9 + 25 + Max Energy Charging Week + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3066 + Max Energy Discharging Week + 80 + true + + + 3789 + 611 + 9 + 25 + Max Energy Charging Month + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3067 + Max Energy Discharging Month + 80 + true + + + 3790 + 611 + 9 + 25 + Max Energy Charging Year + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3068 + Max Energy Discharging Year + 80 + true + + + 3791 + 611 + 9 + 26 + Min Energy Charging + 80 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3069 + Min Energy Discharging + 80 + true + + + 3792 + 611 + 9 + 26 + Min Energy Charging Hour + 80 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3070 + Min Energy Discharging Hour + 80 + true + + + 3793 + 611 + 9 + 26 + Min Energy Charging Day + 3 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3071 + Min Energy Discharging Day + 80 + true + + + 3794 + 611 + 9 + 26 + Min Energy Charging Week + 3 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3072 + Min Energy Discharging Week + 80 + true + + + 3795 + 611 + 9 + 26 + Min Energy Charging Month + 3 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3073 + Min Energy Discharging Month + 80 + true + + + 3796 + 611 + 9 + 26 + Min Energy Charging Year + 3 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3074 + Min Energy Discharging Year + 80 + true + + + 3797 + 611 + 9 + 27 + Max Energy Charging Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3075 + Max Energy Discharging Penalty + 80 + true + + + 3798 + 611 + 9 + 28 + Min Energy Charging Penalty + 33 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3076 + Min Energy Discharging Penalty + 80 + true + + + 3799 + 611 + 3 + 29 + Charge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 3800 + 611 + 3 + 30 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 3801 + 611 + 3 + 31 + Auxiliary Consumption + 79 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + true + false + 1 + 2974 + Axuiliary energy consumption for vehicle + true + + + 3802 + 611 + 3 + 32 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 3803 + 611 + 3 + 33 + VO&M Charge + 90 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 3804 + 611 + 3 + 34 + Fixed Load + 79 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed charging load + true + + + 3805 + 611 + 3 + 35 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3806 + 611 + 3 + 36 + Capacity Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1960 + Degradation in capacity with age in number of cycles + 4 + true + + + 3807 + 611 + 3 + 37 + Charge Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2979 + Degradation in charge efficiency with age in number of cycles + 4 + true + + + 3808 + 611 + 3 + 38 + Discharge Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2980 + Degradation in discharge efficiency with age in number of cycles + 4 + true + + + 3809 + 611 + 3 + 39 + Initial Age + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Age of the vehicle battery in number of cycles at the start of the simulation horizon + 80000 + true + + + 3810 + 611 + 8 + 40 + Purchase Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2451 + Cost of purchasing the vehicle + 8009 + true + + + 3811 + 611 + 8 + 41 + Disposal Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2452 + Cost of disposing of the vehicle + 8 + true + + + 3812 + 611 + 8 + 42 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the vehicle + 8 + true + + + 3813 + 611 + 8 + 43 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3814 + 611 + 8 + 44 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the vehicle (period over which fixed costs are recovered) + 9 + true + + + 3815 + 611 + 8 + 45 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3816 + 611 + 8 + 46 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3817 + 611 + 8 + 47 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3818 + 611 + 8 + 48 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3819 + 611 + 8 + 49 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3820 + 611 + 8 + 50 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3821 + 611 + 8 + 51 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3822 + 611 + 8 + 52 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3823 + 611 + 12 + 53 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3824 + 611 + 12 + 54 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3825 + 611 + 12 + 55 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3826 + 614 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 744 + Time the vehicle is at the charging station + true + + + 3827 + 615 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Fleet share of Vehicle + true + + + 3828 + 616 + 1 + 1 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Proportion of energy provided by the Commodity + true + + + 3829 + 617 + 1 + 1 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 3830 + 617 + 1 + 2 + Distance Coefficient + 81 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2458 + Coefficient of distance travelled by the vehicle + true + + + 3831 + 617 + 1 + 3 + Load Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load drawn by vehicle charging + true + + + 3832 + 617 + 1 + 4 + Generation Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation from vehicle to grid + true + + + 3833 + 617 + 1 + 5 + Energy Coefficient + 80 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1859 + Coefficient of energy stored in the vehicle + true + + + 3834 + 617 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3835 + 617 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3836 + 617 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 3837 + 617 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 3838 + 617 + 8 + 10 + Capacity Built Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built (Discharging) + C + true + + + 3839 + 617 + 8 + 11 + Capacity Retired Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired (Discharging) + C + true + + + 3840 + 617 + 8 + 12 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3841 + 617 + 8 + 13 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3842 + 617 + 8 + 14 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3843 + 618 + 1 + 1 + Distance Coefficient + 81 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2458 + Coefficient of distance travelled by the vehicle + true + + + 3844 + 619 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3845 + 619 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3846 + 619 + 3 + 3 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of chargers + 800001 + true + + + 3847 + 619 + 3 + 4 + Max Charge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2109 + Maximum charge rate + 5 + true + + + 3848 + 619 + 3 + 5 + Deferrable Load + 12 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 2125 + Proportion of charging load that can be deferred + true + + + 3849 + 619 + 3 + 6 + Deferment Period + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2128 + Length of time load is deferred where zero means one interval + true + + + 3850 + 619 + 3 + 7 + Max Discharge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2110 + Maximum discharge rate + 5 + true + + + 3851 + 619 + 3 + 8 + Charge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 3852 + 619 + 3 + 9 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 3853 + 619 + 3 + 10 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge + 2000000000 + true + + + 3854 + 619 + 3 + 11 + Max Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 436 + Maximum charging load across all units + true + + + 3855 + 619 + 3 + 12 + Min Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 486 + Minimum charging load across all units + true + + + 3856 + 619 + 3 + 13 + Fixed Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed charging load across all units + true + + + 3857 + 619 + 3 + 14 + Max Generation + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 431 + Maximum generation across all units + true + + + 3858 + 619 + 3 + 15 + Min Generation + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 483 + Minimum generation across all units + true + + + 3859 + 619 + 3 + 16 + Fixed Generation + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 198 + Fixed generation across all units + true + + + 3860 + 619 + 3 + 17 + Aux Fixed + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 3861 + 619 + 3 + 18 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3862 + 619 + 8 + 19 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 3863 + 619 + 8 + 20 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 3864 + 619 + 8 + 21 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning + 8 + true + + + 3865 + 619 + 8 + 22 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 3866 + 619 + 8 + 23 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3867 + 619 + 8 + 24 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 3868 + 619 + 8 + 25 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3869 + 619 + 8 + 26 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3870 + 619 + 8 + 27 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3871 + 619 + 8 + 28 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3872 + 619 + 8 + 29 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3873 + 619 + 8 + 30 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3874 + 619 + 8 + 31 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3875 + 619 + 8 + 32 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3876 + 619 + 9 + 33 + Max Energy Discharging + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3045 + Max Energy Discharging + 80 + true + + + 3877 + 619 + 9 + 33 + Max Energy Discharging Hour + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3046 + Max Energy Discharging Hour + 80 + true + + + 3878 + 619 + 9 + 33 + Max Energy Discharging Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3047 + Max Energy Discharging Day + 80 + true + + + 3879 + 619 + 9 + 33 + Max Energy Discharging Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3048 + Max Energy Discharging Week + 80 + true + + + 3880 + 619 + 9 + 33 + Max Energy Discharging Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3049 + Max Energy Discharging Month + 80 + true + + + 3881 + 619 + 9 + 33 + Max Energy Discharging Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3050 + Max Energy Discharging Year + 80 + true + + + 3882 + 619 + 9 + 34 + Min Energy Discharging + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3052 + Min Energy Discharging + 80 + true + + + 3883 + 619 + 9 + 34 + Min Energy Discharging Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3053 + Min Energy Discharging Hour + 80 + true + + + 3884 + 619 + 9 + 34 + Min Energy Discharging Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3054 + Min Energy Discharging Day + 80 + true + + + 3885 + 619 + 9 + 34 + Min Energy Discharging Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3055 + Min Energy Discharging Week + 80 + true + + + 3886 + 619 + 9 + 34 + Min Energy Discharging Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3056 + Min Energy Discharging Month + 80 + true + + + 3887 + 619 + 9 + 34 + Min Energy Discharging Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3057 + Min Energy Discharging Year + 80 + true + + + 3888 + 619 + 9 + 35 + Max Energy Discharging Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3058 + Max Energy Discharging Penalty + 80 + true + + + 3889 + 619 + 9 + 36 + Min Energy Discharging Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3059 + Min Energy Discharging Penalty + 80 + true + + + 3890 + 619 + 9 + 37 + Max Energy Charging + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3063 + Max Energy Discharging + 80 + true + + + 3891 + 619 + 9 + 37 + Max Energy Charging Hour + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3064 + Max Energy Discharging Hour + 80 + true + + + 3892 + 619 + 9 + 37 + Max Energy Charging Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3065 + Max Energy Discharging Day + 80 + true + + + 3893 + 619 + 9 + 37 + Max Energy Charging Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3066 + Max Energy Discharging Week + 80 + true + + + 3894 + 619 + 9 + 37 + Max Energy Charging Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3067 + Max Energy Discharging Month + 80 + true + + + 3895 + 619 + 9 + 37 + Max Energy Charging Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3068 + Max Energy Discharging Year + 80 + true + + + 3896 + 619 + 9 + 38 + Min Energy Charging + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3069 + Min Energy Discharging + 80 + true + + + 3897 + 619 + 9 + 38 + Min Energy Charging Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3070 + Min Energy Discharging Hour + 80 + true + + + 3898 + 619 + 9 + 38 + Min Energy Charging Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3071 + Min Energy Discharging Day + 80 + true + + + 3899 + 619 + 9 + 38 + Min Energy Charging Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3072 + Min Energy Discharging Week + 80 + true + + + 3900 + 619 + 9 + 38 + Min Energy Charging Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3073 + Min Energy Discharging Month + 80 + true + + + 3901 + 619 + 9 + 38 + Min Energy Charging Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3074 + Min Energy Discharging Year + 80 + true + + + 3902 + 619 + 9 + 39 + Max Energy Charging Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3075 + Max Energy Discharging Penalty + 80 + true + + + 3903 + 619 + 9 + 40 + Min Energy Charging Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3076 + Min Energy Discharging Penalty + 80 + true + + + 3904 + 619 + 12 + 41 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3905 + 619 + 12 + 42 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3906 + 619 + 12 + 43 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3907 + 625 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Load Coefficient + true + + + 3908 + 625 + 1 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Generation Coefficient + true + + + 3909 + 625 + 8 + 3 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3910 + 625 + 8 + 4 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3911 + 625 + 8 + 5 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 3912 + 625 + 8 + 6 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 3913 + 625 + 8 + 7 + Capacity Built Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built (Max Charge Rate x Units Built) + C + true + + + 3914 + 625 + 8 + 8 + Capacity Retired Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired (Max Charge Rate x Units Retired) + C + true + + + 3915 + 625 + 8 + 9 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3916 + 625 + 8 + 10 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3917 + 625 + 8 + 11 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3918 + 626 + 12 + 1 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3919 + 626 + 12 + 2 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3920 + 626 + 12 + 3 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3921 + 629 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company ownership share of the Fleet + true + + + 3922 + 630 + 2 + 1 + Load Includes Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 353 + Flag if input load includes transmission losses + 200000 + true + + + 3923 + 630 + 3 + 2 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 349 + Own load + load contracts + 100000 + true + + + 3924 + 630 + 3 + 3 + Firm Capacity Incr + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1959 + Firm Capacity not explicitly modeled that should be included in output calculations + C + true + + + 3925 + 630 + 5 + 4 + Strategic + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 766 + Percentage of company generation that acts strategically + 40 + true + + + 3926 + 630 + 5 + 5 + Mark-up Bias + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 409 + Bias given towards high revenue periods in mark-ups (cost recovery algorithm) + 40 + true + + + 3927 + 630 + 5 + 6 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound company net profit risk + 4000000000 + true + + + 3928 + 630 + 5 + 7 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 3929 + 630 + 5 + 8 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 3930 + 630 + 7 + 9 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 3931 + 630 + 7 + 10 + Min Maintenance + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1452 + Generation capacity that must be scheduled on maintenance + 1000000 + true + + + 3932 + 630 + 7 + 11 + Max Maintenance Factor + 12 + 100 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1456 + Maximum generation capacity allowed to be scheduled on maintenance as a proportion of installed capacity + 1000000 + true + + + 3933 + 630 + 7 + 12 + Min Maintenance Factor + 12 + 0 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1457 + Generation capacity that must be scheduled on maintenance as a proportion of installed capacity + 1000000 + true + + + 3934 + 630 + 12 + 13 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3935 + 630 + 12 + 14 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3936 + 630 + 12 + 15 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3937 + 634 + 1 + 1 + Allocation + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3 + Emission rights allocation + 2000 + true + + + 3938 + 634 + 1 + 1 + Allocation Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1581 + Emission rights allocation + 2000 + true + + + 3939 + 634 + 1 + 1 + Allocation Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 4 + Emission rights allocation + 2000 + true + + + 3940 + 634 + 1 + 1 + Allocation Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 6 + Emission rights allocation + 2000 + true + + + 3941 + 634 + 1 + 1 + Allocation Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 5 + Emission rights allocation + 2000 + true + + + 3942 + 634 + 1 + 1 + Allocation Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 7 + Emission rights allocation + 2000 + true + + + 3943 + 636 + 1 + 1 + Load Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of region load the company is responsible for + 100000 + true + + + 3944 + 638 + 1 + 1 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the company + true + + + 3945 + 638 + 1 + 2 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports + true + + + 3946 + 640 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's ownership share of Facility + 40 + true + + + 3947 + 641 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of market trades + 40 + true + + + 3948 + 642 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of company generation + true + + + 3949 + 642 + 3 + 2 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of company committed generation capacity + 1000000004 + true + + + 3950 + 642 + 3 + 3 + Contract Volume Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 110 + Coefficient of company contract volume + 40 + true + + + 3951 + 642 + 3 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 3952 + 642 + 3 + 5 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 3953 + 642 + 5 + 6 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3954 + 642 + 5 + 7 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3955 + 642 + 5 + 8 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3956 + 643 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of company generation + true + + + 3957 + 643 + 3 + 2 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of company committed generation capacity + true + + + 3958 + 643 + 3 + 3 + Contract Volume Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 110 + Coefficient of company contract volume + true + + + 3959 + 643 + 3 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 3960 + 643 + 3 + 5 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 3961 + 643 + 5 + 6 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3962 + 643 + 5 + 7 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3963 + 643 + 5 + 8 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3964 + 644 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of inventory balance + true + + + 3965 + 644 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period inventory + 400000000 + true + + + 3966 + 644 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal inventory trajectory from one simulation phase to the next + 400000000 + true + + + 3967 + 644 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition inventory target penalty function 'a' term + 400000000 + true + + + 3968 + 644 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition inventory target penalty function 'b' term + 400000000 + true + + + 3969 + 644 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition inventory target penalty function 'c' term + 400000000 + true + + + 3970 + 644 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition inventory target penalty function 'x' term + 400000000 + true + + + 3971 + 644 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of inventory bounds when the decomposition implies possible violations + 400000000 + true + + + 3972 + 644 + 2 + 9 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 3973 + 644 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3974 + 644 + 2 + 11 + Build Cost Multiplier + 0 + 0 + In (0,2) + 0;"None";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 3975 + 644 + 3 + 12 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of Commodity 'units' where zero switches the Commodity out of the simulation + 800001 + true + + + 3976 + 644 + 3 + 13 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Price of the Commodity for the given level of Net Consumption + 1 + true + + + 3977 + 644 + 9 + 14 + Max Consumption + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2273 + Maximum consumption per interval + true + + + 3978 + 644 + 9 + 14 + Max Consumption Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2274 + Maximum consumption per hour + true + + + 3979 + 644 + 9 + 14 + Max Consumption Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2275 + Maximum consumption per day + true + + + 3980 + 644 + 9 + 14 + Max Consumption Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2276 + Maximum consumption per week + true + + + 3981 + 644 + 9 + 14 + Max Consumption Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2277 + Maximum consumption per month + true + + + 3982 + 644 + 9 + 14 + Max Consumption Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2278 + Maximum consumption per year + true + + + 3983 + 644 + 9 + 14 + Max Consumption Custom + 86 + 1E+30 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2279 + Maximum consumption over custom timeframe + true + + + 3984 + 644 + 9 + 15 + Max Consumption Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2280 + Penalty for violation of [Max Consumption] constraints + true + + + 3985 + 644 + 9 + 16 + Min Consumption + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2283 + Minimum consumption per interval + true + + + 3986 + 644 + 9 + 16 + Min Consumption Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2284 + Minimum consumption per hour + true + + + 3987 + 644 + 9 + 16 + Min Consumption Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2285 + Minimum consumption per day + true + + + 3988 + 644 + 9 + 16 + Min Consumption Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2286 + Minimum consumption per week + true + + + 3989 + 644 + 9 + 16 + Min Consumption Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2287 + Minimum consumption per month + true + + + 3990 + 644 + 9 + 16 + Min Consumption Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2288 + Minimum consumption per year + true + + + 3991 + 644 + 9 + 16 + Min Consumption Custom + 86 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2289 + Minimum consumption over custom timeframe + true + + + 3992 + 644 + 9 + 17 + Min Consumption Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2290 + Penalty for violation of [Min Consumption] constraints + true + + + 3993 + 644 + 9 + 18 + Max Production + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production per interval + true + + + 3994 + 644 + 9 + 18 + Max Production Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production per hour + true + + + 3995 + 644 + 9 + 18 + Max Production Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production per day + true + + + 3996 + 644 + 9 + 18 + Max Production Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production per week + true + + + 3997 + 644 + 9 + 18 + Max Production Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production per month + true + + + 3998 + 644 + 9 + 18 + Max Production Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production per year + true + + + 3999 + 644 + 9 + 18 + Max Production Custom + 86 + 1E+30 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2281 + Maximum production over custom timeframe + true + + + 4000 + 644 + 9 + 19 + Max Production Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1361 + Penalty for violation of [Max Production] constraints + true + + + 4001 + 644 + 9 + 20 + Min Production + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production per interval + true + + + 4002 + 644 + 9 + 20 + Min Production Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production per hour + true + + + 4003 + 644 + 9 + 20 + Min Production Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production per day + true + + + 4004 + 644 + 9 + 20 + Min Production Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production per week + true + + + 4005 + 644 + 9 + 20 + Min Production Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production per month + true + + + 4006 + 644 + 9 + 20 + Min Production Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production per year + true + + + 4007 + 644 + 9 + 20 + Min Production Custom + 86 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2291 + Minimum production over custom timeframe + true + + + 4008 + 644 + 9 + 21 + Min Production Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2292 + Penalty for violation of [Min Production] constraints + true + + + 4009 + 644 + 10 + 22 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 4010 + 644 + 10 + 23 + Max Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 4011 + 644 + 10 + 24 + Min Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 4012 + 644 + 10 + 25 + Opening Inventory + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1591 + Initial amount of the Commodity in inventory + true + + + 4013 + 644 + 10 + 26 + Delivery + 86 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Amount of the Commodity added to inventory + true + + + 4014 + 644 + 10 + 27 + Injection Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2507 + Proportion of injected commodity reaching storage net of losses + true + + + 4015 + 644 + 10 + 28 + Withdrawal Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2508 + Proportion of commodity withdrawn from storage net of losses + true + + + 4016 + 644 + 10 + 29 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of deliveries of the Commodity to inventory + true + + + 4017 + 644 + 10 + 30 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost of keeping the Commodity in inventory + true + + + 4018 + 644 + 10 + 31 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity + true + + + 4019 + 644 + 10 + 32 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1252 + Cost of adding the Commodity to inventory + true + + + 4020 + 644 + 10 + 33 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Cost of taking the Commodity out of inventory + true + + + 4021 + 644 + 10 + 34 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of the Commodity that can be taken from inventory in any interval + 400000000 + true + + + 4022 + 644 + 10 + 34 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of the Commodity that can be taken from inventory in a hour + 400000000 + true + + + 4023 + 644 + 10 + 34 + Max Withdrawal Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of the Commodity that can be taken from inventory in a day + 400000000 + true + + + 4024 + 644 + 10 + 34 + Max Withdrawal Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of the Commodity that can be taken from inventory in a week + 400000000 + true + + + 4025 + 644 + 10 + 34 + Max Withdrawal Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of the Commodity that can be taken from inventory in a month + 400000000 + true + + + 4026 + 644 + 10 + 34 + Max Withdrawal Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of the Commodity that can be taken from inventory in a year + 400000000 + true + + + 4027 + 644 + 10 + 35 + Max Injection + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of the Commodity that can be put into inventory in any interval + 400000000 + true + + + 4028 + 644 + 10 + 35 + Max Injection Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of the Commodity that can be put into inventory in any hour + 400000000 + true + + + 4029 + 644 + 10 + 35 + Max Injection Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of the Commodity that can be put into inventory in any day + 400000000 + true + + + 4030 + 644 + 10 + 35 + Max Injection Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of the Commodity that can be put into inventory in any week + 400000000 + true + + + 4031 + 644 + 10 + 35 + Max Injection Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of the Commodity that can be put into inventory in any month + 400000000 + true + + + 4032 + 644 + 10 + 35 + Max Injection Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of the Commodity that can be put into inventory in any year + 400000000 + true + + + 4033 + 644 + 10 + 36 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1258 + Amount of the Commodity that must be taken from inventory each interval + 400000000 + true + + + 4034 + 644 + 10 + 36 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of the Commodity that must be taken from inventory each hour + 400000000 + true + + + 4035 + 644 + 10 + 36 + Min Withdrawal Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of the Commodity that must be taken from inventory each day + 400000000 + true + + + 4036 + 644 + 10 + 36 + Min Withdrawal Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of the Commodity that must be taken from inventory each week + 400000000 + true + + + 4037 + 644 + 10 + 36 + Min Withdrawal Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of the Commodity that must be taken from inventory each month + 400000000 + true + + + 4038 + 644 + 10 + 36 + Min Withdrawal Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of the Commodity that must be taken from inventory each year + 400000000 + true + + + 4039 + 644 + 10 + 37 + Min Injection + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1263 + Amount of the Commodity that must be added to inventory in any interval + 400000000 + true + + + 4040 + 644 + 10 + 37 + Min Injection Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of the Commodity that must be added to inventory in any hour + 400000000 + true + + + 4041 + 644 + 10 + 37 + Min Injection Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of the Commodity that must be added to inventory in any day + 400000000 + true + + + 4042 + 644 + 10 + 37 + Min Injection Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of the Commodity that must be added to inventory in any week + 400000000 + true + + + 4043 + 644 + 10 + 37 + Min Injection Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of the Commodity that must be added to inventory in any month + 400000000 + true + + + 4044 + 644 + 10 + 37 + Min Injection Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of the Commodity that must be added to inventory in any year + 400000000 + true + + + 4045 + 644 + 10 + 38 + Max Inventory Change + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2333 + Maximum rate of change in inventory in any interval + 400000000 + true + + + 4046 + 644 + 10 + 38 + Max Inventory Change Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2334 + Maximum rate of change in inventory in any hour + 400000000 + true + + + 4047 + 644 + 10 + 38 + Max Inventory Change Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2335 + Maximum rate of change in inventory in any day + 400000000 + true + + + 4048 + 644 + 10 + 38 + Max Inventory Change Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2336 + Maximum rate of change in inventory in any week + 400000000 + true + + + 4049 + 644 + 10 + 38 + Max Inventory Change Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2337 + Maximum rate of change in inventory in any month + 400000000 + true + + + 4050 + 644 + 10 + 38 + Max Inventory Change Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2338 + Maximum rate of change in inventory in any year + 400000000 + true + + + 4051 + 644 + 10 + 39 + Max Inventory Change Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2339 + Penalty for violating the [Max Ramp] constraints + 400000000 + true + + + 4052 + 644 + 10 + 40 + Target + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Target level of inventory at the end of the interval + 400000000 + true + + + 4053 + 644 + 10 + 40 + Target Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + Target level of inventory at the end of the hour + 400000000 + true + + + 4054 + 644 + 10 + 40 + Target Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + Target level of inventory at the end of the day + 400000000 + true + + + 4055 + 644 + 10 + 40 + Target Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + Target level of inventory at the end of the week + 400000000 + true + + + 4056 + 644 + 10 + 40 + Target Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + Target level of inventory at the end of the month + 400000000 + true + + + 4057 + 644 + 10 + 40 + Target Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + Target level of inventory at the end of the year + 400000000 + true + + + 4058 + 644 + 10 + 40 + Target Custom + 86 + 0 + >=0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2542 + Target level of inventory at the end of the horizon + 400000000 + true + + + 4059 + 644 + 10 + 41 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target inventory + 400000000 + true + + + 4060 + 644 + 5 + 42 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 4061 + 644 + 5 + 43 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 4062 + 644 + 5 + 44 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 4063 + 644 + 8 + 45 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 4064 + 644 + 8 + 46 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 4065 + 644 + 8 + 47 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 4066 + 644 + 8 + 48 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 4067 + 644 + 8 + 49 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 4068 + 644 + 8 + 50 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 4069 + 644 + 8 + 51 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 4070 + 644 + 8 + 52 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4071 + 644 + 8 + 53 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4072 + 644 + 8 + 54 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4073 + 644 + 8 + 55 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4074 + 644 + 8 + 56 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4075 + 644 + 8 + 57 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4076 + 644 + 8 + 58 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4077 + 644 + 8 + 59 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4078 + 644 + 8 + 60 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4079 + 644 + 11 + 61 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 4080 + 644 + 11 + 62 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 4081 + 644 + 12 + 63 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4082 + 644 + 12 + 64 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4083 + 644 + 12 + 65 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4084 + 648 + 3 + 1 + Consumption Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption in the Constraint + true + + + 4085 + 648 + 3 + 2 + Production Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production in the Constraint + true + + + 4086 + 648 + 10 + 3 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 4087 + 648 + 10 + 4 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 4088 + 648 + 10 + 5 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 4089 + 648 + 10 + 6 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 4090 + 648 + 10 + 7 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 4091 + 648 + 5 + 8 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4092 + 648 + 5 + 9 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4093 + 648 + 5 + 10 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4094 + 648 + 8 + 11 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4095 + 648 + 8 + 12 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4096 + 648 + 8 + 13 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4097 + 648 + 8 + 14 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4098 + 648 + 8 + 15 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4099 + 648 + 8 + 16 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4100 + 648 + 8 + 17 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4101 + 648 + 8 + 18 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4102 + 648 + 8 + 19 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4103 + 649 + 3 + 1 + Consumption Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption in the Objective + true + + + 4104 + 649 + 3 + 2 + Production Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production + true + + + 4105 + 649 + 10 + 3 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 4106 + 649 + 10 + 4 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 4107 + 649 + 10 + 5 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 4108 + 649 + 10 + 6 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 4109 + 649 + 10 + 7 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 4110 + 649 + 5 + 8 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4111 + 649 + 5 + 9 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4112 + 649 + 5 + 10 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4113 + 649 + 8 + 11 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4114 + 649 + 8 + 12 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4115 + 649 + 8 + 13 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4116 + 649 + 8 + 14 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4117 + 649 + 8 + 15 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4118 + 649 + 8 + 16 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4119 + 649 + 8 + 17 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4120 + 649 + 8 + 18 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4121 + 649 + 8 + 19 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4122 + 650 + 1 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Process is modeled + 800001 + true + + + 4123 + 650 + 1 + 2 + Capacity + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of production measured in units of the primary output + true + + + 4124 + 650 + 1 + 3 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Ratio of primary output production to primary input consumption + true + + + 4125 + 650 + 1 + 4 + Processing Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1738 + Unit cost of production charged per unit of the primary output + true + + + 4126 + 650 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4127 + 650 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4128 + 650 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4129 + 653 + 1 + 1 + Conversion Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2366 + Primary Input units per unit of Primary Output + true + + + 4130 + 654 + 1 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient in production definition of the number of units operating at the Facility + true + + + 4131 + 654 + 1 + 2 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient in production definition of the capacity of operating units at the Facility + true + + + 4132 + 654 + 1 + 3 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient in production definition of the available capacity at the Facility + true + + + 4133 + 654 + 1 + 4 + Operating Minimum Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2347 + Coefficient in production definition of the minimum operating level at the Facility + true + + + 4134 + 654 + 1 + 5 + Unit Maximum + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2348 + Maximum production as proportion of primary output + true + + + 4135 + 655 + 1 + 1 + Denominator + 0 + 0 + In (0,1) + 0;"Input";1;"Output" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2464 + The denominator for the Ratio property where "Input" refers to the Primary Input and "Output" refers to the Primary Output + true + + + 4136 + 655 + 1 + 2 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Secondary input consumption as a proportion of primary input consumption + true + + + 4137 + 656 + 1 + 1 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Secondary output production as a proportion of primary output production + true + + + 4138 + 656 + 1 + 2 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient in production definition of the number of units operating at the Facility + true + + + 4139 + 656 + 1 + 3 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient in production definition of the capacity of operating units at the Facility + true + + + 4140 + 656 + 1 + 4 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient in production definition of the available capacity at the Facility + true + + + 4141 + 656 + 1 + 5 + Operating Minimum Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2347 + Coefficient in production definition of the minimum operating level at the Facility + true + + + 4142 + 656 + 1 + 6 + Unit Maximum + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2348 + Maximum production as proportion of primary output + true + + + 4143 + 657 + 1 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Process production in the Constraint + true + + + 4144 + 657 + 1 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Process production in the Constraint + true + + + 4145 + 658 + 1 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Process consumption + true + + + 4146 + 658 + 1 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Process production + true + + + 4147 + 659 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the facility for the generation of outages + 101000000 + true + + + 4148 + 659 + 2 + 2 + Dispatchable + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2895 + A dispatchable facility operates anywhere within its technical limits whereas a non-dispatchable facility operates at its maximum available rating at all times + 800000 + true + + + 4149 + 659 + 2 + 3 + Min Operating Level Global + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2502 + If [Min Operating Level/Factor] applies across all units at the Facility or unit-by-unit + true + + + 4150 + 659 + 2 + 4 + Fixed Production Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2461 + Method of interpreting zero values of the [Fixed Production] property. + 80 + true + + + 4151 + 659 + 2 + 5 + Fixed Production Global + 0 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2466 + If [Fixed Production] applies across all units at the Facility or unit-by-unit + true + + + 4152 + 659 + 2 + 6 + Max Efficiency Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2443 + Maximum number of tranches in the efficiency piecewise linear approximation + 1000 + true + + + 4153 + 659 + 2 + 7 + Formulate Non-convex + 0 + 2 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order + 1000 + true + + + 4154 + 659 + 2 + 8 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 4155 + 659 + 2 + 9 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4156 + 659 + 2 + 10 + Build Cost Multiplier + 0 + 0 + In (0,1) + 0;"None";1;"Production Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 4157 + 659 + 3 + 11 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of existing units + 800001 + true + + + 4158 + 659 + 3 + 12 + Max Operating Level + 94 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 2293 + Maximum unit operating capacity + 5 + true + + + 4159 + 659 + 3 + 13 + Min Operating Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2295 + Minimum unit level required when operating as a proportion of the maximum + 1000000080 + true + + + 4160 + 659 + 3 + 14 + Min Operating Level + 94 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2470 + Minimum unit production level required when operating + 1000000080 + true + + + 4161 + 659 + 3 + 15 + Consumption Base + 93 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1428 + Primary Process consumption at notional zero production + 1000 + true + + + 4162 + 659 + 3 + 16 + Consumption Incr + 123 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1429 + Primary Process consumption function first-order term + 1000 + true + + + 4163 + 659 + 3 + 17 + Consumption Incr2 + 124 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2837 + Primary Process consumption function second-order term + 1000 + true + + + 4164 + 659 + 3 + 18 + Consumption Incr3 + 125 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2838 + Primary Process consumption function third-order term + 1000 + true + + + 4165 + 659 + 3 + 19 + Efficiency Point + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1340 + Operating level associated with [Efficiency Incr] + 1000 + true + + + 4166 + 659 + 3 + 20 + Efficiency Incr + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Primary Process marginal efficiency at the given [Efficiency Point] + 1000 + true + + + 4167 + 659 + 3 + 21 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1209 + Primary Process average efficiency at the given [Efficiency Point] + 1000 + true + + + 4168 + 659 + 3 + 22 + VO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 4169 + 659 + 3 + 23 + FO&M Charge + 108 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 4170 + 659 + 3 + 24 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running a unit when operating + 20000000 + true + + + 4171 + 659 + 3 + 25 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 4172 + 659 + 3 + 26 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 4173 + 659 + 3 + 27 + Start Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1749 + Flag if start is allowed in the given time period + 1000000080 + true + + + 4174 + 659 + 3 + 28 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 4175 + 659 + 3 + 29 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 4176 + 659 + 3 + 30 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 4177 + 659 + 3 + 31 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 4178 + 659 + 3 + 32 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 4179 + 659 + 3 + 33 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 4180 + 659 + 3 + 34 + Warm Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2496 + Number of hours required to warm up the Facility + 1000000080 + true + + + 4181 + 659 + 3 + 35 + Warm Up Operating Level + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2498 + Unit operating level when in the warm up period + 1000000080 + true + + + 4182 + 659 + 3 + 36 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 4183 + 659 + 3 + 37 + Fixed Production + 0 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2304 + Fixed (exact) production + 80 + true + + + 4184 + 659 + 3 + 38 + Fixed Production Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2462 + Penalty for violation of [Fixed Production] + 80 + true + + + 4185 + 659 + 3 + 39 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Fixed (exact) number of units operating + 1000000080 + true + + + 4186 + 659 + 3 + 40 + Ramp Up Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 4187 + 659 + 3 + 41 + Ramp Down Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 4188 + 659 + 3 + 42 + Max Ramp Up + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 4189 + 659 + 3 + 43 + Max Ramp Up Factor + 12 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2468 + Maximum ramp up rate expressed as a proportion of the maximum operating level + 80 + true + + + 4190 + 659 + 3 + 44 + Max Ramp Up Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 660 + Penalty for violating [Max Ramp Up] constraint + 80 + true + + + 4191 + 659 + 3 + 45 + Max Ramp Down + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 4192 + 659 + 3 + 46 + Max Ramp Down Factor + 12 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2469 + Maximum ramp down rate expressed as a proportion of the maximum operating level + 80 + true + + + 4193 + 659 + 3 + 47 + Max Ramp Down Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 656 + Penalty for violating [Max Ramp Down] constraint + 80 + true + + + 4194 + 659 + 3 + 48 + Rough Running Point + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 709 + Start point of rough running range + 80 + true + + + 4195 + 659 + 3 + 49 + Rough Running Range + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 710 + Length of rough running range (must be paired with Rough Running Point) + 80 + true + + + 4196 + 659 + 3 + 50 + Initial Production + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2460 + Production at time zero + 80000 + true + + + 4197 + 659 + 3 + 51 + Initial Units Operating + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2300 + Number of units operating at time zero + 1000080000 + true + + + 4198 + 659 + 3 + 52 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the unit has been up for at time zero + 1000080000 + true + + + 4199 + 659 + 3 + 53 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the unit has been down for at time zero + 1000080000 + true + + + 4200 + 659 + 9 + 54 + Max Production + 94 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production + 80 + true + + + 4201 + 659 + 9 + 54 + Max Production Hour + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production in hour + 80 + true + + + 4202 + 659 + 9 + 54 + Max Production Day + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production in day + 80 + true + + + 4203 + 659 + 9 + 54 + Max Production Week + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production in week + 80 + true + + + 4204 + 659 + 9 + 54 + Max Production Month + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production in month + 80 + true + + + 4205 + 659 + 9 + 54 + Max Production Year + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production in year + 80 + true + + + 4206 + 659 + 9 + 55 + Min Production + 94 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production + 80 + true + + + 4207 + 659 + 9 + 55 + Min Production Hour + 94 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production in hour + 80 + true + + + 4208 + 659 + 9 + 55 + Min Production Day + 94 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production in day + 80 + true + + + 4209 + 659 + 9 + 55 + Min Production Week + 94 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production in week + 80 + true + + + 4210 + 659 + 9 + 55 + Min Production Month + 94 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production in month + 80 + true + + + 4211 + 659 + 9 + 55 + Min Production Year + 94 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production in year + 80 + true + + + 4212 + 659 + 9 + 56 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor in the interval + 80 + true + + + 4213 + 659 + 9 + 56 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 4214 + 659 + 9 + 56 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 4215 + 659 + 9 + 56 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 4216 + 659 + 9 + 56 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 4217 + 659 + 9 + 56 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 4218 + 659 + 9 + 57 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor in the interval + 80 + true + + + 4219 + 659 + 9 + 57 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 4220 + 659 + 9 + 57 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 4221 + 659 + 9 + 57 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 4222 + 659 + 9 + 57 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 4223 + 659 + 9 + 57 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 4224 + 659 + 9 + 58 + Max Production Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1361 + Penalty applied to violations of [Max Production] and [Max Capacity Factor] constraints + 80 + true + + + 4225 + 659 + 9 + 59 + Min Production Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2292 + Penalty applied to violations of [Min Production] and [Min Capacity Factor] constraints + 80 + true + + + 4226 + 659 + 9 + 60 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 4227 + 659 + 9 + 60 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 4228 + 659 + 9 + 60 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 4229 + 659 + 9 + 60 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 4230 + 659 + 9 + 60 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 4231 + 659 + 9 + 60 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 4232 + 659 + 9 + 61 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints + 1080000080 + true + + + 4233 + 659 + 5 + 62 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 4234 + 659 + 5 + 63 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 4235 + 659 + 5 + 64 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 4236 + 659 + 7 + 65 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 4237 + 659 + 7 + 66 + Forced Outage + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 4238 + 659 + 7 + 67 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 4239 + 659 + 7 + 68 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 4240 + 659 + 7 + 69 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 4241 + 659 + 7 + 70 + Maintenance + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 392 + Capacity lost to maintenance + 1000000 + false + + + 4242 + 659 + 7 + 71 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 4243 + 659 + 7 + 72 + Outage Operating Level + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2301 + Unit rating during outage + 1000000 + true + + + 4244 + 659 + 7 + 73 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 4245 + 659 + 7 + 74 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 4246 + 659 + 7 + 75 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 4247 + 659 + 7 + 76 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 4248 + 659 + 7 + 77 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 4249 + 659 + 8 + 78 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 4250 + 659 + 8 + 79 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 4251 + 659 + 8 + 80 + One-time Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1958 + One-time cost associated with the project + 8 + true + + + 4252 + 659 + 8 + 81 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 4253 + 659 + 8 + 82 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 4254 + 659 + 8 + 83 + Commission Date + 0 + 1 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the facility was commissioned for use with [Technical Life] + 8 + true + + + 4255 + 659 + 8 + 84 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 4256 + 659 + 8 + 85 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 4257 + 659 + 8 + 86 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 4258 + 659 + 8 + 87 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 4259 + 659 + 8 + 88 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4260 + 659 + 8 + 89 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4261 + 659 + 8 + 90 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4262 + 659 + 8 + 91 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4263 + 659 + 8 + 92 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4264 + 659 + 8 + 93 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4265 + 659 + 8 + 94 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4266 + 659 + 8 + 95 + Build Set Size + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1453 + Expansion must occur in sets of this many units where zero indicates any set size + 88 + true + + + 4267 + 659 + 8 + 96 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4268 + 659 + 8 + 97 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4269 + 659 + 8 + 98 + Expansion Economy Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 2959 + Cost of building a unit at economy of scale (band) + 8008 + true + + + 4270 + 659 + 8 + 99 + Expansion Economy Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 999 + 2960 + Minimum number of units required for the expansion economy (band) + 88 + true + + + 4271 + 659 + 11 + 100 + Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 968 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 4272 + 659 + 11 + 101 + Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 969 + Window of time over which to enforce unit commitment non-anticipativity constraints + 1100000000 + true + + + 4273 + 659 + 11 + 102 + Production Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2302 + Price for violating production non-anticipativity constraints + 100000000 + true + + + 4274 + 659 + 11 + 103 + Production Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2303 + Window of time over which to enforce production non-anticipativity constraints + 100000000 + true + + + 4275 + 659 + 11 + 104 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 4276 + 659 + 11 + 105 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 4277 + 659 + 12 + 106 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4278 + 659 + 12 + 107 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4279 + 659 + 12 + 108 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4280 + 670 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 4281 + 670 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Consumption for each unit of production + true + + + 4282 + 670 + 3 + 3 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Consumption for each unit operating + 1000000000 + true + + + 4283 + 670 + 6 + 4 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Consumption for each installed unit + 4 + true + + + 4284 + 671 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Facility + true + + + 4285 + 672 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption in the Constraint + true + + + 4286 + 672 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production in the Constraint + true + + + 4287 + 672 + 3 + 3 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor + true + + + 4288 + 672 + 3 + 4 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + 1000000000 + true + + + 4289 + 672 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 4290 + 672 + 3 + 6 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + 80000000 + true + + + 4291 + 672 + 3 + 7 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 4292 + 672 + 3 + 8 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the unit has been off + 1000000000 + true + + + 4293 + 672 + 3 + 9 + Ramp Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 4294 + 672 + 3 + 10 + Ramp Up Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 4295 + 672 + 3 + 11 + Ramp Down Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 4296 + 672 + 3 + 12 + Ramp Up Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 4297 + 672 + 3 + 13 + Ramp Down Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 4298 + 672 + 5 + 14 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4299 + 672 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4300 + 672 + 5 + 16 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4301 + 672 + 6 + 17 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 4302 + 672 + 6 + 18 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 4303 + 672 + 6 + 19 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 4304 + 672 + 6 + 20 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient of capacity of operating units + 1000000004 + true + + + 4305 + 672 + 7 + 21 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 4306 + 672 + 7 + 22 + Maintenance Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 4307 + 672 + 8 + 23 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4308 + 672 + 8 + 24 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4309 + 672 + 8 + 25 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4310 + 672 + 8 + 26 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4311 + 672 + 8 + 27 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4312 + 672 + 8 + 28 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4313 + 672 + 8 + 29 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4314 + 672 + 8 + 30 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4315 + 672 + 8 + 31 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4316 + 673 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption in the Objective + true + + + 4317 + 673 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production + true + + + 4318 + 673 + 3 + 3 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor + true + + + 4319 + 673 + 3 + 4 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + 1000000000 + true + + + 4320 + 673 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 4321 + 673 + 3 + 6 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + 80000000 + true + + + 4322 + 673 + 3 + 7 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 4323 + 673 + 3 + 8 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the unit has been off + 1000000000 + true + + + 4324 + 673 + 3 + 9 + Ramp Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 4325 + 673 + 3 + 10 + Ramp Up Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 4326 + 673 + 3 + 11 + Ramp Down Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 4327 + 673 + 3 + 12 + Ramp Up Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 4328 + 673 + 3 + 13 + Ramp Down Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 4329 + 673 + 5 + 14 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4330 + 673 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4331 + 673 + 5 + 16 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4332 + 673 + 6 + 17 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 4333 + 673 + 6 + 18 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 4334 + 673 + 6 + 19 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 4335 + 673 + 6 + 20 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient of capacity of operating units + 1000000004 + true + + + 4336 + 673 + 7 + 21 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 4337 + 673 + 7 + 22 + Maintenance Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 4338 + 673 + 8 + 23 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4339 + 673 + 8 + 24 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4340 + 673 + 8 + 25 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4341 + 673 + 8 + 26 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4342 + 673 + 8 + 27 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4343 + 673 + 8 + 28 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4344 + 673 + 8 + 29 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4345 + 673 + 8 + 30 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4346 + 673 + 8 + 31 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4347 + 674 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption + true + + + 4348 + 674 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production + true + + + 4349 + 674 + 3 + 3 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor + true + + + 4350 + 674 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient of the number of units operating + true + + + 4351 + 674 + 3 + 5 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient of the number of unit started + true + + + 4352 + 674 + 3 + 6 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient of number of units shutdown + true + + + 4353 + 674 + 3 + 7 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + true + + + 4354 + 674 + 6 + 8 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 4355 + 674 + 6 + 9 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 4356 + 674 + 7 + 10 + Outage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2563 + Coefficient of capacity on outage + 4 + true + + + 4357 + 674 + 7 + 11 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 4 + true + + + 4358 + 674 + 8 + 12 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 4359 + 674 + 8 + 13 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 4360 + 674 + 8 + 14 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 4361 + 674 + 8 + 15 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 4362 + 674 + 8 + 16 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 4363 + 674 + 8 + 17 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 4364 + 674 + 8 + 18 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 4365 + 674 + 8 + 19 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 4366 + 675 + 2 + 1 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 335 + Flag if the maintenance is enabled + 800000 + true + + + 4367 + 675 + 6 + 2 + Duration + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 1476 + Duration of the maintenance event. + 4 + true + + + 4368 + 675 + 6 + 3 + Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + true + false + 1 + 1687 + Window of time over which the maintenance is allowed. + 80 + true + + + 4369 + 675 + 6 + 4 + Start Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1749 + Flag if the maintenance event is allowed to start in the period. + 80 + true + + + 4370 + 675 + 6 + 5 + End Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1750 + Flag if the maintenance event is allowed to end in the period. + 80 + true + + + 4371 + 675 + 6 + 6 + Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 117 + Cost of the maintenance event. + 2000000000 + true + + + 4372 + 675 + 6 + 7 + Crew + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1688 + Maintenance event crew requirements. + 2000000000 + true + + + 4373 + 675 + 6 + 8 + Equipment + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1689 + Maintenance event equipment requirements. + 2000000000 + true + + + 4374 + 675 + 6 + 9 + Lead Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1751 + Minimum number of hours lead time between the start of this event and the end of any Prerequisites. + 80 + true + + + 4375 + 675 + 6 + 10 + Mutually Exclusive + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 998 + If this maintenance event must occur independently of others. + 80 + false + + + 4376 + 675 + 6 + 11 + Penalty Cost + 14 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 603 + Cost of not scheduling this maintenance event. + 2000000000 + true + + + 4377 + 675 + 6 + 12 + Min Occurrence + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1696 + Number of times this event must occurs in the Horizon. + 80 + true + + + 4378 + 675 + 6 + 12 + Min Occurrence Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1697 + Number of times this event must occur each hour. + 80 + true + + + 4379 + 675 + 6 + 12 + Min Occurrence Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1698 + Number of times this event must occur each day. + 80 + true + + + 4380 + 675 + 6 + 12 + Min Occurrence Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1699 + Number of times this event must occur each week. + 80 + true + + + 4381 + 675 + 6 + 12 + Min Occurrence Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1700 + Number of times this event must occur each month. + 80 + true + + + 4382 + 675 + 6 + 12 + Min Occurrence Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1701 + Number of times this event must occur each year. + 80 + true + + + 4383 + 675 + 6 + 13 + Max Occurrence + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3119 + Maximum number of times this event can occur in the Horizon. + 80 + true + + + 4384 + 675 + 6 + 13 + Max Occurrence Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 3120 + Maximum number of times this event can occur each hour. + 80 + true + + + 4385 + 675 + 6 + 13 + Max Occurrence Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 3121 + Maximum number of times this event can occur each day. + 80 + true + + + 4386 + 675 + 6 + 13 + Max Occurrence Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 3122 + Maximum number of times this event can occur each week. + 80 + true + + + 4387 + 675 + 6 + 13 + Max Occurrence Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 3123 + Maximum number of times this event can occur each month. + 80 + true + + + 4388 + 675 + 6 + 13 + Max Occurrence Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 3124 + Maximum number of times this event can occur each year. + 80 + true + + + 4389 + 675 + 6 + 14 + Start Commitment Period + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3143 + Time between maintenance start decisions (on/off) + 4 + true + + + 4390 + 675 + 6 + 15 + Max Operating Hour Limit + 6 + 1000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3131 + Maximum number of cumulative operating hours between maintenance events. + 4 + true + + + 4391 + 675 + 6 + 16 + Min Operating Hour Limit + 6 + 1000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3147 + Minimum number of cumulative operating hours between maintenance events. + 4 + true + + + 4392 + 675 + 6 + 17 + Initial Operating Hours + 6 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1820 + Initial number of cumulative operating hours since the last maintenance occurrence. + 4 + true + + + 4393 + 675 + 6 + 18 + End Max Operating Hours + 6 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3132 + Maximum number of cumulative operating hours since the last maintenance occurrence at end of simulation. + 4 + true + + + 4394 + 675 + 6 + 19 + Max Starts Limit + 0 + 300 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3133 + Maximum number of cumulative starts between maintenance events. + 4 + true + + + 4395 + 675 + 6 + 20 + Min Starts Limit + 0 + 300 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3148 + Minimum number of cumulative starts between maintenance events. + 4 + true + + + 4396 + 675 + 6 + 21 + Initial Starts + 0 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3134 + Initial number of cumulative starts since the last maintenance occurrence. + 4 + true + + + 4397 + 675 + 6 + 22 + End Max Starts + 0 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3135 + Maximum number of cumulative starts since the last maintenance occurrence at end of simulation. + 4 + true + + + 4398 + 675 + 6 + 23 + Max Time Limit + 6 + 1000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3136 + Maximum time between maintenance events. + 4 + true + + + 4399 + 675 + 6 + 24 + Min Time Limit + 6 + 1000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3149 + Minimum time between maintenance events. + 4 + true + + + 4400 + 675 + 6 + 25 + Initial Time + 6 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3137 + Initial time since the last maintenance occurrence. + 4 + true + + + 4401 + 675 + 6 + 26 + End Max Time + 6 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3138 + Maximum time since the last maintenance occurrence at end of simulation. + 4 + true + + + 4402 + 675 + 11 + 27 + Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 4403 + 675 + 12 + 28 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4404 + 675 + 12 + 29 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4405 + 675 + 12 + 30 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4406 + 679 + 1 + 1 + Hours Active Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1691 + Coefficient of number of hours the maintenance is active. + true + + + 4407 + 679 + 1 + 2 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1692 + Coefficient of maintenance cost incurred. + true + + + 4408 + 679 + 1 + 3 + Crew Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1693 + Coefficient of maintenance event crew usage. + true + + + 4409 + 679 + 1 + 4 + Equipment Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1694 + Coefficient of maintenance event equipment usage. + true + + + 4410 + 679 + 1 + 5 + Start Hour Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1800 + Coefficient of the hour in the simulation the maintenance event started + false + + + 4411 + 679 + 1 + 6 + Start Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1839 + Coefficient on the number of maintenances started + true + + + 4412 + 680 + 1 + 1 + Hours Active Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1691 + Coefficient of number of hours the maintenance is active + true + + + 4413 + 680 + 1 + 2 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1692 + Coefficient of maintenance cost incurred + true + + + 4414 + 680 + 1 + 3 + Crew Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1693 + Coefficient of maintenance event crew usage + true + + + 4415 + 680 + 1 + 4 + Equipment Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1694 + Coefficient of maintenance event equipment usage + true + + + 4416 + 680 + 1 + 5 + Start Hour Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1800 + Coefficient of the hour in the simulation the maintenance event started + true + + + 4417 + 680 + 1 + 6 + Start Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1839 + Coefficient on the number of maintenances started + true + + + 4418 + 681 + 3 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Network is in service + 800000 + true + + + 4419 + 681 + 12 + 2 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4420 + 681 + 12 + 3 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4421 + 681 + 12 + 4 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4422 + 690 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 4423 + 690 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4424 + 690 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Node is in service + 800000 + true + + + 4425 + 690 + 3 + 4 + Flow Charge + 96 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1268 + Unit cost of flowing the Commodity through the Flow Node + true + + + 4426 + 690 + 3 + 5 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 4427 + 690 + 9 + 6 + Max Flow + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow through the Flow Node each interval + 5 + true + + + 4428 + 690 + 9 + 6 + Max Flow Hour + 94 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1584 + Maximum flow through the Flow Node each hour + 4 + true + + + 4429 + 690 + 9 + 6 + Max Flow Day + 94 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow through the Flow Node each day + 4 + true + + + 4430 + 690 + 9 + 6 + Max Flow Week + 94 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1586 + Maximum flow through the Flow Node each week + 4 + true + + + 4431 + 690 + 9 + 6 + Max Flow Month + 94 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1587 + Maximum flow through the Flow Node each month + 4 + true + + + 4432 + 690 + 9 + 6 + Max Flow Year + 94 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1588 + Maximum flow through the Flow Node each year + 4 + true + + + 4433 + 690 + 9 + 7 + Min Flow + 94 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 481 + Minimum flow through the Flow Node each interval + 5 + true + + + 4434 + 690 + 9 + 7 + Min Flow Hour + 94 + -1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 2355 + Minimum flow through the Flow Node each hour + 4 + true + + + 4435 + 690 + 9 + 7 + Min Flow Day + 94 + -1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum flow through the Flow Node each day + 4 + true + + + 4436 + 690 + 9 + 7 + Min Flow Week + 94 + -1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 2357 + Minimum flow through the Flow Node each week + 4 + true + + + 4437 + 690 + 9 + 7 + Min Flow Month + 94 + -1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 2358 + Minimum flow through the Flow Node each month + 4 + true + + + 4438 + 690 + 9 + 7 + Min Flow Year + 94 + -1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 2359 + Minimum flow through the Flow Node each year + 4 + true + + + 4439 + 690 + 8 + 8 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Flow Node + 8009 + true + + + 4440 + 690 + 8 + 9 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Flow Node + 88 + true + + + 4441 + 690 + 8 + 10 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 4442 + 690 + 8 + 11 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Flow Node project, for expansion planning. + 8 + true + + + 4443 + 690 + 8 + 12 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Flow Node + 8 + true + + + 4444 + 690 + 8 + 13 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 4445 + 690 + 8 + 14 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Flow Node (period over which fixed costs are recovered). + 8 + true + + + 4446 + 690 + 8 + 15 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 4447 + 690 + 8 + 16 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4448 + 690 + 8 + 17 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 4449 + 690 + 8 + 18 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4450 + 690 + 8 + 19 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4451 + 690 + 8 + 20 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4452 + 690 + 8 + 21 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4453 + 690 + 8 + 22 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4454 + 690 + 8 + 23 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4455 + 690 + 8 + 24 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4456 + 690 + 12 + 25 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4457 + 690 + 12 + 26 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4458 + 690 + 12 + 27 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4459 + 693 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Flow Node + true + + + 4460 + 695 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Node flow + true + + + 4461 + 695 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption at the Flow Node in the Constraint + true + + + 4462 + 695 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production at the Flow Node in the Constraint + true + + + 4463 + 695 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4464 + 695 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4465 + 695 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4466 + 695 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4467 + 695 + 8 + 8 + Capacity Built Coefficient + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4468 + 695 + 8 + 9 + Capacity Retired Coefficient + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4469 + 695 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4470 + 695 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 4471 + 695 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 4472 + 696 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Node flow + true + + + 4473 + 696 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption at the Flow Node + true + + + 4474 + 696 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production at the Flow Node + true + + + 4475 + 696 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 4476 + 696 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 4477 + 696 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 4478 + 696 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 4479 + 697 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the flow path for the generation of outages + 101000000 + true + + + 4480 + 697 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 4481 + 697 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 4482 + 697 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4483 + 697 + 2 + 5 + Traversal Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 801 + Time taken for flows to traverse the Flow Path + true + + + 4484 + 697 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Path is in service + 800000 + true + + + 4485 + 697 + 3 + 7 + Flow Charge + 96 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1268 + Unit cost of flowing the Commodity over the Flow Path + 2000000000 + true + + + 4486 + 697 + 3 + 8 + Bundle Size + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2384 + Size of bundles flowed on the Flow Path + true + + + 4487 + 697 + 3 + 9 + Min Operating Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2295 + Minimum operating level when operating + true + + + 4488 + 697 + 3 + 10 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1209 + Proportion of flow received net of any losses + true + + + 4489 + 697 + 3 + 11 + Initial Flow + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1174 + Initial flow with optional delay time + true + + + 4490 + 697 + 3 + 12 + Initial Flow Delay + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2739 + Delay on the Initial Flow in this band + true + + + 4491 + 697 + 3 + 13 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 4492 + 697 + 9 + 14 + Max Flow + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow on the Flow Path in any interval + 5 + true + + + 4493 + 697 + 9 + 14 + Max Flow Hour + 94 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1584 + Maximum flow on the Flow Path in any hour + 4 + true + + + 4494 + 697 + 9 + 14 + Max Flow Day + 94 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow on the Flow Path in any day + 4 + true + + + 4495 + 697 + 9 + 14 + Max Flow Week + 94 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1586 + Maximum flow on the Flow Path in any week + 4 + true + + + 4496 + 697 + 9 + 14 + Max Flow Month + 94 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1587 + Maximum flow on the Flow Path in any month + 4 + true + + + 4497 + 697 + 9 + 14 + Max Flow Year + 94 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1588 + Maximum flow on the Flow Path in any year + 4 + true + + + 4498 + 697 + 9 + 15 + Min Flow + 94 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 481 + Minimum flow on the Flow Path in any interval + 5 + true + + + 4499 + 697 + 9 + 15 + Min Flow Hour + 94 + -1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 2355 + Minimum flow on the Flow Path in any hour + 4 + true + + + 4500 + 697 + 9 + 15 + Min Flow Day + 94 + -1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum flow on the Flow Path in any day + 4 + true + + + 4501 + 697 + 9 + 15 + Min Flow Week + 94 + -1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 2357 + Minimum flow on the Flow Path in any week + 4 + true + + + 4502 + 697 + 9 + 15 + Min Flow Month + 94 + -1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 2358 + Minimum flow on the Flow Path in any month + 4 + true + + + 4503 + 697 + 9 + 15 + Min Flow Year + 94 + -1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 2359 + Minimum flow on the Flow Path in any year + 4 + true + + + 4504 + 697 + 7 + 16 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 4505 + 697 + 7 + 17 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 4506 + 697 + 7 + 18 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 4507 + 697 + 7 + 19 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 4508 + 697 + 7 + 20 + Outage Max Rating + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Flow Path Max Flow during the outage + 1000000 + true + + + 4509 + 697 + 7 + 21 + Outage Min Rating + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Flow Path Min Flow during the outage + 1000000 + true + + + 4510 + 697 + 7 + 22 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 4511 + 697 + 7 + 23 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 4512 + 697 + 7 + 24 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 4513 + 697 + 7 + 25 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 4514 + 697 + 7 + 26 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 4515 + 697 + 8 + 27 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Flow Path + 8009 + true + + + 4516 + 697 + 8 + 28 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Flow Path + 88 + true + + + 4517 + 697 + 8 + 29 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 4518 + 697 + 8 + 30 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Flow Path project, for expansion planning. + 8 + true + + + 4519 + 697 + 8 + 31 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Flow Path + 8 + true + + + 4520 + 697 + 8 + 32 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 4521 + 697 + 8 + 33 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Flow Path (period over which fixed costs are recovered). + 8 + true + + + 4522 + 697 + 8 + 34 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 4523 + 697 + 8 + 35 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4524 + 697 + 8 + 36 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4525 + 697 + 8 + 37 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4526 + 697 + 8 + 38 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4527 + 697 + 8 + 39 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4528 + 697 + 8 + 40 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4529 + 697 + 8 + 41 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4530 + 697 + 8 + 42 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4531 + 697 + 8 + 43 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4532 + 697 + 12 + 44 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4533 + 697 + 12 + 45 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4534 + 697 + 12 + 46 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4535 + 702 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Flow Path + true + + + 4536 + 703 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Path flow + true + + + 4537 + 703 + 3 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Flow Path flow at the receiving node + true + + + 4538 + 703 + 3 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Flow Path flow at the sending node + true + + + 4539 + 703 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 4540 + 703 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 4541 + 703 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 4542 + 703 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 4543 + 703 + 8 + 8 + Capacity Built Coefficient + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4544 + 703 + 8 + 9 + Capacity Retired Coefficient + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4545 + 703 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4546 + 703 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 4547 + 703 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 4548 + 704 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Path flow + true + + + 4549 + 704 + 3 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Flow Path flow at the receiving node + true + + + 4550 + 704 + 3 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Flow Path flow at the sending node + true + + + 4551 + 704 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 4552 + 704 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 4553 + 704 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 4554 + 704 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 4555 + 705 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of inventory balance + true + + + 4556 + 705 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 168 + Method used to value or constrain end-of-period inventory + 400000000 + true + + + 4557 + 705 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal inventory trajectory from one simulation phase to the next + 400000000 + true + + + 4558 + 705 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition inventory target penalty function 'a' term + 400000000 + true + + + 4559 + 705 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition inventory target penalty function 'b' term + 400000000 + true + + + 4560 + 705 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition inventory target penalty function 'c' term + 400000000 + true + + + 4561 + 705 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition inventory target penalty function 'x' term + 400000000 + true + + + 4562 + 705 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of inventory bounds when the decomposition implies possible violations + 400000000 + true + + + 4563 + 705 + 2 + 9 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 4564 + 705 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4565 + 705 + 2 + 11 + Build Cost Multiplier + 0 + 0 + In (0,2) + 0;"None";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 4566 + 705 + 3 + 12 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Flow Storage is modeled + 800001 + true + + + 4567 + 705 + 3 + 13 + Max Inventory + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 4568 + 705 + 3 + 14 + Min Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 4569 + 705 + 3 + 15 + Opening Inventory + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1591 + Initial amount of the Commodity in inventory + true + + + 4570 + 705 + 3 + 16 + Delivery + 86 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Amount of the Commodity added to inventory + true + + + 4571 + 705 + 3 + 17 + Injection Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2507 + Proportion of injected commodity reaching storage net of losses + true + + + 4572 + 705 + 3 + 18 + Withdrawal Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2508 + Proportion of commodity withdrawn from storage net of losses + true + + + 4573 + 705 + 3 + 19 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of deliveries of the Commodity to inventory + true + + + 4574 + 705 + 3 + 20 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost of keeping the Commodity in inventory + true + + + 4575 + 705 + 3 + 21 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity + true + + + 4576 + 705 + 3 + 22 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1252 + Cost of adding the Commodity to inventory + true + + + 4577 + 705 + 3 + 23 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Cost of taking the Commodity out of inventory + true + + + 4578 + 705 + 3 + 24 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 4579 + 705 + 9 + 25 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of the Commodity that can be taken from inventory in any interval + 400000000 + true + + + 4580 + 705 + 9 + 25 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of the Commodity that can be taken from inventory in a hour + 400000000 + true + + + 4581 + 705 + 9 + 25 + Max Withdrawal Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of the Commodity that can be taken from inventory in a day + 400000000 + true + + + 4582 + 705 + 9 + 25 + Max Withdrawal Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of the Commodity that can be taken from inventory in a week + 400000000 + true + + + 4583 + 705 + 9 + 25 + Max Withdrawal Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of the Commodity that can be taken from inventory in a month + 400000000 + true + + + 4584 + 705 + 9 + 25 + Max Withdrawal Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of the Commodity that can be taken from inventory in a year + 400000000 + true + + + 4585 + 705 + 9 + 26 + Max Injection + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of the Commodity that can be put into inventory in any interval + 400000000 + true + + + 4586 + 705 + 9 + 26 + Max Injection Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of the Commodity that can be put into inventory in any hour + 400000000 + true + + + 4587 + 705 + 9 + 26 + Max Injection Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of the Commodity that can be put into inventory in any day + 400000000 + true + + + 4588 + 705 + 9 + 26 + Max Injection Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of the Commodity that can be put into inventory in any week + 400000000 + true + + + 4589 + 705 + 9 + 26 + Max Injection Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of the Commodity that can be put into inventory in any month + 400000000 + true + + + 4590 + 705 + 9 + 26 + Max Injection Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of the Commodity that can be put into inventory in any year + 400000000 + true + + + 4591 + 705 + 9 + 27 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1258 + Amount of the Commodity that must be taken from inventory each interval + 400000000 + true + + + 4592 + 705 + 9 + 27 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of the Commodity that must be taken from inventory each hour + 400000000 + true + + + 4593 + 705 + 9 + 27 + Min Withdrawal Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of the Commodity that must be taken from inventory each day + 400000000 + true + + + 4594 + 705 + 9 + 27 + Min Withdrawal Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of the Commodity that must be taken from inventory each week + 400000000 + true + + + 4595 + 705 + 9 + 27 + Min Withdrawal Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of the Commodity that must be taken from inventory each month + 400000000 + true + + + 4596 + 705 + 9 + 27 + Min Withdrawal Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of the Commodity that must be taken from inventory each year + 400000000 + true + + + 4597 + 705 + 9 + 28 + Min Injection + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1263 + Amount of the Commodity that must be added to inventory in any interval + 400000000 + true + + + 4598 + 705 + 9 + 28 + Min Injection Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of the Commodity that must be added to inventory in any hour + 400000000 + true + + + 4599 + 705 + 9 + 28 + Min Injection Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of the Commodity that must be added to inventory in any day + 400000000 + true + + + 4600 + 705 + 9 + 28 + Min Injection Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of the Commodity that must be added to inventory in any week + 400000000 + true + + + 4601 + 705 + 9 + 28 + Min Injection Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of the Commodity that must be added to inventory in any month + 400000000 + true + + + 4602 + 705 + 9 + 28 + Min Injection Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of the Commodity that must be added to inventory in any year + 400000000 + true + + + 4603 + 705 + 9 + 29 + Max Inventory Change + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2333 + Maximum rate of change in inventory in any interval + 400000000 + true + + + 4604 + 705 + 9 + 29 + Max Inventory Change Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2334 + Maximum rate of change in inventory in any hour + 400000000 + true + + + 4605 + 705 + 9 + 29 + Max Inventory Change Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2335 + Maximum rate of change in inventory in any day + 400000000 + true + + + 4606 + 705 + 9 + 29 + Max Inventory Change Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2336 + Maximum rate of change in inventory in any week + 400000000 + true + + + 4607 + 705 + 9 + 29 + Max Inventory Change Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2337 + Maximum rate of change in inventory in any month + 400000000 + true + + + 4608 + 705 + 9 + 29 + Max Inventory Change Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2338 + Maximum rate of change in inventory in any year + 400000000 + true + + + 4609 + 705 + 9 + 30 + Max Inventory Change Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2339 + Penalty for violating the [Max Ramp] constraints + 400000000 + true + + + 4610 + 705 + 9 + 31 + Max Cycles + 62 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1832 + Number of cycles allowed each interval + 400000000 + true + + + 4611 + 705 + 9 + 31 + Max Cycles Hour + 62 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1833 + Number of cycles allowed each hour + 400000000 + true + + + 4612 + 705 + 9 + 31 + Max Cycles Day + 62 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1834 + Number of cycles allowed each day + 400000000 + true + + + 4613 + 705 + 9 + 31 + Max Cycles Week + 62 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1835 + Number of cycles allowed each week + 400000000 + true + + + 4614 + 705 + 9 + 31 + Max Cycles Month + 62 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1836 + Number of cycles allowed each month + 400000000 + true + + + 4615 + 705 + 9 + 31 + Max Cycles Year + 62 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1837 + Number of cycles allowed each year + 400000000 + true + + + 4616 + 705 + 9 + 32 + Target + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Target level of inventory at the end of the interval + 400000000 + true + + + 4617 + 705 + 9 + 32 + Target Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + Target level of inventory at the end of the hour + 400000000 + true + + + 4618 + 705 + 9 + 32 + Target Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + Target level of inventory at the end of the day + 400000000 + true + + + 4619 + 705 + 9 + 32 + Target Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + Target level of inventory at the end of the week + 400000000 + true + + + 4620 + 705 + 9 + 32 + Target Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + Target level of inventory at the end of the month + 400000000 + true + + + 4621 + 705 + 9 + 32 + Target Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + Target level of inventory at the end of the year + 400000000 + true + + + 4622 + 705 + 9 + 33 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target inventory + 400000000 + true + + + 4623 + 705 + 8 + 34 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 4624 + 705 + 8 + 35 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 4625 + 705 + 8 + 36 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 4626 + 705 + 8 + 37 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 4627 + 705 + 8 + 38 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 4628 + 705 + 8 + 39 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 4629 + 705 + 8 + 40 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 4630 + 705 + 8 + 41 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4631 + 705 + 8 + 42 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4632 + 705 + 8 + 43 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4633 + 705 + 8 + 44 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4634 + 705 + 8 + 45 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4635 + 705 + 8 + 46 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4636 + 705 + 8 + 47 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4637 + 705 + 8 + 48 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4638 + 705 + 8 + 49 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4639 + 705 + 11 + 50 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 4640 + 705 + 11 + 51 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 4641 + 705 + 12 + 52 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4642 + 705 + 12 + 53 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4643 + 705 + 12 + 54 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4644 + 709 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Flow Storage + true + + + 4645 + 710 + 3 + 1 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 4646 + 710 + 3 + 2 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 4647 + 710 + 3 + 3 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 4648 + 710 + 3 + 4 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 4649 + 710 + 3 + 5 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 4650 + 710 + 6 + 6 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 4651 + 710 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4652 + 710 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4653 + 710 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4654 + 710 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4655 + 710 + 8 + 11 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4656 + 710 + 8 + 12 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4657 + 710 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4658 + 710 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4659 + 710 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4660 + 711 + 3 + 1 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 4661 + 711 + 3 + 2 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 4662 + 711 + 3 + 3 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 4663 + 711 + 3 + 4 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 4664 + 711 + 3 + 5 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 4665 + 711 + 6 + 6 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 4666 + 711 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4667 + 711 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4668 + 711 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4669 + 711 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4670 + 711 + 8 + 11 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4671 + 711 + 8 + 12 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4672 + 711 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4673 + 711 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4674 + 711 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4675 + 712 + 5 + 1 + Strategic + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 766 + Percentage of entity production that acts strategically + 40 + true + + + 4676 + 712 + 5 + 2 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound entity net profit risk + 4000000000 + true + + + 4677 + 712 + 5 + 3 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 4678 + 712 + 5 + 4 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 4679 + 712 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4680 + 712 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4681 + 712 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4682 + 716 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of consumption from facilities associated with the entity + true + + + 4683 + 716 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of production from facilities associated with the entity + true + + + 4684 + 716 + 5 + 3 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4685 + 716 + 5 + 4 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4686 + 716 + 5 + 5 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4687 + 717 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of consumption from facilities associated with the entity + true + + + 4688 + 717 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of production from facilities associated with the entity + true + + + 4689 + 717 + 5 + 3 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4690 + 717 + 5 + 4 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4691 + 717 + 5 + 5 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4692 + 718 + 2 + 1 + Is Forward + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 337 + Flag if the market is a 'forward' market versus a 'real-time' market. + 4000000 + true + + + 4693 + 718 + 2 + 2 + Is Marginal + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 338 + Flag if the market sets price on a marginal price basis; rather than block-by-block settlement. + 4000000 + true + + + 4694 + 718 + 2 + 3 + Demand Curve + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 136 + Flag if the input multi-band Price/Quantity pairs are points on a demand curve; or incremental demand blocks. + 100 + true + + + 4695 + 718 + 2 + 4 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Market can set price + 4000000 + true + + + 4696 + 718 + 2 + 5 + Supply Settlement Model + 0 + 1 + In (0,1,2) + 0;"Natural";1;"Buy";2;"Sell" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1622 + Model used to determine price paid to suppliers + 4000000 + true + + + 4697 + 718 + 2 + 6 + Demand Settlement Model + 0 + 2 + In (0,1,2) + 0;"Natural";1;"Buy";2;"Sell" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1623 + Model used to determine price paid by purchasers. + 4000000 + true + + + 4698 + 718 + 3 + 7 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Market is in service + 800000 + true + + + 4699 + 718 + 3 + 8 + Demand + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 133 + Fixed demand (exact amount of sales to the Market) + true + + + 4700 + 718 + 3 + 9 + Shortage Price + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1270 + Penalty price for supply shortage + true + + + 4701 + 718 + 3 + 10 + Supply + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2324 + Fixed supply (exact amount of supply from the Market) + true + + + 4702 + 718 + 3 + 11 + Surplus Price + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2325 + Penalty price for excess supply + true + + + 4703 + 718 + 3 + 12 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 612 + Price point on market demand function + 400001 + true + + + 4704 + 718 + 3 + 13 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 904 + Scalar on market price + 4000000 + true + + + 4705 + 718 + 3 + 14 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 905 + Increment to market price + 4000000 + true + + + 4706 + 718 + 3 + 15 + Price Cap + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on Market Price when using fixed Demand/Supply + 4000000 + true + + + 4707 + 718 + 3 + 16 + Price Floor + 88 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on Market Price when using fixed Demand/Supply + 4000000 + true + + + 4708 + 718 + 3 + 17 + Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 650 + Quantity point in market demand function + 400000 + true + + + 4709 + 718 + 3 + 18 + Base Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 28 + Expected clearing point on market demand function + 400000 + true + + + 4710 + 718 + 3 + 19 + Sell Unit + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 734 + Size of block for sales (time independent) + 400000 + true + + + 4711 + 718 + 3 + 20 + Sell Block + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 729 + Size of block for sales + 400000 + true + + + 4712 + 718 + 3 + 20 + Sell Block Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1569 + Size of block for sales across each hour + 400000 + true + + + 4713 + 718 + 3 + 20 + Sell Block Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 730 + Size of block for sales across each day + 400000 + true + + + 4714 + 718 + 3 + 20 + Sell Block Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 732 + Size of block for sales across each week + 400000 + true + + + 4715 + 718 + 3 + 20 + Sell Block Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 731 + Size of block for sales across each month + 400000 + true + + + 4716 + 718 + 3 + 20 + Sell Block Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 733 + Size of block for sales across each year + 400000 + true + + + 4717 + 718 + 3 + 21 + Sell Block Fixed Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1444 + Fixed cost of block sales + 8000 + true + + + 4718 + 718 + 3 + 22 + Buy Unit + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 50 + Size of block for purchases (time independent) + 400000 + true + + + 4719 + 718 + 3 + 23 + Buy Block + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 45 + Size of block for purchases + 400000 + true + + + 4720 + 718 + 3 + 23 + Buy Block Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1570 + Size of block for purchases across each hour + 400000 + true + + + 4721 + 718 + 3 + 23 + Buy Block Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 46 + Size of block for purchases across each day + 400000 + true + + + 4722 + 718 + 3 + 23 + Buy Block Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 48 + Size of block for purchases across each week + 400000 + true + + + 4723 + 718 + 3 + 23 + Buy Block Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 47 + Size of block for purchases across each month + 400000 + true + + + 4724 + 718 + 3 + 23 + Buy Block Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 49 + Size of block for purchases across each year + 400000 + true + + + 4725 + 718 + 3 + 24 + Buy Block Fixed Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1443 + Fixed cost of block purchases + 8000 + true + + + 4726 + 718 + 3 + 25 + Bid-Ask Spread + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 36 + Market bid-ask spread + 400000 + true + + + 4727 + 718 + 3 + 26 + Bid Spread + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 35 + Spread on sales to the market + 400000 + true + + + 4728 + 718 + 3 + 27 + Ask Spread + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 16 + Spread on purchases from the market + 400000 + true + + + 4729 + 718 + 9 + 28 + Max Sales + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 455 + Maximum sales to the market + 80 + true + + + 4730 + 718 + 9 + 28 + Max Sales Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2476 + Maximum sales to the market each hour + 80 + true + + + 4731 + 718 + 9 + 28 + Max Sales Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2477 + Maximum sales to the market each day + 80 + true + + + 4732 + 718 + 9 + 28 + Max Sales Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2478 + Maximum sales to the market each week + 80 + true + + + 4733 + 718 + 9 + 28 + Max Sales Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2479 + Maximum sales to the market each month + 80 + true + + + 4734 + 718 + 9 + 28 + Max Sales Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2480 + Maximum sales to the market each year + 80 + true + + + 4735 + 718 + 9 + 29 + Max Purchases + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 445 + Maximum purchase from the market + 80 + true + + + 4736 + 718 + 9 + 29 + Max Purchases Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2481 + Maximum purchase from the market each hour + 80 + true + + + 4737 + 718 + 9 + 29 + Max Purchases Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2482 + Maximum purchase from the market each day + 80 + true + + + 4738 + 718 + 9 + 29 + Max Purchases Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2483 + Maximum purchase from the market each week + 80 + true + + + 4739 + 718 + 9 + 29 + Max Purchases Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2484 + Maximum purchase from the market each month + 80 + true + + + 4740 + 718 + 9 + 29 + Max Purchases Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2485 + Maximum purchase from the market each year + 80 + true + + + 4741 + 718 + 9 + 30 + Min Sales + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 500 + Minimum sales to the market + 80 + true + + + 4742 + 718 + 9 + 30 + Min Sales Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2486 + Minimum sales to the market each hour + 80 + true + + + 4743 + 718 + 9 + 30 + Min Sales Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2487 + Minimum sales to the market each day + 80 + true + + + 4744 + 718 + 9 + 30 + Min Sales Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2488 + Minimum sales to the market each week + 80 + true + + + 4745 + 718 + 9 + 30 + Min Sales Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2489 + Minimum sales to the market each month + 80 + true + + + 4746 + 718 + 9 + 30 + Min Sales Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2490 + Minimum sales to the market each year + 80 + true + + + 4747 + 718 + 9 + 31 + Min Purchases + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 491 + Minimum purchase from the market + 80 + true + + + 4748 + 718 + 9 + 31 + Min Purchases Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2491 + Minimum purchase from the market each hour + 80 + true + + + 4749 + 718 + 9 + 31 + Min Purchases Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2492 + Minimum purchase from the market each day + 80 + true + + + 4750 + 718 + 9 + 31 + Min Purchases Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2493 + Minimum purchase from the market each week + 80 + true + + + 4751 + 718 + 9 + 31 + Min Purchases Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2494 + Minimum purchase from the market each month + 80 + true + + + 4752 + 718 + 9 + 31 + Min Purchases Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2495 + Minimum purchase from the market each year + 80 + true + + + 4753 + 718 + 6 + 32 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the market purchases to generation capacity for capacity reserves. + C + true + + + 4754 + 718 + 6 + 33 + Load Obligation + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Contribution of the market sales to the load obligation for capacity reserves. + C + true + + + 4755 + 718 + 12 + 34 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4756 + 718 + 12 + 35 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4757 + 718 + 12 + 36 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4758 + 721 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Entities share of the market trades + 40 + true + + + 4759 + 722 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Coefficient of market sales + true + + + 4760 + 722 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Coefficient of market purchases + true + + + 4761 + 722 + 1 + 3 + Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1733 + Coefficient of market sales revenues + true + + + 4762 + 722 + 1 + 4 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1692 + Coefficient of market purchase costs + true + + + 4763 + 723 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Coefficient of market sales + true + + + 4764 + 723 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Coefficient of market purchases + true + + + 4765 + 723 + 1 + 3 + Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1733 + Coefficient of market sales revenues + true + + + 4766 + 723 + 1 + 4 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1692 + Coefficient of market purchase costs + true + + + 4767 + 724 + 2 + 1 + Sense + 0 + 0 + In (-1,0,1) + -1;"<=";0;"=";1;">=" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Constraint sense (less than or equal to, equal to, greater than or equal to) + 80 + true + + + 4768 + 724 + 2 + 2 + LHS Type + 0 + 0 + In (0,1,2) + 0;"SUM";1;"MAXSUM";2;"MAX" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1455 + Action applied over left-hand side coefficients + 80 + true + + + 4769 + 724 + 2 + 3 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 4770 + 724 + 2 + 4 + Condition Logic + 0 + 0 + In (0,1) + 0;"And";1;"Or" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 89 + Logic used in combining conditions associated with the constraint + 800080 + true + + + 4771 + 724 + 2 + 5 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the constraint is modelled in the LT Plan phase. + 800080 + true + + + 4772 + 724 + 2 + 6 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the constraint is modelled in the PASA phase. + 800080 + true + + + 4773 + 724 + 2 + 7 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the constraint is modelled in the MT Schedule phase. + 800080 + true + + + 4774 + 724 + 2 + 8 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the constraint is modelled in the ST Schedule phase. + 800080 + true + + + 4775 + 724 + 2 + 9 + Include in Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 306 + If the constraint is enforced in the unconstrained phase of uniform pricing. + 800080 + true + + + 4776 + 724 + 2 + 10 + Unit Commitment Mode + 0 + 0 + In (0,1,2) + 0;"Enforced";1;"Relax Before";2;"Relax After" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2656 + Controls how the constraint is handled during unit commitment + 1000000000 + true + + + 4777 + 724 + 2 + 11 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Constraint penalty function can set price + 4000000 + true + + + 4778 + 724 + 2 + 12 + Decomposition Method + 0 + 0 + In (0,1) + 0;"Quantity";1;"Price" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to decompose constraints between LT Plan/MT Schedule and MT Schedule/ST Schedule + 200 + true + + + 4779 + 724 + 2 + 13 + Feasibility Repair Weight + 0 + 0.01 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1117 + Weight applied to relaxing the constraint in feasibility repair. Lower values mean less penalty to relax the constraint. -1 means the constraint cannot be relaxed. + 80 + true + + + 4780 + 724 + 2 + 14 + Wildcard Mode + 0 + 1 + In (0,1,2) + 0;"Do Not Copy";1;"Auto";2;"Always Copy" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1684 + Controls whether or not the Constraint is copied when it is associated with a wildcard membership. + 80 + true + + + 4781 + 724 + 2 + 15 + Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2654 + Scale the constraint by dividing left and right hand sides by this factor + 80 + true + + + 4782 + 724 + 1 + 16 + RHS + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 700 + Constraint RHS constant + 80 + true + + + 4783 + 724 + 1 + 16 + RHS Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1578 + Right hand side each hour + 80 + true + + + 4784 + 724 + 1 + 16 + RHS Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 702 + Right hand side each day (000) + 80 + true + + + 4785 + 724 + 1 + 16 + RHS Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 704 + Right hand side each week (000) + 80 + true + + + 4786 + 724 + 1 + 16 + RHS Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 703 + Right hand side each month (000) + 80 + true + + + 4787 + 724 + 1 + 16 + RHS Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 705 + Right hand side each year (000) + 80 + true + + + 4788 + 724 + 1 + 16 + RHS Custom + 0 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 1077 + Right hand side value over any custom period (000) + 80 + true + + + 4789 + 724 + 2 + 17 + Prorate RHS Custom + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3142 + If RHS Custom constraints longer than step sizes should be prorated rather than applied per step + 80 + true + + + 4790 + 724 + 1 + 18 + RHS Constant + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2316 + Right hand side RPN constant + 80 + true + + + 4791 + 724 + 1 + 19 + Penalty Quantity + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 605 + Penalty quantity + 80 + true + + + 4792 + 724 + 1 + 20 + Penalty Price + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 604 + Price for violating the constraint where the special value of -1 indicates that no violation is allowed. + 80 + true + + + 4793 + 724 + 1 + 21 + Min RHS + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 499 + Minimum allowed value when RHS is calculated dynamically + 80 + true + + + 4794 + 724 + 1 + 22 + Max RHS + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 454 + Maximum allowed value when RHS is calculated dynamically + 80 + true + + + 4795 + 724 + 12 + 23 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4796 + 724 + 12 + 24 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4797 + 724 + 12 + 25 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4798 + 727 + 1 + 1 + RHS Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 701 + RHS coefficient added when the condition is active + true + + + 4799 + 727 + 1 + 2 + Price Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1380 + Coefficient of price in condition + true + + + 4800 + 728 + 2 + 1 + Sense + 0 + 1 + In (1,2) + 1;"Minimize";2;"Maximize" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Objective sense (Minimize,Maximize) + true + + + 4801 + 728 + 2 + 2 + Priority + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2096 + Priority of the objective when doing hierarchical multi-objective optimization + true + + + 4802 + 728 + 2 + 3 + Weight + 0 + 1 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2097 + Weight of the objective when doing blended multi-objective optimization + true + + + 4803 + 728 + 2 + 4 + Relative Tolerance + 0 + 0 + Between 0 And 1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2098 + Allowable relative degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 4804 + 728 + 2 + 5 + Absolute Tolerance + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2099 + Allowable degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 4805 + 728 + 2 + 6 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the objective is modeled in the LT Plan phase. + true + + + 4806 + 728 + 2 + 7 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the objective is modeled in the PASA phase. + true + + + 4807 + 728 + 2 + 8 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the objective is modeled in the MT Schedule phase. + true + + + 4808 + 728 + 2 + 9 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the objective is modeled in the ST Schedule phase. + true + + + 4809 + 728 + 2 + 10 + Include in Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 306 + If the objective is modeled in the unconstrained phase of uniform pricing. + true + + + 4810 + 728 + 1 + 11 + Constant + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2089 + Is the constant term in objective a'x +b + true + + + 4811 + 728 + 1 + 11 + Constant Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2090 + Objective constant each hour + true + + + 4812 + 728 + 1 + 11 + Constant Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2091 + Objective constant each day (000's) + true + + + 4813 + 728 + 1 + 11 + Constant Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2092 + Objective constant each week (000's) + true + + + 4814 + 728 + 1 + 11 + Constant Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2093 + Objective constant each month (000's) + true + + + 4815 + 728 + 1 + 11 + Constant Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2094 + Objective constant each year (000's) + true + + + 4816 + 728 + 1 + 11 + Constant Custom + 0 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2095 + Objective constant value over any custom period (000's) + true + + + 4817 + 728 + 12 + 12 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4818 + 728 + 12 + 13 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4819 + 728 + 12 + 14 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4820 + 731 + 2 + 1 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the generic decision variable is modelled in the LT Plan phase. + 800000 + true + + + 4821 + 731 + 2 + 2 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the generic decision variable is modelled in the PASA phase. + 800000 + true + + + 4822 + 731 + 2 + 3 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the generic decision variable is modelled in the MT Schedule phase. + 800000 + true + + + 4823 + 731 + 2 + 4 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the generic decision variable is modelled in the ST Schedule phase. + 800000 + true + + + 4824 + 731 + 1 + 5 + Objective Function Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 1351 + Objective function value of the generic decision variable + 2000000000 + true + + + 4825 + 731 + 1 + 5 + Objective Function Coefficient Hour + 0 + 0 + 1 + 0 + 0 + 6 + true + false + true + false + 1 + 1726 + Objective function value of the generic decision variable in each hour + 2000000000 + true + + + 4826 + 731 + 1 + 5 + Objective Function Coefficient Day + 0 + 0 + 1 + 0 + 0 + 1 + true + false + true + false + 1 + 1727 + Objective function value of the generic decision variable in each day + 2000000000 + true + + + 4827 + 731 + 1 + 5 + Objective Function Coefficient Week + 0 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 1728 + Objective function value of the generic decision variable in each week + 2000000000 + true + + + 4828 + 731 + 1 + 5 + Objective Function Coefficient Month + 0 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 1729 + Objective function value of the generic decision variable in each month + 2000000000 + true + + + 4829 + 731 + 1 + 5 + Objective Function Coefficient Year + 0 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 1730 + Objective function value of the generic decision variable in each year + 2000000000 + true + + + 4830 + 731 + 1 + 6 + Lower Bound + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1494 + Lower bound of the generic decision variable + 80 + true + + + 4831 + 731 + 1 + 7 + Upper Bound + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1495 + Upper bound of the generic decision variable + 80 + true + + + 4832 + 731 + 11 + 8 + Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 4833 + 731 + 11 + 9 + Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1858 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 4834 + 731 + 12 + 10 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4835 + 731 + 12 + 11 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4836 + 731 + 12 + 12 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4837 + 734 + 1 + 1 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value + true + + + 4838 + 734 + 1 + 2 + Value Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1619 + Coefficient of Decision Variable value squared + true + + + 4839 + 735 + 1 + 1 + Value Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value in definition Constraint + true + + + 4840 + 736 + 1 + 1 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value + true + + + 4841 + 736 + 1 + 2 + Value Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1619 + Coefficient of Decision Variable value squared + true + + + 4842 + 737 + 1 + 1 + Sense + 0 + 0 + In (-1,0,1) + -1;"<=";0;"=";1;">=" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Constraint sense (≤,=,≥) + 80 + true + + + 4843 + 737 + 1 + 2 + Max Tranches + 0 + 10 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2162 + Number of tranches to be used for piece-wise linear approximation + true + + + 4844 + 737 + 1 + 3 + Polynomial Coefficients + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2163 + Coefficients defining the polynomial + true + + + 4845 + 737 + 1 + 4 + Constant Term + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2164 + Constant Term + true + + + 4846 + 737 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4847 + 737 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4848 + 737 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4849 + 742 + 1 + 1 + Filename + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 193 + Data file used in the simulation + true + + + 4850 + 742 + 1 + 2 + Base Profile + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 27 + Base profile for use in creating new profiles + true + + + 4851 + 742 + 1 + 3 + Energy + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 173 + Energy of the created profile + true + + + 4852 + 742 + 1 + 4 + Maximum + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 467 + Maximum value of the created profile + true + + + 4853 + 742 + 1 + 5 + Minimum + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1874 + Minimum value of the created profile + true + + + 4854 + 742 + 1 + 6 + Holiday + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 270 + Flag for holiday period that must be preserved + true + + + 4855 + 742 + 1 + 7 + Min Value + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 508 + Minimum value allowed after application of the growing algorithm. + true + + + 4856 + 742 + 1 + 8 + Max Value + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 464 + Maximum value allowed after application of the growing algorithm. + true + + + 4857 + 742 + 1 + 9 + Monthly Generation Ratio + 0 + 0 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3093 + Monthly Generation Ratio is the ratio of electricity demand in a particular month to electricity demand in the whole year. + true + + + 4858 + 742 + 1 + 10 + Load Adjustment Parameter + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3094 + Flag for including the load adjustment parameter. + true + + + 4859 + 742 + 1 + 11 + Base Total Energy + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3095 + Optional override input for annual total energy for base year and simulation year. + true + + + 4860 + 742 + 1 + 12 + Base Annual Max + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3096 + Optional input for annual maximum demand for base year and simulation year. + true + + + 4861 + 744 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the variable + 100000000 + true + + + 4862 + 744 + 2 + 2 + Sampling Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Auto";2;"User" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 720 + Sampling method applied to the variable + 100000000 + true + + + 4863 + 744 + 2 + 3 + Sampling Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1127 + Frequency of temporal sampling of period type [Sampling Period Type] where zero means no sampling. + 100000000 + true + + + 4864 + 744 + 2 + 4 + Sampling Period Type + 0 + 0 + In (0,1,2,3,4,6) + 0;"interval";6;"hour";1;"day";2;"week";3;"month";4;"year" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1616 + Period type of temporal sampling where number of periods between samples is [Sampling Frequency]. + 100000000 + true + + + 4865 + 744 + 2 + 5 + Distribution Type + 0 + 0 + In (0,1) + 0;"Normal";1;"Lognormal" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 152 + Distribution type for error terms + 100000000 + true + + + 4866 + 744 + 2 + 6 + Condition + 0 + 4 + In (-2,-1,0,1,2,4) + 4;"None";-2;"<";-1;"<=";0;"=";1;">=";2;">" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1378 + Conditional value type + 800000 + true + + + 4867 + 744 + 2 + 7 + Condition Logic + 0 + 0 + In (0,1) + 0;"And";1;"Or" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 89 + Logic used in combining conditional variables + 800000 + true + + + 4868 + 744 + 2 + 8 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the condition is allowed to be active in the LT Plan phase. + 800000 + true + + + 4869 + 744 + 2 + 9 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the condition is allowed to be active in the PASA phase. + 800000 + true + + + 4870 + 744 + 2 + 10 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the condition is allowed to be active in the MT Schedule phase. + 800000 + true + + + 4871 + 744 + 2 + 11 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the condition is allowed to be active in the ST Schedule phase. + 800000 + true + + + 4872 + 744 + 2 + 12 + Formulate Value + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2318 + Flag if the Value is formulated as a decision variable + 800000 + true + + + 4873 + 744 + 1 + 13 + Profile + 0 + 0 + 1 + 0 + 1 + 0 + false + true + true + true + 1 + 628 + Sample profile of variable values + 100000000 + true + + + 4874 + 744 + 1 + 13 + Profile Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + true + 1 + 1580 + Sample profile of variable values + 100000000 + true + + + 4875 + 744 + 1 + 13 + Profile Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + true + 1 + 629 + Sample profile of variable values + 100000000 + true + + + 4876 + 744 + 1 + 13 + Profile Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + true + 1 + 631 + Sample profile of variable values + 100000000 + true + + + 4877 + 744 + 1 + 13 + Profile Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + true + 1 + 630 + Sample profile of variable values + 100000000 + true + + + 4878 + 744 + 1 + 13 + Profile Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + true + 1 + 632 + Sample profile of variable values + 100000000 + true + + + 4879 + 744 + 1 + 14 + Min Value + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 508 + Minimum allowed sample value + 100000000 + true + + + 4880 + 744 + 1 + 15 + Max Value + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 464 + Maximum allowed sample value + 100000000 + true + + + 4881 + 744 + 1 + 16 + Probability + 12 + 50 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 623 + Probability of exceedance (POE) + 100000000 + true + + + 4882 + 744 + 1 + 17 + Error Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 183 + Percentage standard deviation of errors + 100000000 + true + + + 4883 + 744 + 1 + 18 + Abs Error Std Dev + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 926 + Absolute value of standard deviation of errors + 100000000 + true + + + 4884 + 744 + 1 + 19 + Min Value Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 509 + Percentage standard deviation of minimum value + 100000000 + true + + + 4885 + 744 + 1 + 20 + Max Value Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 465 + Percentage standard deviation of maximum value + 100000000 + true + + + 4886 + 744 + 1 + 21 + Auto Correlation + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 18 + Correlation of error between time intervals + 100000000 + true + + + 4887 + 744 + 1 + 22 + Mean Reversion + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 469 + Mean reversion parameter in differential equation + 100000000 + true + + + 4888 + 744 + 1 + 23 + ARIMA alpha + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 984 + ARIMA autoregressive parameter + 100000000 + true + + + 4889 + 744 + 1 + 24 + ARIMA beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 985 + ARIMA moving-average parameter + 100000000 + true + + + 4890 + 744 + 1 + 25 + ARIMA d + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1008 + ARIMA differencing parameter + 100000000 + true + + + 4891 + 744 + 1 + 26 + Jump Frequency + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1764 + Jump frequency in jump-diffusion model + 100000000 + true + + + 4892 + 744 + 1 + 27 + Jump Magnitude + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1765 + Jump magnitude in jump-diffusion model + 100000000 + true + + + 4893 + 744 + 1 + 28 + Jump Error Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1766 + Percentage standard deviation of jump magnitude errors + 100000000 + true + + + 4894 + 744 + 1 + 29 + GARCH alpha + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1767 + Weight on the square of the return in GARCH(1,1) + 100000000 + true + + + 4895 + 744 + 1 + 30 + GARCH beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1768 + Weight on the variance in GARCH(1,1) + 100000000 + true + + + 4896 + 744 + 1 + 31 + GARCH omega + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1769 + Long-run weighted variance in GARCH(1,1) + 100000000 + true + + + 4897 + 744 + 1 + 32 + Lookup x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1005 + Lookup table for x-axis value + 100 + true + + + 4898 + 744 + 1 + 33 + Lookup y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1006 + Lookup table for y-axis value + 100 + true + + + 4899 + 744 + 1 + 34 + Lookup Unit + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1010 + Unit of the y values in the lookup table + 100 + true + + + 4900 + 744 + 1 + 35 + Sampling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1477 + Flag if random sampling should occur in the period + 100000000 + true + + + 4901 + 744 + 1 + 36 + Step Hour Active From + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1613 + First hour of each step the Condition is allowed to be active + 800000 + true + + + 4902 + 744 + 1 + 37 + Step Hours Active + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1614 + Number of hours the Condition is allowed to be active from the first active hour in the step + 800000 + true + + + 4903 + 744 + 1 + 38 + Compound Index + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 914 + Rate of escalation + true + + + 4904 + 744 + 1 + 38 + Compound Index Hour + 12 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1579 + Rate of escalation per hour + true + + + 4905 + 744 + 1 + 38 + Compound Index Day + 12 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1083 + Rate of escalation per day + true + + + 4906 + 744 + 1 + 38 + Compound Index Week + 12 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1084 + Rate of escalation per week + true + + + 4907 + 744 + 1 + 38 + Compound Index Month + 12 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1085 + Rate of escalation per month + true + + + 4908 + 744 + 1 + 38 + Compound Index Year + 12 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1086 + Rate of escalation per year + true + + + 4909 + 746 + 1 + 1 + Expected Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1499 + Coefficient of the variable expected value in the constraint + true + + + 4910 + 746 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the variable value in the constraint + true + + + 4911 + 746 + 1 + 3 + Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1500 + Coefficient of the variable sample error + true + + + 4912 + 746 + 1 + 4 + Positive Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1501 + Coefficient of the positive sample error + true + + + 4913 + 746 + 1 + 5 + Negative Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1502 + Coefficient of the negative sample error + true + + + 4914 + 747 + 1 + 1 + Expected Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1499 + Coefficient of the variable expected value + true + + + 4915 + 747 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the variable sample value + true + + + 4916 + 747 + 1 + 3 + Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1500 + Coefficient of the variable sample error + true + + + 4917 + 747 + 1 + 4 + Positive Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1501 + Coefficient of the positive sample error + true + + + 4918 + 747 + 1 + 5 + Negative Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1502 + Coefficient of the negative sample error + true + + + 4919 + 748 + 1 + 1 + Correlation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 116 + Cross correlation + 100000000 + true + + + 4920 + 748 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the Variable Value in the definition of this Variable + true + + + 4921 + 749 + 1 + 1 + Activity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2818 + Coefficient of the left-hand-side of the Variable Condition expression + true + + + 4922 + 750 + 1 + 1 + Include + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + true + false + 1 + 296 + If the timeslice includes the period + 800000 + true + + + 4923 + 752 + 2 + 1 + Full Branches Sample Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2797 + Flag if the Full Branches historical year start are automatically selected by sample reduction. + 800000 + true + + + 4924 + 752 + 2 + 2 + Hanging Branches Sample Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1996 + Flag if the Hanging Branches historical year start are automatically selected by sample reduction. + 800000 + true + + + 4925 + 752 + 2 + 3 + Sample Rescaling Range + 0 + 0 + In (0,1) + 0;"All Periods";1;"Sampled Years" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3013 + Period range the sample rescaling is based on for sampled year feature. + true + + + 4926 + 752 + 1 + 4 + FCF Constant + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1485 + Future Cost Function: objective function constant term + true + + + 4927 + 752 + 1 + 5 + FCF Sample Map + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2798 + Future Cost Function: historical sample to full branch sample map + true + + + 4928 + 752 + 1 + 6 + Sample Weight + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1497 + Sampling: Weight applied to samples + 100000000 + true + + + 4929 + 752 + 1 + 7 + Tree Period Type + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"interval";6;"hour";1;"day";2;"week";3;"month";4;"year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1605 + Scenario Tree: Period type for stage positions + 100000000 + true + + + 4930 + 752 + 1 + 8 + Tree Position Exp Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1489 + Scenario Tree: Controls the end positions of each stage + 100000000 + true + + + 4931 + 752 + 1 + 9 + Tree Leaves Exp Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1490 + Scenario Tree: Controls the number of samples in each stage + 100000000 + true + + + 4932 + 752 + 1 + 10 + Tree Stages Position Incr + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2570 + Scenario Tree: Increment to the position of each stage + 100000000 + true + + + 4933 + 752 + 1 + 11 + Tree Stages Position + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1491 + Scenario Tree: Position of each stage + 100000000 + true + + + 4934 + 752 + 1 + 12 + Tree Stages Leaves + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1492 + Scenario Tree: Number of leaves in each stage + 100000000 + true + + + 4935 + 752 + 1 + 13 + Tree Stages Hanging Branches + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1672 + Scenario Tree: Number of hanging branches in each stage + 100000000 + true + + + 4936 + 752 + 1 + 14 + Deterministic Stages + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1826 + Scenario Tree: Number of deterministic stages + 100000000 + true + + + 4937 + 752 + 1 + 15 + Full Branches Historical Year Start + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2500 + Scenario Tree: First year of historical data for full branches + 100000000 + true + + + 4938 + 752 + 1 + 16 + Hanging Branches Historical Year Start + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1911 + Scenario Tree: First year of historical data for hanging branches + 100000000 + true + + + 4939 + 752 + 1 + 17 + Hanging Branches Weight + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1946 + Scenario Tree: Weights for the hanging branches + 100000000 + true + + + 4940 + 752 + 1 + 18 + Hanging Branches Block Count + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1912 + Number of blocks (time periods) modelled after the hanging branch begins. + 100000000 + true + + + 4941 + 752 + 1 + 19 + Slicing Block + 0 + 0 + In (0,-1) + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 1487 + Defines blocks of time that should be kept together when performing time slicing e.g. for load duration curves + true + + + 4942 + 752 + 1 + 20 + Sampled Period + 0 + 0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2707 + Selects periods for Sampled Chronology in MT Schedule + true + + + 4943 + 752 + 1 + 21 + Sampled Year + 0 + 0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 2228 + Year selection for LT Plan. Sampling will occur only for selected years. + true + + + 4944 + 752 + 1 + 22 + Sampling File + 0 + 0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 2875 + Input file for Sampled Chronology in LT plan and/or MT Schedule + true + + + 4945 + 752 + 1 + 23 + PTDF File + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2800 + Input file for PTDF values + true + + + 4946 + 756 + 3 + 1 + Barometric Pressure + 128 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2986 + Value for barometric pressure + false + + + 4947 + 756 + 3 + 2 + Cloud Cover + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2987 + Value for cloud cover + false + + + 4948 + 756 + 3 + 3 + Cooling Degree Days + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2988 + Value for cooling degree days + false + + + 4949 + 756 + 3 + 4 + Heating Degree Days + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2007 + Value for heating degree days + true + + + 4950 + 756 + 3 + 5 + Precipitation + 126 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2989 + Value for precipitation + false + + + 4951 + 756 + 3 + 6 + Relative Humidity + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2990 + Value for relative humidity + false + + + 4952 + 756 + 3 + 7 + Solar Irradiance + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2991 + Value for solar irradiance + false + + + 4953 + 756 + 3 + 8 + Temperature + 77 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2009 + Temperature value in each level + true + + + 4954 + 756 + 3 + 9 + Wind Direction + 11 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2992 + Value for wind direction + false + + + 4955 + 756 + 3 + 10 + Wind Speed + 127 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2011 + Wind speed value + true + + + 4956 + 756 + 12 + 11 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4957 + 756 + 12 + 12 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4958 + 756 + 12 + 13 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4959 + 762 + 1 + 1 + Read Order + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 907 + Order in which to read scenario data (last read scenario has highest priority) + true + + + 1 + - + 1 + + + 2 + Settings + 5 + + + 3 + Production + 2 + + + 4 + Offers and Bids + 10 + + + 5 + Risk + 7 + + + 6 + Capacity + 3 + + + 7 + Reliability + 12 + + + 8 + Expansion + 4 + + + 9 + Constraints + 9 + + + 10 + Storage + 11 + + + 11 + Stochastic + 8 + + + 12 + Pass-through + 6 + + + 0 + - + - + 0 + + + 1 + MW + MW + MW + MW + MW + MW + MW + unit of load + 26 + + + 2 + GWh + GWh + GWh + GWh + GWh + GWh + GWh + 1000 units of electric energy + 24 + + + 3 + MWh + MWh + MWh + MWh + MWh + MWh + MWh + unit of electric energy + 59 + + + 4 + kV + kV + 37 + + + 5 + s + s + 42 + + + 6 + h + h + 25 + + + 7 + day + day + 58 + + + 8 + yr + yr + 55 + + + 9 + MW/min + MW/min + 27 + + + 10 + pu + pu + 28 + + + 11 + ° + ° + 30 + + + 12 + % + % + 32 + + + 13 + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + logic switches + 46 + + + 14 + $ + $ + $ + $ + $ + $ + $ + unit of currency + 1 + + + 15 + MMBTu + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of energy + 2 + + + 16 + BBTu + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 energy units + 3 + + + 17 + MMBTU + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of fuel + 4 + + + 18 + TJ + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 units of fuel + 5 + + + 19 + kg + kg + lb + kg + lb + kg + lb + unit of emission + 6 + + + 20 + tonne + tonne + ton + tonne + ton + tonne + ton + 1000 units of emission + 7 + + + 21 + MMBTu + GJ + Btu + GJ + Btu + GJ + Btu + unit of heat rate numerator + 45 + + + 22 + MWh + MWh + kWh + MWh + kWh + MWh + kWh + unit of heat rate denominator + 44 + + + 23 + m + m + ft + m + ft + m + ft + unit of distance + 34 + + + 24 + GWh + GWh + GWh + 1000 m³ + 1000 ft³ + CMD + AF + unit of storage + 39 + + + 25 + MW + MW + MW + m³/s + ft³/s. + m³/s + AF/hr + unit of water flow + 40 + + + 26 + GWh + GWh + GWh + 1000 m³ + 1000 ft³ + CMD + AF + unit of hydro release + 52 + + + 27 + MW + MW + =unit of hydro efficiency numerator OLD + 50 + + + 28 + MW + MW + unit of hydro efficiency denominator OLD + 51 + + + 29 + $/MMBTU + $/GJ + =[unit of currency]/[unit of fuel] + 8 + + + 30 + $/kg + $/kg + =[unit of currency]/[unit of emission] + 9 + + + 31 + $/kW/yr + $/kW/yr + =[unit of currency]/kW/yr + 10 + + + 32 + $/MW + $/MW + =[unit of currency]/[unit of load] + 11 + + + 33 + $/MWh + $/MWh + =[unit of currency]/[unit of electric energy] + 12 + + + 34 + $000 + $000 + =[unit of currency]000 + 15 + + + 35 + MMBTU/h + GJ/h + =[unit of fuel]/h + 16 + + + 36 + MMBTu/MWh + GJ/MWh + =[unit of heat rate numerator]/[unit of heat rate denominator] + 17 + + + 37 + MMBTu/MMBTU + GJ/GJ + =[unit of energy]/[unit of fuel] + 18 + + + 38 + MMBTu/MWh² + GJ/MWh² + =[unit of heat rate numerator]/[unit of heat rate denominator]² + 19 + + + 39 + kg/MMBTU + kg/GJ + =[unit of emission]/[unit of fuel] + 21 + + + 40 + kg/MWh + kg/MWh + =[unit of emission]/[unit of electric energy] + 22 + + + 41 + $/GWh + $/GWh + =[unit of currency]/[1000 units of electric energy] + 33 + + + 42 + + + =[unit of distance]² + 35 + + + 43 + $/degree + $/° + =[unit of currency]/° + 38 + + + 44 + MMBTu/MWh³ + GJ/MWh³ + =[unit of heat rate numerator]/[unit of heat rate denominator]³ + 41 + + + 45 + /MW + MW/MW + =[unit of hydro efficiency numerator OLD]/[unit of hydro efficiency denominator OLD] + 49 + + + 46 + $/GWh + $/GWh + =[unit of currency]/[unit of hydro release] + 53 + + + 47 + $/kW + $/kW + =[unit of currency]/kW + 56 + + + 48 + $/hr + $/h + =[unit of currency]/hr + 57 + + + 49 + $/kW/month + $/kW/month + =[unit of currency]/kW/month + 61 + + + 50 + $/kW/week + $/kW/week + =[unit of currency]/kW/week + 62 + + + 51 + $/kW/day + $/kW/day + =[unit of currency]/kW/day + 63 + + + 52 + $/kWh + $/kWh + =[unit of currency]/kWh + 206 + + + 53 + rad + rad + 64 + + + 54 + $/MW + $/MW + =[unit of currency]/[unit of water flow] + 65 + + + 55 + month + month + 66 + + + 56 + $/MWh/MWh + $/MWh2 + =[unit of currency]/[unit of electric energy]/[unit of electric energy] + 67 + + + 57 + min + min + 69 + + + 58 + TJ + TJ + MMBtu + TJ + MMBtu + TJ + MMBtu + unit of gas volume + 75 + + + 59 + GJ + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of gas energy + 74 + + + 60 + $/GJ + $/GJ + =[unit of currency]/[unit of gas energy] + 72 + + + 61 + $/MMBTu + $/GJ + =[unit of currency]/[unit of energy] + 76 + + + 62 + cycles + cycles + 77 + + + 63 + kg/GJ + kg/GJ + =[unit of emission]/[unit of gas energy] + 78 + + + 64 + + + gal. + + gal. + + gal. + unit of water volume + 79 + + + 65 + m³/day + m³/day + =[unit of water volume]/day + 80 + + + 66 + kWh/m³ + kWh/m³ + =kWh/[unit of water volume] + 81 + + + 67 + $/m³ + $/m³ + =[unit of currency]/[unit of water volume] + 82 + + + 68 + m³/MWh + m³/MWh + =[unit of water volume]/[unit of electric energy] + 83 + + + 69 + kWh/TJ + kWh/TJ + =kWh/[unit of gas volume] + 84 + + + 70 + %/day + %/day + 85 + + + 71 + kg/m³ + kg/m³ + =[unit of emission]/[unit of water volume] + 87 + + + 72 + MMBTu/m³ + GJ/m³ + =[unit of energy]/[unit of water volume] + 88 + + + 73 + $/MMBTu/day + $/GJ/day + =[unit of currency]/[unit of energy]/day + 89 + + + 74 + $/MMBTu/day + $/mmBTU/day + =[unit of currency]/[unit of energy]/day + 90 + + + 75 + GJ + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of gas energy output + 202 + + + 76 + TJ + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 units of gas energy output + 203 + + + 77 + °C + °C + °F + °C + °F + °C + °F + unit of temperature + 204 + + + 78 + $/MMBTu/month + $/GJ/month + =[unit of currency]/[unit of energy]/month + 207 + + + 79 + kW + kW + 209 + + + 80 + kWh + kWh + 208 + + + 81 + km + km + m + km + m + km + m + electric vehicle efficiency denominator + 210 + + + 82 + Wh/km + Wh/km + =Wh/[electric vehicle efficiency denominator] + 211 + + + 83 + c + c + c + c + c + c + c + 1/100th unit of currency + 212 + + + 84 + c/kWh + c/kWh + =[1/100th unit of currency]/kWh + 213 + + + 85 + MJ + MJ + 214 + + + 86 + ~ + ~ + 215 + + + 87 + 1000·~ + 1000·~ + 228 + + + 88 + $/~ + $/~ + =[unit of currency]/~ + 216 + + + 89 + pa + pa + psi + pa + psi + pa + psi + unit of pressure + 217 + + + 90 + $/km + $/km + =[unit of currency]/[electric vehicle efficiency denominator] + 218 + + + 91 + kg/km + kg/km + =[unit of emission]/[electric vehicle efficiency denominator] + 219 + + + 92 + kg/kWh + kg/kWh + =[unit of emission]/kWh + 220 + + + 93 + ~ + ~ + 221 + + + 94 + ~ + ~ + 222 + + + 95 + $/~ + $/~ + =[unit of currency]/~ + 223 + + + 96 + $/~ + $/~ + =[unit of currency]/~ + 224 + + + 97 + MW·s + MW·s + 225 + + + 98 + GW·s + GW·s + 226 + + + 99 + $/m³/day/yr + $/m³/day/yr + =[unit of currency]/[unit of water volume]/day/yr + 227 + + + 100 + 1000·~ + 1000·~ + ~ + 1000·~ + ~ + 1000·~ + ~ + custom unit of gas volume + 229 + + + 101 + kWh/1000·~ + kWh/1000·~ + =kWh/[custom unit of gas volume] + 230 + + + 102 + kg/~ + kg/~ + =[unit of emission]/[custom unit of gas volume] + 231 + + + 103 + $/1000·~/month + $/~/month + =[unit of currency]/[custom unit of gas volume]/month + 232 + + + 104 + $/1000·~/day + $/~/day + =[unit of currency]/[custom unit of gas volume]/day + 233 + + + 105 + ~/MWh + ~/MWh + =~/MWh + 234 + + + 106 + ~/GJ + ~/GJ + =~/[unit of heat rate numerator] + 235 + + + 107 + ~/MW + ~/MW + =~/MW + 236 + + + 108 + $/~/yr + $/~/yr + =[unit of currency]/~/yr + 237 + + + 109 + MWh/~ + MWh/~ + =MWh/~ + 238 + + + 110 + MMBTu/~ + GJ/~ + =[unit of energy]/~ + 239 + + + 111 + GJ/~ + GJ/~ + =[unit of gas energy output]/~ + 240 + + + 112 + m³/~ + m³/~ + =[unit of water volume]/~ + 241 + + + 113 + MMBTU/~ + GJ/~ + =[unit of fuel]/~ + 242 + + + 114 + kg/~ + kg/~ + =[unit of emission]/~ + 243 + + + 115 + ~/min + ~/min + =~/min + 244 + + + 116 + MW/1000·~ + MW/1000·~ + =MW/1000·~ + 245 + + + 117 + MWh/1000·~ + MWh/1000·~ + =MWh/1000·~ + 246 + + + 118 + MW + MW + MW + MW + kW + MW + kW + unit of hydro efficiency numerator + 247 + + + 119 + MW + MW + MW + m³/s + ft³/s + m³/s + AF/hr + unit of hydro efficiency denominator + 248 + + + 120 + MW/MW + MW/MW + =[unit of hydro efficiency numerator]/[unit of hydro efficiency denominator] + 249 + + + 121 + MVA + MVA + unit of measurement for apparent power + 250 + + + 122 + MVAr + MVAr + unit of measurement for reactive power + 251 + + + 123 + ~/~ + ~/~ + 252 + + + 124 + ~/~² + ~/~² + 253 + + + 125 + ~/~³ + ~/~³ + 254 + + + 126 + mm + mm + inches + mm + inches + mm + inches + unit of rainfall + 255 + + + 127 + m/second + m/second + mph + m/second + mph + m/second + mph + unit of wind speed + 256 + + + 128 + mm/mercury + mm/mercury + inches/mercury + mm/mercury + inches/mercury + mm/mercury + inches/mercury + unit of barometric pressure + 257 + + + 129 + m³/min + m³/min + =[unit of water volume]/minute + 258 + + + 1 + 1 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 2 + 1 + 3 + 2 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 3 + 1 + 3 + 3 + Min Generation + Min Generation + 1 + 1 + false + true + false + false + true + false + true + true + 483 + 483 + Minimum Generation in the period + true + + + 4 + 1 + 3 + 4 + Min Stable Level Violation + Min Stable Level Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2633 + 2633 + Violation of [Min Stable Level] constraint. + true + + + 5 + 1 + 3 + 5 + Min Stable Level Violation Cost + Min Stable Level Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2634 + 2634 + Cost of [Min Stable Level] violations. + true + + + 6 + 1 + 3 + 6 + Max Generation + Max Generation + 1 + 1 + false + true + false + false + true + false + true + true + 431 + 431 + Maximum Generation in the period + true + + + 7 + 1 + 3 + 7 + Units Generating + Units Generating + 0 + 0 + true + false + false + false + true + false + true + true + 816 + 816 + Number of units generating + true + + + 8 + 1 + 3 + 8 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 9 + 1 + 3 + 9 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 10 + 1 + 3 + 10 + Committed Capacity + Committed Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2936 + 2936 + Capacity of committed units + true + + + 11 + 1 + 3 + 11 + Dispatchable Capacity + Dispatchable Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 149 + Capacity of committed units between technical limits + true + + + 12 + 1 + 3 + 12 + Undispatched Capacity + Undispatched Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 803 + Capacity on-line but undispatched + true + + + 13 + 1 + 3 + 13 + Undispatched Pump Capacity + Undispatched Pump Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2852 + 2852 + Pump capacity online but undispatched + true + + + 14 + 1 + 3 + 14 + Unused Capacity + Unused Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2853 + 2853 + Unused capacity (Rating x Units - Generation) + true + + + 15 + 1 + 3 + 15 + Unused Pump Capacity + Unused Pump Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2854 + 2854 + Unused pump capacity (Pump Load x Pump Units - station pumping load) + true + + + 16 + 1 + 3 + 16 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 17 + 1 + 3 + 17 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 18 + 1 + 3 + 18 + Min Up Time Violation + Min Up Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2598 + 2598 + Violation of min up time constraint. + true + + + 19 + 1 + 3 + 19 + Min Up Time Violation Cost + Min Up Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2599 + 2599 + Cost of violating min up time constraint. + true + + + 20 + 1 + 3 + 20 + Max Up Time Violation + Max Up Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2600 + 2600 + Violation of maximum up time constraint. + true + + + 21 + 1 + 3 + 21 + Max Up Time Violation Cost + Max Up Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2601 + 2601 + Cost of violating maximum up time constraint. + true + + + 22 + 1 + 3 + 22 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 23 + 1 + 3 + 23 + Min Down Time Violation + Min Down Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2602 + 2602 + Violation of min down time constraint. + true + + + 24 + 1 + 3 + 24 + Min Down Time Violation Cost + Min Down Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2603 + 2603 + Cost of violating min up time constraint. + true + + + 25 + 1 + 3 + 25 + Max Down Time Violation + Max Down Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2621 + 2621 + Violation of maximum down time constraint. + true + + + 26 + 1 + 3 + 26 + Max Down Time Violation Cost + Max Down Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2622 + 2622 + Cost of violating maximum down time constraint. + true + + + 27 + 1 + 3 + 27 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity generating + true + + + 28 + 1 + 3 + 28 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 29 + 1 + 3 + 29 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 30 + 1 + 3 + 30 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 31 + 1 + 3 + 31 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 32 + 1 + 3 + 32 + Hours Curtailed + Hours Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1058 + 1058 + Number of hours that non-positive-priced generation has been curtailed. + true + + + 33 + 1 + 3 + 33 + Capacity Curtailed + Energy Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1163 + 2344 + Amount of non-positive-priced generation curtailed. + true + + + 34 + 1 + 3 + 34 + Curtailment Factor + Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 1061 + 1061 + Proportion of non-positive-priced generation curtailed. + true + + + 35 + 1 + 3 + 35 + Ramp + Ramp + 9 + 9 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 36 + 1 + 3 + 36 + Ramp Up + Ramp Up + 1 + 1 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 37 + 1 + 3 + 37 + Max Ramp Up + Max Ramp Up + 9 + 9 + true + true + false + false + true + false + true + true + 448 + 448 + Maximum ramp up rate that applies at the given load point + true + + + 38 + 1 + 3 + 38 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 39 + 1 + 3 + 39 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 40 + 1 + 3 + 40 + Ramp Up Price + Ramp Up Price + 32 + 32 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint. + true + + + 41 + 1 + 3 + 41 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation. + true + + + 42 + 1 + 3 + 42 + Ramp Up Violation + Ramp Up Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint. + true + + + 43 + 1 + 3 + 43 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations. + true + + + 44 + 1 + 3 + 44 + Ramp Down + Ramp Down + 1 + 1 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 45 + 1 + 3 + 45 + Max Ramp Down + Max Ramp Down + 9 + 9 + true + true + false + false + true + false + true + true + 447 + 447 + Maximum ramp down rate that applies at the given load point + true + + + 46 + 1 + 3 + 46 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 47 + 1 + 3 + 47 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 48 + 1 + 3 + 48 + Ramp Down Price + Ramp Down Price + 32 + 32 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint. + true + + + 49 + 1 + 3 + 49 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation. + true + + + 50 + 1 + 3 + 50 + Ramp Down Violation + Ramp Down Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint. + true + + + 51 + 1 + 3 + 51 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations. + true + + + 52 + 1 + 3 + 52 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 53 + 1 + 3 + 53 + Fixed Load Violation + Fixed Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1168 + 1168 + Violation of [Fixed Load] constraint. + true + + + 54 + 1 + 3 + 54 + Fixed Load Violation Hours + Fixed Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1045 + 1045 + Number of hours that [Fixed Load] is violated. + true + + + 55 + 1 + 3 + 55 + Fixed Load Violation Cost + Fixed Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1042 + 1042 + Cost of [Fixed Load] violations. + true + + + 56 + 1 + 3 + 56 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 57 + 1 + 3 + 57 + Min Load Violation + Min Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1169 + 1169 + Violation of [Min Load] constraint. + true + + + 58 + 1 + 3 + 58 + Min Load Violation Hours + Min Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1046 + 1046 + Number of hours that [Min Load] is violated. + true + + + 59 + 1 + 3 + 59 + Min Load Violation Cost + Min Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1047 + 1047 + Cost of [Min Load] violations. + true + + + 60 + 1 + 3 + 60 + Max Load Violation + Max Load Violation + 1 + 1 + true + true + false + false + true + false + true + true + 2604 + 2604 + Violation of [Max Load] constraint. + true + + + 61 + 1 + 3 + 61 + Max Load Violation Cost + Max Load Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2605 + 2605 + Cost of [Max Load] violations. + true + + + 62 + 1 + 3 + 62 + Max Energy Violation + Max Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1192 + 1192 + Violation of [Max Energy] or [Max Capacity Factor] constraints. + true + + + 63 + 1 + 3 + 63 + Max Energy Violation Cost + Max Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1193 + 1193 + Cost of [Max Energy] or [Max Capacity Factor] constraint violations. + true + + + 64 + 1 + 3 + 64 + Min Energy Violation + Min Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1194 + 1194 + Violation of [Min Energy] or [Min Capacity Factor] constraints. + true + + + 65 + 1 + 3 + 65 + Min Energy Violation Cost + Min Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1195 + 1195 + Cost of [Min Energy] or [Min Capacity Factor] constraint violations. + true + + + 66 + 1 + 3 + 66 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints. + true + + + 67 + 1 + 3 + 67 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations. + true + + + 68 + 1 + 3 + 68 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise reserve + true + + + 69 + 1 + 3 + 69 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 70 + 1 + 3 + 70 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 71 + 1 + 3 + 71 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 72 + 1 + 3 + 72 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 73 + 1 + 3 + 73 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 74 + 1 + 3 + 74 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 75 + 1 + 3 + 75 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of additional generation that could be unloaded + true + + + 76 + 1 + 3 + 76 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 77 + 1 + 3 + 77 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 78 + 1 + 3 + 78 + Dispatched Capacity Available + Dispatched Capacity Available + 1 + 2 + true + true + false + false + true + false + true + true + 2204 + 2204 + The available capacity during unit commitment + false + + + 79 + 1 + 3 + 79 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 80 + 1 + 3 + 80 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 81 + 1 + 3 + 81 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 82 + 1 + 3 + 82 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 83 + 1 + 3 + 83 + Storage Release + Storage Release + 25 + 24 + true + true + false + false + true + false + true + true + 2780 + 2780 + Release from the Head Storage to the generator + true + + + 84 + 1 + 3 + 84 + Natural Inflow + Natural Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 530 + 530 + Natural inflow to the generator + true + + + 85 + 1 + 3 + 85 + Controllable Inflow + Controllable Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 2779 + 2779 + Controllable natural inflow to the generator + true + + + 86 + 1 + 3 + 86 + Uncontrolled Inflow + Uncontrolled Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 2777 + 2777 + Uncontrolled natural inflow to the generator + true + + + 87 + 1 + 3 + 87 + Spill + Spill + 25 + 24 + true + true + false + false + true + false + true + true + 758 + 758 + Spill to "the sea" + true + + + 88 + 1 + 3 + 88 + Units Pumping + Units Pumping + 0 + 0 + true + false + false + false + true + false + true + true + 1228 + 1228 + Number of units operating in pump mode + true + + + 89 + 1 + 3 + 89 + Pump Units Started + Pump Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 1322 + 1322 + Number of units stared in pump mode + true + + + 90 + 1 + 3 + 90 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by a unit in pumping mode + true + + + 91 + 1 + 3 + 91 + Pump Load Violation + Pump Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2606 + 2606 + Violation of maximum pump load constraint. + true + + + 92 + 1 + 3 + 92 + Pump Load Violation Cost + Pump Load Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2607 + 2607 + Cost of violating maximum pump load constraint. + true + + + 93 + 1 + 3 + 93 + Pump Operating Hours + Pump Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1642 + 1642 + Number of hours the unit is operating in pump mode + true + + + 94 + 1 + 3 + 94 + Net Sum Generation + Net Sum Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2374 + 2374 + Generation sum of pump load and generation + false + + + 95 + 1 + 3 + 95 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 96 + 1 + 3 + 96 + Fixed Pump Load + Fixed Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 1328 + 1328 + Fixed pump load + true + + + 97 + 1 + 3 + 97 + Fixed Pump Load Violation + Fixed Pump Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1331 + 1331 + Violation of [Fixed Pump Load] constraint. + true + + + 98 + 1 + 3 + 98 + Fixed Pump Load Violation Hours + Fixed Pump Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1330 + 1330 + Number of hours that [Fixed Pump Load] is violated. + true + + + 99 + 1 + 3 + 99 + Fixed Pump Load Violation Cost + Fixed Pump Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1332 + 1332 + Cost of [Fixed Pump Load] violations. + true + + + 100 + 1 + 3 + 100 + Water Release + Water Release + 25 + 24 + true + true + false + false + true + false + true + true + 854 + 854 + Water release from hydro generation + true + + + 101 + 1 + 3 + 101 + Water Pumped + Water Pumped + 25 + 24 + true + true + false + false + true + false + true + true + 853 + 853 + Water pumped in pumping mode + true + + + 102 + 1 + 3 + 102 + Units Sync Cond + Units Sync Cond + 0 + 0 + true + false + false + false + true + false + true + true + 1643 + 1643 + Number of units operating in synchronous condenser mode + true + + + 103 + 1 + 3 + 103 + Sync Cond Load + Sync Cond Load + 1 + 2 + true + true + false + false + true + false + true + true + 772 + 772 + Load drawn by a unit in synchronous condenser mode + true + + + 104 + 1 + 3 + 104 + Sync Cond Operating Hours + Sync Cond Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1644 + 1644 + Number of hours the unit is operating in synchronous condenser mode + true + + + 105 + 1 + 3 + 105 + Fuel Price + Fuel Price + 29 + 29 + true + true + false + false + true + false + true + true + 225 + 225 + Fuel price (when not using Fuels collection) + true + + + 106 + 1 + 3 + 106 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 107 + 1 + 3 + 107 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 108 + 1 + 3 + 108 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 109 + 1 + 3 + 109 + VO&M Charge + VO&M Charge + 33 + 33 + true + true + false + false + true + false + true + true + 849 + 849 + Variable operation and maintenance charge + true + + + 110 + 1 + 3 + 110 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 111 + 1 + 3 + 111 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 112 + 1 + 3 + 112 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 113 + 1 + 3 + 113 + Generation Credit Revenue + Generation Credit Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2766 + 2766 + Total revenue derived from generation credits + true + + + 114 + 1 + 3 + 114 + Generation Credit Price + Generation Credit Price + 33 + 33 + true + true + false + false + true + false + true + true + 2767 + 2767 + Average price of the generation credits + true + + + 115 + 1 + 3 + 115 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Cost of pump energy + true + + + 116 + 1 + 3 + 116 + Sync Cond Cost + Sync Cond Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1649 + 1649 + Cost of synchronous condenser energy + true + + + 117 + 1 + 3 + 117 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 118 + 1 + 3 + 118 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 119 + 1 + 3 + 119 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of generation + true + + + 120 + 1 + 3 + 120 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 121 + 1 + 3 + 121 + Start & Shutdown Penalty Cost + Start & Shutdown Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1183 + 1183 + Penalty cost of unit start up and shutdown + true + + + 122 + 1 + 3 + 122 + Start Profile Violation + Start Profile Violation + 1 + 1 + true + true + false + false + true + false + true + true + 2640 + 2640 + Violation of [Start Profile] constraint. + true + + + 123 + 1 + 3 + 123 + Start Profile Violation Cost + Start Profile Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2641 + 2641 + Cost of [Start Profile] violations. + true + + + 124 + 1 + 3 + 124 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + false + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 125 + 1 + 3 + 125 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 126 + 1 + 3 + 126 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 127 + 1 + 3 + 127 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 128 + 1 + 3 + 128 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 129 + 1 + 3 + 129 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 130 + 1 + 3 + 130 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 131 + 1 + 3 + 131 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 132 + 1 + 3 + 132 + Heat Rate + Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 260 + 260 + Average heat rate (total fuel divided by total generation) + true + + + 133 + 1 + 3 + 133 + Marginal Heat Rate + Marginal Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal generation level + true + + + 134 + 1 + 3 + 134 + Average Heat Rate + Average Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate + true + + + 135 + 1 + 3 + 135 + Efficiency + Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of generation + true + + + 136 + 1 + 3 + 136 + Marginal Fuel Cost + Marginal Fuel Cost + 33 + 33 + true + true + false + false + true + false + true + true + 1776 + 1776 + Short-run marginal cost fuel component + true + + + 137 + 1 + 3 + 137 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 138 + 1 + 3 + 138 + Average Cost + Average Cost + 33 + 33 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of generation + true + + + 139 + 1 + 3 + 139 + Average Total Cost + Average Total Cost + 33 + 33 + true + true + false + false + true + false + true + true + 1374 + 1374 + Average [Total Generation Cost] + true + + + 140 + 1 + 3 + 140 + Offer Base + Offer Base + 1 + 2 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for incr/decr style offer + true + + + 141 + 1 + 3 + 141 + Offer No Load Cost + Offer No Load Cost + 48 + 48 + true + false + false + false + true + false + true + true + 568 + 568 + Fixed dispatch cost component of generator offer. + true + + + 142 + 1 + 3 + 142 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band + true + + + 143 + 1 + 3 + 143 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 144 + 1 + 3 + 144 + Cost Price + Cost Price + 33 + 33 + true + true + true + false + true + false + true + true + 119 + 119 + Marginal cost of energy in band + true + + + 145 + 1 + 3 + 145 + Mark-up + Mark-up + 33 + 33 + true + true + true + false + true + false + true + true + 408 + 408 + Mark-up above marginal cost + true + + + 146 + 1 + 3 + 146 + Bid-Cost Mark-up + Bid-Cost Mark-up + 12 + 12 + true + true + true + false + true + false + true + true + 32 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + true + + + 147 + 1 + 3 + 147 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 148 + 1 + 3 + 148 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 149 + 1 + 3 + 149 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 150 + 1 + 3 + 150 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + true + true + false + true + true + 377 + 377 + Transmission marginal loss factor (MLF or TLF) + true + + + 151 + 1 + 3 + 151 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 152 + 1 + 3 + 152 + Pump Bid Base + Pump Bid Base + 1 + 2 + true + true + false + false + true + false + true + true + 1301 + 1301 + Base pump load for balancing bid + true + + + 153 + 1 + 3 + 153 + Pump Bid Quantity + Pump Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 1303 + 1303 + Pump load bid quantity in band + true + + + 154 + 1 + 3 + 154 + Pump Bid Price + Pump Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 1302 + 1302 + Bid price of pump load in band + true + + + 155 + 1 + 3 + 155 + Pump Bid Cleared + Pump Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1304 + 1304 + Quantity cleared in pump load bid band + true + + + 156 + 1 + 3 + 156 + Cleared Pump Bid Price + Cleared Pump Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1305 + 1305 + Price of marginal pump load bid band + true + + + 157 + 1 + 3 + 157 + Cleared Pump Bid Cost + Cleared Pump Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1307 + 1307 + Area cleared under generator pump bid curve + true + + + 158 + 1 + 3 + 158 + Pump Price Paid + Pump Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 1306 + 1306 + Price paid for pump load + true + + + 159 + 1 + 3 + 159 + Sync Cond Price Paid + Sync Cond Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 1650 + 1650 + Price paid for synchronous condenser load + true + + + 160 + 1 + 3 + 160 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 161 + 1 + 3 + 161 + Spark Spread + Spark Spread + 33 + 33 + true + true + false + false + true + false + true + true + 1062 + 1062 + Difference between price received and cost of fuel used to generate. + true + + + 162 + 1 + 3 + 162 + Clean Spark Spread + Clean Spark Spread + 33 + 33 + true + true + false + false + true + false + true + true + 1064 + 1064 + Difference between price received and cost of fuel used to generate accounting for incremental cost of emissions. + true + + + 163 + 1 + 3 + 163 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue + true + + + 164 + 1 + 3 + 164 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 165 + 1 + 3 + 165 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 166 + 1 + 3 + 166 + Heat Market Revenue + Heat Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 256 + 256 + Revenue from heat markets + true + + + 167 + 1 + 3 + 167 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 168 + 1 + 3 + 168 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 169 + 1 + 3 + 169 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before mark-up models. + true + + + 170 + 1 + 3 + 170 + Shadow Pool Revenue + Shadow Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1146 + 1146 + Pool revenue before mark-up models. + true + + + 171 + 1 + 3 + 171 + Shadow Price Received + Shadow Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 400 + 400 + Price received before uplift or mark-up models. + true + + + 172 + 1 + 3 + 172 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 173 + 1 + 3 + 173 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint applied to this Generator. + true + + + 174 + 1 + 3 + 174 + Scheduled Generation + Scheduled Generation + 1 + 2 + true + true + false + false + false + false + true + true + 721 + 721 + Generation in the unconstrained schedule (uniform pricing only) + true + + + 175 + 1 + 3 + 175 + Scheduled Revenue + Scheduled Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 724 + 724 + Revenue from scheduled generation (uniform pricing only) + true + + + 176 + 1 + 3 + 176 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 177 + 1 + 3 + 177 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 178 + 1 + 3 + 178 + Scheduled Generation Cost + Scheduled Generation Cost + 14 + 34 + true + true + false + true + false + false + true + true + 722 + 722 + Cost of generation in the unconstrained schedule (uniform pricing only) + true + + + 179 + 1 + 3 + 179 + Scheduled Offer Cost + Scheduled Offer Cost + 14 + 34 + true + true + false + true + false + false + true + true + 723 + 723 + Area cleared under generator offer curve in unconstrained schedule (uniform pricing only) + true + + + 180 + 1 + 3 + 180 + Scheduled Start & Shutdown Cost + Scheduled Start & Shutdown Cost + 14 + 34 + true + true + false + false + false + false + true + true + 725 + 725 + Cost of unit start ups and shut downs in the unconstrained schedule + true + + + 181 + 1 + 3 + 181 + CHP Generation + CHP Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1049 + 1049 + Combined heat and power generation from heat mode + true + + + 182 + 1 + 3 + 182 + Condense Mode Generation + Condense Mode Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1050 + 1050 + Combined heat and power generation from condense mode + true + + + 183 + 1 + 3 + 183 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Total Heat Production from Generator (including Ancillary Boiler) + true + + + 184 + 1 + 3 + 184 + CHP Heat Production + CHP Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 1051 + 1051 + Heat production from CHP mode + true + + + 185 + 1 + 3 + 185 + Boiler Heat Production + Boiler Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 41 + 41 + Heat production from Ancillary Boiler + true + + + 186 + 1 + 3 + 186 + Heat Fuel Offtake + Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 254 + 254 + Total Fuel Offtake for Heat Production + true + + + 187 + 1 + 3 + 187 + CHP Power Fuel Offtake + CHP Power Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1052 + 1052 + Fuel Offtake proportion for Electricity production + true + + + 188 + 1 + 3 + 188 + CHP Heat Fuel Offtake + CHP Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1053 + 1053 + Fuel Offtake proportion for Heat production + true + + + 189 + 1 + 3 + 189 + CHP Heat Surrogate Fuel Offtake + CHP Heat Surrogate Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1054 + 1054 + Fuel Offtake proportion for Heat production (estimated as input user) + true + + + 190 + 1 + 3 + 190 + Boiler Fuel Offtake + Boiler Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1055 + 1055 + Fuel Offtake of Ancillary Boiler + true + + + 191 + 1 + 3 + 191 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Cost of heat production + true + + + 192 + 1 + 3 + 192 + Heat Revenue + Heat Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 267 + 267 + Revenue from heat production + true + + + 193 + 1 + 3 + 193 + Max Heat + Max Heat + 15 + 16 + true + true + false + true + true + false + true + true + 1514 + 1514 + Maximum heat allowed in storage + true + + + 194 + 1 + 3 + 194 + Max Heat Violation + Max Heat Violation + 15 + 16 + true + true + false + true + true + false + true + true + 2608 + 2608 + Amount above Generator Max Heat + true + + + 195 + 1 + 3 + 195 + Max Heat Violation Cost + Max Heat Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2609 + 2609 + Cost of Generator Max Heat violoation + true + + + 196 + 1 + 3 + 196 + Min Heat + Min Heat + 15 + 16 + true + true + false + true + true + false + true + true + 1515 + 1515 + Minimum heat allowed in storage + true + + + 197 + 1 + 3 + 197 + Opening Heat + Opening Heat + 15 + 16 + true + true + false + false + true + false + true + true + 1513 + 1513 + Initial heat in the storage + true + + + 198 + 1 + 3 + 198 + Closing Heat + Closing Heat + 15 + 16 + true + true + false + false + true + false + true + true + 1517 + 1517 + Heat in storage at the end of the period + true + + + 199 + 1 + 3 + 199 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from storage + true + + + 200 + 1 + 3 + 200 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into storage + true + + + 201 + 1 + 3 + 201 + Net Heat Withdrawal + Net Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1542 + 1542 + Net of withdrawal and injection + true + + + 202 + 1 + 3 + 202 + Heat Loss + Heat Loss + 15 + 16 + true + true + false + true + true + false + true + true + 1516 + 1516 + Rate at which heat is lost from storage + true + + + 203 + 1 + 3 + 203 + Heat Withdrawal Cost + Heat Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1543 + 1543 + Cost of withdrawing heat from storage + true + + + 204 + 1 + 3 + 204 + Heat Injection Cost + Heat Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1544 + 1544 + Cost of injecting heat into storage + true + + + 205 + 1 + 3 + 205 + Heat Shadow Price + Heat Shadow Price + 61 + 61 + true + true + false + false + true + false + true + true + 1545 + 1545 + Shadow price of heat in storage + true + + + 206 + 1 + 3 + 206 + Water Offtake + Water Offtake + 64 + 64 + true + true + false + false + true + false + true + true + 1801 + 1801 + Water recycled through the generator (e.g. for cooling) + true + + + 207 + 1 + 3 + 207 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + false + true + false + true + true + 1803 + 1803 + Water consumed by the generator (e.g. evaporative cooling losses) + true + + + 208 + 1 + 3 + 208 + Water Cost + Water Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1809 + 1809 + Cost of water consumed + true + + + 209 + 1 + 3 + 209 + Water Price Paid + Water Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 1808 + 1808 + Price paid for water consumption + true + + + 210 + 1 + 3 + 210 + Energy Utilisation Factor + Energy Utilisation Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2088 + 2088 + Portion of available technical capacity dispatched + true + + + 211 + 1 + 3 + 211 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served at the Gas Node attached to the generator + true + + + 212 + 1 + 6 + 212 + Max Capacity + Max Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 414 + 414 + Maximum generating capacity of each unit + true + + + 213 + 1 + 6 + 213 + Min Capacity + Min Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 2804 + 2804 + Minimum generating capacity of each unit + true + + + 214 + 1 + 6 + 214 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 215 + 1 + 6 + 215 + Rating + Rating + 1 + 1 + true + true + false + false + true + false + true + true + 665 + 665 + Rated capacity of units + true + + + 216 + 1 + 6 + 216 + Raw Rating + Raw Rating + 1 + 1 + true + true + false + false + true + false + true + true + 1872 + 1872 + Rated output capacity of units without considering outages or degradation + true + + + 217 + 1 + 6 + 217 + Rated Capacity + Rated Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + true + + + 218 + 1 + 6 + 218 + Rating Violation + Rating Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2637 + 2637 + Violation of Rating constraint + true + + + 219 + 1 + 6 + 219 + Rating Violation Cost + Rating Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2638 + 2638 + Cost of Rating violation + true + + + 220 + 1 + 6 + 220 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the generator to capacity reserves + true + + + 221 + 1 + 6 + 221 + Net Firm Capacity + Net Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 2701 + 2701 + Firm Capacity net of maintenance and degradation + true + + + 222 + 1 + 6 + 222 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + false + true + false + false + 1012 + 1012 + Contribution to regional capacity reserves + true + + + 223 + 1 + 7 + 223 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 224 + 1 + 7 + 224 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity lost to maintenance + true + + + 225 + 1 + 7 + 225 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 226 + 1 + 7 + 226 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 227 + 1 + 7 + 227 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 228 + 1 + 7 + 228 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 229 + 1 + 7 + 229 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 230 + 1 + 7 + 230 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 231 + 1 + 7 + 231 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 232 + 1 + 7 + 232 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 233 + 1 + 7 + 233 + Outage Hours + Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2561 + 2561 + Number of hours on outage + true + + + 234 + 1 + 7 + 234 + Outage Rate + Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 2562 + 2562 + Proportion of installed capacity on outage + true + + + 235 + 1 + 7 + 235 + Operating or Forced Outage Hours + Operating or Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1821 + 1821 + Number of hours operating or on forced outage + false + + + 236 + 1 + 7 + 236 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 237 + 1 + 7 + 237 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for generation + true + + + 238 + 1 + 8 + 238 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 239 + 1 + 8 + 239 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 240 + 1 + 8 + 240 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 241 + 1 + 8 + 241 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 242 + 1 + 8 + 242 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 243 + 1 + 8 + 243 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the generator for capacity + true + + + 244 + 1 + 8 + 244 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 245 + 1 + 8 + 245 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 246 + 1 + 8 + 246 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 247 + 1 + 8 + 247 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 248 + 1 + 8 + 248 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 249 + 1 + 8 + 249 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 250 + 1 + 8 + 250 + Shadow Capacity Built + Shadow Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1823 + 1823 + Capacity built (Max Capacity x Units Built) before Competition models. + true + + + 251 + 1 + 8 + 251 + Age + Age + 8 + 8 + true + true + false + false + true + false + false + false + 1373 + 1373 + Average age of generating units + true + + + 252 + 1 + 8 + 252 + Recovery Price + Recovery Price + 33 + 33 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of generator expansion + true + + + 253 + 1 + 8 + 253 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by operating the generator + true + + + 254 + 1 + 12 + 254 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 255 + 1 + 12 + 255 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 256 + 1 + 12 + 256 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 257 + 5 + 3 + 1 + Transition Cost + Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1139 + 1139 + Cost required for a Generator transition + true + + + 258 + 5 + 3 + 2 + Transition Count + Transition Count + 0 + 0 + true + true + false + false + true + false + true + true + 1882 + 1882 + The number of transitions in the given period + true + + + 259 + 7 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 260 + 7 + 1 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the generator + true + + + 261 + 7 + 1 + 3 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 262 + 7 + 1 + 4 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 263 + 7 + 1 + 5 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used including transport charges + true + + + 264 + 7 + 1 + 6 + Transport Charge + Transport Charge + 29 + 29 + true + true + false + true + true + false + true + true + 800 + 800 + Transport charge (added to base fuel price) + true + + + 265 + 7 + 1 + 7 + Transport Cost + Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 996 + 996 + Cost of transporting fuel to the generator + true + + + 266 + 7 + 1 + 8 + Transition Cost + Transition Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1139 + 1139 + Cost of transitioning to or from this Fuel. + true + + + 267 + 7 + 1 + 9 + Marginal Heat Rate + Marginal Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal generation level + true + + + 268 + 7 + 1 + 10 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 269 + 7 + 1 + 11 + Hours Available + Hours Available + 6 + 6 + true + true + false + false + true + false + true + true + 275 + 275 + If the fuel is available for use by the generator + true + + + 270 + 7 + 1 + 12 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + MW offer in band + true + + + 271 + 7 + 1 + 13 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 272 + 7 + 1 + 14 + Cost Price + Cost Price + 33 + 33 + true + true + true + false + true + false + true + true + 119 + 119 + Marginal cost of energy in band + true + + + 273 + 7 + 1 + 15 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + MW cleared in band + true + + + 274 + 7 + 1 + 16 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours the Fuel is in use by the Generator + true + + + 275 + 8 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 276 + 8 + 1 + 2 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 277 + 8 + 1 + 3 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Total cost of fuel used including transport charges + true + + + 278 + 8 + 1 + 4 + Transport Cost + Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 996 + 996 + Cost of transporting fuel to the generator + true + + + 279 + 9 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the generator + true + + + 280 + 9 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the generator + true + + + 281 + 9 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the generator + true + + + 282 + 12 + 3 + 1 + Participation Factor + Participation Factor + 0 + 0 + true + true + false + false + false + false + false + true + 1840 + 1840 + Generation Participation Factor at the node + false + + + 283 + 16 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the generator + true + + + 284 + 16 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the generator + true + + + 285 + 16 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the generator + true + + + 286 + 16 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas field to the generator + true + + + 287 + 16 + 3 + 5 + Delivered Price + Delivered Price + 29 + 29 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas field to the generator + true + + + 288 + 17 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the generator + true + + + 289 + 17 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the generator + true + + + 290 + 17 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the generator + true + + + 291 + 17 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas plant to the generator + true + + + 292 + 17 + 3 + 5 + Delivered Price + Delivered Price + 29 + 29 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas plant to the generator + true + + + 293 + 18 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 294 + 20 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the generator + true + + + 295 + 20 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the generator + true + + + 296 + 20 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas storage to the generator + true + + + 297 + 20 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas storage to the generator + true + + + 298 + 20 + 3 + 5 + Delivered Price + Delivered Price + 29 + 29 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas storage to the generator + true + + + 299 + 21 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the generator + true + + + 300 + 21 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the generator + true + + + 301 + 21 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the generator + true + + + 302 + 21 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas contract to the generator + true + + + 303 + 21 + 3 + 5 + Delivered Price + Delivered Price + 29 + 29 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas contract to the generator + true + + + 304 + 22 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the generator + true + + + 305 + 22 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the generator + true + + + 306 + 22 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the generator + true + + + 307 + 24 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 308 + 24 + 3 + 2 + Dispatchable Capacity + Dispatchable Energy + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 2341 + On-line capacity + true + + + 309 + 24 + 3 + 3 + Undispatched Capacity + Undispatched Energy + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 2342 + Capacity on-line but undispatched + true + + + 310 + 24 + 3 + 4 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 311 + 24 + 3 + 5 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 312 + 24 + 3 + 6 + Heat Fuel Offtake + Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 254 + 254 + Fuel used for heat production + true + + + 313 + 24 + 3 + 7 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 314 + 24 + 3 + 8 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 315 + 24 + 3 + 9 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 316 + 24 + 3 + 10 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 317 + 24 + 3 + 11 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 318 + 24 + 3 + 12 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by a unit in pumping mode + true + + + 319 + 24 + 3 + 13 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 320 + 24 + 3 + 14 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 321 + 24 + 3 + 15 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 322 + 24 + 3 + 16 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 323 + 24 + 3 + 17 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 324 + 24 + 3 + 18 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 325 + 24 + 3 + 19 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Heat production + true + + + 326 + 24 + 3 + 20 + Boiler Heat Production + Boiler Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 41 + 41 + Heat production from auxiliary boiler + true + + + 327 + 24 + 3 + 21 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 328 + 24 + 3 + 22 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 329 + 24 + 3 + 23 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 330 + 24 + 3 + 24 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 331 + 24 + 3 + 25 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 332 + 24 + 3 + 26 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 333 + 24 + 3 + 27 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Pool cost + true + + + 334 + 24 + 3 + 28 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 335 + 24 + 3 + 29 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 336 + 24 + 3 + 30 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Cost of heat production + true + + + 337 + 24 + 3 + 31 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of generation + true + + + 338 + 24 + 3 + 32 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts + true + + + 339 + 24 + 3 + 33 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 340 + 24 + 3 + 34 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 341 + 24 + 3 + 35 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 342 + 24 + 3 + 36 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 343 + 24 + 3 + 37 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 344 + 24 + 3 + 38 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 345 + 24 + 3 + 39 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 346 + 24 + 3 + 40 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue + true + + + 347 + 24 + 3 + 41 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 348 + 24 + 3 + 42 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 349 + 24 + 3 + 43 + Heat Revenue + Heat Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 267 + 267 + Revenue from heat production + true + + + 350 + 24 + 3 + 44 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 351 + 24 + 3 + 45 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 352 + 24 + 3 + 46 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 353 + 24 + 3 + 47 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 354 + 24 + 3 + 48 + Scheduled Generation + Scheduled Generation + 1 + 2 + true + true + false + false + false + false + true + true + 721 + 721 + Generation in the unconstrained schedule (uniform pricing only) + true + + + 355 + 24 + 3 + 49 + Scheduled Revenue + Scheduled Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 724 + 724 + Revenue from scheduled generation (uniform pricing only) + true + + + 356 + 24 + 3 + 50 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 357 + 24 + 3 + 51 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 358 + 24 + 3 + 52 + Scheduled Generation Cost + Scheduled Generation Cost + 14 + 34 + true + true + false + true + false + false + true + true + 722 + 722 + Cost of generation in the unconstrained schedule (uniform pricing only) + true + + + 359 + 24 + 3 + 53 + Scheduled Offer Cost + Scheduled Offer Cost + 14 + 34 + true + true + false + true + false + false + true + true + 723 + 723 + Area cleared under generator offer curve in unconstrained schedule (uniform pricing only) + true + + + 360 + 24 + 3 + 54 + Scheduled Start & Shutdown Cost + Scheduled Start & Shutdown Cost + 14 + 34 + true + true + false + false + false + false + true + true + 725 + 725 + Cost of unit start ups and shut downs in the unconstrained schedule + true + + + 361 + 24 + 6 + 55 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 362 + 24 + 6 + 56 + Rated Capacity + Rated Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 663 + 663 + Rated capacity (Rating x Units) + true + + + 363 + 24 + 6 + 57 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 364 + 24 + 7 + 58 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + false + true + true + 392 + 392 + Capacity out on maintenance + true + + + 365 + 24 + 7 + 59 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 366 + 24 + 8 + 60 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 367 + 24 + 8 + 61 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 368 + 24 + 8 + 62 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 369 + 24 + 8 + 63 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments to the generator + true + + + 370 + 24 + 8 + 64 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 371 + 24 + 8 + 65 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of units retired + true + + + 372 + 25 + 3 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + false + false + 1437 + 1437 + Consumption of the Commodity by the Generator + true + + + 373 + 26 + 3 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + false + false + 624 + 624 + Production of the Commodity by the Generator + true + + + 374 + 29 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Capacity sold to market + true + + + 375 + 29 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from capacity market + true + + + 376 + 29 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 377 + 29 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 378 + 30 + 1 + 1 + Sales + Sales + 0 + 0 + true + true + false + false + true + false + true + true + 718 + 718 + Heat sold into the market + true + + + 379 + 30 + 1 + 2 + Revenue + Revenue + 0 + 0 + true + true + false + false + true + false + true + true + 696 + 696 + Revenue from heat sales + true + + + 380 + 40 + 3 + 1 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 381 + 40 + 3 + 2 + Tax + Tax + 88 + 88 + true + true + false + false + true + false + true + true + 785 + 785 + Fuel tax + true + + + 382 + 40 + 3 + 3 + Total Price + Total Price + 88 + 88 + true + true + false + false + true + false + true + true + 792 + 792 + Fuel price including tax + true + + + 383 + 40 + 3 + 4 + Time-weighted Price + Time-weighted Price + 88 + 88 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price of fuel. + true + + + 384 + 40 + 3 + 5 + Offtake + Offtake + 86 + 87 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 385 + 40 + 3 + 6 + Max Offtake + Max Offtake + 86 + 86 + false + true + false + true + true + false + true + true + 939 + 939 + Maximum fuel offtake per interval + true + + + 386 + 40 + 3 + 7 + Min Offtake + Min Offtake + 86 + 86 + false + true + false + true + true + false + true + true + 944 + 944 + Minimum fuel offtake per interval + true + + + 387 + 40 + 3 + 8 + Max Inventory + Max Inventory + 87 + 87 + true + true + false + true + true + false + true + true + 1589 + 1589 + Maximum fuel allowed in stockpile + true + + + 388 + 40 + 3 + 9 + Min Inventory + Min Inventory + 87 + 87 + true + true + false + true + true + false + true + true + 1590 + 1590 + Minimum fuel required in stockpile + true + + + 389 + 40 + 3 + 10 + Opening Inventory + Opening Inventory + 87 + 87 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial fuel in the stockpile + true + + + 390 + 40 + 3 + 11 + Closing Inventory + Closing Inventory + 87 + 87 + true + true + false + false + true + false + true + true + 1593 + 1593 + Final fuel in stockpile + true + + + 391 + 40 + 3 + 12 + Delivery + Delivery + 86 + 87 + true + true + false + true + true + false + true + true + 1592 + 1592 + Fuel delivered to the stockpile + true + + + 392 + 40 + 3 + 13 + Withdrawal + Withdrawal + 86 + 87 + true + true + false + true + true + false + true + true + 1391 + 1391 + Fuel withdrawn from the stockpile + true + + + 393 + 40 + 3 + 14 + Net Withdrawal + Net Withdrawal + 86 + 87 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net of withdrawal and delivery + true + + + 394 + 40 + 3 + 15 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used excluding taxation + true + + + 395 + 40 + 3 + 16 + Tax Cost + Tax Cost + 14 + 34 + true + true + false + true + true + false + true + true + 897 + 897 + Total taxation paid on fuel used + true + + + 396 + 40 + 3 + 17 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of deliveries to the stockpile + true + + + 397 + 40 + 3 + 18 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost applied to closing inventory in the stockpile + true + + + 398 + 40 + 3 + 19 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost applied to unused inventory capacity in the stockpile + true + + + 399 + 40 + 3 + 20 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawing fuel from stockpile + true + + + 400 + 40 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 401 + 40 + 3 + 22 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total cost of fuel used + true + + + 402 + 40 + 3 + 23 + Shadow Price + Shadow Price + 88 + 14 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of fuel (if defined as input, sets the internal price for fuel) + true + + + 403 + 40 + 3 + 24 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the fuel + true + + + 404 + 40 + 3 + 25 + Average Heat Rate + Average Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate of generation with the fuel + true + + + 405 + 40 + 3 + 26 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served at the Gas Node attached to the fuel + true + + + 406 + 40 + 6 + 27 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed generation capacity + true + + + 407 + 40 + 12 + 28 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 408 + 40 + 12 + 29 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 409 + 40 + 12 + 30 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 410 + 43 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the fuel + true + + + 411 + 43 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the fuel + true + + + 412 + 43 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the fuel + true + + + 413 + 44 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the fuel + true + + + 414 + 44 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the fuel + true + + + 415 + 44 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the fuel + true + + + 416 + 45 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the fuel + true + + + 417 + 45 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the fuel + true + + + 418 + 45 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the fuel + true + + + 419 + 47 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the fuel + true + + + 420 + 47 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the fuel + true + + + 421 + 47 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas storage to the fuel + true + + + 422 + 48 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the fuel + true + + + 423 + 48 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the fuel + true + + + 424 + 48 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the fuel + true + + + 425 + 49 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the fuel + true + + + 426 + 49 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the fuel + true + + + 427 + 49 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the fuel + true + + + 428 + 51 + 3 + 1 + Consumption + Consumption + 86 + 87 + true + true + false + true + true + false + true + true + 1437 + 1437 + Fuel consumption by the Facility + true + + + 429 + 53 + 1 + 1 + Sales + Sales + 86 + 87 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 430 + 53 + 1 + 2 + Purchases + Purchases + 86 + 87 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 431 + 53 + 1 + 3 + Net Sales + Net Sales + 86 + 87 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 432 + 53 + 1 + 4 + Net Purchases + Net Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 433 + 53 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 434 + 53 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 435 + 53 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 436 + 53 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 437 + 57 + 3 + 1 + Offtake + Offtake + 86 + 87 + true + true + true + true + true + false + true + true + 577 + 577 + Fuel offtake associated with the contract + true + + + 438 + 57 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of fuel used under contract + true + + + 439 + 57 + 3 + 3 + Price + Price + 88 + 88 + true + true + true + false + true + false + true + true + 612 + 612 + Contract price + true + + + 440 + 57 + 3 + 4 + Take-or-Pay Price + Take-or-Pay Price + 88 + 88 + true + true + false + false + true + false + true + true + 777 + 777 + Contract take-or-pay price + true + + + 441 + 57 + 3 + 5 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with fuel scarcity + true + + + 442 + 57 + 3 + 6 + Take-or-Pay Shadow Price + Take-or-Pay Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 783 + 783 + Shadow price associated with take-or-pay commitment + true + + + 443 + 57 + 3 + 7 + Take-or-Pay Violation + Take-or-Pay Violation + 86 + 87 + true + true + false + true + true + false + true + true + 1439 + 1439 + Violation of take-or-pay constraint + true + + + 444 + 57 + 3 + 8 + Take-or-Pay Violation Cost + Take-or-Pay Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1440 + 1440 + Cost of take-or-pay constraint violation + true + + + 445 + 57 + 3 + 9 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Total fixed operations and maintenance costs + true + + + 446 + 57 + 3 + 10 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 447 + 57 + 12 + 11 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 448 + 57 + 12 + 12 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 449 + 57 + 12 + 13 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 450 + 65 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 451 + 65 + 3 + 2 + Units Operating + Units Operating + 0 + 0 + true + false + false + false + true + false + true + true + 2049 + 2049 + Number of units operating + true + + + 452 + 65 + 3 + 3 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 453 + 65 + 3 + 4 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 454 + 65 + 3 + 5 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load drawn by the facility + true + + + 455 + 65 + 3 + 6 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of maximum load being used + true + + + 456 + 65 + 3 + 7 + Max Load + Max Load + 1 + 1 + true + true + false + false + true + false + true + true + 436 + 436 + Maximum load of each unit + true + + + 457 + 65 + 3 + 8 + Production Rate + Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 627 + 1743 + Rate of production/volume of production + true + + + 458 + 65 + 3 + 9 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of energy conversion process + true + + + 459 + 65 + 3 + 10 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 460 + 65 + 3 + 11 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 461 + 65 + 3 + 12 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 462 + 65 + 3 + 13 + Ramp + Ramp + 9 + 9 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 463 + 65 + 3 + 14 + Ramp Up + Ramp Up + 1 + 1 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 464 + 65 + 3 + 15 + Max Ramp Up + Max Ramp Up + 9 + 9 + true + true + false + false + true + false + true + true + 448 + 448 + Maximum ramp up rate that applies at the given load point + true + + + 465 + 65 + 3 + 16 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 466 + 65 + 3 + 17 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 467 + 65 + 3 + 18 + Ramp Up Price + Ramp Up Price + 32 + 32 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint. + true + + + 468 + 65 + 3 + 19 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation. + true + + + 469 + 65 + 3 + 20 + Ramp Up Violation + Ramp Up Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint. + true + + + 470 + 65 + 3 + 21 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations. + true + + + 471 + 65 + 3 + 22 + Ramp Down + Ramp Down + 1 + 1 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 472 + 65 + 3 + 23 + Max Ramp Down + Max Ramp Down + 9 + 9 + true + true + false + false + true + false + true + true + 447 + 447 + Maximum ramp down rate that applies at the given load point + true + + + 473 + 65 + 3 + 24 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 474 + 65 + 3 + 25 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 475 + 65 + 3 + 26 + Ramp Down Price + Ramp Down Price + 32 + 32 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint. + true + + + 476 + 65 + 3 + 27 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation. + true + + + 477 + 65 + 3 + 28 + Ramp Down Violation + Ramp Down Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint. + true + + + 478 + 65 + 3 + 29 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations. + true + + + 479 + 65 + 3 + 30 + Max Production Violation + Max Production Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] or [Max Capacity Factor] constraints + true + + + 480 + 65 + 3 + 31 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] or [Max Capacity Factor] constraint violations + true + + + 481 + 65 + 3 + 32 + Min Production Violation + Min Production Violation + 0 + 0 + true + true + false + false + true + false + true + true + 2309 + 2309 + Violation of [Min Production] or [Min Capacity Factor] constraints + true + + + 482 + 65 + 3 + 33 + Min Production Violation Cost + Min Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2311 + 2311 + Cost of [Min Production] or [Min Capacity Factor] constraint violations + true + + + 483 + 65 + 3 + 34 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints. + true + + + 484 + 65 + 3 + 35 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations. + true + + + 485 + 65 + 3 + 36 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost of electric load + true + + + 486 + 65 + 3 + 37 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 487 + 65 + 3 + 38 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 488 + 65 + 3 + 39 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of production + true + + + 489 + 65 + 3 + 40 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 490 + 65 + 3 + 41 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including VO&M, start and shutdown costs + true + + + 491 + 65 + 3 + 42 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including VO&M, start and shutdown costs, and ramp costs + true + + + 492 + 65 + 3 + 43 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 1803 + 1803 + Water consumed by the Power2X facility + true + + + 493 + 65 + 3 + 44 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 494 + 65 + 3 + 45 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 495 + 65 + 3 + 46 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 496 + 65 + 3 + 47 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 497 + 65 + 3 + 48 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 498 + 65 + 3 + 49 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 499 + 65 + 3 + 50 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by the electric load + true + + + 500 + 65 + 3 + 51 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Quantity cleared in band + true + + + 501 + 65 + 3 + 52 + Cleared Bid Price + Cleared Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 502 + 65 + 3 + 53 + Cleared Bid Cost + Cleared Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2551 + 2551 + Area cleared under the Power2X bid curve + true + + + 503 + 65 + 3 + 54 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 504 + 65 + 3 + 55 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 505 + 65 + 3 + 56 + Shadow Price + Shadow Price + 29 + 29 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of production + true + + + 506 + 65 + 3 + 57 + Recovery Price + Recovery Price + 33 + 33 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price + true + + + 507 + 65 + 3 + 58 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by operating the Power2X + true + + + 508 + 65 + 6 + 59 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Load x Units) + true + + + 509 + 65 + 6 + 60 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the Power2X object to capacity reserves + true + + + 510 + 65 + 6 + 61 + Net Firm Capacity + Net Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 2701 + 2701 + Firm Capacity net of maintenance and degradation + true + + + 511 + 65 + 7 + 62 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service due to maintenance + true + + + 512 + 65 + 7 + 63 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 513 + 65 + 7 + 64 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 514 + 65 + 7 + 65 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 515 + 65 + 7 + 66 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 516 + 65 + 7 + 67 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 517 + 65 + 7 + 68 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 518 + 65 + 8 + 69 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 519 + 65 + 8 + 70 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Load x Units Built) + true + + + 520 + 65 + 8 + 71 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 521 + 65 + 8 + 72 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 522 + 65 + 8 + 73 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 523 + 65 + 8 + 74 + Levelized Cost + Levelized Cost + 29 + 29 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of the commodity produced + true + + + 524 + 65 + 12 + 75 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 525 + 65 + 12 + 76 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 526 + 65 + 12 + 77 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 527 + 81 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of BESS units installed + true + + + 528 + 81 + 3 + 2 + Energy + Energy + 3 + 3 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored in the BESS + true + + + 529 + 81 + 3 + 3 + SoC + SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1660 + 1660 + State of Charge + true + + + 530 + 81 + 3 + 4 + Available SoC + Available SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1661 + 1661 + SoC less minimum SoC + true + + + 531 + 81 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + generation (battery discharge) + true + + + 532 + 81 + 3 + 6 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + load (battery recharge) + true + + + 533 + 81 + 3 + 7 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 534 + 81 + 3 + 8 + Charging + Charging + 1 + 2 + true + true + false + false + true + false + true + true + 2113 + 2113 + Charge rate/energy + true + + + 535 + 81 + 3 + 9 + Discharging + Discharging + 1 + 2 + true + true + false + false + true + false + true + true + 2114 + 2114 + Discharge rate/energy + true + + + 536 + 81 + 3 + 10 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Total recharge and discharge losses + true + + + 537 + 81 + 3 + 11 + Self Discharge Losses + Self Discharge Losses + 25 + 24 + true + true + false + false + true + false + true + true + 2711 + 2711 + Losses due to self-discharge + true + + + 538 + 81 + 3 + 12 + Total Losses + Total Losses + 1 + 2 + true + true + false + false + true + false + true + true + 2712 + 2712 + Sum of self discharge, recharge and discharge losses. + true + + + 539 + 81 + 3 + 13 + Hours Charging + Hours Charging + 6 + 6 + true + true + false + false + true + false + true + true + 1662 + 1662 + Number of hours in charging state + true + + + 540 + 81 + 3 + 14 + Hours Discharging + Hours Discharging + 6 + 6 + true + true + false + false + true + false + true + true + 1663 + 1663 + Number of hours in discharging state + true + + + 541 + 81 + 3 + 15 + Hours Idle + Hours Idle + 6 + 6 + true + true + false + false + true + false + true + true + 1664 + 1664 + Number of hours in idle state + true + + + 542 + 81 + 3 + 16 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours battery has been operating + true + + + 543 + 81 + 3 + 17 + Units Charging + Units Charging + 0 + 0 + true + true + false + false + true + false + true + true + 3039 + 3039 + Number of units charging + true + + + 544 + 81 + 3 + 18 + Units Discharging + Units Discharging + 0 + 0 + true + true + false + false + true + false + true + true + 3040 + 3040 + Number of units discharging + true + + + 545 + 81 + 3 + 19 + Charge Units Started + Charge Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 3041 + 3041 + Number of charge units started + true + + + 546 + 81 + 3 + 20 + Charge Units Shutdown + Charge Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 3042 + 3042 + Number of charge units shutdown + true + + + 547 + 81 + 3 + 21 + Discharge Units Started + Discharge Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 3043 + 3043 + Number of discharge units started + true + + + 548 + 81 + 3 + 22 + Discharge Units Shutdown + Discharge Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 3044 + 3044 + Number of discharge units shutdown + true + + + 549 + 81 + 3 + 23 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 550 + 81 + 3 + 24 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 551 + 81 + 3 + 25 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 552 + 81 + 3 + 26 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 553 + 81 + 3 + 27 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 554 + 81 + 3 + 28 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 555 + 81 + 3 + 29 + Auxiliary Consumption + Auxiliary Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 2974 + 2974 + Total auxiliary load (fixed, base and incr) + true + + + 556 + 81 + 3 + 30 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 557 + 81 + 3 + 31 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operations and maintenance cost + true + + + 558 + 81 + 3 + 32 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 559 + 81 + 3 + 33 + Capacity Factor + Capacity Factor + 12 + 12 + false + true + false + false + true + false + true + true + 58 + 58 + Proportion of battery discharge capacity utilized + true + + + 560 + 81 + 3 + 34 + Load Factor + Load Factor + 12 + 12 + false + true + false + false + true + false + true + true + 876 + 876 + Proportion of battery recharge load utilized + true + + + 561 + 81 + 3 + 35 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 562 + 81 + 3 + 36 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by load + true + + + 563 + 81 + 3 + 37 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Generation revenue + true + + + 564 + 81 + 3 + 38 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Load cost + true + + + 565 + 81 + 3 + 39 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 566 + 81 + 3 + 40 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 567 + 81 + 3 + 41 + Offer Base + Offer Base + 1 + 2 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for incr/decr style offer + true + + + 568 + 81 + 3 + 42 + Offer No Load Cost + Offer No Load Cost + 48 + 48 + true + false + false + false + true + false + true + true + 568 + 568 + Fixed dispatch cost component of generator offer. + true + + + 569 + 81 + 3 + 43 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band + true + + + 570 + 81 + 3 + 44 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 571 + 81 + 3 + 45 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 572 + 81 + 3 + 46 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 573 + 81 + 3 + 47 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 574 + 81 + 3 + 48 + Bid Base + Bid Base + 1 + 2 + true + true + false + false + true + false + true + true + 2547 + 2547 + Base load for balancing bid + true + + + 575 + 81 + 3 + 49 + Bid Quantity + Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 34 + 34 + Load bid quantity in band + true + + + 576 + 81 + 3 + 50 + Bid Price + Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 33 + 33 + Bid price of load in band + true + + + 577 + 81 + 3 + 51 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Quantity cleared in load bid band + true + + + 578 + 81 + 3 + 52 + Cleared Bid Price + Cleared Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal load bid band + true + + + 579 + 81 + 3 + 53 + Cleared Bid Cost + Cleared Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2551 + 2551 + Area cleared under the Battery bid curve + true + + + 580 + 81 + 3 + 54 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 581 + 81 + 3 + 55 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit + true + + + 582 + 81 + 3 + 56 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Marginal value of energy held in storage + true + + + 583 + 81 + 3 + 57 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before mark-up models + true + + + 584 + 81 + 3 + 58 + Shadow Load + Shadow Load + 1 + 2 + true + true + false + false + true + false + true + true + 1142 + 1142 + Load before mark-up models + true + + + 585 + 81 + 3 + 59 + Shadow Generation Revenue + Shadow Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2690 + 2690 + Generation revenue before mark-up models + true + + + 586 + 81 + 3 + 60 + Shadow Cost to Load + Shadow Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 1141 + 1141 + Cost to load before mark-up models + true + + + 587 + 81 + 3 + 61 + Shadow Price Received + Shadow Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 400 + 400 + Price received before uplift or mark-up models + true + + + 588 + 81 + 3 + 62 + Shadow Price Paid + Shadow Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 2691 + 2691 + Price paid before uplift or mark-up models + true + + + 589 + 81 + 3 + 63 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 590 + 81 + 3 + 64 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint applied to this Battery + true + + + 591 + 81 + 3 + 65 + Scheduled Generation + Scheduled Generation + 1 + 2 + true + true + false + false + false + false + true + true + 721 + 721 + Generation in the unconstrained schedule (uniform pricing only) + true + + + 592 + 81 + 3 + 66 + Scheduled Revenue + Scheduled Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 724 + 724 + Revenue from scheduled generation (uniform pricing only) + true + + + 593 + 81 + 3 + 67 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 594 + 81 + 3 + 68 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 595 + 81 + 3 + 69 + Undispatched Generation Capacity + Undispatched Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2855 + 2855 + Generation (discharging) capacity undispatched + true + + + 596 + 81 + 3 + 70 + Undispatched Load Capacity + Undispatched Load Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2856 + 2856 + Charging (load) capacity undispatched + true + + + 597 + 81 + 3 + 71 + Unused Generation Capacity + Unused Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2857 + 2857 + Unused generation capacity (Max Power x Units - Generation) + true + + + 598 + 81 + 3 + 72 + Unused Load Capacity + Unused Load Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2858 + 2858 + Unused load capacity (Max Load x Units - Load) + true + + + 599 + 81 + 3 + 73 + Energy Target Violation + Energy Target Violation + 3 + 3 + true + true + false + false + true + false + true + true + 2964 + 2964 + Violation of the [Energy Target] constraint. + true + + + 600 + 81 + 3 + 74 + Energy Target Violation Cost + Energy Target Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2965 + 2965 + Cost of [Energy Target] constraint violations. + true + + + 601 + 81 + 3 + 75 + Non-physical Charge Adjustments + Non-physical Charge Adjustments + 25 + 24 + true + true + false + false + true + false + true + true + 2872 + 2872 + Non-physical charge adjustments required to maintain feasible states of charge. + true + + + 602 + 81 + 3 + 76 + Non-physical Discharge Adjustments + Non-physical Discharge Adjustments + 25 + 24 + true + true + false + false + true + false + true + true + 2873 + 2873 + Non-physical discharge adjustments required to maintain feasible states of charge. + true + + + 603 + 81 + 6 + 77 + Installed Capacity + Installed Capacity + 3 + 3 + true + true + false + false + true + true + true + true + 320 + 320 + Installed battery capacity + true + + + 604 + 81 + 6 + 78 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Installed generation capacity + true + + + 605 + 81 + 6 + 79 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Contribution of the battery generation to capacity reserves + true + + + 606 + 81 + 6 + 80 + Net Generation Firm Capacity + Net Generation Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 3146 + 3146 + Firm Capacity net of maintenance and degradation + true + + + 607 + 81 + 7 + 81 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 608 + 81 + 7 + 82 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 609 + 81 + 7 + 83 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 610 + 81 + 7 + 84 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 611 + 81 + 7 + 85 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 612 + 81 + 7 + 86 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 613 + 81 + 7 + 87 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Power lost to forced outage + true + + + 614 + 81 + 7 + 88 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 615 + 81 + 7 + 89 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 616 + 81 + 8 + 90 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of BESS units built in this year + true + + + 617 + 81 + 8 + 91 + Capacity Built + Capacity Built + 3 + 3 + true + true + false + false + true + false + false + false + 54 + 54 + Battery capacity built + true + + + 618 + 81 + 8 + 92 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 619 + 81 + 8 + 93 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a BESS unit + true + + + 620 + 81 + 8 + 94 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 621 + 81 + 8 + 95 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed, variable and charging costs + true + + + 622 + 81 + 8 + 96 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of storage + true + + + 623 + 81 + 8 + 97 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of BESS units retired in this year + true + + + 624 + 81 + 8 + 98 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a BESS unit + true + + + 625 + 81 + 8 + 99 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 626 + 81 + 8 + 100 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the battery for capacity + true + + + 627 + 81 + 8 + 101 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 628 + 81 + 8 + 102 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by operating the Battery + true + + + 629 + 81 + 8 + 103 + Recovery Price + Recovery Price + 33 + 33 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of Battery expansion + true + + + 630 + 81 + 12 + 104 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 631 + 81 + 12 + 105 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 632 + 81 + 12 + 106 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 633 + 85 + 3 + 1 + Distribution Factor + Distribution Factor + 0 + 0 + true + true + false + false + false + false + false + true + 2713 + 2713 + Proportion of battery charge and discharge at the node + false + + + 634 + 87 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + generation (battery discharge) + true + + + 635 + 87 + 3 + 2 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + load (battery recharge) + true + + + 636 + 87 + 3 + 3 + Energy + Energy + 3 + 3 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored in the BESS + true + + + 637 + 87 + 3 + 4 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 638 + 87 + 3 + 5 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Total recharge and discharge losses + true + + + 639 + 87 + 3 + 6 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 640 + 87 + 3 + 7 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 641 + 87 + 3 + 8 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 642 + 87 + 3 + 9 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 643 + 87 + 3 + 10 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 644 + 87 + 3 + 11 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 645 + 87 + 3 + 12 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operations and maintenance cost + true + + + 646 + 87 + 3 + 13 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 647 + 87 + 3 + 14 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 648 + 87 + 3 + 15 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Generation revenue + true + + + 649 + 87 + 3 + 16 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Load cost + true + + + 650 + 87 + 3 + 17 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 651 + 87 + 3 + 18 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 652 + 87 + 3 + 19 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 653 + 87 + 6 + 20 + Installed Capacity + Installed Capacity + 3 + 3 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 654 + 87 + 6 + 21 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Installed generation capacity + true + + + 655 + 87 + 6 + 22 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Contribution of the battery generation to capacity reserves + true + + + 656 + 87 + 8 + 23 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of BESS units built in this year + true + + + 657 + 87 + 8 + 24 + Capacity Built + Capacity Built + 3 + 3 + true + true + false + false + true + false + false + false + 54 + 54 + Battery capacity built + true + + + 658 + 87 + 8 + 25 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 659 + 87 + 8 + 26 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a BESS unit + true + + + 660 + 87 + 8 + 27 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 661 + 87 + 8 + 28 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of BESS units retired in this year + true + + + 662 + 87 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a BESS unit + true + + + 663 + 91 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Capacity sold to market + true + + + 664 + 91 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from capacity market + true + + + 665 + 91 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 666 + 91 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 667 + 99 + 3 + 1 + Max Volume + Max Volume + 24 + 24 + true + true + false + false + true + false + true + true + 466 + 466 + Maximum volume + true + + + 668 + 99 + 3 + 2 + Min Volume + Min Volume + 24 + 24 + true + true + false + false + true + false + true + true + 510 + 510 + Minimum volume + true + + + 669 + 99 + 3 + 3 + Initial Volume + Initial Volume + 24 + 24 + true + true + false + false + true + false + true + true + 318 + 318 + Storage volume at the start of the period + true + + + 670 + 99 + 3 + 4 + End Volume + End Volume + 24 + 24 + true + true + false + false + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 671 + 99 + 3 + 5 + Initial Level + Initial Level + 23 + 23 + true + true + false + false + true + false + true + true + 316 + 316 + Initial level + true + + + 672 + 99 + 3 + 6 + End Level + End Level + 23 + 23 + true + true + false + false + true + false + true + true + 169 + 169 + Storage level at the end of the period + true + + + 673 + 99 + 3 + 7 + Hours Full + Hours Full + 6 + 6 + true + true + false + false + true + false + true + true + 1710 + 1710 + Number of hours the storage is full + true + + + 674 + 99 + 3 + 8 + Working Volume + Working Volume + 24 + 24 + true + true + false + true + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 675 + 99 + 3 + 9 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization on end volume + true + + + 676 + 99 + 3 + 10 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 677 + 99 + 3 + 11 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 678 + 99 + 3 + 12 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 679 + 99 + 3 + 13 + Inflow + Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 312 + 312 + Inflow + true + + + 680 + 99 + 3 + 14 + Release + Release + 25 + 24 + true + true + false + false + true + false + true + true + 676 + 676 + Total releases from storage + true + + + 681 + 99 + 3 + 15 + Natural Inflow + Natural Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 530 + 530 + Rate of natural inflow + true + + + 682 + 99 + 3 + 16 + Generator Release + Generator Release + 25 + 24 + true + true + false + false + true + false + true + true + 250 + 250 + Release for generation + true + + + 683 + 99 + 3 + 17 + Downstream Release + Downstream Release + 25 + 24 + true + true + false + false + true + false + true + true + 154 + 154 + Release downstream via waterways + true + + + 684 + 99 + 3 + 18 + Spill + Spill + 25 + 24 + true + true + false + false + true + false + true + true + 758 + 758 + Spill to "the sea" + true + + + 685 + 99 + 3 + 19 + Spill Cost + Spill Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2655 + 2655 + Spill Penalty multiplied by the Spill amount + true + + + 686 + 99 + 3 + 20 + Loss + Loss + 25 + 24 + true + true + false + false + true + false + true + true + 372 + 372 + Loss due to evaporation, leakage, etc + true + + + 687 + 99 + 3 + 21 + Inflow Rate + Inflow Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1875 + 1875 + Inflow + true + + + 688 + 99 + 3 + 22 + Release Rate + Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1876 + 1876 + Total releases from storage + true + + + 689 + 99 + 3 + 23 + Natural Inflow Rate + Natural Inflow Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1877 + 1877 + Rate of natural inflow + true + + + 690 + 99 + 3 + 24 + Generator Release Rate + Generator Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1878 + 1878 + Release for generation + true + + + 691 + 99 + 3 + 25 + Downstream Release Rate + Downstream Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1879 + 1879 + Release downstream via waterways + true + + + 692 + 99 + 3 + 26 + Spill Rate + Spill Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1880 + 1880 + Spill to "the sea" + true + + + 693 + 99 + 3 + 27 + Downstream Efficiency + Downstream Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 153 + 153 + Aggregate efficiency of generation down the river chain + true + + + 694 + 99 + 3 + 28 + Max Potential Energy + Max Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2615 + 2615 + Potential energy of storage at max volume + true + + + 695 + 99 + 3 + 29 + Min Potential Energy + Min Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2616 + 2616 + Potential energy of storage at min volume + true + + + 696 + 99 + 3 + 30 + Initial Potential Energy + Initial Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2617 + 2617 + Potential energy of initial volume + true + + + 697 + 99 + 3 + 31 + End Potential Energy + End Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 1659 + 1659 + Potential energy of end volume + true + + + 698 + 99 + 3 + 32 + Inflow Energy + Inflow Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2583 + 2583 + Potential energy of inflows + true + + + 699 + 99 + 3 + 33 + Release Energy + Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2584 + 2584 + Potential energy of releases + true + + + 700 + 99 + 3 + 34 + Natural Inflow Energy + Natural Inflow Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2585 + 2585 + Potential energy of natural inflows + true + + + 701 + 99 + 3 + 35 + Generator Release Energy + Generator Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2586 + 2586 + Potential energy of generator releases + true + + + 702 + 99 + 3 + 36 + Downstream Release Energy + Downstream Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2587 + 2587 + Potential energy of downstream releases + true + + + 703 + 99 + 3 + 37 + Spill Energy + Spill Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2588 + 2588 + Potential energy of spill to "the sea" + true + + + 704 + 99 + 3 + 38 + Shadow Price + Shadow Price + 46 + 46 + true + true + false + false + true + false + true + true + 742 + 742 + Marginal value of water held in storage + true + + + 705 + 99 + 3 + 39 + Marginal Value + Marginal Value + 33 + 33 + true + true + false + false + true + false + true + true + 406 + 406 + Marginal energy value of water held in storage + true + + + 706 + 99 + 3 + 40 + Marginal Cost + Marginal Cost + 33 + 33 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal energy cost of water released from the storage + true + + + 707 + 99 + 3 + 41 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation from exporting generators + true + + + 708 + 99 + 3 + 42 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by exporting generators running in pumping mode + true + + + 709 + 99 + 3 + 43 + Efficiency + Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of generation + true + + + 710 + 99 + 3 + 44 + Max Volume Violation + Max Volume Violation + 3 + 2 + true + true + false + false + true + false + true + true + 2718 + 2718 + Violation of the Max Volume constraint + true + + + 711 + 99 + 3 + 45 + Max Volume Violation Cost + Max Volume Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2719 + 2719 + Cost of Max Volume constraint violations + true + + + 712 + 99 + 3 + 46 + Min Volume Violation + Min Volume Violation + 3 + 2 + true + true + false + false + true + false + true + true + 2720 + 2720 + Violation of the Min Volume constraint + true + + + 713 + 99 + 3 + 47 + Min Volume Violation Cost + Min Volume Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2721 + 2721 + Cost of Min Volume constraint violations + true + + + 714 + 99 + 3 + 48 + Min Release Violation + Min Release Violation + 25 + 24 + true + true + false + false + true + false + true + true + 1949 + 1949 + Violation of the [Min Release] constraint. + true + + + 715 + 99 + 3 + 49 + Min Release Violation Hours + Min Release Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1950 + 1950 + Number of hours the [Min Release] constraint is violated. + true + + + 716 + 99 + 3 + 50 + Min Release Violation Cost + Min Release Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1951 + 1951 + Cost of [Min Release] constraint violations. + true + + + 717 + 99 + 3 + 51 + Max Release Violation + Max Release Violation + 25 + 24 + true + true + false + false + true + false + true + true + 1952 + 1952 + Violation of the [Max Release] and [Max Generator Release] constraint. + true + + + 718 + 99 + 3 + 52 + Max Release Violation Hours + Max Release Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1953 + 1953 + Number of hours the [Max Release] or [Max Generator Release] constraint is violated. + true + + + 719 + 99 + 3 + 53 + Max Release Violation Cost + Max Release Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1954 + 1954 + Cost of [Max Release] and [Max Generator Release] constraint violations. + true + + + 720 + 99 + 3 + 54 + Ramp + Ramp + 24 + 24 + true + true + false + false + true + false + true + true + 655 + 655 + Change in storage end volume. + true + + + 721 + 99 + 3 + 55 + Ramp Price + Ramp Price + 46 + 46 + true + true + false + false + true + false + true + true + 659 + 659 + Incremental value of additional ramping capability. + true + + + 722 + 99 + 3 + 56 + Ramp Violation + Ramp Violation + 24 + 24 + true + true + false + false + true + false + true + true + 661 + 661 + Violation of the [Max Ramp] constraint. + true + + + 723 + 99 + 3 + 57 + Ramp Violation Hours + Ramp Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1065 + 1065 + Number of hours the [Max Ramp] constraint is violated. + true + + + 724 + 99 + 3 + 58 + Ramp Violation Cost + Ramp Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1066 + 1066 + Cost of [Max Ramp] constraint violations. + true + + + 725 + 99 + 3 + 59 + Target Violation + Target Violation + 24 + 24 + true + true + false + false + true + false + true + true + 1188 + 1188 + Violation of the [Target] constraint. + true + + + 726 + 99 + 3 + 60 + Target Violation Cost + Target Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1189 + 1189 + Cost of [Target] constraint violations. + true + + + 727 + 99 + 3 + 61 + Non-physical Inflow + Non-physical Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 1067 + 1067 + Non-physical inflow required to maintain feasible storage volumes. + true + + + 728 + 99 + 3 + 62 + Non-physical Spill + Non-physical Spill + 25 + 24 + true + true + false + false + true + false + true + true + 1068 + 1068 + Non-physical spill required to maintain feasible storage volumes. + true + + + 729 + 99 + 12 + 63 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 730 + 99 + 12 + 64 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 731 + 99 + 12 + 65 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 732 + 107 + 3 + 1 + Flow + Flow + 25 + 24 + true + true + false + false + true + false + true + true + 205 + 205 + Flow on waterway + true + + + 733 + 107 + 3 + 2 + Max Flow + Max Flow + 25 + 25 + true + true + false + false + true + false + true + true + 429 + 429 + Maximum flow limit + true + + + 734 + 107 + 3 + 3 + Min Flow + Min Flow + 25 + 25 + true + true + false + false + true + false + true + true + 481 + 481 + Minimum flow limit + true + + + 735 + 107 + 3 + 4 + Hours Flowing + Hours Flowing + 6 + 6 + true + true + false + false + true + false + true + true + 1711 + 1711 + Number of hours the waterway is flowing + true + + + 736 + 107 + 3 + 5 + Shadow Price + Shadow Price + 54 + 54 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price on max flow constraint + true + + + 737 + 107 + 3 + 6 + Max Flow Violation Hours + Max Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1069 + 1069 + Number of hours the [Max Flow] limit is violated. + true + + + 738 + 107 + 3 + 7 + Max Flow Violation + Max Flow Violation + 25 + 24 + true + true + false + false + true + false + true + true + 430 + 430 + Violation of max flow constraint + true + + + 739 + 107 + 3 + 8 + Max Flow Violation Cost + Max Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1073 + 1073 + Cost of [Max Flow] violations. + true + + + 740 + 107 + 3 + 9 + Min Flow Violation Hours + Min Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1071 + 1071 + Number of hours the [Min Flow] limit is violated. + true + + + 741 + 107 + 3 + 10 + Min Flow Violation + Min Flow Violation + 25 + 24 + true + true + false + false + true + false + true + true + 482 + 482 + Violation of min flow constraint + true + + + 742 + 107 + 3 + 11 + Min Flow Violation Cost + Min Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1074 + 1074 + Cost of [Min Flow] violations. + true + + + 743 + 107 + 3 + 12 + Ramp + Ramp + 25 + 24 + true + true + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 744 + 107 + 3 + 13 + Max Ramp + Max Ramp + 25 + 25 + true + false + false + false + true + false + true + true + 446 + 446 + Maximum change in flow (MW or cumecs per hour) + true + + + 745 + 107 + 3 + 14 + Ramp Violation Hours + Ramp Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1065 + 1065 + Number of hours the [Max Ramp] constraint is violated. + true + + + 746 + 107 + 3 + 15 + Ramp Violation + Ramp Violation + 25 + 24 + true + true + false + false + true + false + true + true + 661 + 661 + Violation of flow ramp constraint + true + + + 747 + 107 + 3 + 16 + Ramp Violation Cost + Ramp Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1066 + 1066 + Cost of [Max Ramp] constraint violations. + true + + + 748 + 107 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 749 + 107 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 750 + 107 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 751 + 114 + 3 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission + true + + + 752 + 114 + 3 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 753 + 114 + 3 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 754 + 114 + 3 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 755 + 114 + 3 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 756 + 114 + 3 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 757 + 114 + 3 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 758 + 114 + 3 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 759 + 114 + 3 + 9 + Price + Price + 30 + 30 + true + true + false + false + true + false + true + true + 612 + 612 + Price charged per unit of emission (accounting only) + true + + + 760 + 114 + 3 + 10 + Shadow Price + Shadow Price + 30 + 30 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price (marginal cost) of emissions + true + + + 761 + 114 + 3 + 11 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of emissions charged at "Price" (if defined, otherwise at "Shadow Price") + true + + + 762 + 114 + 3 + 12 + Max Production Violation + Max Production Violation + 19 + 20 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] constraints. + true + + + 763 + 114 + 3 + 13 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] violations. + true + + + 764 + 114 + 12 + 14 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 765 + 114 + 12 + 15 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 766 + 114 + 12 + 16 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 767 + 117 + 1 + 1 + Generation Production + Generation Production + 19 + 20 + true + true + false + true + true + false + true + true + 1606 + 1606 + Net production of the emission from generation + true + + + 768 + 117 + 1 + 2 + Unit Start Production + Unit Start Production + 19 + 20 + true + true + false + true + true + false + true + true + 1607 + 1607 + Net production of the emission from unit start up + true + + + 769 + 117 + 1 + 3 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 770 + 117 + 1 + 4 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 771 + 117 + 1 + 5 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 772 + 117 + 1 + 6 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Incremental cost of emissions abatement + true + + + 773 + 117 + 1 + 7 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 774 + 117 + 1 + 8 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 775 + 117 + 1 + 9 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 776 + 117 + 1 + 10 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 777 + 117 + 1 + 11 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 778 + 117 + 1 + 12 + Incremental Production Rate + Incremental Production Rate + 40 + 40 + true + true + false + false + true + false + true + true + 1626 + 1626 + Incremental rate of emission production by the generator + true + + + 779 + 117 + 1 + 13 + Incremental Cost + Incremental Cost + 33 + 33 + true + true + false + false + true + false + true + true + 918 + 918 + Incremental cost of the emission to the generator + true + + + 780 + 117 + 1 + 14 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Effective SRMC of generation including emission shadow price + true + + + 781 + 118 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 782 + 118 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 783 + 118 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 784 + 118 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 785 + 118 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 786 + 118 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 787 + 118 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 788 + 118 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 789 + 118 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 790 + 120 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 791 + 120 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Gross production of the emission + true + + + 792 + 120 + 1 + 3 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 793 + 120 + 1 + 4 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Emission abatement cost + true + + + 794 + 120 + 1 + 5 + Field Production Cost + Field Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2776 + 2776 + Gas Field Production emission cost + true + + + 795 + 122 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 796 + 122 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Gross production of the emission + true + + + 797 + 122 + 1 + 3 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 798 + 122 + 1 + 4 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 799 + 126 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission + true + + + 800 + 126 + 1 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 801 + 127 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission by the Vehicle + true + + + 802 + 129 + 3 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission by the Facility + true + + + 803 + 129 + 3 + 2 + Removal + Removal + 19 + 20 + true + true + false + true + true + false + true + true + 1441 + 1441 + Emissions removed by the Facility + true + + + 804 + 130 + 1 + 1 + Sales + Sales + 19 + 20 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 805 + 130 + 1 + 2 + Purchases + Purchases + 19 + 20 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 806 + 130 + 1 + 3 + Net Sales + Net Sales + 19 + 20 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 807 + 130 + 1 + 4 + Net Purchases + Net Purchases + 19 + 20 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 808 + 130 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 809 + 130 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 810 + 130 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 811 + 130 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 812 + 133 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Flag if emission abatement technology is installed + true + + + 813 + 133 + 3 + 2 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 814 + 133 + 3 + 3 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Emission input to the abatement technology + true + + + 815 + 133 + 3 + 4 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 816 + 133 + 3 + 5 + Net Emissions + Net Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1433 + 1433 + Emissions net of abatement + true + + + 817 + 133 + 3 + 6 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of emission abatement + true + + + 818 + 133 + 3 + 7 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost per unit of emission removed + true + + + 819 + 133 + 3 + 8 + Running Cost + Running Cost + 14 + 34 + true + true + false + true + true + false + true + true + 978 + 978 + Fixed cost of running emission abatement when generators are on-line + true + + + 820 + 133 + 3 + 9 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 821 + 133 + 3 + 10 + Consumables Cost + Consumables Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1434 + 1434 + Total cost of consumables + true + + + 822 + 133 + 3 + 11 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Total fixed operations and maintenance costs + true + + + 823 + 133 + 3 + 12 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed, semi-fixed and variable costs + true + + + 824 + 133 + 3 + 13 + Abatement Value + Abatement Value + 14 + 34 + true + true + false + true + true + false + true + true + 1435 + 1435 + Value of emissions abated + true + + + 825 + 133 + 3 + 14 + Abatement Net Cost + Abatement Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1436 + 1436 + Net of [Total Cost] and [Abatement Value] + true + + + 826 + 133 + 7 + 15 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Flag if emission abatement technology is out-of-service + true + + + 827 + 133 + 12 + 16 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 828 + 133 + 12 + 17 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 829 + 133 + 12 + 18 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 830 + 137 + 3 + 1 + Consumption + Consumption + 17 + 18 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumable used + true + + + 831 + 137 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of consumable used + true + + + 832 + 138 + 3 + 1 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Emission input to the abatement technology for this emission + true + + + 833 + 138 + 3 + 2 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated for this emission + true + + + 834 + 138 + 3 + 3 + Net Emissions + Net Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1433 + 1433 + Emissions net of abatement for this emission + true + + + 835 + 138 + 3 + 4 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of emission abatement for this emission + true + + + 836 + 138 + 3 + 5 + Abatement Value + Abatement Value + 14 + 34 + true + true + false + true + true + false + true + true + 1435 + 1435 + Value of emissions abated for this emission + true + + + 837 + 146 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation on physical contract + true + + + 838 + 146 + 3 + 2 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load on physical contract + true + + + 839 + 146 + 3 + 3 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 840 + 146 + 3 + 4 + Capacity Factor + Capacity Factor + 12 + 12 + false + true + false + false + true + false + true + true + 58 + 58 + Proportion of generation capacity utilized + true + + + 841 + 146 + 3 + 5 + Load Factor + Load Factor + 12 + 12 + false + true + false + false + true + false + true + true + 876 + 876 + Proportion of load obligation serviced + true + + + 842 + 146 + 3 + 6 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 843 + 146 + 3 + 7 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by load + true + + + 844 + 146 + 3 + 8 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of cleared generation offers + true + + + 845 + 146 + 3 + 9 + Load Revenue + Load Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 357 + 357 + Revenue from cleared load bids + true + + + 846 + 146 + 3 + 10 + Net Generation Cost + Net Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 540 + 540 + Net cost of cleared generation offers and load bids + true + + + 847 + 146 + 3 + 11 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Mark-to-market revenue from generation (Price Received * Generation) + true + + + 848 + 146 + 3 + 12 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Mark-to-market cost to load (Price Received × Load) + true + + + 849 + 146 + 3 + 13 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 850 + 146 + 3 + 14 + Fixed Cost + Fixed Cost + 14 + 34 + true + true + false + false + true + false + true + true + 194 + 194 + Fixed cost of contract capacity + true + + + 851 + 146 + 6 + 15 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Contribution of generation to system capacity reserves + true + + + 852 + 146 + 6 + 16 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Load obligation for capacity reserves. + true + + + 853 + 146 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 854 + 146 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 855 + 146 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 856 + 155 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Purchaser load + true + + + 857 + 155 + 3 + 2 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for energy + true + + + 858 + 155 + 3 + 3 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost of energy purchases + true + + + 859 + 155 + 3 + 4 + Bid Quantity + Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 860 + 155 + 3 + 5 + Bid Price + Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 33 + 33 + Value of energy in band + true + + + 861 + 155 + 3 + 6 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 862 + 155 + 3 + 7 + Cleared Bid Price + Cleared Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 863 + 155 + 3 + 8 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 864 + 155 + 3 + 9 + Load Factor + Load Factor + 12 + 12 + true + true + false + false + true + false + true + true + 876 + 876 + Proportion of load bids cleared + true + + + 865 + 155 + 3 + 10 + Max Energy Violation + Max Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1192 + 1192 + Violation of [Max Energy] or [Max Load Factor] constraints. + true + + + 866 + 155 + 3 + 11 + Max Energy Violation Cost + Max Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1193 + 1193 + Cost of [Max Energy] or [Max Load Factor] constraint violations. + true + + + 867 + 155 + 3 + 12 + Min Energy Violation + Min Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1194 + 1194 + Violation of [Min Energy] or [Min Load Factor] constraints. + true + + + 868 + 155 + 3 + 13 + Min Energy Violation Cost + Min Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1195 + 1195 + Cost of [Min Energy] or [Min Load Factor] constraint violations. + true + + + 869 + 155 + 3 + 14 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 870 + 155 + 3 + 15 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 692 + 692 + Revenue earned from interruptible load provision + true + + + 871 + 155 + 6 + 16 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Load obligation for capacity reserves. + true + + + 872 + 155 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 873 + 155 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 874 + 155 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 875 + 163 + 3 + 1 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 876 + 163 + 3 + 2 + Sharing + Sharing + 1 + 2 + true + true + false + false + true + false + true + true + 2882 + 2882 + Reserve provision from other regions/zones + true + + + 877 + 163 + 3 + 3 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Risk + true + + + 878 + 163 + 3 + 4 + Shortage + Shortage + 1 + 2 + true + true + false + false + true + false + true + true + 746 + 746 + Reserve shortfall + true + + + 879 + 163 + 3 + 5 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage. + true + + + 880 + 163 + 3 + 6 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1076 + 1076 + Cost of Reserve Shortage. + true + + + 881 + 163 + 3 + 7 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 882 + 163 + 3 + 8 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 883 + 163 + 3 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Reserve cost paid to reserve providers + true + + + 884 + 163 + 3 + 10 + Price + Price + 32 + 32 + true + true + false + false + true + false + true + true + 612 + 612 + Price + true + + + 885 + 163 + 3 + 11 + Time-weighted Price + Time-weighted Price + 32 + 32 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price of reserve. + true + + + 886 + 163 + 3 + 12 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Total available reserve response + true + + + 887 + 163 + 12 + 13 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 888 + 163 + 12 + 14 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 889 + 163 + 12 + 15 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 890 + 166 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 891 + 166 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 892 + 166 + 1 + 3 + Spinning Reserve Provision + Spinning Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1310 + 1310 + Reserve provision by spinning reserve + true + + + 893 + 166 + 1 + 4 + Sync Cond Reserve Provision + Sync Cond Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1311 + 1311 + Reserve provision by units in synchronous condenser mode + true + + + 894 + 166 + 1 + 5 + Pump Dispatchable Load Provision + Pump Dispatchable Load Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1312 + 1312 + Reserve provision by pump dispatchable load + true + + + 895 + 166 + 1 + 6 + Non-spinning Reserve Provision + Non-spinning Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1313 + 1313 + Reserve provision by off-line units + true + + + 896 + 166 + 1 + 7 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 897 + 166 + 1 + 8 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 898 + 166 + 1 + 9 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 899 + 167 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Generator contingency to Risk. + true + + + 900 + 167 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Generator contingency constraint. + true + + + 901 + 168 + 1 + 1 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Reserve cost allocated + true + + + 902 + 169 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 903 + 169 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 904 + 169 + 1 + 3 + Revenue + Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 905 + 170 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 906 + 170 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 907 + 170 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 908 + 170 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 909 + 170 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 910 + 171 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Battery contingency to Risk. + true + + + 911 + 171 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Battery contingency constraint. + true + + + 912 + 172 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 913 + 172 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve + true + + + 914 + 172 + 1 + 3 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 915 + 172 + 1 + 4 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 916 + 172 + 1 + 5 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 917 + 172 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Reserve cost + true + + + 918 + 174 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Region load to the Risk + true + + + 919 + 175 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Zone load to the Risk + true + + + 920 + 176 + 1 + 1 + Sharing + Sharing + 1 + 2 + true + true + false + false + true + false + true + true + 2882 + 2882 + Amount of reserve shared on the line + true + + + 921 + 177 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Line contingency to Risk. + true + + + 922 + 177 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Line contingency constraint. + true + + + 923 + 178 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Reserve sold into the market + true + + + 924 + 178 + 1 + 2 + Purchases + Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 648 + 648 + Reserve bought from the market + true + + + 925 + 178 + 1 + 3 + Net Sales + Net Sales + 1 + 2 + true + true + false + false + true + false + true + true + 553 + 553 + Net reserve sold into the market + true + + + 926 + 178 + 1 + 4 + Net Purchases + Net Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 549 + 549 + Net reserve purchases from the market + true + + + 927 + 178 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from reserve sales in the market + true + + + 928 + 178 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of reserve purchases from the market + true + + + 929 + 178 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue from reserve sales in the market + true + + + 930 + 178 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net cost of reserve purchases from the market + true + + + 931 + 182 + 1 + 1 + Firm Capacity Contribution + Firm Capacity Contribution + 1 + 1 + true + true + true + false + true + false + true + true + 2161 + 2161 + Firm Capacity Contribution + true + + + 932 + 182 + 12 + 2 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to a solution. + true + + + 933 + 182 + 12 + 3 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to a solution + true + + + 934 + 182 + 12 + 4 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to a solution + true + + + 935 + 188 + 1 + 1 + Quantity + Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 650 + 650 + Contract quantity + true + + + 936 + 188 + 1 + 2 + Floor Price + Floor Price + 33 + 33 + true + true + false + false + true + false + true + true + 204 + 204 + Contract floor price + true + + + 937 + 188 + 1 + 3 + Cap Price + Cap Price + 33 + 33 + true + true + false + false + true + false + true + true + 53 + 53 + Contract cap price + true + + + 938 + 188 + 1 + 4 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price the contract is settled at + true + + + 939 + 188 + 1 + 5 + Shortfall + Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 1078 + 1078 + Shortfall of generation to meet contract + true + + + 940 + 188 + 1 + 6 + Settlement Quantity + Settlement Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 740 + 740 + Quantity of contract settled + true + + + 941 + 188 + 1 + 7 + Settlement + Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 738 + 738 + Settlement + true + + + 942 + 188 + 1 + 8 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the Financial Contract is active. + true + + + 943 + 193 + 1 + 1 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price the contract is settled at + true + + + 944 + 193 + 1 + 2 + Shortfall + Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 1078 + 1078 + Shortfall of generation to meet contract + true + + + 945 + 193 + 1 + 3 + Settlement Quantity + Settlement Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 740 + 740 + Quantity of contract settled + true + + + 946 + 193 + 1 + 4 + Settlement + Settlement + 14 + 34 + true + true + false + false + true + false + true + true + 738 + 738 + Settlement + true + + + 947 + 197 + 1 + 1 + Elasticity + Elasticity + 56 + 56 + true + true + false + false + false + false + true + true + 1273 + 1273 + Price elasticity of demand + true + + + 948 + 197 + 1 + 2 + Demand Intercept + Demand Intercept + 33 + 33 + true + true + false + false + false + false + true + true + 139 + 139 + Demand function vertical intercept + true + + + 949 + 197 + 1 + 3 + Demand Slope + Demand Slope + 56 + 56 + true + true + false + false + false + false + true + true + 142 + 142 + Long-run demand function slope + true + + + 950 + 197 + 1 + 4 + Perfect Competition Demand + Perfect Competition Demand + 1 + 2 + true + true + false + false + false + false + true + true + 1405 + 1405 + Demand in the perfect competition solution + true + + + 951 + 197 + 1 + 5 + Perfect Competition Production + Perfect Competition Production + 1 + 2 + true + true + false + false + false + false + true + true + 1413 + 1413 + Production in the perfect competition solution + true + + + 952 + 197 + 1 + 6 + Perfect Competition Net Import + Perfect Competition Net Import + 1 + 2 + true + true + false + false + false + false + true + true + 1408 + 1408 + Net import in the perfect competition solution + true + + + 953 + 197 + 1 + 7 + Perfect Competition Price + Perfect Competition Price + 33 + 33 + true + true + false + false + false + false + true + true + 1406 + 1406 + Price in the perfect competition solution + true + + + 954 + 197 + 1 + 8 + Perfect Competition Producer Revenue + Perfect Competition Producer Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 1414 + 1414 + Producer revenue in the perfect competition solution + true + + + 955 + 197 + 1 + 9 + Perfect Competition Consumer Surplus + Perfect Competition Consumer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1411 + 1411 + Consumer surplus in the perfect competition solution + true + + + 956 + 197 + 1 + 10 + Perfect Competition Producer Surplus + Perfect Competition Producer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1412 + 1412 + Producer surplus in the perfect competition solution + true + + + 957 + 197 + 1 + 11 + Demand + Demand + 1 + 2 + true + true + false + false + false + false + true + true + 133 + 133 + Demand in the Nash-Cournot equilibrium solution + true + + + 958 + 197 + 1 + 12 + Production + Production + 1 + 2 + true + true + false + false + false + false + true + true + 624 + 624 + Production in the Nash-Cournot equilibrium solution + true + + + 959 + 197 + 1 + 13 + Net Import + Net Import + 1 + 2 + true + true + false + false + false + false + true + true + 1407 + 1407 + Net import in the Nash-Cournot equilibrium solution + true + + + 960 + 197 + 1 + 14 + Price + Price + 33 + 33 + true + true + false + false + false + false + true + true + 612 + 612 + Price in the Nash-Cournot equilibrium solution + true + + + 961 + 197 + 1 + 15 + Producer Revenue + Producer Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 1415 + 1415 + Producer revenue in the Nash-Cournot equilibrium solution + true + + + 962 + 197 + 1 + 16 + Consumer Surplus + Consumer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1409 + 1409 + Consumer surplus in the Nash-Cournot equilibrium solution + true + + + 963 + 197 + 1 + 17 + Producer Surplus + Producer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1410 + 1410 + Producer surplus in the Nash-Cournot equilibrium solution + true + + + 964 + 201 + 1 + 1 + RSI + RSI + 0 + 0 + true + false + false + false + true + false + true + true + 712 + 712 + Residual Supply Index + true + + + 965 + 201 + 1 + 2 + Utility Generation + Utility Generation + 1 + 1 + true + false + false + false + true + false + true + true + 839 + 839 + Utility Generation + true + + + 966 + 201 + 1 + 3 + Utility Available Capacity + Utility Available Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 837 + 837 + Utility Available Capacity + true + + + 967 + 201 + 1 + 4 + Non Utility Generation + Non Utility Generation + 1 + 1 + true + false + false + false + true + false + true + true + 561 + 561 + Non Utility Generation + true + + + 968 + 201 + 1 + 5 + Non Utility Available Capacity + Non Utility Available Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 559 + 559 + Non Utility Available Capacity + true + + + 969 + 201 + 1 + 6 + Non Utility Contract Volume + Non Utility Contract Volume + 1 + 1 + true + false + false + false + true + false + true + true + 560 + 560 + Non Utility Contract Volume + true + + + 970 + 201 + 1 + 7 + Total Internal Capacity + Total Internal Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 791 + 791 + Total Internal Capacity + true + + + 971 + 201 + 1 + 8 + Total Import Capacity + Total Import Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 790 + 790 + Total Import Capacity + true + + + 972 + 201 + 1 + 9 + Total Supply Capacity + Total Supply Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 793 + 793 + Total Supply Capacity (Total Internal Capacity + Total Import Capacity) + true + + + 973 + 201 + 1 + 10 + Largest Suppliers Capacity + Largest Suppliers Capacity + 0 + 0 + true + false + false + false + true + false + true + true + 342 + 342 + Largest Supplier's Capacity + true + + + 974 + 201 + 1 + 11 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 288 + 288 + Import Capacity + true + + + 975 + 201 + 1 + 12 + Demand + Demand + 0 + 0 + true + false + false + false + true + false + true + true + 133 + 133 + Demand + true + + + 976 + 201 + 1 + 13 + Lerner Index + Lerner Index + 0 + 0 + true + true + false + false + true + false + true + true + 344 + 344 + Lerner Index (P-C)/P + true + + + 977 + 201 + 1 + 14 + Bounded Lerner Index + Bounded Lerner Index + 0 + 0 + true + true + false + false + true + false + true + true + 43 + 43 + Lerner Index (P-C)/P + true + + + 978 + 201 + 1 + 15 + Bid-Cost Mark-up + Bid-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 32 + 32 + Bid-Cost Mark-up (P-C)/C + true + + + 979 + 201 + 1 + 16 + Price-Cost Mark-up + Price-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 614 + 614 + Price-Cost Mark-up (P-C)/C + true + + + 980 + 201 + 1 + 17 + Load Unhedged + Load Unhedged + 0 + 0 + true + false + false + false + true + false + true + true + 360 + 360 + PCT Load Unhedged + true + + + 981 + 201 + 1 + 18 + Load Capacity Ratio + Load Capacity Ratio + 0 + 0 + true + false + false + false + true + false + true + true + 350 + 350 + Ratio of load to the total internal capacity plus import capability + true + + + 982 + 201 + 1 + 19 + Capacity Factor + Capacity Factor + 0 + 0 + true + false + false + false + true + false + true + true + 58 + 58 + Capacity Factor + true + + + 983 + 201 + 1 + 20 + Load Variation + Load Variation + 0 + 0 + true + false + false + false + true + false + true + true + 362 + 362 + Load Variation + true + + + 984 + 201 + 1 + 21 + Summer Period + Summer Period + 0 + 0 + true + false + false + false + true + false + true + true + 768 + 768 + Summer Period Flag + true + + + 985 + 201 + 1 + 22 + Peak Period + Peak Period + 0 + 0 + true + false + false + false + true + false + true + true + 600 + 600 + Peak Period Flag + true + + + 986 + 205 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Supply capacity from the line. + true + + + 987 + 206 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Supply capacity from the interfaces. + true + + + 988 + 207 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Total supply capacity from the company. + true + + + 989 + 207 + 1 + 2 + Bid-Cost Mark-up + Bid-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 32 + 32 + Bid cost mark-up applied to generators in the company + true + + + 990 + 208 + 6 + 1 + Capacity + Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 1665 + 1665 + Total online nameplate capacity for the group + true + + + 991 + 208 + 6 + 2 + Marginal Contribution + Marginal Contribution + 0 + 0 + true + true + false + false + true + false + false + false + 3079 + 3079 + Marginal contribution of the group to the total firm capacity + true + + + 992 + 208 + 12 + 3 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 993 + 208 + 12 + 4 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 994 + 208 + 12 + 5 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 995 + 214 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 996 + 214 + 3 + 2 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 997 + 214 + 3 + 3 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load + true + + + 998 + 214 + 3 + 4 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed (or embedded) generation + true + + + 999 + 214 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1000 + 214 + 3 + 6 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 1001 + 214 + 3 + 7 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 1002 + 214 + 3 + 8 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 1003 + 214 + 3 + 9 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 1004 + 214 + 3 + 10 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 1005 + 214 + 3 + 11 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 1006 + 214 + 3 + 12 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 1007 + 214 + 3 + 13 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 1008 + 214 + 3 + 14 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 1009 + 214 + 3 + 15 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 1010 + 214 + 3 + 16 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 1011 + 214 + 3 + 17 + Heat Plant Load + Heat Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2833 + 2833 + Heat Plant electric load + true + + + 1012 + 214 + 3 + 18 + Gas Plant Load + Gas Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2834 + 2834 + Gas Plant electric load + true + + + 1013 + 214 + 3 + 19 + Gas Storage Load + Gas Storage Load + 1 + 2 + true + true + false + false + true + false + true + true + 2861 + 2861 + Gas Storage electric load + true + + + 1014 + 214 + 3 + 20 + Water Plant Load + Water Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2835 + 2835 + Water Plant electric load + true + + + 1015 + 214 + 3 + 21 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 1016 + 214 + 3 + 22 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 1017 + 214 + 3 + 23 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 1018 + 214 + 3 + 24 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 1019 + 214 + 3 + 25 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 1020 + 214 + 3 + 26 + Facility Generation + Facility Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2844 + 2844 + Generation from connected Facilities + true + + + 1021 + 214 + 3 + 27 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1022 + 214 + 3 + 28 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 1023 + 214 + 3 + 29 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 1024 + 214 + 3 + 30 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 1025 + 214 + 3 + 31 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Exports - Imports + true + + + 1026 + 214 + 3 + 32 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 1027 + 214 + 3 + 33 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 1028 + 214 + 3 + 34 + Unserved Energy Hours + Unserved Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 282 + 282 + Number of hours of unserved energy (USE) + true + + + 1029 + 214 + 3 + 35 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1030 + 214 + 3 + 36 + Max Unserved Energy + Max Unserved Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2014 + 2014 + Maximum unserved energy + true + + + 1031 + 214 + 3 + 37 + Unserved Energy Factor + Unserved Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2015 + 2015 + Proportion of energy unserved + true + + + 1032 + 214 + 3 + 38 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 1033 + 214 + 3 + 39 + Dump Energy Hours + Dump Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1088 + 1088 + Number of hours of dump energy + true + + + 1034 + 214 + 3 + 40 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1035 + 214 + 3 + 41 + Max Dump Energy + Max Dump Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2909 + 2909 + Maximum dump energy + true + + + 1036 + 214 + 3 + 42 + Dump Energy Factor + Dump Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2921 + 2921 + Proportion of energy dumped + true + + + 1037 + 214 + 3 + 43 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy + true + + + 1038 + 214 + 3 + 44 + Committed Capacity + Committed Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2936 + 2936 + Capacity of committed units + true + + + 1039 + 214 + 3 + 45 + No Cost Generation Capacity + No Cost Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 1165 + 1165 + Capacity available at no cost + true + + + 1040 + 214 + 3 + 46 + Hours Generation Curtailed + Hours Generation Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1166 + 1166 + Number of hours that non-positive-priced generation has been curtailed + true + + + 1041 + 214 + 3 + 47 + Generation Capacity Curtailed + Generation Capacity Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1167 + 1167 + Amount of non-positive-priced generation curtailed + true + + + 1042 + 214 + 3 + 48 + Max Generation Curtailed + Max Generation Curtailed + 1 + 1 + true + true + false + false + true + false + true + true + 2922 + 2922 + Maximum generation curtailed + true + + + 1043 + 214 + 3 + 49 + Generation Curtailment Factor + Generation Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2934 + 2934 + Proportion of generation curtailed + true + + + 1044 + 214 + 3 + 50 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 1045 + 214 + 3 + 51 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 1046 + 214 + 3 + 52 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 1047 + 214 + 3 + 53 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 1048 + 214 + 3 + 54 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 1049 + 214 + 3 + 55 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 1050 + 214 + 3 + 56 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 1051 + 214 + 3 + 57 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of generation that could be unloaded + true + + + 1052 + 214 + 3 + 58 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 1053 + 214 + 3 + 59 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 1054 + 214 + 3 + 60 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 1055 + 214 + 3 + 61 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 1056 + 214 + 3 + 62 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Total variable cost of generation + true + + + 1057 + 214 + 3 + 63 + Generator Pump Cost + Generator Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 249 + 249 + Cost of load to pump storage generators + true + + + 1058 + 214 + 3 + 64 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Cost of generating unit starts and shutdowns + true + + + 1059 + 214 + 3 + 65 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 1060 + 214 + 3 + 66 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1061 + 214 + 3 + 67 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 1062 + 214 + 3 + 68 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 1063 + 214 + 3 + 69 + Generator FO&M Cost + Generator FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 888 + 888 + Total fixed operations and maintenance costs + true + + + 1064 + 214 + 3 + 70 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs (fixed O&amp;M, equity, debt) + true + + + 1065 + 214 + 3 + 71 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Highest short-run marginal cost of running generators + true + + + 1066 + 214 + 3 + 72 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Price + true + + + 1067 + 214 + 3 + 73 + Uplift + Uplift + 33 + 33 + true + true + false + false + true + false + true + true + 826 + 826 + Uplift to uniform price due to no load cost and start costs + true + + + 1068 + 214 + 3 + 74 + Price-Cost Mark-up + Price-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 614 + 614 + Price Cost Mark-up (P-C)/C + true + + + 1069 + 214 + 3 + 75 + Time-weighted Price + Time-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price + true + + + 1070 + 214 + 3 + 76 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load weighted average price + true + + + 1071 + 214 + 3 + 77 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1072 + 214 + 3 + 78 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of locational marginal price + true + + + 1073 + 214 + 3 + 79 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of regional price + true + + + 1074 + 214 + 3 + 80 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of the regional price + true + + + 1075 + 214 + 3 + 81 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 1076 + 214 + 3 + 82 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1077 + 214 + 3 + 83 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Total transmission rental + true + + + 1078 + 214 + 3 + 84 + Settlement Surplus + Settlement Surplus + 14 + 34 + true + true + false + true + true + false + true + true + 741 + 741 + Difference between cost to load and generator revenue + true + + + 1079 + 214 + 3 + 85 + Interregional Transmission Losses + Interregional Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 326 + 326 + Total inter-regional losses assigned to region + true + + + 1080 + 214 + 3 + 86 + Intraregional Transmission Losses + Intraregional Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 329 + 329 + Total losses on all intraregional lines + true + + + 1081 + 214 + 3 + 87 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Contract volume + true + + + 1082 + 214 + 3 + 88 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on contracts + true + + + 1083 + 214 + 3 + 89 + Net Cost to Load + Net Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 538 + 538 + Cost to load of their energy purchases net of contracts + true + + + 1084 + 214 + 3 + 90 + DSP Bid Quantity + DSP Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 156 + 156 + Bid quantity for demand-side participation + true + + + 1085 + 214 + 3 + 91 + DSP Bid Price + DSP Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 155 + 155 + Bid price for demand-side participation + true + + + 1086 + 214 + 3 + 92 + DSP Bid Cleared + DSP Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1398 + 1398 + Quantity cleared in demand-side participation bid band + true + + + 1087 + 214 + 3 + 93 + Cleared DSP Bid Price + Cleared DSP Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1400 + 1400 + Price of marginal demand-side participation bid band + true + + + 1088 + 214 + 3 + 94 + Cleared DSP Bid Cost + Cleared DSP Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1401 + 1401 + Value of cleared demand-side participation bids + true + + + 1089 + 214 + 3 + 95 + Cost of Curtailment + Cost of Curtailment + 14 + 34 + true + true + false + true + true + false + true + true + 118 + 118 + Cost of demand-side participation bids cleared + true + + + 1090 + 214 + 3 + 96 + Generator Net Pool Revenue + Generator Net Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 245 + 245 + Generator pool revenue net of contracts and pump load cost + true + + + 1091 + 214 + 3 + 97 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 1092 + 214 + 3 + 98 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 1093 + 214 + 3 + 99 + Generator Net Revenue + Generator Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 247 + 247 + Generator net revenue (producer surplus) + true + + + 1094 + 214 + 3 + 100 + Shadow Load + Shadow Load + 1 + 2 + true + true + false + false + true + false + true + true + 1142 + 1142 + Load before uplift or Competition models. + true + + + 1095 + 214 + 3 + 101 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 1096 + 214 + 3 + 102 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Price before uplift or mark-ups models. + true + + + 1097 + 214 + 3 + 103 + Shadow Cost to Load + Shadow Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 1141 + 1141 + Cost to load of their energy purchases based on [Shadow Price]. + true + + + 1098 + 214 + 3 + 104 + Generator Monopoly Rent + Generator Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 244 + 244 + Generator monopoly rent from competitive bidding + true + + + 1099 + 214 + 3 + 105 + Utility Monopoly Rent + Utility Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 840 + 840 + Generator monopoly rent from competitive bidding + true + + + 1100 + 214 + 3 + 106 + Non-Utility Monopoly Rent + Non-Utility Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 563 + 563 + Generator monopoly rent from competitive bidding + true + + + 1101 + 214 + 3 + 107 + Utility Contract Settlement + Utility Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 838 + 838 + Utility generator contract settlement + true + + + 1102 + 214 + 3 + 108 + Non-Utility Contract Settlement + Non-Utility Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 562 + 562 + Non-utility generator contract settlement + true + + + 1103 + 214 + 3 + 109 + Utility Net Revenue + Utility Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 841 + 841 + Utility generator net revenue (producer surplus) + true + + + 1104 + 214 + 3 + 110 + Non-Utility Net Revenue + Non-Utility Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 564 + 564 + Non-utility generator net revenue (producer surplus) + true + + + 1105 + 214 + 3 + 111 + Constrained On Cost + Constrained On Cost + 14 + 34 + true + true + false + true + true + false + true + true + 93 + 93 + Constrained on cost + true + + + 1106 + 214 + 3 + 112 + Constrained Off Cost + Constrained Off Cost + 14 + 34 + true + true + false + true + true + false + true + true + 91 + 91 + Constrained off cost + true + + + 1107 + 214 + 3 + 113 + Generator Net Profit + Generator Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 246 + 246 + Net profit from generators in region + true + + + 1108 + 214 + 3 + 114 + Net Market Profit + Net Market Profit + 14 + 34 + true + true + false + true + true + false + true + true + 1445 + 1445 + Net profit from all market nodes + true + + + 1109 + 214 + 3 + 115 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1110 + 214 + 3 + 116 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1111 + 214 + 3 + 117 + Net Cost of Exports + Net Cost of Exports + 14 + 34 + true + true + false + true + true + false + true + true + 537 + 537 + Net cost of exports + true + + + 1112 + 214 + 3 + 118 + Wheeling Revenue + Wheeling Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1036 + 1036 + Wheeling revenue on exports from the region + true + + + 1113 + 214 + 3 + 119 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost + true + + + 1114 + 214 + 3 + 120 + Trade Export Revenue + Trade Export Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 3016 + 3016 + Revenue from trade exports + true + + + 1115 + 214 + 3 + 121 + Trade Import Cost + Trade Import Cost + 14 + 34 + true + true + false + true + true + false + true + true + 3017 + 3017 + Cost of trade imports + true + + + 1116 + 214 + 3 + 122 + Intraregional Transmission Rental + Intraregional Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 330 + 330 + Total transmission rental on intraregional lines + true + + + 1117 + 214 + 3 + 123 + Interregional Transmission Rental + Interregional Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 327 + 327 + Share of interregional transmission rentals + true + + + 1118 + 214 + 3 + 124 + Transmission Control Rental + Transmission Control Rental + 14 + 34 + true + true + false + true + true + false + true + true + 795 + 795 + Rental from penalties on changes in flow control angles and DC line flows + true + + + 1119 + 214 + 3 + 125 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the region. + true + + + 1120 + 214 + 3 + 126 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the region. + true + + + 1121 + 214 + 3 + 127 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange in the region (Financial Exports - Financial Imports). + true + + + 1122 + 214 + 3 + 128 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region. + true + + + 1123 + 214 + 3 + 129 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region. + true + + + 1124 + 214 + 3 + 130 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1125 + 214 + 6 + 131 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + true + + + 1126 + 214 + 6 + 132 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Total installed generation capacity + true + + + 1127 + 214 + 6 + 133 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Region Firm Generation Capacity is based on the Firm Capacity of all the generators in the region. + true + + + 1128 + 214 + 6 + 134 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1129 + 214 + 6 + 135 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1130 + 214 + 6 + 136 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1131 + 214 + 6 + 137 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity from the Region + true + + + 1132 + 214 + 6 + 138 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Total export capacity from the Region + true + + + 1133 + 214 + 6 + 139 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1134 + 214 + 6 + 140 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 1135 + 214 + 6 + 141 + Max Capacity Reserves + Max Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 1136 + 214 + 6 + 142 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1137 + 214 + 6 + 143 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 1138 + 214 + 6 + 144 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 1139 + 214 + 6 + 145 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + true + + + 1140 + 214 + 6 + 146 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1141 + 214 + 6 + 147 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 1142 + 214 + 6 + 148 + Available Capacity Reserves + Available Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 1629 + 1629 + Capacity Reserves based on Available Capacity + true + + + 1143 + 214 + 6 + 149 + Available Capacity Margin + Available Capacity Margin + 12 + 12 + true + true + false + false + true + false + true + true + 1630 + 1630 + Capacity Reserve Margin based on Available Capacity + true + + + 1144 + 214 + 6 + 150 + Dispatchable Capacity + Dispatchable Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 149 + 149 + On-line capacity + true + + + 1145 + 214 + 6 + 151 + Undispatched Capacity + Undispatched Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 803 + 803 + Capacity on-line but undispatched + true + + + 1146 + 214 + 6 + 152 + Firm Capacity Group Value + Firm Capacity Group Value + 1 + 1 + true + true + false + false + true + false + true + true + 3007 + 3007 + Total firm capacity from the Firm Capacity Groups in the Region + true + + + 1147 + 214 + 7 + 153 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1148 + 214 + 7 + 154 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + false + true + true + 392 + 392 + Capacity out on maintenance + true + + + 1149 + 214 + 7 + 155 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 1150 + 214 + 7 + 156 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1151 + 214 + 7 + 157 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1152 + 214 + 7 + 158 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + true + true + true + true + 394 + 394 + Maintenance factor + true + + + 1153 + 214 + 7 + 159 + EENS + EENS + 3 + 3 + true + true + false + false + true + true + false + false + 161 + 161 + Expected energy not served (summary type "Sum") + true + + + 1154 + 214 + 7 + 160 + EDNS + EDNS + 1 + 1 + true + true + false + false + true + true + false + false + 160 + 160 + Expected Demand Not Served (summary type "Average") + true + + + 1155 + 214 + 7 + 161 + LOLE + LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 365 + 365 + Number of days of outage (summary type "Sum") + true + + + 1156 + 214 + 7 + 162 + LOLP + LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 366 + 366 + Loss of load probability (summary type "Average") + true + + + 1157 + 214 + 7 + 163 + Multi-area LOLE + Multi-area LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 1736 + 1736 + Number of days of outage including assistants from other connected regions (summary type "Sum") + true + + + 1158 + 214 + 7 + 164 + Multi-area LOLP + Multi-area LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 1735 + 1735 + Loss of load probability considering assistance from other connected regions + true + + + 1159 + 214 + 8 + 165 + Planning Peak Load + Planning Peak Load + 1 + 1 + true + true + false + false + true + false + false + false + 608 + 608 + Peak load in the current capacity optimization period (e.g. year) + true + + + 1160 + 214 + 8 + 166 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 1161 + 214 + 8 + 167 + Generation Capacity Retired + Generation Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 233 + 233 + Generation capacity retired + true + + + 1162 + 214 + 8 + 168 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Additional import capacity from the Region due to transmission expansion. + true + + + 1163 + 214 + 8 + 169 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Reduction in import capacity from the Region due to transmission retirements. + true + + + 1164 + 214 + 8 + 170 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Additional export capacity from the Region due to transmission expansion. + true + + + 1165 + 214 + 8 + 171 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Reduction in export capacity from the Region due to transmission retirements. + true + + + 1166 + 214 + 8 + 172 + Capacity Shortage + Capacity Shortage + 1 + 1 + true + true + false + false + true + false + false + false + 70 + 70 + Capacity shortage (below Min Capacity Reserves) + true + + + 1167 + 214 + 8 + 173 + Capacity Excess + Capacity Excess + 1 + 1 + true + true + false + false + true + false + false + false + 56 + 56 + Capacity excess (above Max Capacity Reserves) + true + + + 1168 + 214 + 8 + 174 + Capacity Shadow Price + Capacity Shadow Price + 31 + 31 + true + true + false + false + true + false + false + false + 68 + 68 + Shadow price of capacity + true + + + 1169 + 214 + 8 + 175 + LRMC + LRMC + 33 + 33 + false + true + false + false + true + false + false + false + 1034 + 1034 + Long-run marginal cost of production + true + + + 1170 + 214 + 8 + 176 + Capacity Payments + Capacity Payments + 14 + 34 + true + true + false + true + true + false + true + true + 883 + 883 + Payments made for capacity + true + + + 1171 + 214 + 8 + 177 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the region + true + + + 1172 + 214 + 8 + 178 + Capacity Shortage Cost + Capacity Shortage Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1225 + 1225 + Cost of capacity shortage priced at [Capacity Shortage Price]. + true + + + 1173 + 214 + 8 + 179 + Capacity Excess Cost + Capacity Excess Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1226 + 1226 + Cost of capacity excess priced at [Capacity Excess Price]. + true + + + 1174 + 214 + 8 + 180 + Total Generator Revenue + Total Generator Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1140 + 1140 + Total generator revenue including capacity payments. + true + + + 1175 + 214 + 8 + 181 + Generator Build Cost + Generator Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 241 + 241 + Cost of units built + true + + + 1176 + 214 + 8 + 182 + Generator Retirement Cost + Generator Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 251 + 251 + Cost of units retired + true + + + 1177 + 214 + 8 + 183 + Transmission Build Cost + Transmission Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 794 + 794 + Cost of transmission lines built + true + + + 1178 + 214 + 8 + 184 + Transmission Retirement Cost + Transmission Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 799 + 799 + Cost of transmission lines retired + true + + + 1179 + 214 + 8 + 185 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 1180 + 214 + 8 + 186 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 1181 + 214 + 8 + 187 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 1182 + 214 + 8 + 188 + Shadow Generation Capacity Built + Shadow Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1824 + 1824 + Generation capacity built before Competition models. + true + + + 1183 + 214 + 12 + 189 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1184 + 214 + 12 + 190 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1185 + 214 + 12 + 191 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1186 + 219 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Emissions + true + + + 1187 + 219 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 1188 + 219 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 1189 + 219 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 1190 + 219 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 1191 + 219 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1192 + 219 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 1193 + 219 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 1194 + 219 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 1195 + 224 + 1 + 1 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability between the regions in the reference direction. + true + + + 1196 + 224 + 1 + 2 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability between the regions in the counter-reference direction. + true + + + 1197 + 224 + 1 + 3 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports from region + true + + + 1198 + 224 + 1 + 4 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports to region + true + + + 1199 + 224 + 1 + 5 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Net interchange to region (exports - imports) + true + + + 1200 + 224 + 1 + 6 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the region + true + + + 1201 + 224 + 1 + 7 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the region + true + + + 1202 + 224 + 1 + 8 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) from parent region to child region. + true + + + 1203 + 224 + 1 + 9 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region + true + + + 1204 + 224 + 1 + 10 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region + true + + + 1205 + 224 + 1 + 11 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 1206 + 224 + 1 + 12 + Wheeling Cost + Wheeling Cost + 14 + 14 + true + true + false + false + true + false + true + true + 860 + 860 + Wheeling cost on exports to the region + true + + + 1207 + 245 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Total load + true + + + 1208 + 245 + 3 + 2 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1209 + 245 + 3 + 3 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 1210 + 245 + 3 + 4 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 1211 + 245 + 3 + 5 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 1212 + 245 + 3 + 6 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1213 + 245 + 3 + 7 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 1214 + 245 + 3 + 8 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1215 + 245 + 3 + 9 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy. + true + + + 1216 + 245 + 3 + 10 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation,start, shutdown, and emissions costs + true + + + 1217 + 245 + 3 + 11 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Energy price + true + + + 1218 + 245 + 3 + 12 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1219 + 245 + 3 + 13 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1220 + 245 + 3 + 14 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 1221 + 245 + 3 + 15 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1222 + 245 + 3 + 16 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1223 + 245 + 3 + 17 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1224 + 245 + 3 + 18 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Total customer load + true + + + 1225 + 245 + 3 + 19 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net generation value + true + + + 1226 + 245 + 3 + 20 + ORDC System Lambda + ORDC System Lambda + 33 + 33 + true + true + false + false + true + false + true + true + 2682 + 2682 + Max value of Energy Charge over all Nodes + true + + + 1227 + 245 + 3 + 21 + ORDC Online Price Adder + ORDC Online Price Adder + 33 + 33 + true + true + false + false + true + false + true + true + 2683 + 2683 + ORDC Online Price Adder + true + + + 1228 + 245 + 3 + 22 + ORDC Offline Price Adder + ORDC Offline Price Adder + 33 + 33 + true + true + false + false + true + false + true + true + 2684 + 2684 + ORDC Offline Price Adder + true + + + 1229 + 245 + 12 + 23 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1230 + 245 + 12 + 24 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1231 + 245 + 12 + 25 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1232 + 252 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 1233 + 252 + 3 + 2 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 1234 + 252 + 3 + 3 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load + true + + + 1235 + 252 + 3 + 4 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed generation + true + + + 1236 + 252 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1237 + 252 + 3 + 6 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 1238 + 252 + 3 + 7 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 1239 + 252 + 3 + 8 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 1240 + 252 + 3 + 9 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 1241 + 252 + 3 + 10 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 1242 + 252 + 3 + 11 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 1243 + 252 + 3 + 12 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 1244 + 252 + 3 + 13 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 1245 + 252 + 3 + 14 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 1246 + 252 + 3 + 15 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 1247 + 252 + 3 + 16 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 1248 + 252 + 3 + 17 + Heat Plant Load + Heat Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2833 + 2833 + Heat Plant electric load + true + + + 1249 + 252 + 3 + 18 + Gas Plant Load + Gas Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2834 + 2834 + Gas Plant electric load + true + + + 1250 + 252 + 3 + 19 + Gas Storage Load + Gas Storage Load + 1 + 2 + true + true + false + false + true + false + true + true + 2861 + 2861 + Gas Storage electric load + true + + + 1251 + 252 + 3 + 20 + Water Plant Load + Water Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2835 + 2835 + Water Plant electric load + true + + + 1252 + 252 + 3 + 21 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 1253 + 252 + 3 + 22 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 1254 + 252 + 3 + 23 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 1255 + 252 + 3 + 24 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 1256 + 252 + 3 + 25 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 1257 + 252 + 3 + 26 + Facility Generation + Facility Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2844 + 2844 + Generation from connected Facilities + true + + + 1258 + 252 + 3 + 27 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1259 + 252 + 3 + 28 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 1260 + 252 + 3 + 29 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 1261 + 252 + 3 + 30 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 1262 + 252 + 3 + 31 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Exports - Imports + true + + + 1263 + 252 + 3 + 32 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 1264 + 252 + 3 + 33 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 1265 + 252 + 3 + 34 + Unserved Energy Hours + Unserved Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 282 + 282 + Number of hours of unserved energy (USE). + true + + + 1266 + 252 + 3 + 35 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1267 + 252 + 3 + 36 + Max Unserved Energy + Max Unserved Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2014 + 2014 + Maximum unserved energy + true + + + 1268 + 252 + 3 + 37 + Unserved Energy Factor + Unserved Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2015 + 2015 + Ratio of unserved energy to load + true + + + 1269 + 252 + 3 + 38 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 1270 + 252 + 3 + 39 + Dump Energy Hours + Dump Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1088 + 1088 + Number of hours of dump energy. + true + + + 1271 + 252 + 3 + 40 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1272 + 252 + 3 + 41 + Max Dump Energy + Max Dump Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2909 + 2909 + Maximum dump energy + true + + + 1273 + 252 + 3 + 42 + Dump Energy Factor + Dump Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2921 + 2921 + Proportion of energy dumped + true + + + 1274 + 252 + 3 + 43 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy. + true + + + 1275 + 252 + 3 + 44 + Committed Capacity + Committed Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2936 + 2936 + Capacity of committed units + true + + + 1276 + 252 + 3 + 45 + No Cost Generation Capacity + No Cost Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 1165 + 1165 + Capacity available at no cost + true + + + 1277 + 252 + 3 + 46 + Hours Generation Curtailed + Hours Generation Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1166 + 1166 + Number of hours that non-positive-priced generation has been curtailed + true + + + 1278 + 252 + 3 + 47 + Generation Capacity Curtailed + Generation Capacity Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1167 + 1167 + Amount of non-positive-priced generation curtailed + true + + + 1279 + 252 + 3 + 48 + Max Generation Curtailed + Max Generation Curtailed + 1 + 1 + true + true + false + false + true + false + true + true + 2922 + 2922 + Maximum generation curtailed + true + + + 1280 + 252 + 3 + 49 + Generation Curtailment Factor + Generation Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2934 + 2934 + Proportion of generation curtailed + true + + + 1281 + 252 + 3 + 50 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 1282 + 252 + 3 + 51 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 1283 + 252 + 3 + 52 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 1284 + 252 + 3 + 53 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 1285 + 252 + 3 + 54 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 1286 + 252 + 3 + 55 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 1287 + 252 + 3 + 56 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 1288 + 252 + 3 + 57 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of generation that could be unloaded + true + + + 1289 + 252 + 3 + 58 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 1290 + 252 + 3 + 59 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 1291 + 252 + 3 + 60 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 1292 + 252 + 3 + 61 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 1293 + 252 + 3 + 62 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Total variable cost of generation + true + + + 1294 + 252 + 3 + 63 + Generator Pump Cost + Generator Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 249 + 249 + Cost of load to pump storage generators + true + + + 1295 + 252 + 3 + 64 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Cost of generating unit starts and shutdowns + true + + + 1296 + 252 + 3 + 65 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 1297 + 252 + 3 + 66 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1298 + 252 + 3 + 67 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation and start and shutdown costs and emissions costs + true + + + 1299 + 252 + 3 + 68 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 1300 + 252 + 3 + 69 + Generator FO&M Cost + Generator FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 888 + 888 + Total fixed operations and maintenance costs + true + + + 1301 + 252 + 3 + 70 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs (fixed O&M, equity, debt) + true + + + 1302 + 252 + 3 + 71 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Highest short-run marginal cost of running generators + true + + + 1303 + 252 + 3 + 72 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Energy price + true + + + 1304 + 252 + 3 + 73 + Time-weighted Price + Time-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 789 + 789 + Time-weighted average price + true + + + 1305 + 252 + 3 + 74 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1306 + 252 + 3 + 75 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1307 + 252 + 3 + 76 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of locational marginal price + true + + + 1308 + 252 + 3 + 77 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of zonal price + true + + + 1309 + 252 + 3 + 78 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of the zonal price + true + + + 1310 + 252 + 3 + 79 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Average marginal loss factor of buses in the zone + true + + + 1311 + 252 + 3 + 80 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 1312 + 252 + 3 + 81 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1313 + 252 + 3 + 82 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Total transmission rental + true + + + 1314 + 252 + 3 + 83 + Settlement Surplus + Settlement Surplus + 14 + 34 + true + true + false + true + true + false + true + true + 741 + 741 + Difference between cost to load and generator revenue + true + + + 1315 + 252 + 3 + 84 + Cost of Curtailment + Cost of Curtailment + 14 + 34 + true + true + false + true + true + false + true + true + 118 + 118 + Cost of demand-side participation bids cleared + true + + + 1316 + 252 + 3 + 85 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 1317 + 252 + 3 + 86 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 1318 + 252 + 3 + 87 + Generator Net Revenue + Generator Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 247 + 247 + Generator net revenue (producer surplus) + true + + + 1319 + 252 + 3 + 88 + Generator Net Profit + Generator Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 246 + 246 + Net profit from generators in Zone + true + + + 1320 + 252 + 3 + 89 + Net Market Profit + Net Market Profit + 14 + 34 + true + true + false + true + true + false + true + true + 1445 + 1445 + Net profit from all market nodes + true + + + 1321 + 252 + 3 + 90 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1322 + 252 + 3 + 91 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1323 + 252 + 3 + 92 + Net Cost of Exports + Net Cost of Exports + 14 + 34 + true + true + false + true + true + false + true + true + 537 + 537 + Net cost of exports + true + + + 1324 + 252 + 3 + 93 + Wheeling Revenue + Wheeling Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1036 + 1036 + Wheeling revenue on exports from the zone + true + + + 1325 + 252 + 3 + 94 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost on imports to the zone + true + + + 1326 + 252 + 3 + 95 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the zone. + true + + + 1327 + 252 + 3 + 96 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the zone. + true + + + 1328 + 252 + 3 + 97 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange in the zone (Financial Exports - Financial Imports). + true + + + 1329 + 252 + 3 + 98 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the zone. + true + + + 1330 + 252 + 3 + 99 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the Zone. + true + + + 1331 + 252 + 3 + 100 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1332 + 252 + 6 + 101 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load across the current period + true + + + 1333 + 252 + 6 + 102 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Total installed generation capacity + true + + + 1334 + 252 + 6 + 103 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Installed capacity accounting for [Rating], [Rating Factor] and [Firm Capacity] + true + + + 1335 + 252 + 6 + 104 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1336 + 252 + 6 + 105 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1337 + 252 + 6 + 106 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1338 + 252 + 6 + 107 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity from the Zone + true + + + 1339 + 252 + 6 + 108 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Capacity export capability + true + + + 1340 + 252 + 6 + 109 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1341 + 252 + 6 + 110 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 1342 + 252 + 6 + 111 + Max Capacity Reserves + Max Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 1343 + 252 + 6 + 112 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1344 + 252 + 6 + 113 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 1345 + 252 + 6 + 114 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 1346 + 252 + 6 + 115 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 63 + 63 + Reserve margin + true + + + 1347 + 252 + 6 + 116 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1348 + 252 + 6 + 117 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 1349 + 252 + 6 + 118 + Available Capacity Reserves + Available Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 1629 + 1629 + Capacity Reserves based on Available Capacity + true + + + 1350 + 252 + 6 + 119 + Available Capacity Margin + Available Capacity Margin + 12 + 12 + true + true + false + false + true + false + true + true + 1630 + 1630 + Capacity Reserve Margin based on Available Capacity + true + + + 1351 + 252 + 6 + 120 + Dispatchable Capacity + Dispatchable Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 149 + 149 + On-line capacity + true + + + 1352 + 252 + 6 + 121 + Undispatched Capacity + Undispatched Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 803 + 803 + Capacity on-line but undispatched + true + + + 1353 + 252 + 6 + 122 + Firm Capacity Group Value + Firm Capacity Group Value + 1 + 1 + true + true + false + false + true + false + true + true + 3007 + 3007 + Total firm capacity from the Firm Capacity Groups in the Zone + true + + + 1354 + 252 + 7 + 123 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1355 + 252 + 7 + 124 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1356 + 252 + 7 + 125 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + false + true + false + false + 394 + 394 + Maintenance factor + true + + + 1357 + 252 + 7 + 126 + EENS + EENS + 3 + 3 + true + true + false + false + false + true + false + false + 161 + 161 + Expected energy not served (summary type "Sum") + true + + + 1358 + 252 + 7 + 127 + EDNS + EDNS + 1 + 1 + true + true + false + false + false + true + false + false + 160 + 160 + Expected demand not served (summary type "Average") + true + + + 1359 + 252 + 7 + 128 + LOLE + LOLE + 7 + 7 + true + true + false + false + false + true + false + false + 365 + 365 + Number of days of outage (summary type "Sum") + true + + + 1360 + 252 + 7 + 129 + LOLP + LOLP + 12 + 12 + true + true + false + false + false + true + false + false + 366 + 366 + Loss of load probability (summary type "Average") + true + + + 1361 + 252 + 7 + 130 + Multi-area LOLE + Multi-area LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 1736 + 1736 + Number of days of outage including assistants from other connected zones (summary type "Sum") + true + + + 1362 + 252 + 7 + 131 + Multi-area LOLP + Multi-area LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 1735 + 1735 + Loss of load probability including assistants from other connected zones (summary type "Average") + true + + + 1363 + 252 + 8 + 132 + Planning Peak Load + Planning Peak Load + 1 + 1 + true + true + false + false + true + false + false + false + 608 + 608 + Peak load in the current capacity optimization period (e.g. year) + true + + + 1364 + 252 + 8 + 133 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 1365 + 252 + 8 + 134 + Generation Capacity Retired + Generation Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 233 + 233 + Generation capacity retired + true + + + 1366 + 252 + 8 + 135 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Additional import capacity from the Zone due to transmission expansion. + true + + + 1367 + 252 + 8 + 136 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Reduction in import capacity from the Zone due to transmission retirements. + true + + + 1368 + 252 + 8 + 137 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Additional export capacity from the Zone due to transmission expansion + true + + + 1369 + 252 + 8 + 138 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Reduction in export capacity from the Zone due to transmission retirements + true + + + 1370 + 252 + 8 + 139 + Capacity Shortage + Capacity Shortage + 1 + 1 + true + true + false + false + true + false + false + false + 70 + 70 + Capacity Shortage (below Min Capacity Reserves) + true + + + 1371 + 252 + 8 + 140 + Capacity Excess + Capacity Excess + 1 + 1 + true + true + false + false + true + false + false + false + 56 + 56 + Capacity excess (above Max Capacity Reserves) + true + + + 1372 + 252 + 8 + 141 + Capacity Shadow Price + Capacity Shadow Price + 31 + 31 + true + true + false + false + true + false + false + false + 68 + 68 + Shadow price of capacity + true + + + 1373 + 252 + 8 + 142 + LRMC + LRMC + 33 + 33 + false + true + false + false + true + false + false + false + 1034 + 1034 + Long-run marginal cost of production + true + + + 1374 + 252 + 8 + 143 + Capacity Payments + Capacity Payments + 14 + 34 + true + true + false + false + true + false + true + true + 883 + 883 + Payments made for capacity + true + + + 1375 + 252 + 8 + 144 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the zone + true + + + 1376 + 252 + 8 + 145 + Capacity Shortage Cost + Capacity Shortage Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1225 + 1225 + Cost of capacity shortage priced at [Capacity Shortage Price]. + true + + + 1377 + 252 + 8 + 146 + Capacity Excess Cost + Capacity Excess Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1226 + 1226 + Cost of capacity excess priced at [Capacity Excess Price]. + true + + + 1378 + 252 + 8 + 147 + Total Generator Revenue + Total Generator Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1140 + 1140 + Total generator revenue including capacity payments. + true + + + 1379 + 252 + 8 + 148 + Generator Build Cost + Generator Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 241 + 241 + Cost of units built + true + + + 1380 + 252 + 8 + 149 + Generator Retirement Cost + Generator Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 251 + 251 + Cost of units retired + true + + + 1381 + 252 + 8 + 150 + Transmission Build Cost + Transmission Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 794 + 794 + Cost of transmission lines built + true + + + 1382 + 252 + 8 + 151 + Transmission Retirement Cost + Transmission Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 799 + 799 + Cost of transmission lines retired + true + + + 1383 + 252 + 8 + 152 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 1384 + 252 + 8 + 153 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 1385 + 252 + 8 + 154 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 1386 + 252 + 12 + 155 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1387 + 252 + 12 + 156 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1388 + 252 + 12 + 157 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1389 + 259 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Emissions + true + + + 1390 + 259 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 1391 + 259 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 1392 + 259 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 1393 + 259 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 1394 + 259 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1395 + 259 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 1396 + 259 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 1397 + 259 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 1398 + 268 + 1 + 1 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability between the zones in the reference direction. + true + + + 1399 + 268 + 1 + 2 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability between the zones in the counter-reference direction. + true + + + 1400 + 268 + 1 + 3 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the zone + true + + + 1401 + 268 + 1 + 4 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to parent zone from child zone. + true + + + 1402 + 268 + 1 + 5 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) from parent zone to child zone. + true + + + 1403 + 268 + 1 + 6 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the zone + true + + + 1404 + 268 + 1 + 7 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the zone + true + + + 1405 + 268 + 1 + 8 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1406 + 268 + 1 + 9 + Wheeling Cost + Wheeling Cost + 14 + 14 + true + true + false + false + true + false + true + true + 860 + 860 + Wheeling cost on exports to the zone + true + + + 1407 + 297 + 3 + 1 + GPF Loss Factor + GPF Loss Factor + 0 + 0 + true + false + false + false + false + false + false + true + 2805 + 2805 + Generator Penalty Factors(GPF) loss factor at the node + false + + + 1408 + 297 + 3 + 2 + PTDF Index + PTDF Index + 0 + 0 + true + true + false + false + false + false + false + true + 2806 + 2806 + Index of PTDF zone the node belongs to + false + + + 1409 + 297 + 3 + 3 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 1410 + 297 + 3 + 4 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 1411 + 297 + 3 + 5 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load at the node + true + + + 1412 + 297 + 3 + 6 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed (or embedded) generation at the node + true + + + 1413 + 297 + 3 + 7 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1414 + 297 + 3 + 8 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 1415 + 297 + 3 + 9 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 1416 + 297 + 3 + 10 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 1417 + 297 + 3 + 11 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Pump load + true + + + 1418 + 297 + 3 + 12 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 1419 + 297 + 3 + 13 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 1420 + 297 + 3 + 14 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 1421 + 297 + 3 + 15 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 1422 + 297 + 3 + 16 + Heat Plant Load + Heat Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2833 + 2833 + Heat Plant electric load + true + + + 1423 + 297 + 3 + 17 + Gas Plant Load + Gas Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2834 + 2834 + Gas Plant electric load + true + + + 1424 + 297 + 3 + 18 + Gas Storage Load + Gas Storage Load + 1 + 2 + true + true + false + false + true + false + true + true + 2861 + 2861 + Gas Storage electric load + true + + + 1425 + 297 + 3 + 19 + Water Plant Load + Water Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2835 + 2835 + Water Plant electric load + true + + + 1426 + 297 + 3 + 20 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 1427 + 297 + 3 + 21 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 1428 + 297 + 3 + 22 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 1429 + 297 + 3 + 23 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 1430 + 297 + 3 + 24 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 1431 + 297 + 3 + 25 + Facility Generation + Facility Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2844 + 2844 + Generation from connected Facilities + true + + + 1432 + 297 + 3 + 26 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1433 + 297 + 3 + 27 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 1434 + 297 + 3 + 28 + DSP Bid Quantity + DSP Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 156 + 156 + Demand-side participation bid quantity + true + + + 1435 + 297 + 3 + 29 + DSP Bid Price + DSP Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 155 + 155 + Demand-side participation bid price + true + + + 1436 + 297 + 3 + 30 + DSP Bid Cleared + DSP Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1398 + 1398 + Quantity cleared in demand-side participation bid band + true + + + 1437 + 297 + 3 + 31 + Cleared DSP Bid Price + Cleared DSP Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1400 + 1400 + Price of marginal demand-side participation bid band + true + + + 1438 + 297 + 3 + 32 + Cleared DSP Bid Cost + Cleared DSP Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1401 + 1401 + Value of cleared demand-side participation bids + true + + + 1439 + 297 + 3 + 33 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load served to customers at the node + true + + + 1440 + 297 + 3 + 34 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports to the node + true + + + 1441 + 297 + 3 + 35 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports from the node + true + + + 1442 + 297 + 3 + 36 + Net DC Export + Net DC Export + 1 + 2 + true + true + false + false + true + false + true + true + 929 + 929 + Export from the node on DC lines net of losses + true + + + 1443 + 297 + 3 + 37 + Net Injection + Net Injection + 1 + 2 + true + true + false + false + true + false + true + true + 542 + 542 + Net injection (exports - imports) + true + + + 1444 + 297 + 3 + 38 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1445 + 297 + 3 + 39 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1446 + 297 + 3 + 40 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Losses allocated to the node + true + + + 1447 + 297 + 3 + 41 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow through the node + true + + + 1448 + 297 + 3 + 42 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Locational marginal price + true + + + 1449 + 297 + 3 + 43 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of locational marginal price + true + + + 1450 + 297 + 3 + 44 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of locational marginal price + true + + + 1451 + 297 + 3 + 45 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of locational marginal price + true + + + 1452 + 297 + 3 + 46 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Marginal loss factor to slack bus(es) + true + + + 1453 + 297 + 3 + 47 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage + true + + + 1454 + 297 + 3 + 48 + Phase Angle + Phase Angle + 11 + 11 + true + false + false + false + true + false + true + true + 607 + 607 + Node phase angle + true + + + 1455 + 297 + 3 + 49 + Injection Mismatch + Injection Mismatch + 1 + 2 + true + true + false + false + true + false + true + true + 2067 + 2067 + Absolute value of mismatch of injection due to PTDF threshold. + true + + + 1456 + 297 + 3 + 50 + AC Mismatch + AC Mismatch + 121 + 121 + true + true + false + false + false + false + false + true + 2817 + 2817 + The magnitude of the complex power mismatch between the left- and right-hand sides of the AC power balance equation, as initialized using a PLEXOS economic dispatch + true + + + 1457 + 297 + 3 + 51 + DC Losses + DC Losses + 1 + 2 + true + false + false + false + false + false + false + true + 2863 + 2863 + DC Losses allocated to the node + false + + + 1458 + 297 + 3 + 52 + AC Branch Losses + AC Branch Losses + 1 + 2 + true + true + false + false + false + false + false + true + 2886 + 2886 + AC Branch Losses allocated to the node + false + + + 1459 + 297 + 6 + 53 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load across the current period + true + + + 1460 + 297 + 6 + 54 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Rated capacity (Rating x Units) + true + + + 1461 + 297 + 6 + 55 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Firm capacity provided by generators + true + + + 1462 + 297 + 6 + 56 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1463 + 297 + 6 + 57 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1464 + 297 + 6 + 58 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1465 + 297 + 6 + 59 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity to the Node. + true + + + 1466 + 297 + 6 + 60 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Total export capacity from the Node. + true + + + 1467 + 297 + 6 + 61 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1468 + 297 + 6 + 62 + Generation Available Transfer Capacity + Generation Available Transfer Capacity + 1 + 1 + true + true + false + false + false + false + false + true + 3011 + 3011 + The maximum amount of additional MW generation that is possible between this node and the slack bus(es). + true + + + 1469 + 297 + 6 + 63 + Load Available Transfer Capacity + Load Available Transfer Capacity + 1 + 1 + true + true + false + false + false + false + false + true + 2983 + 2983 + The maximum amount of additional MW load that is possible between this node and the slack bus(es). + true + + + 1470 + 297 + 6 + 64 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves + true + + + 1471 + 297 + 6 + 65 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1472 + 297 + 6 + 66 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1473 + 297 + 7 + 67 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1474 + 297 + 7 + 68 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1475 + 297 + 7 + 69 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + false + true + false + false + 394 + 394 + Maintenance biasing factor + true + + + 1476 + 297 + 7 + 70 + EENS + EENS + 3 + 3 + true + true + false + false + false + true + false + false + 161 + 161 + Expected Energy Not Served (summary type "Sum") + true + + + 1477 + 297 + 7 + 71 + EDNS + EDNS + 1 + 1 + true + true + false + false + false + true + false + false + 160 + 160 + Expected Demand Not Served (summary type "Average") + true + + + 1478 + 297 + 7 + 72 + LOLE + LOLE + 7 + 7 + true + true + false + false + false + true + false + false + 365 + 365 + Loss Of Load Expected (summary type "Sum") + true + + + 1479 + 297 + 7 + 73 + LOLP + LOLP + 12 + 12 + true + true + false + false + false + true + false + false + 366 + 366 + Loss Of Load Probability (summary type "Average") + true + + + 1480 + 297 + 12 + 74 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1481 + 297 + 12 + 75 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1482 + 297 + 12 + 76 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1483 + 300 + 1 + 1 + Emissions + Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 3001 + 3001 + Emissions consumed at the node in a virtual emission network + true + + + 1484 + 305 + 3 + 1 + Pricing Weight + Pricing Weight + 0 + 0 + true + true + false + false + true + false + true + true + 1651 + 1651 + Pricing Weight of each node in the hub + true + + + 1485 + 310 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 1486 + 310 + 1 + 2 + Purchases + Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 1487 + 310 + 1 + 3 + Net Sales + Net Sales + 1 + 2 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 1488 + 310 + 1 + 4 + Net Purchases + Net Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 1489 + 310 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 1490 + 310 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 1491 + 310 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 1492 + 310 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 1493 + 316 + 12 + 1 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1494 + 316 + 12 + 2 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1495 + 316 + 12 + 3 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1496 + 321 + 3 + 1 + Flow Path Ratio + Flow Path Ratio + 0 + 0 + true + false + false + false + false + false + false + true + 2807 + 2807 + Susceptance ratio between the line and the path + false + + + 1497 + 321 + 3 + 2 + Flow Price Complete + Flow Price Complete + 33 + 33 + true + false + false + false + false + false + false + true + 2808 + 2808 + Total shadow price from all binding constraints + false + + + 1498 + 321 + 3 + 3 + Formulate Upfront + Formulate Upfront + 0 + 0 + true + true + false + false + false + false + false + true + 976 + 976 + Flag if the thermal limits or non-physical losses should be formulated upfront(0,1) + false + + + 1499 + 321 + 3 + 4 + Is Power Flow Line + Is Power Flow Line + 0 + 0 + true + true + false + false + false + false + false + true + 2809 + 2809 + Flag if the line is a power flow modeled line (0,1) + false + + + 1500 + 321 + 3 + 5 + PTDF Index + PTDF Index + 0 + 0 + true + true + false + false + false + false + false + true + 2806 + 2806 + PTDF Index of the path the line belongs to + false + + + 1501 + 321 + 3 + 6 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Flag if the line is in service (0,1) + true + + + 1502 + 321 + 3 + 7 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow + true + + + 1503 + 321 + 3 + 8 + Flow Back + Flow Back + 1 + 2 + true + true + false + false + true + false + true + true + 206 + 206 + Flow on the line in the counter-reference direction + true + + + 1504 + 321 + 3 + 9 + Net Flow + Net Flow + 1 + 2 + false + true + false + false + true + false + true + true + 1816 + 1816 + Net Flow on the line + true + + + 1505 + 321 + 3 + 10 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the line + true + + + 1506 + 321 + 3 + 11 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the line + true + + + 1507 + 321 + 3 + 12 + Overload Export Limit + Overload Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2864 + 2864 + Maximum post-contingency flow allowed on the line + true + + + 1508 + 321 + 3 + 13 + Overload Import Limit + Overload Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2865 + 2865 + Minimum post-contingency flow allowed on the line + true + + + 1509 + 321 + 3 + 14 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1510 + 321 + 3 + 15 + Loading Back + Loading Back + 12 + 12 + false + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1511 + 321 + 3 + 16 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours line is congested in the reference direction in pre-contingency state + true + + + 1512 + 321 + 3 + 17 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours line is congested in the counter-reference direction + true + + + 1513 + 321 + 3 + 18 + Hours Congested Total + Hours Congested Total + 6 + 6 + true + true + false + false + true + false + true + true + 2878 + 2878 + Number of hours line is congested in the reference direction + true + + + 1514 + 321 + 3 + 19 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow/expansion price in pre-contingency state + true + + + 1515 + 321 + 3 + 20 + Shadow Price Back + Shadow Price Back + 32 + 32 + true + true + false + false + true + false + true + true + 743 + 743 + Shadow/expansion price for counter-reference direction flows + true + + + 1516 + 321 + 3 + 21 + Shadow Price Total + Shadow Price Total + 32 + 32 + true + true + false + false + true + false + true + true + 2879 + 2879 + Shadow/expansion price + true + + + 1517 + 321 + 3 + 22 + Violation Hours + Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 283 + 283 + If the line is flowing above is minimum or maximum rating + true + + + 1518 + 321 + 3 + 23 + Violation Back Hours + Violation Back Hours + 6 + 6 + false + true + false + false + true + false + true + true + 284 + 284 + Number of hours the flow limit is violated in the counter-reference direction. + true + + + 1519 + 321 + 3 + 24 + Violation + Violation + 1 + 2 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of flow limit + true + + + 1520 + 321 + 3 + 25 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the flow limit in the counter-reference direction. + true + + + 1521 + 321 + 3 + 26 + Violation Cost + Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 845 + 845 + Cost of violating flow limits + true + + + 1522 + 321 + 3 + 27 + Violation Cost Back + Violation Cost Back + 14 + 34 + false + true + false + true + true + false + true + true + 846 + 846 + Cost of violating the flow limit in the counter-reference direction. + true + + + 1523 + 321 + 3 + 28 + Ramp + Ramp + 1 + 1 + true + false + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 1524 + 321 + 3 + 29 + Ramp Cost + Ramp Cost + 14 + 34 + true + true + false + true + true + false + true + true + 869 + 869 + Cost of ramping + true + + + 1525 + 321 + 3 + 30 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow + true + + + 1526 + 321 + 3 + 31 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow + true + + + 1527 + 321 + 3 + 32 + Fixed Flow + Fixed Flow + 1 + 2 + true + true + false + false + true + false + true + true + 197 + 197 + Fixed flow on line + true + + + 1528 + 321 + 3 + 33 + Fixed Flow Violation + Fixed Flow Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1325 + 1325 + Violation of [Fixed Flow] constraint. + true + + + 1529 + 321 + 3 + 34 + Fixed Flow Violation Hours + Fixed Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1327 + 1327 + Number of hours that [Fixed Flow] is violated. + true + + + 1530 + 321 + 3 + 35 + Fixed Flow Violation Cost + Fixed Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1326 + 1326 + Cost of [Fixed Flow] violations. + true + + + 1531 + 321 + 3 + 36 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of energy exported + true + + + 1532 + 321 + 3 + 37 + Import Cost + Import Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1234 + 1234 + Cost of energy imported + true + + + 1533 + 321 + 3 + 38 + Export Revenue + Export Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1235 + 1235 + Revenue from energy exported + true + + + 1534 + 321 + 3 + 39 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from energy imported + true + + + 1535 + 321 + 3 + 40 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Rental / settlement surplus in pre-contingency state + true + + + 1536 + 321 + 3 + 41 + Rental Back + Rental Back + 14 + 34 + false + true + false + false + true + false + true + true + 679 + 679 + Rental / settlement surplus in the counter-reference direction + true + + + 1537 + 321 + 3 + 42 + Rental Total + Rental Total + 14 + 34 + true + true + false + true + true + false + true + true + 2880 + 2880 + Rental / settlement surplus + true + + + 1538 + 321 + 3 + 43 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost + true + + + 1539 + 321 + 3 + 44 + Wheeling Cost Back + Wheeling Cost Back + 14 + 34 + true + true + false + false + true + false + true + true + 861 + 861 + Wheeling cost of flows in the counter-reference direction + true + + + 1540 + 321 + 3 + 45 + Loss + Loss + 1 + 2 + true + true + false + false + true + false + true + true + 372 + 372 + Losses + true + + + 1541 + 321 + 3 + 46 + Loss Back + Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 374 + 374 + Losses on flows in the counter-reference direction + true + + + 1542 + 321 + 3 + 47 + Marginal Loss + Marginal Loss + 12 + 12 + true + true + false + false + true + false + true + true + 403 + 403 + Marginal loss + true + + + 1543 + 321 + 3 + 48 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Transmission marginal loss factor (MLF or TLF) for exports + true + + + 1544 + 321 + 3 + 49 + Non-physical Loss + Non-physical Loss + 1 + 2 + true + true + false + false + true + false + true + true + 2896 + 2896 + Non-physical losses in the reference direction + true + + + 1545 + 321 + 3 + 50 + Non-physical Loss Back + Non-physical Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 2897 + 2897 + Non-physical losses in the counter-reference direction + true + + + 1546 + 321 + 3 + 51 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage of the line + true + + + 1547 + 321 + 3 + 52 + Offer Base + Offer Base + 1 + 1 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for balancing offer + true + + + 1548 + 321 + 3 + 53 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band for reference direction flows + true + + + 1549 + 321 + 3 + 54 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price offered in band for reference direction flows + true + + + 1550 + 321 + 3 + 55 + Offer Quantity Back + Offer Quantity Back + 1 + 2 + true + true + true + false + true + false + true + true + 573 + 573 + Quantity offered in band for counter-reference direction flows + true + + + 1551 + 321 + 3 + 56 + Offer Price Back + Offer Price Back + 33 + 33 + true + true + true + false + true + false + true + true + 570 + 570 + Price offered in band for counter-reference direction flows + true + + + 1552 + 321 + 3 + 57 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 1553 + 321 + 3 + 58 + Offer Cleared Back + Offer Cleared Back + 1 + 2 + true + true + true + false + true + false + true + true + 567 + 567 + Quantity cleared in band + true + + + 1554 + 321 + 3 + 59 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 1555 + 321 + 3 + 60 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under offer curve + true + + + 1556 + 321 + 3 + 61 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1557 + 321 + 3 + 62 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 1558 + 321 + 3 + 63 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 1559 + 321 + 3 + 64 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 1560 + 321 + 6 + 65 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + false + + + 1561 + 321 + 6 + 66 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Net capacity reserves exported + true + + + 1562 + 321 + 6 + 67 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + false + false + 1012 + 1012 + Contribution of the line to region capacity reserves + true + + + 1563 + 321 + 6 + 68 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the line. + true + + + 1564 + 321 + 6 + 69 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the line in the counter-reference direction. + true + + + 1565 + 321 + 7 + 70 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units (circuits) out of service + true + + + 1566 + 321 + 7 + 71 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Total capacity out of service in the reference direction (discrete + distributed) + true + + + 1567 + 321 + 7 + 72 + Maintenance Back + Maintenance Back + 1 + 2 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 1568 + 321 + 7 + 73 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 1569 + 321 + 7 + 74 + Discrete Maintenance Back + Discrete Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 1570 + 321 + 7 + 75 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 1571 + 321 + 7 + 76 + Distributed Maintenance Back + Distributed Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 1572 + 321 + 7 + 77 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 1573 + 321 + 7 + 78 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1574 + 321 + 7 + 79 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 1575 + 321 + 7 + 80 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for transfer + true + + + 1576 + 321 + 8 + 81 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 1577 + 321 + 8 + 82 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 1578 + 321 + 8 + 83 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Export capacity gained from new builds + true + + + 1579 + 321 + 8 + 84 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Import capacity gained from new builds + true + + + 1580 + 321 + 8 + 85 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Export capacity lost to retirements + true + + + 1581 + 321 + 8 + 86 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Import capacity lost to retirements + true + + + 1582 + 321 + 8 + 87 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the line + true + + + 1583 + 321 + 8 + 88 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of building the line + true + + + 1584 + 321 + 8 + 89 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the line + true + + + 1585 + 321 + 12 + 90 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1586 + 321 + 12 + 91 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1587 + 321 + 12 + 92 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1588 + 324 + 1 + 1 + Emission Flow + Emission Flow + 19 + 20 + true + true + false + true + true + false + true + true + 3002 + 3002 + Emissions flow on the line in virtual emission network + true + + + 1589 + 338 + 3 + 1 + Flow Path Ratio + Flow Path Ratio + 0 + 0 + true + false + false + false + false + false + false + true + 2807 + 2807 + Susceptance ratio between the transformer and the path + false + + + 1590 + 338 + 3 + 2 + Flow Price Complete + Flow Price Complete + 33 + 33 + true + false + false + false + false + false + false + true + 2808 + 2808 + Total shadow price from all binding constraints + false + + + 1591 + 338 + 3 + 3 + Formulate Upfront + Formulate Upfront + 0 + 0 + true + true + false + false + false + false + false + true + 976 + 976 + Flag if the thermal limits or non-physical losses should be formulated upfront(0,1) + false + + + 1592 + 338 + 3 + 4 + Is Power Flow Transformer + Is Power Flow Transformer + 0 + 0 + true + true + false + false + false + false + false + true + 2810 + 2810 + Flag if the transformer is a power flow modeled transformer (0,1) + false + + + 1593 + 338 + 3 + 5 + PTDF Index + PTDF Index + 0 + 0 + true + true + false + false + false + false + false + true + 2806 + 2806 + PTDF Index of the path the transformer belongs to + false + + + 1594 + 338 + 3 + 6 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow through the transformer (sent out) + true + + + 1595 + 338 + 3 + 7 + Flow Back + Flow Back + 1 + 2 + false + true + false + false + true + false + true + true + 206 + 206 + Flow through the transformer in the counter-reference direction + true + + + 1596 + 338 + 3 + 8 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the transformer + true + + + 1597 + 338 + 3 + 9 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the line + true + + + 1598 + 338 + 3 + 10 + Overload Export Limit + Overload Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2864 + 2864 + Maximum post-contingency flow allowed on the transformer + true + + + 1599 + 338 + 3 + 11 + Overload Import Limit + Overload Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2865 + 2865 + Minimum post-contingency flow allowed on the line + true + + + 1600 + 338 + 3 + 12 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1601 + 338 + 3 + 13 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1602 + 338 + 3 + 14 + Loss + Loss + 1 + 2 + true + true + false + false + true + false + true + true + 372 + 372 + Losses (sent out) + true + + + 1603 + 338 + 3 + 15 + Loss Back + Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 374 + 374 + Losses on flows in the counter-reference direction + true + + + 1604 + 338 + 3 + 16 + Non-physical Loss + Non-physical Loss + 1 + 2 + true + true + false + false + true + false + true + true + 2896 + 2896 + Non-physical losses in the reference direction + true + + + 1605 + 338 + 3 + 17 + Non-physical Loss Back + Non-physical Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 2897 + 2897 + Non-physical losses in the counter-reference direction + true + + + 1606 + 338 + 3 + 18 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage of the transformer + true + + + 1607 + 338 + 3 + 19 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the Transformer is flowing at its [Rating] in pre-contingency state + true + + + 1608 + 338 + 3 + 20 + Hours Congested Total + Hours Congested Total + 6 + 6 + true + true + false + true + true + false + true + true + 2878 + 2878 + Number of hours the Transformer is flowing at its [Rating] + true + + + 1609 + 338 + 3 + 21 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow/expansion price in pre-contingency state + true + + + 1610 + 338 + 3 + 22 + Shadow Price Total + Shadow Price Total + 32 + 32 + true + true + false + false + true + false + true + true + 2879 + 2879 + Shadow/expansion price + true + + + 1611 + 338 + 3 + 23 + Violation Hours + Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 283 + 283 + Number of hours the Transformer Flow exceeds the [Rating]. + true + + + 1612 + 338 + 3 + 24 + Violation Back Hours + Violation Back Hours + 6 + 6 + false + true + false + false + true + false + true + true + 284 + 284 + Number of hours the flow limit is violated in the counter-reference direction. + true + + + 1613 + 338 + 3 + 25 + Violation + Violation + 1 + 2 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of flow limit + true + + + 1614 + 338 + 3 + 26 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the flow limit in the counter-reference direction. + true + + + 1615 + 338 + 3 + 27 + Violation Cost + Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 845 + 845 + Cost of violating flow limits + true + + + 1616 + 338 + 3 + 28 + Violation Cost Back + Violation Cost Back + 14 + 34 + false + true + false + true + true + false + true + true + 846 + 846 + Cost of violating the flow limit in the counter-reference direction. + true + + + 1617 + 338 + 3 + 29 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow + true + + + 1618 + 338 + 3 + 30 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow + true + + + 1619 + 338 + 3 + 31 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of energy exported + true + + + 1620 + 338 + 3 + 32 + Import Cost + Import Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1234 + 1234 + Cost of energy imported + true + + + 1621 + 338 + 3 + 33 + Export Revenue + Export Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1235 + 1235 + Revenue from energy exported + true + + + 1622 + 338 + 3 + 34 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from energy imported + true + + + 1623 + 338 + 3 + 35 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Transmission rent in pre-contingency state + true + + + 1624 + 338 + 3 + 36 + Rental Back + Rental Back + 14 + 34 + false + true + false + true + true + false + true + true + 679 + 679 + Rental / settlement surplus in the counter-reference direction + true + + + 1625 + 338 + 3 + 37 + Rental Total + Rental Total + 14 + 34 + true + true + false + true + true + false + true + true + 2880 + 2880 + Transmission rent + true + + + 1626 + 338 + 7 + 38 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Total capacity out of service in the reference direction (discrete + distributed) + true + + + 1627 + 338 + 7 + 39 + Maintenance Back + Maintenance Back + 1 + 2 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 1628 + 338 + 7 + 40 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 1629 + 338 + 7 + 41 + Discrete Maintenance Back + Discrete Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 1630 + 338 + 7 + 42 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 1631 + 338 + 7 + 43 + Distributed Maintenance Back + Distributed Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 1632 + 338 + 7 + 44 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 1633 + 338 + 7 + 45 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1634 + 338 + 7 + 46 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 1635 + 338 + 7 + 47 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for transfer + true + + + 1636 + 338 + 6 + 48 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the transformer. + true + + + 1637 + 338 + 6 + 49 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the transformer in the counter-reference direction. + true + + + 1638 + 338 + 6 + 50 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Rating (o.w. Max Flow) x Units) + false + + + 1639 + 338 + 12 + 51 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1640 + 338 + 12 + 52 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1641 + 338 + 12 + 53 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1642 + 345 + 3 + 1 + Angle + Angle + 11 + 11 + true + true + false + false + true + false + true + true + 14 + 14 + Angle (initial angle when used as input) + true + + + 1643 + 345 + 3 + 2 + Min Angle + Min Angle + 11 + 11 + true + true + false + false + true + false + true + true + 472 + 472 + Min angle set on the flow control + true + + + 1644 + 345 + 3 + 3 + Max Angle + Max Angle + 11 + 11 + true + true + false + false + true + false + true + true + 411 + 411 + Max angle set on the flow control + true + + + 1645 + 345 + 3 + 4 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Equivalent flow in reference direction due to phase shift + true + + + 1646 + 345 + 3 + 5 + Flow Back + Flow Back + 1 + 2 + true + true + false + false + true + false + true + true + 206 + 206 + Equivalent flow against reference direction due to phase shift + true + + + 1647 + 345 + 3 + 6 + Impedance + Impedance + 10 + 10 + true + true + false + false + true + false + true + true + 1782 + 1782 + Equivalent impedance + true + + + 1648 + 345 + 3 + 7 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + false + true + true + 276 + 276 + Number of hours the flow control is operating at maximum angle. + true + + + 1649 + 345 + 3 + 8 + Shadow Price + Shadow Price + 43 + 43 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow (expansion) price + true + + + 1650 + 345 + 3 + 9 + Rental + Rental + 14 + 34 + true + true + false + false + true + false + true + true + 678 + 678 + Rental + true + + + 1651 + 345 + 3 + 10 + Penalty + Penalty + 14 + 34 + true + true + false + false + true + false + true + true + 602 + 602 + Penalty incurred for shifting the angle + true + + + 1652 + 345 + 3 + 11 + Max Flow + Max Flow + 1 + 2 + true + true + false + false + false + false + false + true + 429 + 429 + Maximum flow that can flow on FC device + false + + + 1653 + 345 + 8 + 12 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Binary indicating if the unit was built + true + + + 1654 + 345 + 8 + 13 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the flow control + true + + + 1655 + 345 + 12 + 14 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1656 + 345 + 12 + 15 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1657 + 345 + 12 + 16 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1658 + 352 + 3 + 1 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow on the interface + true + + + 1659 + 352 + 3 + 2 + Flow Back + Flow Back + 1 + 2 + false + true + false + false + true + false + true + true + 206 + 206 + Flow on the interface in the counter-reference direction + true + + + 1660 + 352 + 3 + 3 + Net Flow + Net Flow + 1 + 2 + false + true + false + false + true + false + true + true + 1816 + 1816 + Net Flow on the interface + true + + + 1661 + 352 + 3 + 4 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the interface + true + + + 1662 + 352 + 3 + 5 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the interface + true + + + 1663 + 352 + 3 + 6 + Overload Export Limit + Overload Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2864 + 2864 + Maximum post-contingency flow allowed on the interface + true + + + 1664 + 352 + 3 + 7 + Overload Import Limit + Overload Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2865 + 2865 + Minimum post-contingency flow allowed on the interface + true + + + 1665 + 352 + 3 + 8 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1666 + 352 + 3 + 9 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1667 + 352 + 3 + 10 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the interface is congested in pre-contingency state + true + + + 1668 + 352 + 3 + 11 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the interface flow is congested in the counter-reference direction + true + + + 1669 + 352 + 3 + 12 + Hours Congested Total + Hours Congested Total + 6 + 6 + true + true + false + false + true + false + true + true + 2878 + 2878 + Number of hours interface is congested in the reference direction + true + + + 1670 + 352 + 3 + 13 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of interface limit in the reference direction in pre-contingency state + true + + + 1671 + 352 + 3 + 14 + Shadow Price Back + Shadow Price Back + 32 + 32 + false + true + false + false + true + false + true + true + 743 + 743 + Shadow price of interface limit in the counter-reference direction + true + + + 1672 + 352 + 3 + 15 + Shadow Price Total + Shadow Price Total + 32 + 32 + true + true + false + false + true + false + true + true + 2879 + 2879 + Shadow/expansion price + true + + + 1673 + 352 + 3 + 16 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Flowgate rental in pre-contingency state + true + + + 1674 + 352 + 3 + 17 + Rental Total + Rental Total + 14 + 34 + true + true + false + true + true + false + true + true + 2880 + 2880 + Flowgate rental + true + + + 1675 + 352 + 3 + 18 + Violation + Violation + 1 + 1 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of the interface limit. + true + + + 1676 + 352 + 3 + 19 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the interface limit in the counter-reference direction. + true + + + 1677 + 352 + 3 + 20 + Ramp + Ramp + 1 + 1 + true + false + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 1678 + 352 + 3 + 21 + Ramp Cost + Ramp Cost + 14 + 34 + true + true + false + true + true + false + true + true + 869 + 869 + Cost of ramping + true + + + 1679 + 352 + 3 + 22 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow on interface + true + + + 1680 + 352 + 3 + 23 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow on interface + true + + + 1681 + 352 + 3 + 24 + Fixed Flow + Fixed Flow + 1 + 2 + true + true + false + false + true + false + true + true + 197 + 197 + Fixed flow on interface + true + + + 1682 + 352 + 3 + 25 + Fixed Flow Violation + Fixed Flow Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1325 + 1325 + Violation of [Fixed Flow] constraint. + true + + + 1683 + 352 + 3 + 26 + Fixed Flow Violation Hours + Fixed Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1327 + 1327 + Number of hours that [Fixed Flow] is violated. + true + + + 1684 + 352 + 3 + 27 + Fixed Flow Violation Cost + Fixed Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1326 + 1326 + Cost of [Fixed Flow] violations. + true + + + 1685 + 352 + 3 + 28 + Offer Base + Offer Base + 1 + 1 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for balancing offer + true + + + 1686 + 352 + 3 + 29 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band for reference direction flows + true + + + 1687 + 352 + 3 + 30 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price offered in band for reference direction flows + true + + + 1688 + 352 + 3 + 31 + Offer Quantity Back + Offer Quantity Back + 1 + 2 + true + true + true + false + true + false + true + true + 573 + 573 + Quantity offered in band for counter-reference direction flows + true + + + 1689 + 352 + 3 + 32 + Offer Price Back + Offer Price Back + 33 + 33 + true + true + true + false + true + false + true + true + 570 + 570 + Price offered in band for counter-reference direction flows + true + + + 1690 + 352 + 3 + 33 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 1691 + 352 + 3 + 34 + Offer Cleared Back + Offer Cleared Back + 1 + 2 + true + true + true + false + true + false + true + true + 567 + 567 + Quantity cleared in band + true + + + 1692 + 352 + 3 + 35 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 1693 + 352 + 3 + 36 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under offer curve + true + + + 1694 + 352 + 6 + 37 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the interface. + true + + + 1695 + 352 + 6 + 38 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the interface in the counter-reference direction. + true + + + 1696 + 352 + 6 + 39 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the interface to region capacity reserves + true + + + 1697 + 352 + 6 + 40 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Reserve provided by lines in the interface + true + + + 1698 + 352 + 8 + 41 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (expansion of interface in both directions) + true + + + 1699 + 352 + 8 + 42 + Expansion Cost + Expansion Cost + 34 + 34 + true + true + false + false + true + false + false + false + 184 + 184 + Cost of expanding the interface by one megawatt + true + + + 1700 + 352 + 12 + 43 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1701 + 352 + 12 + 44 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1702 + 352 + 12 + 45 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1703 + 355 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from interface constraint + false + + + 1704 + 355 + 1 + 2 + Flow Coefficient + Flow Coefficient + 0 + 0 + true + false + false + false + false + false + false + true + 208 + 208 + Transformer flow coefficient + false + + + 1705 + 356 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from interface constraint + false + + + 1706 + 356 + 1 + 2 + Flow Coefficient + Flow Coefficient + 0 + 0 + true + false + false + false + false + false + false + true + 208 + 208 + Transformer flow coefficient + false + + + 1707 + 360 + 3 + 1 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + false + true + true + 276 + 276 + Number of hours that any monitored limit under the Contingency is binding. + true + + + 1708 + 360 + 3 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency shadow price + true + + + 1709 + 360 + 12 + 3 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1710 + 360 + 12 + 4 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1711 + 360 + 12 + 5 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1712 + 364 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from contingency constraint + false + + + 1713 + 365 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Contingency auto-detected Monitored Lines Post-Contingent Flows + false + + + 1714 + 365 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency auto-detected Monitored Lines Shadow price for contingency constraint + false + + + 1715 + 365 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from contingency constraint + false + + + 1716 + 366 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Post-Contingent Flows + true + + + 1717 + 366 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price for contingency constraint + true + + + 1718 + 366 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from contingency constraint + false + + + 1719 + 367 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from contingency constraint + false + + + 1720 + 368 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Post-Contingent Flows + true + + + 1721 + 368 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price for contingency constraint + true + + + 1722 + 368 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from contingency constraint + false + + + 1723 + 369 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Contingency auto-detected Monitored Transformers Post-Contingent Flows + false + + + 1724 + 369 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency auto-detected Monitored Transformers Shadow price for contingency constraint + false + + + 1725 + 369 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from contingency constraint + false + + + 1726 + 370 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Contingency auto-detected Monitored Interfaces Post-Contingent Flows + false + + + 1727 + 370 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency auto-detected Monitored Interfaces Shadow price for contingency constraint + false + + + 1728 + 371 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Post-Contingent Flows + true + + + 1729 + 371 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price for contingency constraint + true + + + 1730 + 372 + 3 + 1 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Price at the hub + true + + + 1731 + 372 + 3 + 2 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 1732 + 372 + 3 + 3 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 1733 + 372 + 3 + 4 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load their energy purchases + true + + + 1734 + 372 + 3 + 5 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1735 + 372 + 3 + 6 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1736 + 372 + 3 + 7 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1737 + 372 + 3 + 8 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of the hub price + true + + + 1738 + 372 + 3 + 9 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of the hub price + true + + + 1739 + 372 + 3 + 10 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of the hub price + true + + + 1740 + 372 + 12 + 11 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1741 + 372 + 12 + 12 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1742 + 372 + 12 + 13 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1743 + 377 + 1 + 1 + Quantity + Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 650 + 650 + Contract quantity + true + + + 1744 + 377 + 1 + 2 + Settlement + Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 738 + 738 + Settlement + true + + + 1745 + 377 + 1 + 3 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Settlement net of scheduled Price + true + + + 1746 + 377 + 1 + 4 + Source Price + Source Price + 33 + 33 + true + true + false + false + true + false + true + true + 1783 + 1783 + Price on source side + true + + + 1747 + 377 + 1 + 5 + Source Energy Charge + Source Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1784 + 1784 + Energy charge on source side + true + + + 1748 + 377 + 1 + 6 + Source Congestion Charge + Source Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1785 + 1785 + Congestion charge on source side + true + + + 1749 + 377 + 1 + 7 + Source Loss Charge + Source Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1786 + 1786 + Loss charge on source side + true + + + 1750 + 377 + 1 + 8 + Sink Price + Sink Price + 33 + 33 + true + true + false + false + true + false + true + true + 1787 + 1787 + Price on sink side + true + + + 1751 + 377 + 1 + 9 + Sink Energy Charge + Sink Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1788 + 1788 + Energy charge on sink side + true + + + 1752 + 377 + 1 + 10 + Sink Congestion Charge + Sink Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1789 + 1789 + Congestion charge on sink side + true + + + 1753 + 377 + 1 + 11 + Sink Loss Charge + Sink Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1790 + 1790 + Loss charge on sink side + true + + + 1754 + 377 + 1 + 12 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price difference between the source and sink side + true + + + 1755 + 388 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 1756 + 388 + 3 + 2 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Heat production + true + + + 1757 + 388 + 3 + 3 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Heat production cost + true + + + 1758 + 388 + 3 + 4 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 1759 + 388 + 3 + 5 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1760 + 388 + 3 + 6 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 1761 + 388 + 3 + 7 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + false + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 1762 + 388 + 3 + 8 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 1763 + 388 + 3 + 9 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 1764 + 388 + 3 + 10 + Electrical Usage + Electrical Usage + 1 + 2 + true + true + false + false + true + false + true + true + 1938 + 1938 + Electrical usage from the electric boiler + true + + + 1765 + 388 + 3 + 11 + Units Producing Heat + Units Producing Heat + 0 + 0 + true + false + false + false + true + false + true + true + 1939 + 1939 + Number of units producing heat + true + + + 1766 + 388 + 3 + 12 + Ramp + Ramp + 35 + 35 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 1767 + 388 + 3 + 13 + Ramp Up + Ramp Up + 15 + 15 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 1768 + 388 + 3 + 14 + Ramp Down + Ramp Down + 15 + 15 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 1769 + 388 + 3 + 15 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 1770 + 388 + 3 + 16 + Hours Up + Hours Up + 6 + 6 + true + true + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start of a heat plant + true + + + 1771 + 388 + 3 + 17 + Hours Down + Hours Down + 6 + 6 + true + true + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shut down of a heat plant + true + + + 1772 + 388 + 3 + 18 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of heat plant units started + true + + + 1773 + 388 + 3 + 19 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of heat plant units shut down + true + + + 1774 + 388 + 3 + 20 + Efficiency + Efficiency + 37 + 37 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of heat production + true + + + 1775 + 388 + 3 + 21 + Marginal Heat Rate + Marginal Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal heat production level + true + + + 1776 + 388 + 3 + 22 + Average Heat Rate + Average Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate + true + + + 1777 + 388 + 3 + 23 + SRMC + SRMC + 29 + 29 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 1778 + 388 + 6 + 24 + Installed Capacity + Installed Capacity + 35 + 35 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity + true + + + 1779 + 388 + 8 + 25 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of Heat Plant units built in this year + true + + + 1780 + 388 + 8 + 26 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 1781 + 388 + 8 + 27 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 1782 + 388 + 8 + 28 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of Heat Plant units retired in this year + true + + + 1783 + 388 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the Heat Plant + true + + + 1784 + 388 + 12 + 30 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1785 + 388 + 12 + 31 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1786 + 388 + 12 + 32 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1787 + 391 + 3 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 1788 + 391 + 3 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the heat plant + true + + + 1789 + 391 + 3 + 3 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 1790 + 391 + 3 + 4 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used + true + + + 1791 + 391 + 3 + 5 + Marginal Heat Rate + Marginal Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal heat production level + true + + + 1792 + 391 + 3 + 6 + SRMC + SRMC + 29 + 29 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 1793 + 391 + 3 + 7 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours the Fuel is in use by the heat plant + true + + + 1794 + 392 + 3 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 1795 + 392 + 3 + 2 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 1796 + 392 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used + true + + + 1797 + 400 + 3 + 1 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from heat node + true + + + 1798 + 400 + 3 + 2 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into heat node + true + + + 1799 + 400 + 3 + 3 + Heat Demand + Heat Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1941 + 1941 + Demand at the heat node + true + + + 1800 + 400 + 3 + 4 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1801 + 400 + 12 + 5 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1802 + 400 + 12 + 6 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1803 + 400 + 12 + 7 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1804 + 406 + 1 + 1 + Sales + Sales + 15 + 16 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 1805 + 406 + 1 + 2 + Purchases + Purchases + 15 + 16 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 1806 + 406 + 1 + 3 + Net Sales + Net Sales + 15 + 16 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 1807 + 406 + 1 + 4 + Net Purchases + Net Purchases + 15 + 16 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 1808 + 406 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 1809 + 406 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 1810 + 406 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 1811 + 406 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 1812 + 410 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 1813 + 410 + 3 + 2 + End Heat + End Heat + 15 + 15 + true + true + false + false + true + false + true + true + 2213 + 2213 + Heat in storage at the end of the period + true + + + 1814 + 410 + 3 + 3 + Initial Heat + Initial Heat + 15 + 15 + true + true + false + false + true + false + true + true + 2212 + 2212 + Initial heat in the storage + true + + + 1815 + 410 + 3 + 4 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into storage + true + + + 1816 + 410 + 3 + 5 + Heat Injection Cost + Heat Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1544 + 1544 + Cost of injecting heat into storage + true + + + 1817 + 410 + 3 + 6 + Heat Loss + Heat Loss + 15 + 16 + true + true + false + true + true + false + true + true + 1516 + 1516 + Rate at which heat is lost from storage + true + + + 1818 + 410 + 3 + 7 + Heat Shadow Price + Heat Shadow Price + 61 + 61 + true + true + false + false + true + false + true + true + 1545 + 1545 + Shadow price of heat in storage + true + + + 1819 + 410 + 3 + 8 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from storage + true + + + 1820 + 410 + 3 + 9 + Heat Withdrawal Cost + Heat Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1543 + 1543 + Cost of withdrawing heat from storage + true + + + 1821 + 410 + 3 + 10 + Net Heat Withdrawal + Net Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1542 + 1542 + Net of withdrawal and injection + true + + + 1822 + 410 + 3 + 11 + Max Heat + Max Heat + 15 + 15 + true + true + false + true + true + false + true + true + 1514 + 1514 + Maximum heat allowed in storage + true + + + 1823 + 410 + 3 + 12 + Min Heat + Min Heat + 15 + 15 + true + true + false + true + true + false + true + true + 1515 + 1515 + Minimum heat allowed in storage + true + + + 1824 + 410 + 8 + 13 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of Heat Storage units built in this year + true + + + 1825 + 410 + 8 + 14 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the heat storage + true + + + 1826 + 410 + 8 + 15 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of Heat Storage units retired in this year + true + + + 1827 + 410 + 8 + 16 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the heat storage + true + + + 1828 + 416 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Gas Field is in service + true + + + 1829 + 416 + 3 + 2 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume of gas in the field + true + + + 1830 + 416 + 3 + 3 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 1831 + 416 + 3 + 4 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas field + true + + + 1832 + 416 + 3 + 5 + Production Loss + Production Loss + 75 + 76 + true + true + false + true + true + false + true + true + 3127 + 3127 + Quantity of gas lost or fuel used by gas field production + true + + + 1833 + 416 + 3 + 6 + Max Production Available + Max Production Available + 75 + 76 + true + true + false + true + true + false + true + true + 3021 + 3021 + The max available production of a gas field given its constraints + true + + + 1834 + 416 + 3 + 7 + Min Production Available + Min Production Available + 75 + 76 + true + true + false + true + true + false + true + true + 3022 + 3022 + The min available production of a gas field given its constraints + true + + + 1835 + 416 + 3 + 8 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Incremental cost of extracting gas from the field + true + + + 1836 + 416 + 3 + 9 + Loss + Loss + 75 + 76 + true + true + false + true + true + false + true + true + 372 + 372 + Gas field loss amount of the carried gas + true + + + 1837 + 416 + 3 + 10 + Carrying Cost + Carrying Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2039 + 2039 + Total cost of gas carried in the gas field + true + + + 1838 + 416 + 3 + 11 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost from the Inventory Price of holding gas in a field + true + + + 1839 + 416 + 3 + 12 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Average price of producing gas + true + + + 1840 + 416 + 3 + 13 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch Price + true + + + 1841 + 416 + 3 + 14 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 1842 + 416 + 3 + 15 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1843 + 416 + 3 + 16 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1844 + 416 + 3 + 17 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 1845 + 416 + 3 + 18 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1846 + 416 + 3 + 19 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the field + true + + + 1847 + 416 + 3 + 20 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas field expansion + true + + + 1848 + 416 + 3 + 21 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by extracting gas from the field + true + + + 1849 + 416 + 7 + 22 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1850 + 416 + 7 + 23 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 1851 + 416 + 7 + 24 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas field is on maintenance + true + + + 1852 + 416 + 7 + 25 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 1853 + 416 + 7 + 26 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas field is on forced outage of production + true + + + 1854 + 416 + 7 + 27 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Field capacity available in production + true + + + 1855 + 416 + 8 + 28 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of gas fields built this year + true + + + 1856 + 416 + 8 + 29 + Capacity Built + Capacity Built + 76 + 76 + true + true + false + false + true + false + false + false + 54 + 54 + Gas field capacity built + true + + + 1857 + 416 + 8 + 30 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of developing the gas field + true + + + 1858 + 416 + 12 + 31 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1859 + 416 + 12 + 32 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1860 + 416 + 12 + 33 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1861 + 421 + 3 + 1 + Production + Production + 58 + 58 + true + true + false + true + true + false + true + true + 624 + 624 + Total production from gas field + true + + + 1862 + 421 + 3 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Production costs associated with company gas field production + true + + + 1863 + 421 + 3 + 3 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance costs + true + + + 1864 + 421 + 3 + 4 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1865 + 421 + 3 + 5 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with gas scarcity + true + + + 1866 + 421 + 3 + 6 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net Revenue + true + + + 1867 + 421 + 3 + 7 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net Profit = Net Revenue - Fixed Costs + true + + + 1868 + 425 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of Gas Plant units in service + true + + + 1869 + 425 + 3 + 2 + Units Operating + Units Operating + 0 + 0 + true + false + false + false + true + false + true + true + 2049 + 2049 + Number of units operating + true + + + 1870 + 425 + 3 + 3 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 1871 + 425 + 3 + 4 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 1872 + 425 + 3 + 5 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 1873 + 425 + 3 + 6 + Start Profile Violation + Start Profile Violation + 75 + 76 + true + true + false + false + true + false + true + true + 2640 + 2640 + Violation of [Start Profile] constraint. + true + + + 1874 + 425 + 3 + 7 + Start Profile Violation Cost + Start Profile Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2641 + 2641 + Cost of [Start Profile] violations. + true + + + 1875 + 425 + 3 + 8 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + true + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints. + true + + + 1876 + 425 + 3 + 9 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations. + true + + + 1877 + 425 + 3 + 10 + Raw Gas + Raw Gas + 58 + 76 + true + true + false + true + true + false + true + true + 1739 + 1739 + The amount of raw gas processed + true + + + 1878 + 425 + 3 + 11 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + The amount of saleable gas processed + true + + + 1879 + 425 + 3 + 12 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Gas plant utilization based on production + true + + + 1880 + 425 + 3 + 13 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of gas refinement process + true + + + 1881 + 425 + 3 + 14 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start of a gas plant + true + + + 1882 + 425 + 3 + 15 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown of a gas plant + true + + + 1883 + 425 + 3 + 16 + Max Production Available + Max Production Available + 75 + 76 + true + true + false + true + true + false + true + true + 3021 + 3021 + The max available production of a gas plant + true + + + 1884 + 425 + 3 + 17 + Min Production Available + Min Production Available + 75 + 76 + true + true + false + true + true + false + true + true + 3022 + 3022 + The min available production of a gas plant + true + + + 1885 + 425 + 3 + 18 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + The total cost for processing the gas + true + + + 1886 + 425 + 3 + 19 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Incremental dispatch price of processing gas + true + + + 1887 + 425 + 3 + 20 + Consumption + Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 1437 + 1437 + The amount of pipeline quality gas consumed in processing + true + + + 1888 + 425 + 3 + 21 + Energy Consumption + Energy Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + The total electric consumption of the Gas Plant + true + + + 1889 + 425 + 3 + 22 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Variable operations and maintenance cost + true + + + 1890 + 425 + 3 + 23 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1891 + 425 + 3 + 24 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1892 + 425 + 3 + 25 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 1893 + 425 + 3 + 26 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 1894 + 425 + 3 + 27 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1895 + 425 + 3 + 28 + SRMC + SRMC + 60 + 60 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost of gas production + true + + + 1896 + 425 + 3 + 29 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served as raw gas to the gas plant + true + + + 1897 + 425 + 3 + 30 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity producing + false + + + 1898 + 425 + 6 + 31 + Installed Capacity + Installed Capacity + 75 + 76 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Production x Units) + false + + + 1899 + 425 + 6 + 32 + Rated Capacity + Rated Capacity + 75 + 76 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + false + + + 1900 + 425 + 3 + 33 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas plant expansion + true + + + 1901 + 425 + 3 + 34 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by extracting gas from the gas plant + true + + + 1902 + 425 + 7 + 35 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1903 + 425 + 7 + 36 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 1904 + 425 + 7 + 37 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas plant is on maintenance + true + + + 1905 + 425 + 7 + 38 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 1906 + 425 + 7 + 39 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas plant is on forced outage of Production + true + + + 1907 + 425 + 7 + 40 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of plant capacity available in production + true + + + 1908 + 425 + 8 + 41 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of gas plant units built + true + + + 1909 + 425 + 8 + 42 + Capacity Built + Capacity Built + 76 + 76 + true + true + false + false + true + false + false + false + 54 + 54 + Gas plant capacity built + true + + + 1910 + 425 + 8 + 43 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the plant for capacity + false + + + 1911 + 425 + 8 + 44 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + false + + + 1912 + 425 + 8 + 45 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Gas Plant + true + + + 1913 + 425 + 8 + 46 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of gas plant units retired + true + + + 1914 + 425 + 8 + 47 + Capacity Retired + Capacity Retired + 76 + 76 + true + true + false + false + true + false + false + false + 66 + 66 + Gas plant capacity Retired + true + + + 1915 + 425 + 8 + 48 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Gas Plant + true + + + 1916 + 425 + 8 + 49 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 1917 + 425 + 8 + 50 + Total Cost + Total Cost + 34 + 34 + true + true + false + true + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 1918 + 425 + 8 + 51 + Levelized Cost + Levelized Cost + 60 + 60 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of gas produced + true + + + 1919 + 425 + 12 + 52 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1920 + 425 + 12 + 53 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1921 + 425 + 12 + 54 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1922 + 435 + 3 + 1 + Flow In + Flow In + 75 + 76 + true + true + false + true + true + false + true + true + 1974 + 1974 + Quantity of gas pumped into the pipeline + true + + + 1923 + 435 + 3 + 2 + Flow Out + Flow Out + 75 + 76 + true + true + false + true + true + false + true + true + 1975 + 1975 + Quantity of gas extracted from the pipeline + true + + + 1924 + 435 + 3 + 3 + Reverse Flow In + Reverse Flow In + 75 + 76 + true + true + false + true + true + false + true + true + 3114 + 3114 + Quantity of reverse flow into the Gas Pipeline + true + + + 1925 + 435 + 3 + 4 + Reverse Flow Out + Reverse Flow Out + 75 + 76 + true + true + false + true + true + false + true + true + 3115 + 3115 + Quantity of reverse flow out of the Gas Pipeline + true + + + 1926 + 435 + 3 + 5 + Max Daily Flow + Max Daily Flow + 75 + 76 + true + true + false + false + true + false + true + true + 2031 + 2031 + Maximum daily flow limit of the pipeline + true + + + 1927 + 435 + 3 + 6 + Max Observed Flow + Max Observed Flow + 75 + 76 + true + true + false + true + true + false + true + true + 2146 + 2146 + Quantity of max observed flow in a pipeline. + true + + + 1928 + 435 + 3 + 7 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the pipeline is congested in the reference direction + true + + + 1929 + 435 + 3 + 8 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the pipeline is congested in the counter-reference direction + true + + + 1930 + 435 + 3 + 9 + Max Volume + Max Volume + 76 + 76 + true + true + false + true + true + false + true + true + 466 + 466 + Maximum volume of gas stored in the pipeline + true + + + 1931 + 435 + 3 + 10 + Min Volume + Min Volume + 76 + 76 + true + true + false + true + true + false + true + true + 510 + 510 + Minimum volume of gas stored in the pipeline + true + + + 1932 + 435 + 3 + 11 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Volume of gas stored in the pipeline at the beginning of the horizon + true + + + 1933 + 435 + 3 + 12 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Volume of gas in the pipeline at the end of the period + true + + + 1934 + 435 + 3 + 13 + Volume Imbalance + Volume Imbalance + 76 + 76 + true + true + false + true + true + false + true + true + 1654 + 1654 + Absolute value of the difference between delivery volume into the pipeline and the redelivered volume off the pipeline. + true + + + 1935 + 435 + 3 + 14 + Utilization Forward + Utilization Forward + 12 + 12 + true + true + false + false + true + false + true + true + 2556 + 2556 + Flow forward capacity utilization + true + + + 1936 + 435 + 3 + 15 + Utilization Back + Utilization Back + 12 + 12 + true + true + false + false + true + false + true + true + 2557 + 2557 + Flow back capacity utilization + true + + + 1937 + 435 + 3 + 16 + Imbalance Cost + Imbalance Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1656 + 1656 + Cost of imbalances + true + + + 1938 + 435 + 3 + 17 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting gas from the pipeline + true + + + 1939 + 435 + 3 + 18 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1940 + 435 + 3 + 19 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1941 + 435 + 3 + 20 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Gas pipeline reservation cost + true + + + 1942 + 435 + 3 + 21 + Loss + Loss + 75 + 76 + true + true + false + true + true + false + true + true + 372 + 372 + Gas pipeline flow loss amount + true + + + 1943 + 435 + 3 + 22 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Gas pipeline total cost + true + + + 1944 + 435 + 3 + 23 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Total Variable Costs of gas from the pipeline + true + + + 1945 + 435 + 3 + 24 + Pressure + Pressure + 89 + 89 + true + true + false + true + true + false + true + true + 2425 + 2425 + Pressure of gas stored in the pipeline at the start of the period + true + + + 1946 + 435 + 3 + 25 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas pipeline expansion + true + + + 1947 + 435 + 3 + 26 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by flowing gas through the pipeline + true + + + 1948 + 435 + 7 + 27 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1949 + 435 + 7 + 28 + Flow Capacity Outage + Flow Capacity Outage + 75 + 76 + true + true + false + false + true + false + true + true + 2147 + 2147 + Flow capacity on outage due to maintenance or forced outage + true + + + 1950 + 435 + 7 + 29 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity on maintenance + true + + + 1951 + 435 + 7 + 30 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the pipeline is on maintenance + true + + + 1952 + 435 + 7 + 31 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1953 + 435 + 7 + 32 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the pipeline is on forced outage + true + + + 1954 + 435 + 7 + 33 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of pipeline capacity available + true + + + 1955 + 435 + 8 + 34 + Max Daily Flow Built + Max Daily Flow Built + 75 + 76 + true + true + false + false + true + false + false + false + 2148 + 2148 + Amount of increase in Gas Pipeline Max Daily Flow + true + + + 1956 + 435 + 8 + 35 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas pipeline + true + + + 1957 + 435 + 8 + 36 + Max Daily Flow Retired + Max Daily Flow Retired + 75 + 76 + true + true + false + false + true + false + false + false + 2149 + 2149 + Amount of reduction in Gas Pipeline Max Daily Flow + true + + + 1958 + 435 + 8 + 37 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas pipeline + true + + + 1959 + 435 + 8 + 38 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 1960 + 435 + 12 + 39 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1961 + 435 + 12 + 40 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1962 + 435 + 12 + 41 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1963 + 438 + 1 + 1 + Emission Flow + Emission Flow + 19 + 20 + true + true + false + true + true + false + true + true + 3002 + 3002 + Emissions flow on the Gas Pipeline in virtual emission network + true + + + 1964 + 439 + 3 + 1 + Participation Factor + Participation Factor + 12 + 12 + true + true + true + false + true + false + true + true + 1840 + 1840 + Percentage of total Gas Node inflow from a given exporting Gas Pipeline + true + + + 1965 + 440 + 3 + 1 + Participation Factor + Participation Factor + 12 + 12 + true + true + true + false + true + false + true + true + 1840 + 1840 + Percentage of total Gas Node inflow from a given importing Gas Pipeline + true + + + 1966 + 446 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Gas Node is in service + true + + + 1967 + 446 + 3 + 2 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas fields + true + + + 1968 + 446 + 3 + 3 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Demand at the gas node + true + + + 1969 + 446 + 3 + 4 + Flow + Flow + 75 + 76 + true + true + false + true + true + false + true + true + 205 + 205 + Flow of gas through the node + true + + + 1970 + 446 + 3 + 5 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on connected Gas Pipelines, Gas Plants and Gas Transports + true + + + 1971 + 446 + 3 + 6 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on connected Gas Pipelines, Gas Plants and Gas Transports + true + + + 1972 + 446 + 3 + 7 + Net Interchange + Net Interchange + 75 + 76 + true + true + false + true + true + false + true + true + 543 + 543 + Net exports on gas pipelines + true + + + 1973 + 446 + 3 + 8 + Net Market Sales + Net Market Sales + 75 + 76 + true + true + false + true + true + false + true + true + 545 + 545 + Net sales to external gas markets + true + + + 1974 + 446 + 3 + 9 + Facility Consumption + Facility Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 2732 + 2732 + Gas consumed by connected Facilities + true + + + 1975 + 446 + 3 + 10 + Facility Production + Facility Production + 75 + 76 + true + true + false + true + true + false + true + true + 2869 + 2869 + Gas produced by connected Facilities + true + + + 1976 + 446 + 3 + 11 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume in gas storage + true + + + 1977 + 446 + 3 + 12 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + End volume in gas storage + true + + + 1978 + 446 + 3 + 13 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2382 + 2382 + Cost of flowing gas through the node + true + + + 1979 + 446 + 3 + 14 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in supply of gas at the node + true + + + 1980 + 446 + 3 + 15 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 1981 + 446 + 3 + 16 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 1982 + 446 + 3 + 17 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas at the node + true + + + 1983 + 446 + 3 + 18 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 1984 + 446 + 3 + 19 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 1985 + 446 + 3 + 20 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Demand at the gas node net of shortages, excesses and DSM Program reductions + true + + + 1986 + 446 + 3 + 21 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas at the gas node + true + + + 1987 + 446 + 3 + 22 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Settlement price for gas at the gas node + true + + + 1988 + 446 + 3 + 23 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Delivered price for gas at the gas node + true + + + 1989 + 446 + 3 + 24 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Delivered cost of gas at the gas node + true + + + 1990 + 446 + 3 + 25 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 1991 + 446 + 3 + 26 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1992 + 446 + 3 + 27 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1993 + 446 + 3 + 28 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 1994 + 446 + 3 + 29 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1995 + 446 + 8 + 30 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the gas node is built in this year + true + + + 1996 + 446 + 8 + 31 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas node + true + + + 1997 + 446 + 8 + 32 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the gas node is retired in this year + true + + + 1998 + 446 + 8 + 33 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas node + true + + + 1999 + 446 + 3 + 34 + Shipments Imported + Shipments Imported + 0 + 0 + true + true + false + true + true + false + true + true + 2759 + 2759 + Number of shipments received from Gas Transports + true + + + 2000 + 446 + 3 + 35 + Shipments Exported + Shipments Exported + 0 + 0 + true + true + false + true + true + false + true + true + 2760 + 2760 + Number of shipments sent through Gas Transports + true + + + 2001 + 446 + 12 + 36 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2002 + 446 + 12 + 37 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2003 + 446 + 12 + 38 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2004 + 449 + 1 + 1 + Emissions + Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 3001 + 3001 + Emissions at the Gas Node in a virtual emission network + true + + + 2005 + 451 + 3 + 1 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on connected Gas Transports + true + + + 2006 + 451 + 3 + 2 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on connected Gas Transports + true + + + 2007 + 451 + 3 + 3 + Shipments Imported + Shipments Imported + 0 + 0 + true + true + false + true + true + false + true + true + 2759 + 2759 + Number of shipments received from the Gas Transport + true + + + 2008 + 451 + 3 + 4 + Shipments Exported + Shipments Exported + 0 + 0 + true + true + false + true + true + false + true + true + 2760 + 2760 + Number of shipments exported through the Gas Transport + true + + + 2009 + 451 + 3 + 5 + Port Cost + Port Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2794 + 2794 + Cost of using port by gas transport + true + + + 2010 + 454 + 1 + 1 + Sales + Sales + 58 + 58 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 2011 + 454 + 1 + 2 + Purchases + Purchases + 58 + 58 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 2012 + 454 + 1 + 3 + Net Sales + Net Sales + 58 + 58 + true + true + false + true + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 2013 + 454 + 1 + 4 + Net Purchases + Net Purchases + 58 + 58 + true + true + false + true + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 2014 + 454 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 2015 + 454 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 2016 + 454 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 2017 + 454 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 2018 + 457 + 3 + 1 + Max Volume + Max Volume + 76 + 76 + true + true + false + true + true + false + true + true + 466 + 466 + Maximum volume of gas allowed in storage + true + + + 2019 + 457 + 3 + 2 + Min Volume + Min Volume + 76 + 76 + true + true + false + true + true + false + true + true + 510 + 510 + Minimum volume of gas allowed in storage + true + + + 2020 + 457 + 3 + 3 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume of gas in the storage + true + + + 2021 + 457 + 3 + 4 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 2022 + 457 + 3 + 5 + Working Volume + Working Volume + 76 + 76 + true + true + false + true + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 2023 + 457 + 3 + 6 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization based on end volume + true + + + 2024 + 457 + 3 + 7 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 2025 + 457 + 3 + 8 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 2026 + 457 + 3 + 9 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 2027 + 457 + 3 + 10 + Withdrawal + Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of gas withdrawn from the storage + true + + + 2028 + 457 + 3 + 11 + Max Withdrawal Available + Max Withdrawal Available + 75 + 76 + true + true + false + true + true + false + true + true + 2431 + 2431 + Quantity of gas available to withdraw based on the specified gas storage ratchets + true + + + 2029 + 457 + 3 + 12 + Injection + Injection + 75 + 76 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of gas injected into the gas storage + true + + + 2030 + 457 + 3 + 13 + Max Injection Available + Max Injection Available + 75 + 76 + true + true + false + true + true + false + true + true + 2432 + 2432 + Quantity of gas available to inject based on the specified gas storage ratchets + true + + + 2031 + 457 + 3 + 14 + Net Utilization + Net Utilization + 75 + 76 + true + true + false + true + true + false + true + true + 2052 + 2052 + Net of withdrawal and injection + true + + + 2032 + 457 + 3 + 15 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawing gas from the storage + true + + + 2033 + 457 + 3 + 16 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injecting gas into the storage + true + + + 2034 + 457 + 3 + 17 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of injections and withdrawals + true + + + 2035 + 457 + 3 + 18 + Carrying Cost + Carrying Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2039 + 2039 + Total cost of gas carried in storage + true + + + 2036 + 457 + 3 + 19 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the storage + true + + + 2037 + 457 + 3 + 20 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch price + true + + + 2038 + 457 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2039 + 457 + 3 + 22 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2040 + 457 + 3 + 23 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Reservation cost for Gas Storage + true + + + 2041 + 457 + 3 + 24 + Injection Fuel + Injection Fuel + 75 + 76 + true + true + false + true + true + false + true + true + 1970 + 1970 + Fuel amount lost in the gas storage injection + true + + + 2042 + 457 + 3 + 25 + Withdraw Fuel + Withdraw Fuel + 75 + 76 + true + true + false + true + true + false + true + true + 1971 + 1971 + Fuel amount lost in the gas storage withdrawal + true + + + 2043 + 457 + 3 + 26 + Net Injection + Net Injection + 75 + 76 + true + true + false + true + true + false + true + true + 542 + 542 + Net injection after injection fuel loss + true + + + 2044 + 457 + 3 + 27 + Net Injection Cost + Net Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2053 + 2053 + Net injection Cost for the gas storage + true + + + 2045 + 457 + 3 + 28 + Net Withdrawal + Net Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net withdrawal after withdrawal fuel loss + true + + + 2046 + 457 + 3 + 29 + Net Withdrawal Cost + Net Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2054 + 2054 + Net withdrawal cost for the gas storage + true + + + 2047 + 457 + 3 + 30 + Loss + Loss + 75 + 76 + true + true + false + true + true + false + true + true + 372 + 372 + Gas storage flow loss amount + true + + + 2048 + 457 + 3 + 31 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Total variable cost for the gas storage + true + + + 2049 + 457 + 3 + 32 + Initial Inventory Value + Initial Inventory Value + 34 + 34 + true + true + false + true + true + false + true + true + 2073 + 2073 + Value of inventory in gas storage at the start of a period. + true + + + 2050 + 457 + 3 + 33 + Ending Inventory Value + Ending Inventory Value + 34 + 34 + true + true + false + true + true + false + true + true + 2211 + 2211 + Value of inventory in gas storage at the end of period. + true + + + 2051 + 457 + 3 + 34 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost from the Inventory Charge of holding gas in storage + true + + + 2052 + 457 + 3 + 35 + Initial Energy + Initial Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2406 + 2406 + Value of heat energy in gas storage at the start of period + true + + + 2053 + 457 + 3 + 36 + Ending Energy + Ending Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2409 + 2409 + Value of heat energy in gas storage at the end of period + true + + + 2054 + 457 + 3 + 37 + Initial Carbon Quantity + Initial Carbon Quantity + 20 + 20 + true + true + false + true + true + false + true + true + 2444 + 2444 + Carbon quantity of the gas storage at the start of period + true + + + 2055 + 457 + 3 + 38 + Ending Carbon Quantity + Ending Carbon Quantity + 20 + 20 + true + true + false + true + true + false + true + true + 2410 + 2410 + Carbon Quantity of the gas storage at the end of period + true + + + 2056 + 457 + 3 + 39 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend injected into the gas storage + true + + + 2057 + 457 + 3 + 40 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas storage expansion + true + + + 2058 + 457 + 3 + 41 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered in the gas storage operation + true + + + 2059 + 457 + 3 + 42 + Energy Consumption + Energy Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + total energy consumption of the Gas Storage + true + + + 2060 + 457 + 3 + 43 + Total Operation + Total Operation + 75 + 76 + true + true + false + true + true + false + true + true + 2775 + 2775 + Total of net withdrawal and net injection + true + + + 2061 + 457 + 3 + 44 + Max Storage Target Volume + Max Storage Target Volume + 76 + 76 + true + true + false + true + true + false + true + true + 3061 + 3061 + Max target volume of gas inventory + true + + + 2062 + 457 + 3 + 45 + Min Storage Target Volume + Min Storage Target Volume + 76 + 76 + true + true + false + true + true + false + true + true + 3062 + 3062 + Min target volume of gas inventory + true + + + 2063 + 457 + 3 + 46 + External Injection Volume + External Injection Volume + 75 + 76 + true + true + false + true + true + false + true + true + 3129 + 3129 + Quantity of external injection into the gas storage + true + + + 2064 + 457 + 3 + 47 + External Injection Cost + External Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 3130 + 3130 + Cost of injecting gas from outside of the network into the storage + true + + + 2065 + 457 + 7 + 48 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2066 + 457 + 7 + 49 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Withdrawal/Injection on maintenance + true + + + 2067 + 457 + 7 + 50 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas storage is on maintenance + true + + + 2068 + 457 + 7 + 51 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Withdrawal/Injection on Forced Outage + true + + + 2069 + 457 + 7 + 52 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas storage is on forced outage of Withdrawal/Injection + true + + + 2070 + 457 + 7 + 53 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Storage capacity available in withdrawal/injection + true + + + 2071 + 457 + 8 + 54 + Max Volume Built + Max Volume Built + 76 + 76 + true + true + false + false + true + false + false + false + 2152 + 2152 + Amount of increase in Gas Storage Max Volume + true + + + 2072 + 457 + 8 + 55 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas storage + true + + + 2073 + 457 + 8 + 56 + Max Volume Retired + Max Volume Retired + 76 + 76 + true + true + false + false + true + false + false + false + 2153 + 2153 + Amount of reduction in Gas Storage Max Volume + true + + + 2074 + 457 + 8 + 57 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas storage + true + + + 2075 + 457 + 8 + 58 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 2076 + 457 + 8 + 59 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of the amount built + true + + + 2077 + 457 + 8 + 60 + Total Cost + Total Cost + 34 + 34 + true + true + false + true + true + false + false + false + 898 + 898 + Total of fixed, withdrawal and injection costs + true + + + 2078 + 457 + 8 + 61 + Levelized Cost + Levelized Cost + 60 + 60 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of gas injections and withdrawals + true + + + 2079 + 457 + 12 + 62 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2080 + 457 + 12 + 63 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2081 + 457 + 12 + 64 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2082 + 460 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas storage + true + + + 2083 + 460 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas storage + true + + + 2084 + 460 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the gas storage + true + + + 2085 + 462 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas storage + true + + + 2086 + 462 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas storage + true + + + 2087 + 462 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the gas storage + true + + + 2088 + 462 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas field to the gas storage + true + + + 2089 + 462 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas field to the gas storage + true + + + 2090 + 463 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas storage + true + + + 2091 + 463 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas storage + true + + + 2092 + 463 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the gas storage + true + + + 2093 + 463 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas plant to the gas storage + true + + + 2094 + 463 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas plant to the gas storage + true + + + 2095 + 465 + 3 + 1 + Delivered Energy + Delivered Energy + 75 + 76 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by source gas storage to the gas storage + true + + + 2096 + 465 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by source gas storage to the gas storage + true + + + 2097 + 465 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by source gas storage to the gas storage + true + + + 2098 + 465 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by source gas storage to the gas storage + true + + + 2099 + 465 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by source gas storage to the gas storage + true + + + 2100 + 466 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas storage + true + + + 2101 + 466 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas storage + true + + + 2102 + 466 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the gas storage + true + + + 2103 + 466 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas contract to the gas storage + true + + + 2104 + 466 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas contract to the gas storage + true + + + 2105 + 467 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas storage + true + + + 2106 + 467 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas storage + true + + + 2107 + 467 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the gas storage + true + + + 2108 + 472 + 3 + 1 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Demand for gas + true + + + 2109 + 472 + 3 + 2 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in gas supply + true + + + 2110 + 472 + 3 + 3 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 2111 + 472 + 3 + 4 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 2112 + 472 + 3 + 5 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas + true + + + 2113 + 472 + 3 + 6 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 2114 + 472 + 3 + 7 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 2115 + 472 + 3 + 8 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages, excesses and DSM Program reductions + true + + + 2116 + 472 + 3 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 2117 + 472 + 3 + 10 + Price Paid + Price Paid + 60 + 60 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for gas demand + true + + + 2118 + 472 + 3 + 11 + Bid Quantity + Bid Quantity + 75 + 76 + true + true + true + true + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 2119 + 472 + 3 + 12 + Bid Price + Bid Price + 60 + 60 + true + true + true + false + true + false + true + true + 33 + 33 + Value of gas in band + true + + + 2120 + 472 + 3 + 13 + Bid Cleared + Bid Cleared + 75 + 76 + true + true + true + true + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 2121 + 472 + 3 + 14 + Cleared Bid Price + Cleared Bid Price + 60 + 60 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 2122 + 472 + 3 + 15 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 2123 + 472 + 3 + 16 + Baseline Demand + Baseline Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2023 + 2023 + Demand without DSM reduction + true + + + 2124 + 472 + 3 + 17 + Total DSM Reduction + Total DSM Reduction + 75 + 76 + true + true + false + true + true + false + true + true + 2024 + 2024 + DSM reduction + true + + + 2125 + 472 + 3 + 18 + Served Demand + Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2070 + 2070 + Served Demand (with respect to excess and shortage) + true + + + 2126 + 472 + 3 + 19 + Peak Served Demand + Peak Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2143 + 2143 + Peak Served Demand (with respect to excess and shortage) + true + + + 2127 + 472 + 3 + 20 + Peak Unserved Demand + Peak Unserved Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2144 + 2144 + Peak Unserved Demand (with respect to excess and shortage) + true + + + 2128 + 472 + 3 + 21 + Unaccounted Demand + Unaccounted Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2351 + 2351 + Percentage of unaccounted gas demand + true + + + 2129 + 472 + 3 + 22 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Total emissions made by the blend of gas serving the Gas Demand + true + + + 2130 + 472 + 3 + 23 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 2131 + 472 + 3 + 24 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2132 + 472 + 3 + 25 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served to meet the gas demand + true + + + 2133 + 472 + 12 + 26 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2134 + 472 + 12 + 27 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2135 + 472 + 12 + 28 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2136 + 475 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas demand + true + + + 2137 + 475 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas demand + true + + + 2138 + 475 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the gas demand + true + + + 2139 + 476 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas demand + true + + + 2140 + 476 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas demand + true + + + 2141 + 476 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the gas demand + true + + + 2142 + 476 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas field to the gas demand + true + + + 2143 + 476 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas field to the gas demand + true + + + 2144 + 477 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas demand + true + + + 2145 + 477 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas demand + true + + + 2146 + 477 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the gas demand + true + + + 2147 + 477 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas plant to the gas demand + true + + + 2148 + 477 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas plant to the gas demand + true + + + 2149 + 478 + 3 + 1 + Transportation Cost + Transportation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 3116 + 3116 + Cost of the gas transportation of gas pipeline that supplies the gas demand + true + + + 2150 + 480 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the gas demand + true + + + 2151 + 480 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the gas demand + true + + + 2152 + 480 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas storage to the gas demand + true + + + 2153 + 480 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas storage to the gas demand + true + + + 2154 + 480 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas storage to the gas demand + true + + + 2155 + 482 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas demand + true + + + 2156 + 482 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas demand + true + + + 2157 + 482 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the gas demand + true + + + 2158 + 482 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas contract to the gas demand + true + + + 2159 + 482 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas contract to the gas demand + true + + + 2160 + 483 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas demand + true + + + 2161 + 483 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas demand + true + + + 2162 + 483 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the gas demand + true + + + 2163 + 484 + 1 + 1 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Gas demand + true + + + 2164 + 484 + 1 + 2 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 2165 + 484 + 1 + 3 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 2166 + 484 + 1 + 4 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 2167 + 484 + 1 + 5 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 2168 + 484 + 1 + 6 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages and excesses + true + + + 2169 + 484 + 1 + 7 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 2170 + 485 + 3 + 1 + Reduction Amount + Reduction Amount + 75 + 76 + true + true + false + true + true + false + true + true + 2025 + 2025 + Demand reduction caused by Gas DSM program + true + + + 2171 + 485 + 3 + 2 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable cost of gas dsm program + true + + + 2172 + 485 + 3 + 3 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2173 + 485 + 3 + 4 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs + true + + + 2174 + 485 + 3 + 5 + Max Reduction + Max Reduction + 75 + 76 + true + true + false + true + true + false + false + false + 2884 + 2884 + Maximum demand reduction for the Gas DSM program + true + + + 2175 + 485 + 8 + 6 + Reduction Amount Built + Reduction Amount Built + 75 + 76 + true + true + false + false + true + false + false + false + 2687 + 2687 + Demand reduction amount chosen to be implemented + true + + + 2176 + 485 + 8 + 7 + Reduction Level Built + Reduction Level Built + 0 + 0 + true + true + false + false + true + false + false + false + 2885 + 2885 + Implementation level of the Gas DSM program + true + + + 2177 + 485 + 8 + 8 + Capital Cost + Capital Cost + 34 + 34 + true + true + false + true + true + false + false + false + 2018 + 2018 + Capital cost of the gas dsm program + true + + + 2178 + 485 + 12 + 9 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2179 + 485 + 12 + 10 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2180 + 485 + 12 + 11 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2181 + 491 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of gas fields in the basin + true + + + 2182 + 491 + 3 + 2 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Volume of gas in the basin at the start of the period + true + + + 2183 + 491 + 3 + 3 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Volume of gas in the basin at the end of the period + true + + + 2184 + 491 + 3 + 4 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced from the basin + true + + + 2185 + 491 + 3 + 5 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting gas from the basin + true + + + 2186 + 491 + 3 + 6 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Average price of producing gas from basin fields + true + + + 2187 + 491 + 3 + 7 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Average dispatch price from basin fields + true + + + 2188 + 491 + 3 + 8 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2189 + 491 + 3 + 9 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2190 + 491 + 3 + 10 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the basin + true + + + 2191 + 491 + 8 + 11 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of gas fields built in the basin + true + + + 2192 + 491 + 8 + 12 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building gas fields in the basin + true + + + 2193 + 491 + 12 + 13 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2194 + 491 + 12 + 14 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2195 + 491 + 12 + 15 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2196 + 496 + 3 + 1 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas fields + true + + + 2197 + 496 + 3 + 2 + Peak Served Zone Demand + Peak Served Zone Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2203 + 2203 + Gas Peak Served Demand in gas zone + true + + + 2198 + 496 + 3 + 3 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Gas demand + true + + + 2199 + 496 + 3 + 4 + Generator Offtake + Generator Offtake + 75 + 76 + true + true + false + true + true + false + true + true + 2692 + 2692 + Generator Offtake from Gas Nodes in Gas Zone + true + + + 2200 + 496 + 3 + 5 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on gas pipelines + true + + + 2201 + 496 + 3 + 6 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on gas pipelines + true + + + 2202 + 496 + 3 + 7 + Net Interchange + Net Interchange + 75 + 76 + true + true + false + true + true + false + true + true + 543 + 543 + Net exports on gas pipelines + true + + + 2203 + 496 + 3 + 8 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume in gas storage + true + + + 2204 + 496 + 3 + 9 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + End volume in gas storage + true + + + 2205 + 496 + 3 + 10 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in gas supply + true + + + 2206 + 496 + 3 + 11 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 2207 + 496 + 3 + 12 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 2208 + 496 + 3 + 13 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas + true + + + 2209 + 496 + 3 + 14 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 2210 + 496 + 3 + 15 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 2211 + 496 + 3 + 16 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages and excesses + true + + + 2212 + 496 + 3 + 17 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 2213 + 496 + 3 + 18 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Average of the gas prices across all gas nodes in the Gas Zone + true + + + 2214 + 496 + 3 + 19 + Price Paid + Price Paid + 60 + 60 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for gas demand + true + + + 2215 + 496 + 3 + 20 + Weighted Average Cost + Weighted Average Cost + 60 + 60 + true + true + false + false + true + false + true + true + 1992 + 1992 + Average cost for gas in entire model + true + + + 2216 + 496 + 3 + 21 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs for gas in entire model, including FOM and reservation costs + true + + + 2217 + 496 + 3 + 22 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Equal to Total Gas Purchase Cost + Total Penalty Cost. + true + + + 2218 + 496 + 3 + 23 + Grand Total Cost + Grand Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2055 + 2055 + Equal to Total Fixed Cost + Total Variable Costs (Total Variable Cost Includes penalty costs) + true + + + 2219 + 496 + 3 + 24 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Equal to Total Fixed Cost + Total Variable Cost – Total Penalty Cost {Excludes penalty costs} + true + + + 2220 + 496 + 3 + 25 + Net Total Cost + Net Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2056 + 2056 + Equal to Grand Total Cost – Total Market Revenue + true + + + 2221 + 496 + 3 + 26 + Injection + Injection + 75 + 76 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of gas injected into the gas storages in the zone + true + + + 2222 + 496 + 3 + 27 + Net Injection + Net Injection + 75 + 76 + true + true + false + true + true + false + true + true + 542 + 542 + Quantity of gas injected into the gas storages in the zone after injection fuel loss + true + + + 2223 + 496 + 3 + 28 + Net Injection Cost + Net Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2053 + 2053 + Summation of gas storage net injection cost + true + + + 2224 + 496 + 3 + 29 + Withdrawal + Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of gas withdrawn from the storages in the zone + true + + + 2225 + 496 + 3 + 30 + Net Withdrawal + Net Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1393 + 1393 + Quantity of gas withdrawn from the storages in the zone after withdrawal fuel loss + true + + + 2226 + 496 + 3 + 31 + Net Withdrawal Cost + Net Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2054 + 2054 + Summation of gas storage net withdrawal cost + true + + + 2227 + 496 + 3 + 32 + Costs of Gas Delivered + Costs of Gas Delivered + 14 + 34 + true + true + false + true + true + false + true + true + 2057 + 2057 + Equal to Total System Cost – Net Injection Cost + Net Withdrawal Cost {Please note that withdrawal and injection fuel is subtracted to get the net} + true + + + 2228 + 496 + 3 + 33 + Net Variable Cost + Net Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1995 + 1995 + Equal to Total Variable Cost – Total Market Revenue + true + + + 2229 + 496 + 3 + 34 + Forward Zone Flow + Forward Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1997 + 1997 + Quantity of gas pipeline flow in forward direction + true + + + 2230 + 496 + 3 + 35 + Back Zone Flow + Back Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1998 + 1998 + Quantity of gas pipeline flow in backward direction + true + + + 2231 + 496 + 3 + 36 + Net Zone Flow + Net Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1999 + 1999 + Net Quantity of gas pipeline flow (forward-backward) + true + + + 2232 + 496 + 3 + 37 + Gas Supply Total Commodity Costs + Gas Supply Total Commodity Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2078 + 2078 + Total supply commodity costs + true + + + 2233 + 496 + 3 + 38 + Gas Storage Total Variable Costs + Gas Storage Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2079 + 2079 + Total variable costs for gas storages + true + + + 2234 + 496 + 3 + 39 + Gas Pipeline Total Variable Costs + Gas Pipeline Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2080 + 2080 + Total variable costs for gas pipelines + true + + + 2235 + 496 + 3 + 40 + Gas Field Total Variable Costs + Gas Field Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2994 + 2994 + Total variable costs for gas fields + true + + + 2236 + 496 + 3 + 41 + Gas Transport Total Variable Costs + Gas Transport Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2995 + 2995 + Total variable costs for gas transport + true + + + 2237 + 496 + 3 + 42 + Gas Storage Total Reservation Costs + Gas Storage Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2081 + 2081 + Total reservation costs for gas storages + true + + + 2238 + 496 + 3 + 43 + Gas Pipeline Total Reservation Costs + Gas Pipeline Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2082 + 2082 + Total reservation costs for gas pipelines + true + + + 2239 + 496 + 3 + 44 + Gas Contract Total Reservation Costs + Gas Contract Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2083 + 2083 + Total reservation costs for gas contracts + true + + + 2240 + 496 + 3 + 45 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 2241 + 496 + 3 + 46 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2242 + 496 + 6 + 47 + Available Capacity + Available Capacity + 75 + 76 + true + true + false + false + true + false + true + true + 23 + 23 + Available Capacity of the Gas Plants + false + + + 2243 + 496 + 6 + 48 + Min Capacity Reserves + Min Capacity Reserves + 75 + 76 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + false + + + 2244 + 496 + 6 + 49 + Max Capacity Reserves + Max Capacity Reserves + 75 + 76 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + false + + + 2245 + 496 + 6 + 50 + Capacity Reserves + Capacity Reserves + 75 + 76 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + false + + + 2246 + 496 + 6 + 51 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + false + + + 2247 + 496 + 6 + 52 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + false + + + 2248 + 496 + 6 + 53 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + false + + + 2249 + 496 + 6 + 54 + Min Load + Min Load + 75 + 76 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + false + + + 2250 + 496 + 6 + 55 + Peak Load + Peak Load + 75 + 76 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + false + + + 2251 + 496 + 12 + 56 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2252 + 496 + 12 + 57 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2253 + 496 + 12 + 58 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2254 + 513 + 3 + 1 + Take Quantity + Take Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 1978 + 1978 + Gas offtake associated with the contract + true + + + 2255 + 513 + 3 + 2 + Supply Excess + Supply Excess + 75 + 76 + true + true + false + true + true + false + true + true + 2156 + 2156 + Gas supply excess + true + + + 2256 + 513 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas used under contract + true + + + 2257 + 513 + 3 + 4 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Price of gas contract + true + + + 2258 + 513 + 3 + 5 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch Price of Gas Contract + true + + + 2259 + 513 + 3 + 6 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with gas scarcity + true + + + 2260 + 513 + 3 + 7 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 2261 + 513 + 3 + 8 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 2262 + 513 + 3 + 9 + Commodity Cost + Commodity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2319 + 2319 + Total of node commodity costs for Gas Contract + true + + + 2263 + 513 + 3 + 10 + Differential Cost + Differential Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2320 + 2320 + Total of basis differential costs for Gas Contract + true + + + 2264 + 513 + 3 + 11 + Take-or-Pay Excess + Take-or-Pay Excess + 75 + 76 + true + true + false + true + true + false + true + true + 2741 + 2741 + Excess take of Take or Pay contract + true + + + 2265 + 513 + 3 + 12 + Take-or-Pay Violation + Take-or-Pay Violation + 75 + 76 + true + true + false + true + true + false + true + true + 1439 + 1439 + Violation of take-or-pay constraint + true + + + 2266 + 513 + 3 + 13 + Take-or-Pay Violation Cost + Take-or-Pay Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1440 + 1440 + Cost of take-or-pay constraint violation + true + + + 2267 + 513 + 3 + 14 + Take-or-Pay Violation Price + Take-or-Pay Violation Price + 60 + 60 + true + true + false + false + true + false + true + true + 2783 + 2783 + Penalty price on the take violation for a Take or Pay contract + true + + + 2268 + 513 + 3 + 15 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Reservation cost for gas contract + true + + + 2269 + 513 + 3 + 16 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs includes reservation cost plus amortized build costs + true + + + 2270 + 513 + 3 + 17 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 2271 + 513 + 3 + 18 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2272 + 513 + 3 + 19 + Min Daily Take + Min Daily Take + 75 + 75 + true + true + false + false + true + false + true + true + 2239 + 2239 + Min daily gas offtake associated with the contract + true + + + 2273 + 513 + 3 + 20 + Max Daily Take + Max Daily Take + 75 + 75 + true + true + false + false + true + false + true + true + 1985 + 1985 + Max daily gas offtake associated with the contract + true + + + 2274 + 513 + 3 + 21 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas contract expansion + true + + + 2275 + 513 + 3 + 22 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by the gas contract production + true + + + 2276 + 513 + 8 + 23 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 2277 + 513 + 8 + 24 + Quantity Day Built + Quantity Day Built + 76 + 76 + true + true + false + false + true + false + false + false + 2688 + 2688 + Expansion quantity daily gas offtake associated with the contract + true + + + 2278 + 513 + 8 + 25 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building an expansion gas contract + true + + + 2279 + 513 + 8 + 26 + Quantity Day Retired + Quantity Day Retired + 76 + 76 + true + true + false + false + true + false + false + false + 2689 + 2689 + Amount of reduction in quantity daily gas offtake associated with the contract + true + + + 2280 + 513 + 8 + 27 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas contract + true + + + 2281 + 513 + 12 + 28 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Pass-through value (summed in summary) + true + + + 2282 + 513 + 12 + 29 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Pass-through value (summed in summary) + true + + + 2283 + 513 + 12 + 30 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Pass-through value (summed in summary) + true + + + 2284 + 518 + 3 + 1 + Take Quantity + Take Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 1978 + 1978 + Gas offtake associated with the contract at a specific node + true + + + 2285 + 518 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Sum of commodity cost and basis differential cost under contract-gas node + true + + + 2286 + 518 + 3 + 3 + Commodity Cost + Commodity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2319 + 2319 + Commodity costs for the Gas contract-Gas Node. + true + + + 2287 + 518 + 3 + 4 + Differential Cost + Differential Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2320 + 2320 + Basis differential costs for the Gas contract-Gas Node. + true + + + 2288 + 518 + 3 + 5 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Gas contract-gas node price + true + + + 2289 + 521 + 3 + 1 + Gas Supply + Gas Supply + 75 + 76 + true + true + false + true + true + false + true + true + 2138 + 2138 + Total supply provided by the company + true + + + 2290 + 524 + 3 + 1 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Gas discharged at the import gas node + true + + + 2291 + 524 + 3 + 2 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Gas loaded at the export gas node + true + + + 2292 + 524 + 3 + 3 + Losses + Losses + 75 + 76 + true + true + false + true + true + false + true + true + 924 + 924 + Gas lost during the voyage + true + + + 2293 + 524 + 3 + 4 + Idle Boil off + Idle Boil off + 75 + 76 + true + true + false + true + true + false + true + true + 3003 + 3003 + Gas lost while waiting in the harbour + true + + + 2294 + 524 + 3 + 5 + Contract Imports + Contract Imports + 75 + 76 + true + true + false + true + true + false + true + true + 1852 + 1852 + Delivered gas associated with gas contracts + true + + + 2295 + 524 + 3 + 6 + Spot Imports + Spot Imports + 75 + 76 + true + true + false + true + true + false + true + true + 1853 + 1853 + Delivered gas associated with spot market shipments + true + + + 2296 + 524 + 3 + 7 + Loading Time + Loading Time + 7 + 7 + true + true + false + true + true + false + true + true + 1842 + 1842 + Time taken to load gas into the transport + true + + + 2297 + 524 + 3 + 8 + Travel Time + Travel Time + 7 + 7 + true + true + false + true + true + false + true + true + 3004 + 3004 + Gas transport travel time + true + + + 2298 + 524 + 3 + 9 + Harbour Time + Harbour Time + 7 + 7 + true + true + false + true + true + false + true + true + 3005 + 3005 + Gas transport harbour time + true + + + 2299 + 524 + 3 + 10 + Discharge Time + Discharge Time + 7 + 7 + true + true + false + true + true + false + true + true + 1843 + 1843 + Time taken to unload gas from the transport + true + + + 2300 + 524 + 3 + 11 + Total Voyage Time + Total Voyage Time + 7 + 7 + true + true + false + true + true + false + true + true + 3006 + 3006 + Gas transport total voyage time + true + + + 2301 + 524 + 3 + 12 + Voyage Progress + Voyage Progress + 12 + 12 + true + true + false + false + true + false + true + true + 2891 + 2891 + Percentage of voyage completed + true + + + 2302 + 524 + 3 + 13 + Shipping Cost + Shipping Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1854 + 1854 + Cost of shipping + true + + + 2303 + 524 + 3 + 14 + Charter Cost + Charter Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2795 + 2795 + Charter cost of gas transport + true + + + 2304 + 524 + 3 + 15 + Port Cost + Port Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2794 + 2794 + Cost of using port by gas transport + true + + + 2305 + 524 + 3 + 16 + Canal Cost + Canal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2796 + 2796 + Cost of using canal by gas transport + true + + + 2306 + 524 + 3 + 17 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2307 + 524 + 3 + 18 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 2308 + 524 + 3 + 19 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 2309 + 524 + 7 + 20 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2310 + 524 + 7 + 21 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2311 + 524 + 7 + 22 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas transport is on maintenance + true + + + 2312 + 524 + 7 + 23 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Volume on Forced Outage + true + + + 2313 + 524 + 7 + 24 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas transport is on forced outage + true + + + 2314 + 524 + 7 + 25 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Gas transport capacity available for delivery + true + + + 2315 + 524 + 8 + 26 + Max Volume Built + Max Volume Built + 75 + 76 + true + true + false + false + true + false + false + false + 2152 + 2152 + Amount of increase in Gas Transport Max Volume + true + + + 2316 + 524 + 8 + 27 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas transport + true + + + 2317 + 524 + 8 + 28 + Max Volume Retired + Max Volume Retired + 75 + 76 + true + true + false + false + true + false + false + false + 2153 + 2153 + Amount of reduction in Gas Transport Max Volume + true + + + 2318 + 524 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Gas Transport + true + + + 2319 + 524 + 8 + 30 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 2320 + 524 + 12 + 31 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Pass-through value (summed in summary) + true + + + 2321 + 524 + 12 + 32 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Pass-through value (summed in summary) + true + + + 2322 + 524 + 12 + 33 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Pass-through value (averaged in summary) + true + + + 2323 + 527 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas transport + true + + + 2324 + 527 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas transport + true + + + 2325 + 528 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas transport + true + + + 2326 + 528 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas transport + true + + + 2327 + 529 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas transport + true + + + 2328 + 529 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas transport + true + + + 2329 + 532 + 3 + 1 + Delivered Energy + Delivered Energy + 75 + 76 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the gas transport + true + + + 2330 + 532 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the gas transport + true + + + 2331 + 533 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas transport + true + + + 2332 + 533 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas transport + true + + + 2333 + 534 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas transport + true + + + 2334 + 534 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas transport + true + + + 2335 + 535 + 3 + 1 + Canal Cost + Canal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2796 + 2796 + Cost of using canal by gas transport + true + + + 2336 + 543 + 3 + 1 + Capacity Released + Capacity Released + 75 + 76 + true + true + false + true + true + false + true + true + 2038 + 2038 + Gas capacity released on pipelines or storages + true + + + 2337 + 543 + 3 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Total revenue from capacity released + true + + + 2338 + 543 + 12 + 3 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2339 + 543 + 12 + 4 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2340 + 543 + 12 + 5 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2341 + 550 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of Water Plant units in service + true + + + 2342 + 550 + 3 + 2 + Raw Water + Raw Water + 65 + 64 + true + true + false + false + true + false + true + true + 1810 + 1810 + Quantity of raw water input to the water plant + true + + + 2343 + 550 + 3 + 3 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Quantity of water produced by the water plant + true + + + 2344 + 550 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Water production cost + true + + + 2345 + 550 + 3 + 5 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Variable operations and maintenance cost + true + + + 2346 + 550 + 3 + 6 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2347 + 550 + 3 + 7 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + true + true + false + true + true + 1217 + 1217 + Violation of Water Plant [Max Starts] constraints. + true + + + 2348 + 550 + 3 + 8 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1218 + 1218 + Cost of Water Plant [Max Starts] constraint violations. + true + + + 2349 + 550 + 3 + 9 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2350 + 550 + 3 + 10 + SRMC + SRMC + 67 + 67 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost of water production + true + + + 2351 + 550 + 3 + 11 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 1815 + 1815 + The total electric and heat consumption of the Water Plant + true + + + 2352 + 550 + 3 + 12 + Cost of Energy Consumption + Cost of Energy Consumption + 14 + 34 + true + true + false + true + true + false + true + true + 2526 + 2526 + Cost of energy consumption + false + + + 2353 + 550 + 3 + 13 + Electric Load + Electric Load + 1 + 2 + true + true + false + false + true + false + true + true + 1890 + 1890 + The part of the [Energy Consumption] met by electric + true + + + 2354 + 550 + 3 + 14 + Cost of Electric Load + Cost of Electric Load + 14 + 34 + true + true + false + true + true + false + true + true + 2527 + 2527 + Cost of electric load + false + + + 2355 + 550 + 3 + 15 + Heat Load + Heat Load + 15 + 16 + true + true + false + false + true + false + true + true + 255 + 255 + The part of the [Energy Consumption] met by heat + true + + + 2356 + 550 + 3 + 16 + Cost of Heat Load + Cost of Heat Load + 14 + 34 + true + true + false + true + true + false + true + true + 2528 + 2528 + Cost of heat load + false + + + 2357 + 550 + 3 + 17 + Auxiliary Use + Auxiliary Use + 65 + 64 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 2358 + 550 + 3 + 18 + Units Operating + Units Operating + 0 + 0 + true + true + false + false + true + false + true + true + 2049 + 2049 + Number of water plant units operating + true + + + 2359 + 550 + 3 + 19 + Hours Up + Hours Up + 6 + 6 + true + true + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start of a water plant + true + + + 2360 + 550 + 3 + 20 + Hours Down + Hours Down + 6 + 6 + true + true + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown of a water plant + true + + + 2361 + 550 + 3 + 21 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of water plant units started + true + + + 2362 + 550 + 3 + 22 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of heat plant units shut down + true + + + 2363 + 550 + 3 + 23 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity producing + true + + + 2364 + 550 + 3 + 24 + Capacity Curtailed + Capacity Curtailed + 65 + 64 + true + true + false + false + true + false + true + true + 1163 + 1163 + Amount of non-positive-priced production curtailed + true + + + 2365 + 550 + 3 + 25 + Curtailment Factor + Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 1061 + 1061 + Proportion of non-positive-priced generation curtailed + true + + + 2366 + 550 + 3 + 26 + Water Availability + Water Availability + 65 + 64 + true + true + false + false + true + false + true + true + 2529 + 2529 + Availability of water + true + + + 2367 + 550 + 3 + 27 + Incremental Fuel Offtake + Incremental Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 2530 + 2530 + Incremental offtake of fuel + false + + + 2368 + 550 + 6 + 28 + Installed Capacity + Installed Capacity + 65 + 64 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Production x Units) + false + + + 2369 + 550 + 6 + 29 + Rated Capacity + Rated Capacity + 65 + 64 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + false + + + 2370 + 550 + 7 + 30 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2371 + 550 + 7 + 31 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 2372 + 550 + 7 + 32 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the Water plant is on maintenance + true + + + 2373 + 550 + 7 + 33 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 2374 + 550 + 7 + 34 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the Water plant is on forced outage of Production + true + + + 2375 + 550 + 7 + 35 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of plant capacity available in production + true + + + 2376 + 550 + 8 + 36 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of water plant units built + true + + + 2377 + 550 + 8 + 37 + Capacity Built + Capacity Built + 65 + 65 + true + true + false + false + true + false + false + false + 54 + 54 + Water plant capacity Built + true + + + 2378 + 550 + 8 + 38 + Capacity Price + Capacity Price + 99 + 99 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the plant for capacity + true + + + 2379 + 550 + 8 + 39 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 2380 + 550 + 8 + 40 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of developing the Water Plant + true + + + 2381 + 550 + 8 + 41 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of water plant units retired + true + + + 2382 + 550 + 8 + 42 + Capacity Retired + Capacity Retired + 65 + 65 + true + true + false + false + true + false + false + false + 66 + 66 + Water plant capacity Retired + true + + + 2383 + 550 + 8 + 43 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the water plant + true + + + 2384 + 550 + 12 + 44 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2385 + 550 + 12 + 45 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2386 + 550 + 12 + 46 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2387 + 560 + 3 + 1 + Flow + Flow + 65 + 64 + true + true + false + false + true + false + true + true + 205 + 205 + Quantity of water extracted from the pipeline + true + + + 2388 + 560 + 3 + 2 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the pipeline is congested in the reference direction + true + + + 2389 + 560 + 3 + 3 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the pipeline is congested in the counter-reference direction + true + + + 2390 + 560 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting water from the pipeline + true + + + 2391 + 560 + 3 + 5 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2392 + 560 + 3 + 6 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2393 + 560 + 3 + 7 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + Total energy consumed for pipeline utilization + true + + + 2394 + 560 + 7 + 8 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2395 + 560 + 7 + 9 + Flow Capacity Outage + Flow Capacity Outage + 65 + 65 + true + false + false + false + true + false + true + true + 2147 + 2147 + Flow capacity on outage due to maintenance or forced outage + true + + + 2396 + 560 + 7 + 10 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2397 + 560 + 7 + 11 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the pipeline is on maintenance + true + + + 2398 + 560 + 7 + 12 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 2399 + 560 + 7 + 13 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the pipeline is on forced outage + true + + + 2400 + 560 + 7 + 14 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of pipeline capacity available + true + + + 2401 + 560 + 8 + 15 + Max Capacity Built + Max Capacity Built + 65 + 65 + true + true + false + false + true + false + false + false + 2150 + 2150 + Amount of increase in Water Pipeline Max Capacity + true + + + 2402 + 560 + 8 + 16 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Water pipeline + true + + + 2403 + 560 + 8 + 17 + Max Capacity Retired + Max Capacity Retired + 65 + 65 + true + true + false + false + true + false + false + false + 2151 + 2151 + Amount of reduction in Water Pipeline Max Capacity + true + + + 2404 + 560 + 8 + 18 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Water pipeline + true + + + 2405 + 560 + 12 + 19 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2406 + 560 + 12 + 20 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2407 + 560 + 12 + 21 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2408 + 568 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Water Node is in service + true + + + 2409 + 568 + 3 + 2 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Total quantity of water supplied by Supplying Water Plants + true + + + 2410 + 568 + 3 + 3 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Demand at the water node + true + + + 2411 + 568 + 3 + 4 + Flow + Flow + 65 + 64 + true + true + false + false + true + false + true + true + 205 + 205 + Flow of water through the node + true + + + 2412 + 568 + 3 + 5 + Imports + Imports + 65 + 64 + true + true + false + false + true + false + true + true + 294 + 294 + Imports on water pipelines + true + + + 2413 + 568 + 3 + 6 + Exports + Exports + 65 + 64 + true + true + false + false + true + false + true + true + 192 + 192 + Exports on water pipelines + true + + + 2414 + 568 + 3 + 7 + Net Interchange + Net Interchange + 65 + 64 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on water pipelines + true + + + 2415 + 568 + 3 + 8 + Initial Volume + Initial Volume + 64 + 64 + true + true + false + false + true + false + true + true + 318 + 318 + Initial volume in water storage + true + + + 2416 + 568 + 3 + 9 + End Volume + End Volume + 64 + 64 + true + true + false + false + true + false + true + true + 170 + 170 + End volume in water storage + true + + + 2417 + 568 + 3 + 10 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2382 + 2382 + Cost of flowing water through the node + true + + + 2418 + 568 + 3 + 11 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in supply of water at the node + true + + + 2419 + 568 + 3 + 12 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2420 + 568 + 3 + 13 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2421 + 568 + 3 + 14 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water at the node + true + + + 2422 + 568 + 3 + 15 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2423 + 568 + 3 + 16 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2424 + 568 + 3 + 17 + Shadow Price + Shadow Price + 67 + 67 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of water at the water node + true + + + 2425 + 568 + 3 + 18 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2426 + 568 + 3 + 19 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2427 + 568 + 3 + 20 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + Total energy consumed for pipeline utilization + true + + + 2428 + 568 + 3 + 21 + Facility Consumption + Facility Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 2732 + 2732 + Water consumed by connected Facilities + true + + + 2429 + 568 + 8 + 22 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the water node is built in this year + true + + + 2430 + 568 + 8 + 23 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the water node + true + + + 2431 + 568 + 8 + 24 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of water node units retired + true + + + 2432 + 568 + 8 + 25 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the water node + true + + + 2433 + 568 + 12 + 26 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2434 + 568 + 12 + 27 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2435 + 568 + 12 + 28 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2436 + 577 + 3 + 1 + Max Volume + Max Volume + 64 + 64 + true + true + false + false + true + false + true + true + 466 + 466 + Maximum volume of Water allowed in storage + true + + + 2437 + 577 + 3 + 2 + Min Volume + Min Volume + 64 + 64 + true + true + false + false + true + false + true + true + 510 + 510 + Minimum volume of Water allowed in storage + true + + + 2438 + 577 + 3 + 3 + Initial Volume + Initial Volume + 64 + 64 + true + true + false + false + true + false + true + true + 318 + 318 + Initial volume of Water in the storage + true + + + 2439 + 577 + 3 + 4 + End Volume + End Volume + 64 + 64 + true + true + false + false + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 2440 + 577 + 3 + 5 + Working Volume + Working Volume + 64 + 64 + true + true + false + false + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 2441 + 577 + 3 + 6 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization based on end volume + true + + + 2442 + 577 + 3 + 7 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 2443 + 577 + 3 + 8 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 2444 + 577 + 3 + 9 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 2445 + 577 + 3 + 10 + Withdrawal + Withdrawal + 64 + 64 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of water withdrawn from the storage + true + + + 2446 + 577 + 3 + 11 + Injection + Injection + 64 + 64 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of water injected into the water storage + true + + + 2447 + 577 + 3 + 12 + Net Withdrawal + Net Withdrawal + 64 + 64 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 2448 + 577 + 3 + 13 + Shadow Price + Shadow Price + 67 + 67 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of water in the storage + true + + + 2449 + 577 + 3 + 14 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2450 + 577 + 3 + 15 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2451 + 577 + 3 + 16 + End Level + End Level + 23 + 23 + true + true + false + true + true + false + true + true + 169 + 169 + Water storage level at the end of period + true + + + 2452 + 577 + 7 + 17 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2453 + 577 + 7 + 18 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Withdrawal/Injection on maintenance + true + + + 2454 + 577 + 7 + 19 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the Water storage is on maintenance + true + + + 2455 + 577 + 7 + 20 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Withdrawal/Injection on Forced Outage + true + + + 2456 + 577 + 7 + 21 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the Water storage is on forced outage of Withdrawal/Injection + true + + + 2457 + 577 + 7 + 22 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Storage capacity available in withdrawal/injection + true + + + 2458 + 577 + 8 + 23 + Max Volume Built + Max Volume Built + 64 + 64 + true + true + false + false + true + false + false + false + 2152 + 2152 + Amount of increase in Water Storage Max Volume + true + + + 2459 + 577 + 8 + 24 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Water storage + true + + + 2460 + 577 + 8 + 25 + Max Volume Retired + Max Volume Retired + 64 + 64 + true + true + false + false + true + false + false + false + 2153 + 2153 + Amount of reduction in Water Storage Max Volume + true + + + 2461 + 577 + 8 + 26 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Water storage + true + + + 2462 + 577 + 12 + 27 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2463 + 577 + 12 + 28 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2464 + 577 + 12 + 29 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2465 + 584 + 3 + 1 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Demand for water + true + + + 2466 + 584 + 3 + 2 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in water supply + true + + + 2467 + 584 + 3 + 3 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2468 + 584 + 3 + 4 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2469 + 584 + 3 + 5 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water + true + + + 2470 + 584 + 3 + 6 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2471 + 584 + 3 + 7 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2472 + 584 + 3 + 8 + Net Demand + Net Demand + 65 + 64 + true + true + false + false + true + false + true + true + 1269 + 1269 + Water demand net of shortages and excesses + true + + + 2473 + 584 + 3 + 9 + Served Demand + Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2070 + 2070 + Served Demand (with respect to excess and shortage) + true + + + 2474 + 584 + 3 + 10 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of water demand + true + + + 2475 + 584 + 3 + 11 + Price Paid + Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for water demand + true + + + 2476 + 584 + 3 + 12 + Bid Quantity + Bid Quantity + 65 + 64 + true + true + true + false + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 2477 + 584 + 3 + 13 + Bid Price + Bid Price + 67 + 67 + true + true + true + false + true + false + true + true + 33 + 33 + Value of water in band + true + + + 2478 + 584 + 3 + 14 + Bid Cleared + Bid Cleared + 65 + 64 + true + true + true + false + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 2479 + 584 + 3 + 15 + Cleared Bid Price + Cleared Bid Price + 67 + 67 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 2480 + 584 + 3 + 16 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 2481 + 584 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2482 + 584 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2483 + 584 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2484 + 588 + 3 + 1 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Quantity of water produced by the water plants + true + + + 2485 + 588 + 3 + 2 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Water demand + true + + + 2486 + 588 + 3 + 3 + Imports + Imports + 65 + 64 + true + true + false + false + true + false + true + true + 294 + 294 + Imports on water pipelines + true + + + 2487 + 588 + 3 + 4 + Exports + Exports + 65 + 64 + true + true + false + false + true + false + true + true + 192 + 192 + Exports on water pipelines + true + + + 2488 + 588 + 3 + 5 + Net Interchange + Net Interchange + 65 + 64 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on water pipelines + true + + + 2489 + 588 + 3 + 6 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in water supply + true + + + 2490 + 588 + 3 + 7 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2491 + 588 + 3 + 8 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2492 + 588 + 3 + 9 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water + true + + + 2493 + 588 + 3 + 10 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2494 + 588 + 3 + 11 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2495 + 588 + 3 + 12 + Net Demand + Net Demand + 65 + 64 + true + true + false + false + true + false + true + true + 1269 + 1269 + Water demand net of shortages and excesses + true + + + 2496 + 588 + 3 + 13 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of water demand + true + + + 2497 + 588 + 3 + 14 + Price Paid + Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for water demand + true + + + 2498 + 588 + 6 + 15 + Available Capacity + Available Capacity + 65 + 65 + true + true + false + false + true + false + true + true + 23 + 23 + Aggregate of Water Availability of Water Plants in the Water Zone + true + + + 2499 + 588 + 6 + 16 + Min Capacity Reserves + Min Capacity Reserves + 65 + 65 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 2500 + 588 + 6 + 17 + Max Capacity Reserves + Max Capacity Reserves + 65 + 65 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 2501 + 588 + 6 + 18 + Capacity Reserves + Capacity Reserves + 65 + 65 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 2502 + 588 + 6 + 19 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 2503 + 588 + 6 + 20 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 2504 + 588 + 6 + 21 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + true + + + 2505 + 588 + 6 + 22 + Min Load + Min Load + 65 + 65 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 2506 + 588 + 6 + 23 + Peak Load + Peak Load + 65 + 65 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + true + + + 2507 + 588 + 12 + 24 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2508 + 588 + 12 + 25 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2509 + 588 + 12 + 26 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2510 + 598 + 3 + 1 + Head + Head + 23 + 23 + true + true + false + false + true + false + true + true + 2265 + 2265 + Pump station head + true + + + 2511 + 598 + 3 + 2 + Flow Rate + Flow Rate + 65 + 65 + true + true + false + false + true + false + true + true + 2266 + 2266 + Pump station flow rate + true + + + 2512 + 598 + 3 + 3 + Power + Power + 1 + 1 + true + true + false + false + true + false + true + true + 2267 + 2267 + Power consumed by the pump station to achieve the given head and flow rate + true + + + 2513 + 598 + 3 + 4 + Energy + Energy + 3 + 3 + true + true + false + true + true + false + true + true + 173 + 173 + Energy consumption over a given period + true + + + 2514 + 598 + 3 + 5 + Volume Pumped + Volume Pumped + 64 + 64 + true + true + false + true + true + false + true + true + 2268 + 2268 + Volume pumped over a given period + true + + + 2515 + 607 + 3 + 1 + Units Operating + Units Operating + 0 + 0 + true + true + false + false + true + false + true + true + 2049 + 2049 + the number of units on the pump operating in a given period + true + + + 2516 + 607 + 3 + 2 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start of a water pump + true + + + 2517 + 607 + 3 + 3 + Hours Down + Hours Down + 6 + 6 + true + true + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown of a water pump + true + + + 2518 + 607 + 3 + 4 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of water pumps units started + true + + + 2519 + 607 + 3 + 5 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of water pump units shut down + true + + + 2520 + 607 + 3 + 6 + Head + Head + 23 + 23 + true + true + false + false + true + false + true + true + 2265 + 2265 + Pump head + true + + + 2521 + 607 + 3 + 7 + Flow Rate + Flow Rate + 65 + 65 + true + true + false + false + true + false + true + true + 2266 + 2266 + Pump flow rate + true + + + 2522 + 607 + 3 + 8 + Power + Power + 1 + 1 + true + true + false + false + true + false + true + true + 2267 + 2267 + Power consumed by the pump + true + + + 2523 + 607 + 3 + 9 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of pump starts and shutdowns + true + + + 2524 + 607 + 3 + 10 + Operating Cost + Operating Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2555 + 2555 + Electric cost of operating the pump + true + + + 2525 + 611 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of vehicles + true + + + 2526 + 611 + 3 + 2 + Installed Capacity + Installed Capacity + 80 + 80 + true + true + false + false + true + true + true + true + 320 + 320 + Total battery capacity + true + + + 2527 + 611 + 3 + 3 + Distance + Distance + 81 + 81 + true + true + false + true + true + false + true + true + 2111 + 2111 + Distance travelled + true + + + 2528 + 611 + 3 + 4 + Energy Consumption + Energy Consumption + 80 + 3 + true + true + false + true + true + false + true + true + 1815 + 1815 + Energy consumed + true + + + 2529 + 611 + 3 + 5 + Efficiency + Efficiency + 82 + 82 + true + true + false + false + true + false + true + true + 1209 + 1209 + Energy used per unit travelled + true + + + 2530 + 611 + 3 + 6 + Range + Range + 81 + 81 + true + true + false + false + true + false + true + true + 2112 + 2112 + Remaining range + true + + + 2531 + 611 + 3 + 7 + Energy + Energy + 80 + 80 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored + true + + + 2532 + 611 + 3 + 8 + SoC + SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1660 + 1660 + State of charge + true + + + 2533 + 611 + 3 + 9 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Charge rate/energy + true + + + 2534 + 611 + 3 + 10 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Discharge rate/energy + true + + + 2535 + 611 + 3 + 11 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2536 + 611 + 3 + 12 + Self Discharge Losses + Self Discharge Losses + 79 + 3 + true + true + false + false + true + false + true + true + 2711 + 2711 + Losses due to self-discharge + true + + + 2537 + 611 + 3 + 13 + Auxiliary Consumption + Auxiliary Consumption + 79 + 3 + true + true + false + true + true + false + true + true + 2974 + 2974 + Energy consumption from auxiliary sources + true + + + 2538 + 611 + 3 + 14 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours in use + true + + + 2539 + 611 + 3 + 15 + Hours Charging + Hours Charging + 6 + 6 + true + true + false + false + true + false + true + true + 1662 + 1662 + Number of hours in charging state + true + + + 2540 + 611 + 3 + 16 + Hours Discharging + Hours Discharging + 6 + 6 + true + true + false + false + true + false + true + true + 1663 + 1663 + Number of hours in discharging state + true + + + 2541 + 611 + 3 + 17 + Hours Idle + Hours Idle + 6 + 6 + true + true + false + false + true + false + true + true + 1664 + 1664 + Number of hours in idle state + true + + + 2542 + 611 + 3 + 18 + Units Charging + Units Charging + 0 + 0 + true + true + false + false + true + false + true + true + 3039 + 3039 + Number of units charging + true + + + 2543 + 611 + 3 + 19 + Units Discharging + Units Discharging + 0 + 0 + true + true + false + false + true + false + true + true + 3040 + 3040 + Number of units discharging + true + + + 2544 + 611 + 3 + 20 + Charge Units Started + Charge Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 3041 + 3041 + Number of charge units started + true + + + 2545 + 611 + 3 + 21 + Charge Units Shutdown + Charge Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 3042 + 3042 + Number of charge units shutdown + true + + + 2546 + 611 + 3 + 22 + Discharge Units Started + Discharge Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 3043 + 3043 + Number of discharge units started + true + + + 2547 + 611 + 3 + 23 + Discharge Units Shutdown + Discharge Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 3044 + 3044 + Number of discharge units shutdown + true + + + 2548 + 611 + 3 + 24 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2549 + 611 + 3 + 25 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2550 + 611 + 3 + 26 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2551 + 611 + 3 + 27 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2552 + 611 + 3 + 28 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2553 + 611 + 3 + 29 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2554 + 611 + 3 + 30 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid charging + true + + + 2555 + 611 + 3 + 31 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2556 + 611 + 3 + 32 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2557 + 611 + 3 + 33 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2558 + 611 + 3 + 34 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2559 + 611 + 3 + 35 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2560 + 611 + 3 + 36 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2561 + 611 + 3 + 37 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2562 + 611 + 3 + 38 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2563 + 611 + 3 + 39 + Energy Target Violation + Energy Target Violation + 80 + 80 + true + true + false + false + true + false + true + true + 2964 + 2964 + Violation of the [Energy Target] constraint. + true + + + 2564 + 611 + 3 + 40 + Energy Target Violation Cost + Energy Target Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2965 + 2965 + Cost of [Energy Target] constraint violations. + true + + + 2565 + 611 + 3 + 41 + Non-physical Charge Adjustments + Non-physical Charge Adjustments + 79 + 3 + true + true + false + false + true + false + true + true + 2872 + 2872 + Non-physical charge adjustments required to maintain feasible states of charge. + true + + + 2566 + 611 + 3 + 42 + Non-physical Discharge Adjustments + Non-physical Discharge Adjustments + 79 + 3 + true + true + false + false + true + false + true + true + 2873 + 2873 + Non-physical discharge adjustments required to maintain feasible states of charge. + true + + + 2567 + 611 + 3 + 43 + Charge Efficiency + Charge Efficiency + 12 + 12 + true + true + false + true + true + false + true + true + 1668 + 1668 + Efficiency of charging + true + + + 2568 + 611 + 3 + 44 + Discharge Efficiency + Discharge Efficiency + 12 + 12 + true + true + false + true + true + false + true + true + 1669 + 1669 + Efficiency of discharging + true + + + 2569 + 611 + 8 + 45 + Units Purchased + Units Purchased + 0 + 0 + true + true + false + false + true + false + false + false + 2453 + 2453 + Number of vehicles purchased + true + + + 2570 + 611 + 8 + 46 + Capacity Added + Capacity Added + 80 + 80 + true + true + false + false + true + false + false + false + 2454 + 2454 + Battery capacity added + true + + + 2571 + 611 + 8 + 47 + Purchase Cost + Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2451 + 2451 + Cost of vehicles purchased + true + + + 2572 + 611 + 8 + 48 + Annualized Purchase Cost + Annualized Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2455 + 2455 + Annualized cost of vehicle purchases + true + + + 2573 + 611 + 8 + 49 + Units Disposed + Units Disposed + 0 + 0 + true + true + false + false + true + false + false + false + 2456 + 2456 + Number of vehicles disposed of + true + + + 2574 + 611 + 8 + 50 + Capacity Removed + Capacity Removed + 80 + 80 + true + true + false + false + true + false + false + false + 2457 + 2457 + Battery capacity removed + true + + + 2575 + 611 + 8 + 51 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 2576 + 611 + 8 + 52 + Disposal Cost + Disposal Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2452 + 2452 + Cost of disposing of vehicles + true + + + 2577 + 611 + 8 + 53 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2578 + 611 + 12 + 54 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2579 + 611 + 12 + 55 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2580 + 611 + 12 + 56 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2581 + 616 + 3 + 1 + Consumption + Consumption + 0 + 0 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Commodity + true + + + 2582 + 616 + 3 + 2 + Energy Consumption + Energy Consumption + 80 + 3 + true + true + false + false + true + false + true + true + 1815 + 1815 + Energy from the Commodity + true + + + 2583 + 616 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Cost for Energy from the Commodity + true + + + 2584 + 619 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of chargers + true + + + 2585 + 619 + 3 + 2 + Installed Capacity + Installed Capacity + 79 + 79 + true + true + false + false + true + true + true + true + 320 + 320 + Total charging capacity of the station + true + + + 2586 + 619 + 3 + 3 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Load from charging + true + + + 2587 + 619 + 3 + 4 + Deferred Load + Deferred Load + 79 + 3 + true + true + false + false + true + false + true + true + 2126 + 2126 + Deferred charging load + true + + + 2588 + 619 + 3 + 5 + Hours Deferred + Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2154 + 2154 + Average hours load is deferred in the period + true + + + 2589 + 619 + 3 + 6 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Generation from discharging + true + + + 2590 + 619 + 3 + 7 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2591 + 619 + 3 + 8 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 2592 + 619 + 3 + 9 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2593 + 619 + 3 + 10 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2594 + 619 + 3 + 11 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2595 + 619 + 3 + 12 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2596 + 619 + 3 + 13 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2597 + 619 + 3 + 14 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2598 + 619 + 3 + 15 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid charging + true + + + 2599 + 619 + 3 + 16 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2600 + 619 + 3 + 17 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2601 + 619 + 3 + 18 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2602 + 619 + 3 + 19 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2603 + 619 + 3 + 20 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2604 + 619 + 3 + 21 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2605 + 619 + 3 + 22 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2606 + 619 + 8 + 23 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2607 + 619 + 8 + 24 + Capacity Built + Capacity Built + 79 + 79 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2608 + 619 + 8 + 25 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 2609 + 619 + 8 + 26 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2610 + 619 + 8 + 27 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2611 + 619 + 8 + 28 + Capacity Retired + Capacity Retired + 79 + 79 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2612 + 619 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2613 + 619 + 8 + 30 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2614 + 619 + 12 + 31 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2615 + 619 + 12 + 32 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2616 + 619 + 12 + 33 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2617 + 626 + 3 + 1 + Installed Capacity + Installed Capacity + 80 + 80 + true + true + false + false + true + true + true + true + 320 + 320 + Total battery capacity + true + + + 2618 + 626 + 3 + 2 + Distance + Distance + 81 + 81 + true + true + false + false + true + false + true + true + 2111 + 2111 + Distance travelled + true + + + 2619 + 626 + 3 + 3 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Load from charging + true + + + 2620 + 626 + 3 + 4 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Generation from discharging + true + + + 2621 + 626 + 3 + 5 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2622 + 626 + 3 + 6 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2623 + 626 + 3 + 7 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2624 + 626 + 3 + 8 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2625 + 626 + 3 + 9 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2626 + 626 + 3 + 10 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2627 + 626 + 3 + 11 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2628 + 626 + 3 + 12 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid for charging + true + + + 2629 + 626 + 3 + 13 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2630 + 626 + 3 + 14 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2631 + 626 + 3 + 15 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2632 + 626 + 3 + 16 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2633 + 626 + 3 + 17 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2634 + 626 + 3 + 18 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2635 + 626 + 3 + 19 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2636 + 626 + 3 + 20 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2637 + 626 + 8 + 21 + Units Purchased + Units Purchased + 0 + 0 + true + true + false + false + true + false + false + false + 2453 + 2453 + Number of vehicles purchased + true + + + 2638 + 626 + 8 + 22 + Capacity Added + Capacity Added + 80 + 80 + true + true + false + false + true + false + false + false + 2454 + 2454 + Battery capacity added + true + + + 2639 + 626 + 8 + 23 + Purchase Cost + Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2451 + 2451 + Cost of vehicles purchased + true + + + 2640 + 626 + 8 + 24 + Annualized Purchase Cost + Annualized Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2455 + 2455 + Annualized cost of vehicle purchases + true + + + 2641 + 626 + 8 + 25 + Units Disposed + Units Disposed + 0 + 0 + true + true + false + false + true + false + false + false + 2456 + 2456 + Number of vehicles disposed of + true + + + 2642 + 626 + 8 + 26 + Capacity Removed + Capacity Removed + 80 + 80 + true + true + false + false + true + false + false + false + 2457 + 2457 + Battery capacity removed + true + + + 2643 + 626 + 8 + 27 + Disposal Cost + Disposal Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2452 + 2452 + Cost of disposing of vehicles + true + + + 2644 + 626 + 8 + 28 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2645 + 626 + 12 + 29 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2646 + 626 + 12 + 30 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2647 + 626 + 12 + 31 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2648 + 630 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Own generation + generation contracts + true + + + 2649 + 630 + 3 + 2 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 2650 + 630 + 3 + 3 + Fuel Production Rate + Fuel Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 2036 + 2742 + Fuel production from Power2X + true + + + 2651 + 630 + 3 + 4 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 2652 + 630 + 3 + 5 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 2653 + 630 + 3 + 6 + Dispatchable Capacity + Dispatchable Energy + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 2341 + On-line capacity + true + + + 2654 + 630 + 3 + 7 + Undispatched Capacity + Undispatched Energy + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 2342 + Capacity on-line but undispatched + true + + + 2655 + 630 + 3 + 8 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 2656 + 630 + 3 + 9 + Capacity Curtailed + Energy Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1163 + 2344 + Amount of non-positive-priced generation curtailed. + true + + + 2657 + 630 + 3 + 10 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 2658 + 630 + 3 + 11 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 2659 + 630 + 3 + 12 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2660 + 630 + 3 + 13 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2661 + 630 + 3 + 14 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2662 + 630 + 3 + 15 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2663 + 630 + 3 + 16 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2664 + 630 + 3 + 17 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2665 + 630 + 3 + 18 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 2666 + 630 + 3 + 19 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 2667 + 630 + 3 + 20 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Own load + load contracts + true + + + 2668 + 630 + 3 + 21 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 2669 + 630 + 3 + 22 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Max(0, generation - purchase) + true + + + 2670 + 630 + 3 + 23 + Net Load + Net Load + 1 + 2 + true + true + false + false + true + false + true + true + 544 + 544 + Max(0, load - generation) + true + + + 2671 + 630 + 3 + 24 + Fuel Price + Fuel Price + 29 + 29 + true + true + false + true + true + false + true + true + 225 + 225 + Average fuel price + true + + + 2672 + 630 + 3 + 25 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 2673 + 630 + 3 + 26 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 2674 + 630 + 3 + 27 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 2675 + 630 + 3 + 28 + Fuel Inventory Cost + Fuel Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1604 + 1604 + Cost of fuel stockpile. + true + + + 2676 + 630 + 3 + 29 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2677 + 630 + 3 + 30 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2678 + 630 + 3 + 31 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2679 + 630 + 3 + 32 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Pool cost for pump energy + true + + + 2680 + 630 + 3 + 33 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 2681 + 630 + 3 + 34 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 2682 + 630 + 3 + 35 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Generation cost + true + + + 2683 + 630 + 3 + 36 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Total cost of generation unit starts + true + + + 2684 + 630 + 3 + 37 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 2685 + 630 + 3 + 38 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 2686 + 630 + 3 + 39 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2687 + 630 + 3 + 40 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation and start and shutdown costs and emissions costs + true + + + 2688 + 630 + 3 + 41 + Fuel Production Cost + Fuel Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2743 + 2743 + Cost of fuel production from Power2X + true + + + 2689 + 630 + 3 + 42 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 2690 + 630 + 3 + 43 + Fuel Contract Cost + Fuel Contract Cost + 14 + 34 + true + true + false + true + true + false + true + true + 220 + 220 + Cost of fuel purchased under contract + true + + + 2691 + 630 + 3 + 44 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 2692 + 630 + 3 + 45 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 2693 + 630 + 3 + 46 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs + true + + + 2694 + 630 + 3 + 47 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Pool purchase cost from own load + load contracts + true + + + 2695 + 630 + 3 + 48 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Weighted average SRMC of the company sent out generation + true + + + 2696 + 630 + 3 + 49 + Bid-Cost Mark-up + Bid-Cost Mark-up + 12 + 12 + true + true + true + false + true + false + true + true + 32 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + true + + + 2697 + 630 + 3 + 50 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Weighted average price received for generation + true + + + 2698 + 630 + 3 + 51 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Weighted average price paid for purchases + true + + + 2699 + 630 + 3 + 52 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue from own generation + generation contracts + true + + + 2700 + 630 + 3 + 53 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2701 + 630 + 3 + 54 + Gas Market Revenue + Gas Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1683 + 1683 + Revenue from gas markets + true + + + 2702 + 630 + 3 + 55 + Heat Market Revenue + Heat Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 256 + 256 + Revenue from heat markets + true + + + 2703 + 630 + 3 + 56 + Fuel Market Revenue + Fuel Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 221 + 221 + Revenue from fuel markets + true + + + 2704 + 630 + 3 + 57 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Settlement surplus on own transmission lines + true + + + 2705 + 630 + 3 + 58 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net generator pool revenue + true + + + 2706 + 630 + 3 + 59 + Net Cost to Load + Net Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 538 + 538 + Net cost to load + true + + + 2707 + 630 + 3 + 60 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 2708 + 630 + 3 + 61 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 2709 + 630 + 3 + 62 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit + true + + + 2710 + 630 + 3 + 63 + Generation at RRN + Generation at RRN + 1 + 2 + true + true + false + false + true + false + true + true + 228 + 228 + Own generation taken to the regional reference node + true + + + 2711 + 630 + 3 + 64 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Volume of financial contracts (CfDs) + true + + + 2712 + 630 + 3 + 65 + Net Contract Volume + Net Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 535 + 535 + Net volume on CfDs (generation - contract volume) + true + + + 2713 + 630 + 3 + 66 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on CfDs + true + + + 2714 + 630 + 3 + 67 + Net Contract Settlement + Net Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 534 + 534 + Monies received (+ve) or paid out (-ve) on CfDs net of interconnector surpluses + true + + + 2715 + 630 + 3 + 68 + Net Pool Revenue + Net Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 547 + 547 + Pool revenue plus financial contract settlement + true + + + 2716 + 630 + 3 + 69 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 2717 + 630 + 3 + 70 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 2718 + 630 + 3 + 71 + Contract Cost + Contract Cost + 14 + 34 + true + true + false + true + true + false + true + true + 101 + 101 + Generation cost from physical contracts + true + + + 2719 + 630 + 3 + 72 + Contract Revenue + Contract Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 106 + 106 + Revenue from physical contracts + true + + + 2720 + 630 + 3 + 73 + Net Contract Revenue + Net Contract Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 533 + 533 + Net revenue from physical contracts + true + + + 2721 + 630 + 3 + 74 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 2722 + 630 + 3 + 75 + Generator Monopoly Rent + Generator Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 244 + 244 + Monopoly rent from competitive bidding + true + + + 2723 + 630 + 3 + 76 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint. + true + + + 2724 + 630 + 3 + 77 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 2725 + 630 + 3 + 78 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 2726 + 630 + 3 + 79 + Gas Demand + Gas Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2137 + 2137 + Total gas demand for the company + true + + + 2727 + 630 + 3 + 80 + Gas Supply + Gas Supply + 75 + 76 + true + true + false + true + true + false + true + true + 2138 + 2138 + Total gas supply for the company + true + + + 2728 + 630 + 3 + 81 + Gas Imbalance + Gas Imbalance + 75 + 76 + true + true + false + true + true + false + true + true + 2139 + 2139 + Total gas supply imbalance for the company (Gas Demand - Gas Supply) + true + + + 2729 + 630 + 3 + 82 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the company + true + + + 2730 + 630 + 3 + 83 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the company + true + + + 2731 + 630 + 3 + 84 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange for the company (Financial Exports - Financial Imports) + true + + + 2732 + 630 + 3 + 85 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the company + true + + + 2733 + 630 + 3 + 86 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the company + true + + + 2734 + 630 + 3 + 87 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 2735 + 630 + 3 + 88 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 2736 + 630 + 3 + 89 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 2737 + 630 + 3 + 90 + Dump Energy Allocation + Dump Energy Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 2390 + 2390 + Dump energy allocated to the company. + true + + + 2738 + 630 + 3 + 91 + Unserved Energy Allocation + Unserved Energy Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 2391 + 2391 + Unserved energy (USE) allocated to the company. + true + + + 2739 + 630 + 3 + 92 + Loss Allocation + Loss Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 373 + 373 + Losses allocated to the company. + true + + + 2740 + 630 + 6 + 93 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed generation capacity + true + + + 2741 + 630 + 6 + 94 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available generation capacity + true + + + 2742 + 630 + 6 + 95 + Generator Firm Capacity + Generator Firm Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 242 + 242 + Capacity provided by generators + true + + + 2743 + 630 + 8 + 96 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 2744 + 630 + 8 + 97 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 2745 + 630 + 8 + 98 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 2746 + 630 + 8 + 99 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments to generators in the company + true + + + 2747 + 630 + 8 + 100 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the company + true + + + 2748 + 630 + 8 + 101 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2749 + 630 + 8 + 102 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of units retired + true + + + 2750 + 630 + 8 + 103 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 2751 + 630 + 8 + 104 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 2752 + 630 + 8 + 105 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 2753 + 630 + 8 + 106 + Shadow Capacity Built + Shadow Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1823 + 1823 + Capacity built (Max Capacity x Units Built) before Competition models. + true + + + 2754 + 630 + 12 + 107 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2755 + 630 + 12 + 108 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2756 + 630 + 12 + 109 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2757 + 633 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 2758 + 633 + 1 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the generators + true + + + 2759 + 633 + 1 + 3 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Costs associated with fuel stockpile + true + + + 2760 + 633 + 1 + 4 + Production Rate + Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 627 + 1743 + Rate of production/volume of production from Power2X + true + + + 2761 + 633 + 1 + 5 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of production from Power2X + true + + + 2762 + 633 + 1 + 6 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs across the entire portfolio + true + + + 2763 + 633 + 1 + 7 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of the fuel produced + true + + + 2764 + 634 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 2765 + 634 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 2766 + 634 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 2767 + 634 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 2768 + 634 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 2769 + 634 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2770 + 634 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 2771 + 634 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 2772 + 634 + 1 + 9 + Allocation + Allocation + 19 + 20 + true + true + false + false + true + false + true + true + 3 + 3 + Emission rights allocation + true + + + 2773 + 634 + 1 + 10 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost net of rights allocation + true + + + 2774 + 635 + 1 + 1 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 2775 + 635 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 2776 + 636 + 1 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Own load in region + true + + + 2777 + 636 + 1 + 2 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity in region + true + + + 2778 + 636 + 1 + 3 + Available Capacity + Available Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 23 + Available generation capacity in region + true + + + 2779 + 636 + 1 + 4 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation in region + true + + + 2780 + 636 + 1 + 5 + Marginal Cost + Marginal Cost + 33 + 33 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of generation in the Region + true + + + 2781 + 636 + 1 + 6 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Weighted average price received for generation in region + true + + + 2782 + 636 + 1 + 7 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue from own generation + generation contracts in region + true + + + 2783 + 636 + 1 + 8 + Generation at RRN + Generation at RRN + 1 + 2 + true + true + false + false + true + false + true + true + 228 + 228 + Own generation taken to the regional reference node + true + + + 2784 + 636 + 1 + 9 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Volume of financial contracts (CfDs) sold in the region + true + + + 2785 + 636 + 1 + 10 + Net Contract Volume + Net Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 535 + 535 + Net volume on CfDs (generation - contract volume) + true + + + 2786 + 636 + 1 + 11 + Contract Shortfall + Contract Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 108 + 108 + Shortfall of generation for contracts in region (pro-rated) + true + + + 2787 + 636 + 1 + 12 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on CfDs in the region + true + + + 2788 + 636 + 1 + 13 + Net Contract Settlement + Net Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 534 + 534 + Monies received (+ve) or paid out (-ve) on CfDs net of interconnector surpluses + true + + + 2789 + 636 + 1 + 14 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 2790 + 638 + 1 + 1 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from parent company to child company + true + + + 2791 + 638 + 1 + 2 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the parent region from child region + true + + + 2792 + 638 + 1 + 3 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) + true + + + 2793 + 638 + 1 + 4 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region + true + + + 2794 + 638 + 1 + 5 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region + true + + + 2795 + 638 + 1 + 6 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 2796 + 639 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 2797 + 639 + 1 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1274 + 1274 + Production cost from Facilities producing the Commodity + true + + + 2798 + 639 + 1 + 3 + Total Cost + Total Cost + 14 + 34 + true + true + false + false + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 2799 + 639 + 1 + 4 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + true + true + 1388 + 1388 + Levelized cost of production + true + + + 2800 + 644 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of units + true + + + 2801 + 644 + 3 + 2 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Commodity + true + + + 2802 + 644 + 3 + 3 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 2803 + 644 + 3 + 4 + Net Consumption + Net Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 2282 + 2282 + Net of consumption and production of the Commodity + true + + + 2804 + 644 + 3 + 5 + Energy Consumption + Energy Consumption + 15 + 16 + true + true + false + false + true + false + true + true + 1815 + 1815 + Equivalent energy consumption + true + + + 2805 + 644 + 3 + 6 + Energy Production + Energy Production + 15 + 16 + true + true + false + false + true + false + true + true + 2471 + 2471 + Equivalent energy production + true + + + 2806 + 644 + 3 + 7 + Net Energy Consumption + Net Energy Consumption + 15 + 16 + true + true + false + false + true + false + true + true + 2472 + 2472 + Net equivalent energy consumption + true + + + 2807 + 644 + 3 + 8 + Electric Energy Consumption + Electric Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 2473 + 2473 + Equivalent electric energy consumption + true + + + 2808 + 644 + 3 + 9 + Electric Energy Production + Electric Energy Production + 1 + 2 + true + true + false + false + true + false + true + true + 2474 + 2474 + Equivalent electric energy production + true + + + 2809 + 644 + 3 + 10 + Net Electric Energy Consumption + Net Electric Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 2475 + 2475 + Net equivalent electric energy consumption + true + + + 2810 + 644 + 3 + 11 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Price of the Commodity for the given level of Net Consumption + true + + + 2811 + 644 + 3 + 12 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity from binding constraints + true + + + 2812 + 644 + 3 + 13 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost incurred by consumption of the Commodity + true + + + 2813 + 644 + 3 + 14 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue earned from production of the Commodity + true + + + 2814 + 644 + 3 + 15 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of Cost and Revenue from consumption and production of the Commodity + true + + + 2815 + 644 + 3 + 16 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2816 + 644 + 3 + 17 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2817 + 644 + 10 + 18 + Max Inventory + Max Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1589 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 2818 + 644 + 10 + 19 + Min Inventory + Min Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1590 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 2819 + 644 + 10 + 20 + Opening Inventory + Opening Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial amount of the Commodity in inventory + true + + + 2820 + 644 + 10 + 21 + Closing Inventory + Closing Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1593 + 1593 + Amount of the Commodity in inventory + true + + + 2821 + 644 + 10 + 22 + Inventory Change + Inventory Change + 86 + 86 + true + true + false + false + true + false + true + true + 2340 + 2340 + Change in Commodity in inventory + true + + + 2822 + 644 + 10 + 23 + Working Inventory + Working Inventory + 86 + 86 + true + true + false + true + true + false + true + true + 2501 + 2501 + Working inventory capacity at the end of the period + true + + + 2823 + 644 + 10 + 24 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Inventory capacity utilization + true + + + 2824 + 644 + 10 + 25 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Working inventory capacity utilization + true + + + 2825 + 644 + 10 + 26 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average inventory capacity utilization + true + + + 2826 + 644 + 10 + 27 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average working inventory capacity utilization + true + + + 2827 + 644 + 10 + 28 + Delivery + Delivery + 86 + 86 + true + true + false + false + true + false + true + true + 1592 + 1592 + Amount of the Commodity added to inventory + true + + + 2828 + 644 + 10 + 29 + Injection + Injection + 86 + 86 + true + true + false + false + true + false + true + true + 1392 + 1392 + Amount of the Commodity added to inventory + true + + + 2829 + 644 + 10 + 30 + Withdrawal + Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1391 + 1391 + Amount of the Commodity withdrawn from inventory + true + + + 2830 + 644 + 10 + 31 + Net Withdrawal + Net Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 2831 + 644 + 10 + 32 + Injection Losses + Injection Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2509 + 2509 + Losses from injections + true + + + 2832 + 644 + 10 + 33 + Withdrawal Losses + Withdrawal Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2510 + 2510 + Losses from withdrawals + true + + + 2833 + 644 + 10 + 34 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of additions to inventory + true + + + 2834 + 644 + 10 + 35 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost of holding the Commodity in inventory + true + + + 2835 + 644 + 10 + 36 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost of unused inventory capacity + true + + + 2836 + 644 + 10 + 37 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injections to the inventory + true + + + 2837 + 644 + 10 + 38 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawals from inventory + true + + + 2838 + 644 + 8 + 39 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2839 + 644 + 8 + 40 + Capacity Built + Capacity Built + 0 + 0 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2840 + 644 + 8 + 41 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2841 + 644 + 8 + 42 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2842 + 644 + 8 + 43 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from all facilities involved in production of the commodity + true + + + 2843 + 644 + 8 + 44 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of production + true + + + 2844 + 644 + 8 + 45 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2845 + 644 + 8 + 46 + Capacity Retired + Capacity Retired + 0 + 0 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2846 + 644 + 8 + 47 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2847 + 644 + 8 + 48 + Net New Capacity + Net New Capacity + 0 + 0 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 2848 + 644 + 12 + 49 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2849 + 644 + 12 + 50 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2850 + 644 + 12 + 51 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2851 + 650 + 3 + 1 + Consumption + Consumption + 93 + 93 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Primary Input Commodity by the Process + true + + + 2852 + 650 + 3 + 2 + Production + Production + 94 + 94 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Primary Output Commodity by the Process + true + + + 2853 + 650 + 3 + 3 + Capacity + Capacity + 94 + 94 + true + true + false + false + true + false + true + true + 1665 + 1665 + Capacity of production measured in units of the primary output + true + + + 2854 + 650 + 3 + 4 + Surplus + Surplus + 94 + 94 + true + true + false + false + true + false + true + true + 2332 + 2332 + Surplus production capacity + true + + + 2855 + 650 + 3 + 5 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of production capacity used + true + + + 2856 + 650 + 3 + 6 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that of surplus capacity + true + + + 2857 + 650 + 3 + 7 + Surplus Factor + Surplus Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2411 + 2411 + Proportion of production capacity not used + true + + + 2858 + 650 + 3 + 8 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Ratio of primary output production to primary input consumption + true + + + 2859 + 650 + 3 + 9 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Processing cost + true + + + 2860 + 650 + 3 + 10 + Marginal Cost + Marginal Cost + 96 + 96 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2861 + 650 + 3 + 11 + Average Cost + Average Cost + 96 + 96 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2862 + 650 + 3 + 12 + Shadow Price + Shadow Price + 96 + 96 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of production + true + + + 2863 + 650 + 3 + 13 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost from all facilities implementing the process + true + + + 2864 + 650 + 8 + 14 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built from all facilities implementing the process + true + + + 2865 + 650 + 8 + 15 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built from all facilities implementing the process + true + + + 2866 + 650 + 8 + 16 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from all facilities implementing the process + true + + + 2867 + 650 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2868 + 650 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2869 + 650 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2870 + 655 + 1 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Secondary Input Commodity by the Process + true + + + 2871 + 656 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Secondary Output Commodity by the Process + true + + + 2872 + 659 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of existing units + true + + + 2873 + 659 + 3 + 2 + Consumption + Consumption + 93 + 93 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Primary Input Commodity by the Facility + true + + + 2874 + 659 + 3 + 3 + Production + Production + 94 + 94 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Primary Output Commodity by the Facility + true + + + 2875 + 659 + 3 + 4 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of capacity in production + true + + + 2876 + 659 + 3 + 5 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Average efficiency of production + true + + + 2877 + 659 + 3 + 6 + Efficiency Incr + Efficiency Incr + 12 + 12 + true + true + false + false + true + false + true + true + 163 + 163 + Marginal efficiency of production + true + + + 2878 + 659 + 3 + 7 + Electric Energy Consumption + Electric Energy Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 2473 + 2473 + Electric energy consumption + true + + + 2879 + 659 + 3 + 8 + Heat Consumption + Heat Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 2751 + 2751 + Heat consumption + true + + + 2880 + 659 + 3 + 9 + Gas Consumption + Gas Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 2730 + 2730 + Gas consumption + true + + + 2881 + 659 + 3 + 10 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 1803 + 1803 + Water consumption + true + + + 2882 + 659 + 3 + 11 + Electric Energy Cost + Electric Energy Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2733 + 2733 + Cost of electric energy consumed + true + + + 2883 + 659 + 3 + 12 + Heat Cost + Heat Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2753 + 2753 + Cost of heat consumed + true + + + 2884 + 659 + 3 + 13 + Gas Cost + Gas Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2734 + 2734 + Cost of gas consumed + true + + + 2885 + 659 + 3 + 14 + Water Cost + Water Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1809 + 1809 + Cost of water consumed + true + + + 2886 + 659 + 3 + 15 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 2887 + 659 + 3 + 16 + Marginal Cost + Marginal Cost + 96 + 96 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2888 + 659 + 3 + 17 + Average Cost + Average Cost + 96 + 96 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2889 + 659 + 3 + 18 + Units Warming Up + Units Warming Up + 0 + 0 + true + false + false + false + true + false + true + true + 2499 + 2499 + Number of units in the warm up process + true + + + 2890 + 659 + 3 + 19 + Units Operating + Units Operating + 0 + 0 + true + false + false + false + true + false + true + true + 2049 + 2049 + Number of units operating + true + + + 2891 + 659 + 3 + 20 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 2892 + 659 + 3 + 21 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 2893 + 659 + 3 + 22 + Warm Up Hours + Warm Up Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2497 + 2497 + Number of hours warming up + true + + + 2894 + 659 + 3 + 23 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation + true + + + 2895 + 659 + 3 + 24 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 2896 + 659 + 3 + 25 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 2897 + 659 + 3 + 26 + Ramp + Ramp + 94 + 94 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 2898 + 659 + 3 + 27 + Ramp Up + Ramp Up + 94 + 94 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 2899 + 659 + 3 + 28 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 2900 + 659 + 3 + 29 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 2901 + 659 + 3 + 30 + Ramp Up Price + Ramp Up Price + 14 + 14 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint + true + + + 2902 + 659 + 3 + 31 + Ramp Down + Ramp Down + 0 + 0 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 2903 + 659 + 3 + 32 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 2904 + 659 + 3 + 33 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 2905 + 659 + 3 + 34 + Ramp Down Price + Ramp Down Price + 14 + 14 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint + true + + + 2906 + 659 + 3 + 35 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation + true + + + 2907 + 659 + 3 + 36 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation + true + + + 2908 + 659 + 3 + 37 + Ramp Up Violation + Ramp Up Violation + 94 + 94 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint + true + + + 2909 + 659 + 3 + 38 + Ramp Down Violation + Ramp Down Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint + true + + + 2910 + 659 + 3 + 39 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations + true + + + 2911 + 659 + 3 + 40 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations + true + + + 2912 + 659 + 3 + 41 + Fixed Production + Fixed Production + 94 + 94 + true + true + false + false + true + false + true + true + 2304 + 2304 + Production attributable to [Fixed Operating Level] constraint + true + + + 2913 + 659 + 3 + 42 + Fixed Production Violation + Fixed Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 2305 + 2305 + Violation of [Fixed Operating Level] constraint + true + + + 2914 + 659 + 3 + 43 + Fixed Production Violation Hours + Fixed Production Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2306 + 2306 + Number of hours that [Fixed Operating Level] is violated + true + + + 2915 + 659 + 3 + 44 + Fixed Production Violation Cost + Fixed Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2307 + 2307 + Cost of [Fixed Operating Level] violations + true + + + 2916 + 659 + 3 + 45 + Min Production Violation + Min Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 2309 + 2309 + Violation of [Min Operating Level] constraint + true + + + 2917 + 659 + 3 + 46 + Min Production Violation Hours + Min Production Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2310 + 2310 + Number of hours that [Min Operating Level] is violated + true + + + 2918 + 659 + 3 + 47 + Min Production Violation Cost + Min Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2311 + 2311 + Cost of [Min Operating Level] violations + true + + + 2919 + 659 + 3 + 48 + Max Production Violation + Max Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] or [Max Capacity Factor] constraints + true + + + 2920 + 659 + 3 + 49 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] or [Max Capacity Factor] constraint violations + true + + + 2921 + 659 + 3 + 50 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints + true + + + 2922 + 659 + 3 + 51 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations + true + + + 2923 + 659 + 3 + 52 + VO&M Charge + VO&M Charge + 14 + 14 + true + true + false + false + true + false + true + true + 849 + 849 + Variable operation and maintenance charge + true + + + 2924 + 659 + 3 + 53 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2925 + 659 + 3 + 54 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2926 + 659 + 3 + 55 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit start up and shutdown + true + + + 2927 + 659 + 3 + 56 + Start & Shutdown Penalty Cost + Start & Shutdown Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1183 + 1183 + Penalty cost of unit start up and shutdown + true + + + 2928 + 659 + 3 + 57 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including production, VO&M, start and shutdown costs + true + + + 2929 + 659 + 3 + 58 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2930 + 659 + 3 + 59 + Price Received + Price Received + 14 + 14 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for production + true + + + 2931 + 659 + 3 + 60 + Electric Energy Production + Electric Energy Production + 3 + 2 + true + true + false + true + true + false + true + true + 2474 + 2474 + Electric energy production + true + + + 2932 + 659 + 3 + 61 + Heat Production + Heat Production + 3 + 2 + true + true + false + true + true + false + true + true + 257 + 257 + Heat production + true + + + 2933 + 659 + 3 + 62 + Gas Production + Gas Production + 75 + 76 + true + true + false + true + true + false + true + true + 2839 + 2839 + Gas production + true + + + 2934 + 659 + 3 + 63 + Water Production + Water Production + 64 + 64 + true + true + false + true + true + false + true + true + 2840 + 2840 + Water production + true + + + 2935 + 659 + 3 + 64 + Electric Energy Revenue + Electric Energy Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2841 + 2841 + Revenue from electric energy produced + true + + + 2936 + 659 + 3 + 65 + Heat Revenue + Heat Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 267 + 267 + Revenue from heat produced + true + + + 2937 + 659 + 3 + 66 + Gas Revenue + Gas Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2842 + 2842 + Revenue from gas produced + true + + + 2938 + 659 + 3 + 67 + Water Revenue + Water Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2843 + 2843 + Revenue from water produced + true + + + 2939 + 659 + 3 + 68 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue for production + true + + + 2940 + 659 + 3 + 69 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 2941 + 659 + 6 + 70 + Installed Capacity + Installed Capacity + 94 + 94 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Operating Level x Units) + true + + + 2942 + 659 + 6 + 71 + Available Capacity + Available Capacity + 94 + 94 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 2943 + 659 + 7 + 72 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service due to maintenance + true + + + 2944 + 659 + 7 + 73 + Maintenance + Maintenance + 94 + 94 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2945 + 659 + 7 + 74 + Discrete Maintenance + Discrete Maintenance + 94 + 94 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 2946 + 659 + 7 + 75 + Distributed Maintenance + Distributed Maintenance + 94 + 94 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 2947 + 659 + 7 + 76 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 2948 + 659 + 7 + 77 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of capacity on maintenance outage + true + + + 2949 + 659 + 7 + 78 + Forced Outage + Forced Outage + 94 + 94 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 2950 + 659 + 7 + 79 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 2951 + 659 + 7 + 80 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of capacity on forced outage + true + + + 2952 + 659 + 7 + 81 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 2953 + 659 + 7 + 82 + Outage Hours + Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2561 + 2561 + Number of hours on outage + true + + + 2954 + 659 + 7 + 83 + Outage Rate + Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 2562 + 2562 + Proportion of installed capacity on outage + true + + + 2955 + 659 + 7 + 84 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of capacity available for production + true + + + 2956 + 659 + 8 + 85 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2957 + 659 + 8 + 86 + Capacity Built + Capacity Built + 94 + 94 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2958 + 659 + 8 + 87 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2959 + 659 + 8 + 88 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2960 + 659 + 8 + 89 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2961 + 659 + 8 + 90 + Capacity Retired + Capacity Retired + 94 + 94 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2962 + 659 + 8 + 91 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2963 + 659 + 8 + 92 + Net New Capacity + Net New Capacity + 94 + 94 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 2964 + 659 + 8 + 93 + Capacity Price + Capacity Price + 14 + 14 + true + true + false + false + true + false + true + true + 881 + 881 + Price of new capacity + true + + + 2965 + 659 + 8 + 94 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 2966 + 659 + 8 + 95 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2967 + 659 + 8 + 96 + Levelized Cost + Levelized Cost + 14 + 14 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of production + true + + + 2968 + 659 + 12 + 97 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2969 + 659 + 12 + 98 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2970 + 659 + 12 + 99 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2971 + 662 + 3 + 1 + Consumption + Consumption + 0 + 0 + true + true + true + false + true + false + true + true + 1437 + 1437 + Amount of Process Primary Input Commodity consumed by the Facility + true + + + 2972 + 663 + 3 + 1 + Production + Production + 0 + 0 + true + true + true + false + true + false + true + true + 624 + 624 + Amount of Process Primary Output Commodity produced by the Facility + true + + + 2973 + 664 + 3 + 1 + Consumption + Consumption + 0 + 0 + true + true + true + false + true + false + true + true + 1437 + 1437 + Amount of Process Secondary Input Commodity consumed by the Facility + true + + + 2974 + 665 + 3 + 1 + Production + Production + 0 + 0 + true + true + true + false + true + false + true + true + 624 + 624 + Amount of Process Secondary Output Commodity produced by the Facility + true + + + 2975 + 675 + 1 + 1 + Start Date + Start Date + 0 + 0 + true + true + false + false + true + false + true + true + 1719 + 1719 + Start date of next maintenance event. + true + + + 2976 + 675 + 1 + 2 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the maintenance is active. + true + + + 2977 + 675 + 1 + 3 + Duration + Duration + 6 + 6 + true + true + false + false + true + false + true + true + 1476 + 1476 + Duration of the maintenance event. + true + + + 2978 + 675 + 1 + 4 + Cost + Cost + 14 + 34 + true + true + true + false + true + false + true + true + 117 + 117 + Cost of the maintenance event. + true + + + 2979 + 675 + 1 + 5 + Crew + Crew + 0 + 0 + true + true + true + false + true + false + true + true + 1688 + 1688 + Maintenance event crew requirements. + true + + + 2980 + 675 + 1 + 6 + Equipment + Equipment + 0 + 0 + true + true + true + false + true + false + true + true + 1689 + 1689 + Maintenance event equipment requirements. + true + + + 2981 + 675 + 1 + 7 + Penalty Cost + Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 603 + 603 + Cost of not scheduling this maintenance event. + true + + + 2982 + 675 + 1 + 8 + Cumulative Operating Hours + Cumulative Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 3139 + 3139 + Cumulative number of operating hours since the last maintenance occurrence. + true + + + 2983 + 675 + 1 + 9 + Cumulative Starts + Cumulative Starts + 0 + 0 + true + true + false + false + true + false + true + true + 3140 + 3140 + Cumulative number of starts since the last maintenance occurrence. + true + + + 2984 + 675 + 1 + 10 + Cumulative Time + Cumulative Time + 6 + 6 + true + true + false + false + true + false + true + true + 3141 + 3141 + Cumulative number of absolute hours since the last maintenance occurrence. + true + + + 2985 + 675 + 12 + 11 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2986 + 675 + 12 + 12 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2987 + 675 + 12 + 13 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2988 + 681 + 3 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Commodity consumed + true + + + 2989 + 681 + 3 + 2 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Commodity produced + true + + + 2990 + 681 + 3 + 3 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 2991 + 681 + 3 + 4 + Marginal Cost + Marginal Cost + 14 + 14 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2992 + 681 + 3 + 5 + Average Cost + Average Cost + 14 + 14 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2993 + 681 + 3 + 6 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Commodity flowed + true + + + 2994 + 681 + 3 + 7 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 2995 + 681 + 3 + 8 + Imports + Imports + 86 + 86 + true + true + false + false + true + false + true + true + 294 + 294 + Commodity imported + true + + + 2996 + 681 + 3 + 9 + Exports + Exports + 86 + 86 + true + true + false + false + true + false + true + true + 192 + 192 + Commodity exported + true + + + 2997 + 681 + 3 + 10 + Net Interchange + Net Interchange + 86 + 86 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on Flow Paths + true + + + 2998 + 681 + 3 + 11 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Total losses in the network + true + + + 2999 + 681 + 3 + 12 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 3000 + 681 + 3 + 13 + Shortage + Shortage + 86 + 86 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 3001 + 681 + 3 + 14 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 3002 + 681 + 3 + 15 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 3003 + 681 + 3 + 16 + Surplus + Surplus + 86 + 86 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 3004 + 681 + 3 + 17 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 3005 + 681 + 3 + 18 + Sales + Sales + 86 + 86 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to Markets + true + + + 3006 + 681 + 3 + 19 + Purchases + Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from Markets + true + + + 3007 + 681 + 3 + 20 + Net Sales + Net Sales + 86 + 86 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to Markets + true + + + 3008 + 681 + 3 + 21 + Net Purchases + Net Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from Markets + true + + + 3009 + 681 + 3 + 22 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours Market price cap was applied + true + + + 3010 + 681 + 3 + 23 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours Market price floor was applied + true + + + 3011 + 681 + 3 + 24 + Price + Price + 14 + 14 + true + true + false + false + true + false + true + true + 612 + 612 + Market price + true + + + 3012 + 681 + 3 + 25 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of Market sales + true + + + 3013 + 681 + 3 + 26 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Value of Market purchases + true + + + 3014 + 681 + 3 + 27 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net value of Market sales + true + + + 3015 + 681 + 3 + 28 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net value of Market purchases + true + + + 3016 + 681 + 3 + 29 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 3017 + 681 + 3 + 30 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 3018 + 681 + 3 + 31 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 3019 + 681 + 3 + 32 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity in the Flow Network + true + + + 3020 + 681 + 6 + 33 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Flow capacity + true + + + 3021 + 681 + 6 + 34 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 3022 + 681 + 8 + 35 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Production capacity built + true + + + 3023 + 681 + 8 + 36 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of production capacity builds + true + + + 3024 + 681 + 8 + 37 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Production capacity retired + true + + + 3025 + 681 + 8 + 38 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of production capacity retirements + true + + + 3026 + 681 + 12 + 39 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3027 + 681 + 12 + 40 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3028 + 681 + 12 + 41 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3029 + 690 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Flow Node is in service + true + + + 3030 + 690 + 3 + 2 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Commodity consumed + true + + + 3031 + 690 + 3 + 3 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Commodity produced + true + + + 3032 + 690 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 3033 + 690 + 3 + 5 + Marginal Cost + Marginal Cost + 88 + 88 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 3034 + 690 + 3 + 6 + Average Cost + Average Cost + 88 + 88 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 3035 + 690 + 3 + 7 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Commodity flowed + true + + + 3036 + 690 + 3 + 8 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 3037 + 690 + 3 + 9 + Imports + Imports + 86 + 86 + true + true + false + false + true + false + true + true + 294 + 294 + Commodity imported + true + + + 3038 + 690 + 3 + 10 + Exports + Exports + 86 + 86 + true + true + false + false + true + false + true + true + 192 + 192 + Commodity exported + true + + + 3039 + 690 + 3 + 11 + Net Interchange + Net Interchange + 86 + 86 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on Flow Paths + true + + + 3040 + 690 + 3 + 12 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Losses incurred at the Flow Node + true + + + 3041 + 690 + 3 + 13 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 3042 + 690 + 3 + 14 + Shortage + Shortage + 86 + 86 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 3043 + 690 + 3 + 15 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 3044 + 690 + 3 + 16 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 3045 + 690 + 3 + 17 + Surplus + Surplus + 86 + 86 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 3046 + 690 + 3 + 18 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 3047 + 690 + 3 + 19 + Sales + Sales + 86 + 86 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to Markets + true + + + 3048 + 690 + 3 + 20 + Purchases + Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from Markets + true + + + 3049 + 690 + 3 + 21 + Net Sales + Net Sales + 86 + 86 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to Markets + true + + + 3050 + 690 + 3 + 22 + Net Purchases + Net Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from Markets + true + + + 3051 + 690 + 3 + 23 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours Market price cap was applied + true + + + 3052 + 690 + 3 + 24 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours Market price floor was applied + true + + + 3053 + 690 + 3 + 25 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Market price + true + + + 3054 + 690 + 3 + 26 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of Market sales + true + + + 3055 + 690 + 3 + 27 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Value of Market purchases + true + + + 3056 + 690 + 3 + 28 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net value of Market sales + true + + + 3057 + 690 + 3 + 29 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net value of Market purchases + true + + + 3058 + 690 + 3 + 30 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 3059 + 690 + 3 + 31 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 3060 + 690 + 3 + 32 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 3061 + 690 + 3 + 33 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity at the Flow Node + true + + + 3062 + 690 + 6 + 34 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Flow capacity + true + + + 3063 + 690 + 6 + 35 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 3064 + 690 + 8 + 36 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the Flow Node is built in this year + true + + + 3065 + 690 + 8 + 37 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 3066 + 690 + 8 + 38 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Flow Node + true + + + 3067 + 690 + 8 + 39 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the Flow Node is retired in this year + true + + + 3068 + 690 + 8 + 40 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 3069 + 690 + 8 + 41 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Flow Node + true + + + 3070 + 690 + 12 + 42 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3071 + 690 + 12 + 43 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3072 + 690 + 12 + 44 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3073 + 697 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Flow Path is in service + true + + + 3074 + 697 + 3 + 2 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Net flow of the Commodity + true + + + 3075 + 697 + 3 + 3 + Flow Forward + Flow Forward + 86 + 86 + true + true + false + false + true + false + true + true + 2383 + 2383 + Commodity flow in the reference direction + true + + + 3076 + 697 + 3 + 4 + Flow Back + Flow Back + 86 + 86 + true + true + false + false + true + false + true + true + 206 + 206 + Commodity flow in the counter-reference direction + true + + + 3077 + 697 + 3 + 5 + Flows in Transit + Flows in Transit + 86 + 86 + true + true + false + false + true + false + true + true + 2735 + 2735 + Commodity flow in transit at the end of the period + true + + + 3078 + 697 + 3 + 6 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 3079 + 697 + 3 + 7 + Export Limit + Export Limit + 86 + 86 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the Flow Path + true + + + 3080 + 697 + 3 + 8 + Import Limit + Import Limit + 86 + 86 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the Flow Path + true + + + 3081 + 697 + 3 + 9 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to flow limit + true + + + 3082 + 697 + 3 + 10 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to flow limit + true + + + 3083 + 697 + 3 + 11 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the Flow Path is congested + true + + + 3084 + 697 + 3 + 12 + Hours Congested Forward + Hours Congested Forward + 6 + 6 + false + true + false + false + true + false + true + true + 2369 + 2369 + Number of hours the Flow Path is congested in the reference direction + true + + + 3085 + 697 + 3 + 13 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the Flow Path is congested in the counter-reference direction + true + + + 3086 + 697 + 3 + 14 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Losses incurred + true + + + 3087 + 697 + 3 + 15 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price + true + + + 3088 + 697 + 3 + 16 + Shadow Price Forward + Shadow Price Forward + 88 + 88 + false + true + false + false + true + false + true + true + 2370 + 2370 + Shadow price in the reference direction + true + + + 3089 + 697 + 3 + 17 + Shadow Price Back + Shadow Price Back + 88 + 88 + false + true + false + false + true + false + true + true + 743 + 743 + Shadow price of interface limit in the counter-reference direction + true + + + 3090 + 697 + 6 + 18 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Flow x Units) + true + + + 3091 + 697 + 6 + 19 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 3092 + 697 + 7 + 20 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 3093 + 697 + 7 + 21 + Maintenance + Maintenance + 86 + 86 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 3094 + 697 + 7 + 22 + Maintenance Back + Maintenance Back + 86 + 86 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 3095 + 697 + 7 + 23 + Discrete Maintenance + Discrete Maintenance + 86 + 86 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 3096 + 697 + 7 + 24 + Discrete Maintenance Back + Discrete Maintenance Back + 86 + 86 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 3097 + 697 + 7 + 25 + Distributed Maintenance + Distributed Maintenance + 86 + 86 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 3098 + 697 + 7 + 26 + Distributed Maintenance Back + Distributed Maintenance Back + 86 + 86 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 3099 + 697 + 7 + 27 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 3100 + 697 + 7 + 28 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of capacity on maintenance outage + true + + + 3101 + 697 + 7 + 29 + Forced Outage + Forced Outage + 86 + 86 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 3102 + 697 + 7 + 30 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 3103 + 697 + 7 + 31 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of capacity on forced outage + true + + + 3104 + 697 + 7 + 32 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of capacity available for production + true + + + 3105 + 697 + 3 + 33 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 3106 + 697 + 8 + 34 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the Flow Node is built in this year + true + + + 3107 + 697 + 8 + 35 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 3108 + 697 + 8 + 36 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Flow Path + true + + + 3109 + 697 + 8 + 37 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the Flow Node is retired in this year + true + + + 3110 + 697 + 8 + 38 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 3111 + 697 + 8 + 39 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Flow Path + true + + + 3112 + 697 + 12 + 40 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3113 + 697 + 12 + 41 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3114 + 697 + 12 + 42 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3115 + 705 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of units + true + + + 3116 + 705 + 3 + 2 + Max Inventory + Max Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1589 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 3117 + 705 + 3 + 3 + Min Inventory + Min Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1590 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 3118 + 705 + 3 + 4 + Opening Inventory + Opening Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial amount of the Commodity in inventory + true + + + 3119 + 705 + 3 + 5 + Closing Inventory + Closing Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1593 + 1593 + Amount of the Commodity in inventory + true + + + 3120 + 705 + 3 + 6 + Inventory Change + Inventory Change + 86 + 86 + true + true + false + false + true + false + true + true + 2340 + 2340 + Change in Commodity in inventory + true + + + 3121 + 705 + 3 + 7 + Delivery + Delivery + 86 + 86 + true + true + false + false + true + false + true + true + 1592 + 1592 + Amount of the Commodity added to inventory + true + + + 3122 + 705 + 3 + 8 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Gross amount of the Commodity drawn from the Flow Node + true + + + 3123 + 705 + 3 + 9 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Net amount of the Commodity released to the Flow Node + true + + + 3124 + 705 + 3 + 10 + Injection + Injection + 86 + 86 + true + true + false + false + true + false + true + true + 1392 + 1392 + Net amount of the Commodity added to inventory + true + + + 3125 + 705 + 3 + 11 + Withdrawal + Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1391 + 1391 + Gross amount of the Commodity withdrawn from inventory + true + + + 3126 + 705 + 3 + 12 + Net Withdrawal + Net Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 3127 + 705 + 3 + 13 + Injection Losses + Injection Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2509 + 2509 + Losses from injections + true + + + 3128 + 705 + 3 + 14 + Withdrawal Losses + Withdrawal Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2510 + 2510 + Losses from withdrawals + true + + + 3129 + 705 + 3 + 15 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of additions to inventory + true + + + 3130 + 705 + 3 + 16 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost of holding the Commodity in inventory + true + + + 3131 + 705 + 3 + 17 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost of unused inventory capacity + true + + + 3132 + 705 + 3 + 18 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injections to the inventory + true + + + 3133 + 705 + 3 + 19 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawals from inventory + true + + + 3134 + 705 + 3 + 20 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity from binding constraints + true + + + 3135 + 705 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 3136 + 705 + 3 + 22 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 3137 + 705 + 8 + 23 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 3138 + 705 + 8 + 24 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 3139 + 705 + 8 + 25 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 3140 + 705 + 8 + 26 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 3141 + 705 + 8 + 27 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 3142 + 705 + 8 + 28 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 3143 + 705 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 3144 + 705 + 8 + 30 + Net New Capacity + Net New Capacity + 86 + 86 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 3145 + 705 + 8 + 31 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 3146 + 705 + 12 + 32 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3147 + 705 + 12 + 33 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3148 + 705 + 12 + 34 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3149 + 712 + 3 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity by the Facilities + true + + + 3150 + 712 + 3 + 2 + Sales + Sales + 0 + 0 + true + true + false + false + true + false + true + true + 718 + 718 + Sales of the Commodity to the Markets + true + + + 3151 + 712 + 3 + 3 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including production, VO&M, start and shutdown costs + true + + + 3152 + 712 + 3 + 4 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of sales to the Markets + true + + + 3153 + 712 + 3 + 5 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit of the Entity + true + + + 3154 + 712 + 8 + 6 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Build cost of Facilities + true + + + 3155 + 712 + 8 + 7 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of Facilities built + true + + + 3156 + 712 + 8 + 8 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Retirement costs of Facilities + true + + + 3157 + 712 + 8 + 9 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from Facilities + true + + + 3158 + 712 + 12 + 10 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3159 + 712 + 12 + 11 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3160 + 712 + 12 + 12 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3161 + 715 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 3162 + 715 + 1 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1274 + 1274 + Production cost from Facilities producing the Commodity + true + + + 3163 + 715 + 1 + 3 + Total Cost + Total Cost + 14 + 34 + true + true + false + false + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 3164 + 715 + 1 + 4 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + true + true + 1388 + 1388 + Levelized cost of production + true + + + 3165 + 718 + 3 + 1 + Sales + Sales + 86 + 87 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 3166 + 718 + 3 + 2 + Purchases + Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 3167 + 718 + 3 + 3 + Net Sales + Net Sales + 86 + 87 + true + true + false + false + true + false + true + true + 553 + 553 + Net reserve sold into the market + true + + + 3168 + 718 + 3 + 4 + Net Purchases + Net Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 3169 + 718 + 3 + 5 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 3170 + 718 + 3 + 6 + Shortage + Shortage + 86 + 87 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 3171 + 718 + 3 + 7 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 3172 + 718 + 3 + 8 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 3173 + 718 + 3 + 9 + Surplus + Surplus + 86 + 87 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 3174 + 718 + 3 + 10 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 3175 + 718 + 3 + 11 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours the price cap was applied + true + + + 3176 + 718 + 3 + 12 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours the price floor was applied + true + + + 3177 + 718 + 3 + 13 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Price point on market demand function + true + + + 3178 + 718 + 3 + 14 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of sales to the market + true + + + 3179 + 718 + 3 + 15 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 3180 + 718 + 3 + 16 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue from reserve sales in the market + true + + + 3181 + 718 + 3 + 17 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net cost of purchases from the market + true + + + 3182 + 718 + 3 + 18 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Cost including block fixed costs + true + + + 3183 + 718 + 3 + 19 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 3184 + 718 + 3 + 20 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 3185 + 718 + 3 + 21 + Natural Revenue + Natural Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1624 + 1624 + Value of sales to the market ignoring bid-ask spread + true + + + 3186 + 718 + 3 + 22 + Natural Cost + Natural Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1625 + 1625 + Cost of purchases from the market ignoring bid-ask spread + true + + + 3187 + 718 + 6 + 23 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the market purchases to generation capacity for capacity reserves. + true + + + 3188 + 718 + 6 + 24 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Contribution of the market sales to the load obligation for capacity reserves. + true + + + 3189 + 718 + 12 + 25 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3190 + 718 + 12 + 26 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3191 + 718 + 12 + 27 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3192 + 724 + 1 + 1 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Constraint activity at optimal solution + true + + + 3193 + 724 + 1 + 2 + Slack + Slack + 0 + 0 + true + true + false + false + true + true + true + true + 748 + 748 + Constraint slack at optimal solution + true + + + 3194 + 724 + 1 + 3 + Violation + Violation + 0 + 0 + true + true + false + false + true + true + true + true + 843 + 843 + Constraint violation at optimal solution + true + + + 3195 + 724 + 1 + 4 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + true + true + true + 276 + 276 + Number of hours the Constraint is binding. + true + + + 3196 + 724 + 1 + 5 + RHS + RHS + 0 + 0 + true + true + false + false + true + true + true + true + 700 + 700 + Constraint RHS constant + true + + + 3197 + 724 + 1 + 6 + Price + Price + 14 + 14 + true + true + false + false + true + false + true + true + 612 + 612 + Constraint dual variable value at optimal solution + true + + + 3198 + 724 + 1 + 7 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the Constraint is active. + true + + + 3199 + 724 + 1 + 8 + Penalty Cost + Penalty Cost + 14 + 34 + true + true + false + true + true + false + true + true + 603 + 603 + Contribution of penalty violations to the primal objective function + true + + + 3200 + 724 + 1 + 9 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Contribution of activity to the dual objective function + true + + + 3201 + 724 + 12 + 10 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3202 + 724 + 12 + 11 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3203 + 724 + 12 + 12 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3204 + 728 + 1 + 1 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Objective value + true + + + 3205 + 728 + 1 + 2 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Variable part of objective value + true + + + 3206 + 728 + 1 + 3 + Constant + Constant + 0 + 0 + true + true + false + false + true + true + true + true + 2089 + 2089 + Is the constant term in objective a'x +b + true + + + 3207 + 728 + 12 + 4 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3208 + 728 + 12 + 5 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3209 + 728 + 12 + 6 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3210 + 731 + 1 + 1 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Value of generic decision variable + true + + + 3211 + 731 + 1 + 2 + Reduced Cost + Reduced Cost + 14 + 14 + true + true + false + true + true + true + true + true + 1496 + 1496 + Reduced cost of the generic decision variable + true + + + 3212 + 731 + 1 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + true + true + true + 117 + 117 + Total objective function contribution of generic decision variable + true + + + 3213 + 731 + 1 + 4 + Objective Function Coefficient + Objective Function Coefficient + 14 + 14 + true + true + false + false + true + true + true + true + 1351 + 1351 + Objective function value of the generic decision variable + true + + + 3214 + 731 + 1 + 5 + Lower Bound + Lower Bound + 0 + 0 + true + true + false + false + true + true + true + true + 1494 + 1494 + Lower bound of the generic decision variable + true + + + 3215 + 731 + 1 + 6 + Upper Bound + Upper Bound + 0 + 0 + true + true + false + false + true + true + true + true + 1495 + 1495 + Upper bound of the generic decision variable + true + + + 3216 + 731 + 1 + 7 + Min Value + Min Value + 0 + 0 + true + true + false + false + true + true + true + true + 508 + 508 + Minimum value of generic decision variable + true + + + 3217 + 731 + 1 + 8 + Max Value + Max Value + 0 + 0 + true + true + false + false + true + true + true + true + 464 + 464 + Maximum value of generic decision variable + true + + + 3218 + 731 + 12 + 9 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3219 + 731 + 12 + 10 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3220 + 731 + 12 + 11 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3221 + 737 + 1 + 1 + X Value + X Value + 0 + 0 + true + true + false + false + true + false + true + true + 2205 + 2205 + Solution value for the x variable + true + + + 3222 + 737 + 1 + 2 + Y Value + Y Value + 0 + 0 + true + true + false + false + true + false + true + true + 2206 + 2206 + Solution value for the y variable + true + + + 3223 + 737 + 1 + 3 + Function Value + Function Value + 0 + 0 + true + true + false + false + true + false + true + true + 2207 + 2207 + Value of the input function at the current X value + true + + + 3224 + 737 + 12 + 4 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3225 + 737 + 12 + 5 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3226 + 737 + 12 + 6 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3227 + 744 + 1 + 1 + Expected Value + Expected Value + 0 + 0 + true + true + false + false + true + true + true + true + 1493 + 1493 + Expected value + true + + + 3228 + 744 + 1 + 2 + Raw Value + Raw Value + 0 + 0 + true + true + false + false + true + true + true + true + 1090 + 1090 + Raw sample value before application of [Min Value], [Max Value] or lookup table. + true + + + 3229 + 744 + 1 + 3 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Sample value + true + + + 3230 + 744 + 1 + 4 + Error + Error + 0 + 0 + true + true + false + false + true + true + true + true + 182 + 182 + Average sample error + true + + + 3231 + 744 + 1 + 5 + Volatility + Volatility + 0 + 0 + true + true + false + false + true + true + true + true + 1770 + 1770 + GARCH(1,1) volatility metric of sample values + true + + + 3232 + 744 + 1 + 6 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Value of the left hand side of the equation defining the conditional Variable + true + + + 3233 + 750 + 1 + 1 + Hours Included + Hours Included + 6 + 6 + true + true + false + false + true + true + true + true + 279 + 279 + Number of hours the Timeslice is included. + true + + + 3234 + 756 + 1 + 1 + Temperature + Temperature + 77 + 77 + true + true + false + false + true + false + true + true + 2009 + 2009 + Temperature value in each level + true + + + 3235 + 756 + 1 + 2 + Heating Degree Days + Heating Degree Days + 0 + 0 + true + true + false + false + true + false + true + true + 2007 + 2007 + Value for heating degree days + true + + + 3236 + 756 + 1 + 3 + Wind Speed + Wind Speed + 0 + 0 + true + true + false + false + true + false + true + true + 2011 + 2011 + Wind speed value + true + + + 8 + 2 + 1 + true + true + false + false + false + + + 8 + 27 + 1 + false + true + false + false + false + + + 8 + 214 + 1 + false + true + false + false + false + + + 8 + 240 + 1 + false + true + false + false + false + + + 8 + 245 + 1 + false + true + false + false + false + + + 8 + 380 + 1 + false + true + false + false + false + + + 8 + 383 + 1 + false + true + false + false + false + + + 8 + 384 + 1 + true + true + false + false + false + + + 8 + 394 + 1 + false + true + false + false + false + + + 8 + 529 + 1 + true + true + false + false + false + + + 8 + 531 + 1 + true + true + false + false + false + + + 8 + 532 + 1 + true + true + false + false + false + + + 8 + 533 + 1 + true + true + false + false + false + + + 8 + 619 + 1 + false + true + false + false + false + + + 8 + 669 + 1 + true + true + false + false + false + + + 8 + 670 + 1 + true + true + false + false + false + + + 8 + 679 + 1 + true + true + false + false + false + + + 8 + 680 + 1 + true + true + false + false + false + + + 8 + 732 + 1 + true + true + false + false + false + + + 8 + 751 + 1 + true + true + false + false + false + + + 8 + 837 + 1 + true + true + true + true + false + + + 8 + 838 + 1 + true + true + true + true + false + + + 8 + 856 + 1 + true + true + true + true + false + + + 8 + 995 + 1 + true + true + false + false + false + + + 8 + 999 + 1 + true + true + false + false + false + + + 8 + 1025 + 1 + true + true + false + false + false + + + 8 + 1029 + 1 + true + true + false + false + false + + + 8 + 1034 + 1 + false + true + false + false + false + + + 8 + 1066 + 1 + true + true + false + false + false + + + 8 + 1126 + 1 + false + true + false + false + false + + + 8 + 1136 + 1 + false + true + false + false + false + + + 8 + 1159 + 1 + false + true + false + false + false + + + 8 + 1232 + 1 + true + true + false + false + false + + + 8 + 1236 + 1 + true + true + false + false + false + + + 8 + 1262 + 1 + true + true + false + false + false + + + 8 + 1266 + 1 + true + true + false + false + false + + + 8 + 1271 + 1 + true + true + false + false + false + + + 8 + 1303 + 1 + true + true + false + false + false + + + 8 + 1333 + 1 + false + true + false + false + false + + + 8 + 1343 + 1 + false + true + false + false + false + + + 8 + 1363 + 1 + false + true + false + false + false + + + 8 + 1502 + 1 + true + true + false + false + false + + + 8 + 1505 + 1 + false + true + false + false + false + + + 8 + 1506 + 1 + false + true + false + false + false + + + 8 + 1730 + 1 + true + true + false + false + false + + + 8 + 1756 + 1 + true + true + false + false + false + + + 8 + 1757 + 1 + true + true + false + false + false + + + 8 + 1778 + 1 + false + true + false + false + false + + + 8 + 1780 + 1 + false + true + false + false + false + + + 8 + 1829 + 1 + false + true + false + false + false + + + 8 + 1830 + 1 + false + true + false + false + false + + + 8 + 1831 + 1 + false + true + false + false + false + + + 8 + 1878 + 1 + false + true + false + false + false + + + 8 + 1922 + 1 + false + true + false + false + false + + + 8 + 1923 + 1 + false + true + false + false + false + + + 8 + 1932 + 1 + false + true + false + false + false + + + 8 + 1933 + 1 + false + true + false + false + false + + + 8 + 1968 + 1 + false + true + false + false + false + + + 8 + 1969 + 1 + false + true + false + false + false + + + 8 + 1987 + 1 + false + true + false + false + false + + + 8 + 2020 + 1 + false + true + false + false + false + + + 8 + 2021 + 1 + false + true + false + false + false + + + 8 + 2045 + 1 + false + true + false + false + false + + + 8 + 2108 + 1 + false + true + false + false + false + + + 8 + 2110 + 1 + false + true + false + false + false + + + 8 + 2113 + 1 + false + true + false + false + false + + + 8 + 2182 + 1 + false + true + false + false + false + + + 8 + 2183 + 1 + false + true + false + false + false + + + 8 + 2184 + 1 + false + true + false + false + false + + + 8 + 2196 + 1 + false + true + false + false + false + + + 8 + 2198 + 1 + false + true + false + false + false + + + 8 + 2202 + 1 + false + true + false + false + false + + + 8 + 2203 + 1 + false + true + false + false + false + + + 8 + 2204 + 1 + false + true + false + false + false + + + 8 + 2212 + 1 + false + true + false + false + false + + + 8 + 2214 + 1 + false + true + false + false + false + + + 8 + 2256 + 1 + false + true + false + false + false + + + 8 + 2257 + 1 + false + true + false + false + false + + + 8 + 2290 + 1 + false + true + false + false + false + + + 8 + 2294 + 1 + false + true + false + false + false + + + 8 + 2302 + 1 + false + true + false + false + false + + + 8 + 2343 + 1 + false + true + false + false + false + + + 8 + 2387 + 1 + false + true + false + false + false + + + 8 + 2410 + 1 + false + true + false + false + false + + + 8 + 2411 + 1 + false + true + false + false + false + + + 8 + 2424 + 1 + false + true + false + false + false + + + 8 + 2438 + 1 + false + true + false + false + false + + + 8 + 2439 + 1 + false + true + false + false + false + + + 8 + 2447 + 1 + false + true + false + false + false + + + 8 + 2465 + 1 + false + true + false + false + false + + + 8 + 2467 + 1 + false + true + false + false + false + + + 8 + 2470 + 1 + false + true + false + false + false + + + 8 + 2976 + 1 + true + true + false + false + false + + + 8 + 2978 + 1 + true + true + false + false + false + + + 8 + 3165 + 1 + true + true + false + false + false + + + 8 + 3166 + 1 + true + true + false + false + false + + + 8 + 3177 + 1 + true + true + false + false + false + + + 8 + 3195 + 1 + true + true + false + false + false + + + 8 + 3197 + 1 + true + true + false + false + false + + + 8 + 3210 + 1 + true + true + false + false + false + + + 8 + 3211 + 1 + true + true + false + false + false + + + 8 + 3229 + 1 + true + true + false + false + false + + + 9 + 2 + 4 + true + true + false + false + false + + + 9 + 7 + 4 + true + false + false + false + false + + + 9 + 119 + 4 + true + true + false + false + false + + + 9 + 151 + 4 + true + true + false + false + false + + + 9 + 163 + 4 + true + true + false + false + false + + + 9 + 167 + 4 + true + true + false + false + false + + + 9 + 380 + 4 + true + true + false + false + false + + + 9 + 383 + 4 + true + true + false + false + false + + + 9 + 384 + 4 + true + true + false + false + false + + + 9 + 394 + 4 + true + true + false + false + false + + + 9 + 529 + 4 + true + true + false + false + false + + + 9 + 531 + 4 + true + true + false + false + false + + + 9 + 532 + 4 + true + true + false + false + false + + + 9 + 533 + 4 + true + true + false + false + false + + + 9 + 669 + 4 + true + true + false + false + false + + + 9 + 670 + 4 + true + true + false + false + false + + + 9 + 679 + 4 + true + true + false + false + false + + + 9 + 680 + 4 + true + true + false + false + false + + + 9 + 732 + 4 + true + true + false + false + false + + + 9 + 751 + 4 + true + true + false + false + false + + + 9 + 837 + 4 + true + true + true + true + false + + + 9 + 838 + 4 + true + true + true + true + false + + + 9 + 856 + 4 + true + true + true + true + false + + + 9 + 995 + 4 + true + true + false + false + false + + + 9 + 999 + 4 + true + true + false + false + false + + + 9 + 1025 + 4 + true + true + false + false + false + + + 9 + 1029 + 4 + true + true + false + false + false + + + 9 + 1034 + 4 + true + true + false + false + false + + + 9 + 1066 + 4 + true + true + false + false + false + + + 9 + 1075 + 4 + true + true + false + false + false + + + 9 + 1076 + 4 + true + true + false + false + false + + + 9 + 1078 + 4 + true + true + false + false + false + + + 9 + 1232 + 4 + true + true + false + false + false + + + 9 + 1236 + 4 + true + true + false + false + false + + + 9 + 1262 + 4 + true + true + false + false + false + + + 9 + 1266 + 4 + true + true + false + false + false + + + 9 + 1271 + 4 + true + true + false + false + false + + + 9 + 1303 + 4 + true + true + false + false + false + + + 9 + 1311 + 4 + true + true + false + false + false + + + 9 + 1312 + 4 + true + true + false + false + false + + + 9 + 1314 + 4 + true + true + false + false + false + + + 9 + 1448 + 4 + true + true + false + false + false + + + 9 + 1502 + 4 + true + true + false + false + false + + + 9 + 1505 + 4 + true + true + false + false + false + + + 9 + 1506 + 4 + true + true + false + false + false + + + 9 + 1730 + 4 + true + true + false + false + false + + + 9 + 1756 + 4 + true + true + false + false + false + + + 9 + 1757 + 4 + true + true + false + false + false + + + 9 + 1829 + 4 + true + true + false + false + false + + + 9 + 1830 + 4 + true + true + false + false + false + + + 9 + 1831 + 4 + true + true + false + false + false + + + 9 + 1878 + 4 + true + true + false + false + false + + + 9 + 1922 + 4 + true + true + false + false + false + + + 9 + 1932 + 4 + true + true + false + false + false + + + 9 + 1933 + 4 + true + true + false + false + false + + + 9 + 1968 + 4 + true + true + false + false + false + + + 9 + 1969 + 4 + true + true + false + false + false + + + 9 + 1987 + 4 + true + true + false + false + false + + + 9 + 2020 + 4 + true + true + false + false + false + + + 9 + 2021 + 4 + true + true + false + false + false + + + 9 + 2045 + 4 + true + true + false + false + false + + + 9 + 2108 + 4 + true + true + false + false + false + + + 9 + 2110 + 4 + true + true + false + false + false + + + 9 + 2113 + 4 + true + true + false + false + false + + + 9 + 2182 + 4 + true + true + false + false + false + + + 9 + 2183 + 4 + true + true + false + false + false + + + 9 + 2184 + 4 + true + true + false + false + false + + + 9 + 2196 + 4 + true + true + false + false + false + + + 9 + 2198 + 4 + true + true + false + false + false + + + 9 + 2202 + 4 + true + true + false + false + false + + + 9 + 2203 + 4 + true + true + false + false + false + + + 9 + 2204 + 4 + true + true + false + false + false + + + 9 + 2212 + 4 + true + true + false + false + false + + + 9 + 2214 + 4 + true + true + false + false + false + + + 9 + 2256 + 4 + true + true + false + false + false + + + 9 + 2257 + 4 + true + true + false + false + false + + + 9 + 2290 + 4 + true + true + false + false + false + + + 9 + 2294 + 4 + true + true + false + false + false + + + 9 + 2302 + 4 + true + true + false + false + false + + + 9 + 2343 + 4 + true + true + false + false + false + + + 9 + 2387 + 4 + true + true + false + false + false + + + 9 + 2410 + 4 + true + true + false + false + false + + + 9 + 2411 + 4 + true + true + false + false + false + + + 9 + 2424 + 4 + true + true + false + false + false + + + 9 + 2438 + 4 + true + true + false + false + false + + + 9 + 2439 + 4 + true + true + false + false + false + + + 9 + 2447 + 4 + true + true + false + false + false + + + 9 + 2465 + 4 + true + true + false + false + false + + + 9 + 2467 + 4 + true + true + false + false + false + + + 9 + 2470 + 4 + true + true + false + false + false + + + 9 + 2976 + 4 + true + true + false + false + false + + + 9 + 2978 + 4 + true + true + false + false + false + + + 9 + 3165 + 4 + true + true + false + false + false + + + 9 + 3166 + 4 + true + true + false + false + false + + + 9 + 3177 + 4 + true + true + false + false + false + + + 9 + 3195 + 4 + true + true + false + false + false + + + 9 + 3197 + 4 + true + true + false + false + false + + + 9 + 3210 + 4 + true + true + false + false + false + + + 9 + 3211 + 4 + true + true + false + false + false + + + 9 + 3229 + 4 + true + true + false + false + false + + + 10 + 2 + 4 + true + true + false + false + false + + + 10 + 7 + 4 + true + false + false + false + false + + + 10 + 119 + 4 + true + true + false + false + false + + + 10 + 151 + 4 + true + true + false + false + false + + + 10 + 163 + 4 + true + true + false + false + false + + + 10 + 167 + 4 + true + true + false + false + false + + + 10 + 380 + 4 + true + true + false + false + false + + + 10 + 383 + 4 + true + true + false + false + false + + + 10 + 384 + 4 + true + true + false + false + false + + + 10 + 394 + 4 + true + true + false + false + false + + + 10 + 529 + 4 + true + true + false + false + false + + + 10 + 531 + 4 + true + true + false + false + false + + + 10 + 532 + 4 + true + true + false + false + false + + + 10 + 533 + 4 + true + true + false + false + false + + + 10 + 669 + 4 + true + true + false + false + false + + + 10 + 670 + 4 + true + true + false + false + false + + + 10 + 679 + 4 + true + true + false + false + false + + + 10 + 680 + 4 + true + true + false + false + false + + + 10 + 732 + 4 + true + true + false + false + false + + + 10 + 751 + 4 + true + true + false + false + false + + + 10 + 837 + 4 + true + true + true + true + false + + + 10 + 838 + 4 + true + true + true + true + false + + + 10 + 856 + 4 + true + true + true + true + false + + + 10 + 995 + 4 + true + true + false + false + false + + + 10 + 999 + 4 + true + true + false + false + false + + + 10 + 1025 + 4 + true + true + false + false + false + + + 10 + 1029 + 4 + true + true + false + false + false + + + 10 + 1034 + 4 + true + true + false + false + false + + + 10 + 1066 + 4 + true + true + false + false + false + + + 10 + 1075 + 4 + true + true + false + false + false + + + 10 + 1076 + 4 + true + true + false + false + false + + + 10 + 1078 + 4 + true + true + false + false + false + + + 10 + 1232 + 4 + true + true + false + false + false + + + 10 + 1236 + 4 + true + true + false + false + false + + + 10 + 1262 + 4 + true + true + false + false + false + + + 10 + 1266 + 4 + true + true + false + false + false + + + 10 + 1271 + 4 + true + true + false + false + false + + + 10 + 1303 + 4 + true + true + false + false + false + + + 10 + 1311 + 4 + true + true + false + false + false + + + 10 + 1312 + 4 + true + true + false + false + false + + + 10 + 1314 + 4 + true + true + false + false + false + + + 10 + 1502 + 4 + true + true + false + false + false + + + 10 + 1505 + 4 + true + true + false + false + false + + + 10 + 1506 + 4 + true + true + false + false + false + + + 10 + 1730 + 4 + true + true + false + false + false + + + 10 + 1756 + 4 + true + true + false + false + false + + + 10 + 1757 + 4 + true + true + false + false + false + + + 10 + 1829 + 4 + true + true + false + false + false + + + 10 + 1830 + 4 + true + true + false + false + false + + + 10 + 1831 + 4 + true + true + false + false + false + + + 10 + 1878 + 4 + true + true + false + false + false + + + 10 + 1922 + 4 + true + true + false + false + false + + + 10 + 1923 + 4 + true + true + false + false + false + + + 10 + 1932 + 4 + true + true + false + false + false + + + 10 + 1933 + 4 + true + true + false + false + false + + + 10 + 1968 + 4 + true + true + false + false + false + + + 10 + 1969 + 4 + true + true + false + false + false + + + 10 + 1987 + 4 + true + true + false + false + false + + + 10 + 2020 + 4 + true + true + false + false + false + + + 10 + 2021 + 4 + true + true + false + false + false + + + 10 + 2045 + 4 + true + true + false + false + false + + + 10 + 2108 + 4 + true + true + false + false + false + + + 10 + 2110 + 4 + true + true + false + false + false + + + 10 + 2113 + 4 + true + true + false + false + false + + + 10 + 2182 + 4 + true + true + false + false + false + + + 10 + 2183 + 4 + true + true + false + false + false + + + 10 + 2184 + 4 + true + true + false + false + false + + + 10 + 2196 + 4 + true + true + false + false + false + + + 10 + 2198 + 4 + true + true + false + false + false + + + 10 + 2202 + 4 + true + true + false + false + false + + + 10 + 2203 + 4 + true + true + false + false + false + + + 10 + 2204 + 4 + true + true + false + false + false + + + 10 + 2212 + 4 + true + true + false + false + false + + + 10 + 2214 + 4 + true + true + false + false + false + + + 10 + 2256 + 4 + true + true + false + false + false + + + 10 + 2257 + 4 + true + true + false + false + false + + + 10 + 2290 + 4 + true + true + false + false + false + + + 10 + 2294 + 4 + true + true + false + false + false + + + 10 + 2302 + 4 + true + true + false + false + false + + + 10 + 2343 + 4 + true + true + false + false + false + + + 10 + 2387 + 4 + true + true + false + false + false + + + 10 + 2410 + 4 + true + true + false + false + false + + + 10 + 2411 + 4 + true + true + false + false + false + + + 10 + 2424 + 4 + true + true + false + false + false + + + 10 + 2438 + 4 + true + true + false + false + false + + + 10 + 2439 + 4 + true + true + false + false + false + + + 10 + 2447 + 4 + true + true + false + false + false + + + 10 + 2465 + 4 + true + true + false + false + false + + + 10 + 2467 + 4 + true + true + false + false + false + + + 10 + 2470 + 4 + true + true + false + false + false + + + 10 + 2976 + 4 + true + true + false + false + false + + + 10 + 2978 + 4 + true + true + false + false + false + + + 10 + 3165 + 4 + true + true + false + false + false + + + 10 + 3166 + 4 + true + true + false + false + false + + + 10 + 3177 + 4 + true + true + false + false + false + + + 10 + 3195 + 4 + true + true + false + false + false + + + 10 + 3197 + 4 + true + true + false + false + false + + + 10 + 3210 + 4 + true + true + false + false + false + + + 10 + 3211 + 4 + true + true + false + false + false + + + 10 + 3229 + 4 + true + true + false + false + false + + + 11 + 1029 + 4 + false + true + true + true + false + + + 11 + 1444 + 4 + false + true + true + true + false + + + 0 + = + + + 1 + × + + + 2 + ÷ + + + 3 + + + + + 4 + - + + + 5 + ^ + + + 6 + ? + + + 1 + 2 + 1 + 1 + Running in Diagnostic Mode! Execution may be slow and/or excessive disk space may be consumed. + + + 2 + 3 + 3 + + + 3 + 3 + 3 + + + 4 + 3 + 1 + 1 + MT Schedule [New Entry Driver] is enabled but Generator [Max Units Built] is not defined. + + + 5 + 2 + 1 + 1 + Failed to complete solution table indexing {0}. Check the size of the solution database (2GB maximum). + + + 6 + 3 + 1 + 1 + The selected equilibrium model requires the definition of Company objects. + + + 7 + 2 + 1 + 1 + Optimizer returned the status: {0} + + + 8 + 4 + 1 + 1 + Region "{0}" [Capacity Reserves] are below Region [Min Capacity Reserves] by {1} MW. + + + 9 + 3 + 1 + 1 + Transmission [SCUC Enabled] selected but no Contingency objects are defined. + + + 10 + 3 + 3 + + + 11 + 2 + 1 + 1 + Failed to load data into database: {0}. Check the size of the solution database (2GB maximum for Microsoft Access database format). + + + 12 + 3 + 3 + + + 13 + 3 + 3 + + + 14 + 3 + 3 + + + 15 + 3 + 3 + + + 16 + 3 + 3 + + + 17 + 3 + 3 + + + 18 + 2 + 1 + 1 + Constraint "{0}" cannot include more than one Storage object. + + + 19 + 2 + 1 + 1 + Constraint "{0}" [RHS] (period type {1}) is too long for ST Schedule. This Constraint needs to be decomposed by turning on MT Schedule. + + + 20 + 3 + 3 + + + 21 + 3 + 1 + 1 + Constraint "{0}" [RHS] should be defined from the start of the planning horizon. + + + 22 + 4 + 1 + 1 + Reserve "{0}" has all generation below Reserve [Cut-Off Size] in {1} period(s). + + + 23 + 3 + 3 + + + 24 + 3 + 3 + + + 25 + 1 + 0 + 0 + {0} "{1}" {2} From = {2} To ({3}). + + + 26 + 3 + 3 + + + 27 + 3 + 3 + + + 28 + 3 + 3 + + + 29 + 3 + 1 + 1 + {0} "{1}" marginal efficiency is increasing between points {2} ({3} MW, {4}) and {5} ({6} MW, {7}). Consider setting Production [Heat Rate Error Method] = 'Allow Non-convex'. + + + 30 + 3 + 3 + + + 31 + 3 + 3 + + + 32 + 3 + 3 + + + 33 + 3 + 1 + 1 + Generator "{0}" [Offer Quantity] defined without Generator [Offer Price]. The default price of {1} is assumed. + + + 34 + 3 + 1 + 1 + Generator "{0}" [Offer Price] defined without Generator [Offer Quantity]. Zero quantity assumed. + + + 35 + 3 + 3 + + + 36 + 3 + 1 + 1 + Generator "{0}" [Fixed Load] will override Generator [Min Load]. + + + 37 + 3 + 3 + + + 38 + 3 + 3 + + + 39 + 3 + 3 + + + 40 + 3 + 3 + + + 41 + 3 + 3 + + + 42 + 2 + 1 + 1 + Solver {0}. + + + 43 + 3 + 1 + 1 + Line "{0}" [Min Rating] and Line [Max Rating] ({1}) imply {2} <= Line [Flow] <= {3} MW. + + + 44 + 3 + 3 + + + 45 + 2 + 0 + 0 + Variable "{0}" [Value] by {1} referenced but not defined. + + + 46 + 2 + 0 + 0 + RSI "{0}" Lines "{1}" does not import to/from the RSI Region. + + + 47 + 3 + 3 + + + 48 + 1 + 0 + 0 + Source database name not set. + + + 49 + 3 + 3 + + + 50 + 3 + 3 + + + 51 + 3 + 1 + 1 + Generator "{0}" [Pump Units] = {1}, cannot be greater than Generator [Units] = {2}. + + + 52 + 2 + 0 + 0 + Purchaser [Benefit Function Shape] must be set to "Quadratic" for the single-period Nash-Cournot. + + + 53 + 3 + 3 + + + 54 + 3 + 3 + + + 55 + 2 + 1 + 1 + License feature "{0}" is required but not available. + + + 56 + 1 + 0 + 0 + The license server returned the error: {0}. + + + 57 + 3 + 3 + + + 58 + 1 + 1 + 1 + Referenced external text file not found: {0}. + + + 59 + 1 + 0 + 0 + Market "{0}" has memberships to more than one class of object, but a Market can only involve one type. + + + 60 + 2 + 0 + 0 + Region "{0}" implied maximum offer price for dynamic bidding (Region [VoLL] or Region [Price Cap]) - Competition [Epsilon] < 0. + + + 61 + 3 + 3 + + + 62 + 3 + 3 + + + 63 + 3 + 3 + + + 64 + 3 + 3 + + + 65 + 3 + 3 + + + 66 + 3 + 3 + + + 67 + 2 + 0 + 0 + Constraint "{0}" cannot be conditional unless defining Constraint [RHS] of period type = "interval". + + + 68 + 3 + 3 + + + 69 + 3 + 3 + + + 70 + 3 + 3 + + + 71 + 1 + 0 + 0 + Out of Memory Exception reallocating buffer to {0} kB. + + + 72 + 1 + 0 + 0 + MOSEK encountered a fatal internal error and terminated abnormally. + + + 73 + 3 + 0 + 0 + {0} "{1}" initial conditions must include [{2}]. + + + 74 + 3 + 0 + 0 + Generator "{0}" fuel-specific heat rate functions {1} must all have the same form as the general heat rate. + + + 75 + 3 + 0 + 0 + Generator "{0}" fuel-specific heat rate functions {1} must all have the same form. + + + 76 + 3 + 3 + + + 77 + 3 + 3 + + + 78 + 2 + 0 + 0 + Generator "{0}" [Heat Rate] band count does not match Generator [Load Point] band count. + + + 79 + 2 + 0 + 0 + Generator "{0}" [Heat Rate Incr] band count does not match Generator [Load Point] band count. + + + 80 + 2 + 0 + 0 + Generator "{0}" does not define enough bands of Generator [Offer Quantity] for cumulative format (at least two required). + + + 81 + 2 + 0 + 0 + Generator "{0}" [Start Cost Time] must have same number of bands as Generator [Start Cost] and Generator Start Fuels [Offtake at Start] if defined. + + + 82 + 2 + 0 + 0 + Generator "{0}" number of bands for Generator [Rough Running Point] must match that of Generator [Rough Running Range]. + + + 83 + 3 + 3 + + + 84 + 2 + 0 + 0 + Generator "{0}" sum of Generator Fuels [Ratio] must be unity. + + + 85 + 2 + 1 + 1 + {0} "{1}" minimum operating level ({2}) should be less than or equal to maximum operating level ({3}). + + + 86 + 3 + 3 + + + 87 + 2 + 0 + 0 + Errors were detected in the efficiency function for {0} "{1}". Consider changing Production [Heat Rate Error Method]. + + + 88 + 1 + 0 + 0 + Out of Memory Exception reallocating cache to {0} kB. + + + 89 + 3 + 3 + + + 90 + 3 + 3 + + + 91 + 2 + 0 + 0 + Line "{0}" defined with both Line [Reactance] and Line [Susceptance] but only one should be used. + + + 92 + 3 + 3 + + + 93 + 2 + 0 + 0 + Market "{0}" should define equal numbers of bands for Market [Price] and Market [Quantity] points. + + + 94 + 3 + 3 + + + 95 + 2 + 0 + 0 + Solution status = {0}. + + + 96 + 2 + 0 + 0 + MLF "{0}" right-hand side term must be non-negative. + + + 97 + 3 + 3 + + + 98 + 3 + 3 + + + 99 + 3 + 3 + + + 100 + 2 + 0 + 0 + Flow Control "{0}" [Units] property cannot be dynamic in for Transmission [OPF Method] = "Large Scale". + + + 101 + 3 + 3 + + + 102 + 3 + 3 + + + 103 + 3 + 3 + + + 104 + 3 + 3 + + + 105 + 2 + 0 + 0 + Storage "{0}" [Energy Value] defined without Storage [Downstream Efficiency]. + + + 106 + 3 + 3 + + + 107 + 3 + 3 + + + 108 + 2 + 0 + 0 + Variable "{0}" [Profile] property defined with {1} band(s) but expected ≥ {2} when using Variable [Sampling Method] = "Bands As Samples". + + + 109 + 2 + 0 + 0 + Variable "{0}" [Min Value] must be less than or equal to Variable [Max Value]. + + + 110 + 3 + 1 + 1 + {0} "{1}" initial production level ({2}) is outside the feasible operating range ({3} - {4}). + + + 111 + 3 + 1 + 1 + {0} "{1}" initial units operating ({2}) is greater than the number of installed units ({3}). + + + 112 + 3 + 3 + + + 113 + 3 + 3 + + + 114 + 3 + 3 + + + 115 + 3 + 3 + + + 116 + 3 + 3 + + + 117 + 2 + 0 + 0 + Market "{0}" [Quantity] values must be monotonically non-decreasing. + + + 118 + 2 + 0 + 0 + Market "{0}" band count for Generator Heat Markets [Conversion Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 119 + 2 + 0 + 0 + Generator "{0}" band count for Generator Emissions [Production Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 120 + 3 + 3 + + + 121 + 3 + 3 + + + 122 + 3 + 3 + + + 123 + 2 + 0 + 0 + Constraint "{0}" [Decomposition Method] = "Price" cannot be used in combination with a Constraint [Penalty Price]. + + + 124 + 2 + 1 + 1 + MIP license is required, but no license is available for checkout-the linear relaxation will be reported. + + + 125 + 1 + 0 + 0 + Could not interpret the Condition "{0}". + + + 126 + 1 + 0 + 0 + Generator "{0}" cannot receive Generator [Heat Input] from itself. + + + 127 + 1 + 0 + 0 + Condition "{0}" cannot be conditional on itself (a member of its own Conditions collection). + + + 128 + 1 + 0 + 0 + Condition "{0}" conditional on Condition "{1}" which is itself conditional. + + + 129 + 1 + 0 + 0 + Condition "{0}" must not define Condition [Is Active] or a dynamic equation if it is dependent on other conditions. + + + 130 + 3 + 1 + 1 + Stochastic [Risk Sample Count] = {0} but no Variable objects are defined. + + + 131 + 3 + 3 + + + 132 + 3 + 3 + + + 133 + 3 + 1 + 1 + Generator "{0}" [Units Out] > Generator [Units] in {1} periods. + + + 134 + 3 + 1 + 1 + Line "{0}" [Units Out] > Line [Units] in {1} periods. + + + 135 + 2 + 1 + 1 + PASA must be enabled in order to use the MT Schedule capacity expansion algorithm. + + + 136 + 3 + 3 + + + 137 + 3 + 1 + 1 + {0} "{1}" injects at {2} nodes but does not define {0} Nodes [{3}] for Node "{4}". + + + 138 + 3 + 1 + 1 + Purchaser "{0}" offtakes at {1} nodes but does not define Purchaser Nodes [Load Participation Factor] for Node "{2}". + + + 139 + 3 + 3 + + + 140 + 3 + 3 + + + 141 + 1 + 0 + 0 + The chronological Horizon including look-ahead must be a subset of the planning horizon. + + + 142 + 2 + 0 + 0 + Region "{0}" [DSP Bid Quantity] band count ({1}) must be the same as Region [DSP Bid Price] band count ({2}). + + + 143 + 3 + 3 + + + 144 + 2 + 0 + 0 + Constraint "{0}" can define Constraint Generators [Generation Squared Coefficient] (for "{1}") only if it is a dynamic constraint. + + + 145 + 2 + 0 + 0 + Constraint "{0}" can define Constraint Generators [Generation SUM Squared Coefficient] (for "{1}") only if it is a dynamic constraint. + + + 146 + 1 + 0 + 0 + Region "{0}" defines a Region Reference Node "{1}" that is not inside the Region. + + + 147 + 1 + 0 + 0 + Region "{0}" defines a Region Reference Node "{1}" that is out-of-service. + + + 148 + 2 + 0 + 0 + Reserve "{0}" Nested Reserve "{1}" is of a different Reserve [Type], but must be the same type. + + + 149 + 2 + 0 + 0 + Reserve "{0}" Nested Reserve "{1}" must use a subset of the generators in the master reserve class. + + + 150 + 2 + 0 + 0 + Generator "{0}" cannot provide more response to Reserve "{1}" than Reserve "{2}" because the service is nested. + + + 151 + 2 + 0 + 0 + Reserve "{0}" has Nested Reserve "{1}" but is itself nested in Reserve "{2}". + + + 152 + 2 + 0 + 0 + Reserve "{0}" [Is Enabled] property can only be changed by Scenario. + + + 153 + 2 + 0 + 0 + Generator {0} [Start Profile] must have same number of bands as Generator [Start Cost]. + + + 154 + 2 + 0 + 0 + Generator {0} [Run Up Rate] must have same number of bands as Generator [Start Cost]. + + + 155 + 1 + 0 + 0 + The Horizon ({0} years) could not be factored by the given LT Plan [At a Time] ({1}) and LT Plan [Overlap] ({2}). + + + 156 + 2 + 0 + 0 + Constraint "{0}" defines Constraint [RHS] (period type = {1}) but uses coefficients that support Constraint [RHS Year] only. + + + 157 + 2 + 1 + 1 + Node "{0}" shift factors could not be computed due to an infeasibility in the Y-bus matrix. + + + 158 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Export Capacity Built Coefficient] together with Constraint Lines [Import Capacity Built Coefficient]. + + + 159 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Units Built Coefficient] together with Constraint Lines [Units Built in Year Coefficient]. + + + 160 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Units Retired Coefficient] together with Constraint Lines [Units Retired in Year Coefficient]. + + + 161 + 3 + 0 + 0 + Constraint "{0}" Generators "{1}" cannot define both Constraint Generators [Units Built Coefficient] together with Constraint Generators [Units Built in Year Coefficient]. + + + 162 + 3 + 0 + 0 + Constraint "{0}" Generators "{1}" cannot define both Constraint Generators [Units Retired Coefficient] together with Constraint Generators [Units Retired in Year Coefficient]. + + + 163 + 2 + 0 + 0 + Failed to fit polynomial to (x,y) coordinates of heat rate function for Generator "{0}". "{1}". + + + 164 + 3 + 1 + 1 + Non-physical losses detected on Line "{0}" in period ({1}). Flow {2}, Loss {3}. Consider changing Transmission [Detect Non-physical Losses] setting. + + + 165 + 3 + 3 + + + 166 + 3 + 1 + 1 + {0} "{1}" only has {2} of {3} units that define [{4}]. + + + 167 + 3 + 1 + 1 + Generator "{0}" outages were not written to text files because text input does not support multi-unit stations with partial outages. + + + 168 + 3 + 1 + 1 + Non-physical losses detected on Line "{0}" in period ({1}). Flow {2}, Loss {3}. Correction algorithm invoked. + + + 169 + 2 + 1 + 1 + The master solution database is missing. Looked for {0}. Database output has been disabled. + + + 170 + 2 + 1 + 1 + {0} "{1}" band ({2}) defines outage parameters but no outage duration function definition. + + + 171 + 3 + 1 + 1 + Node "{0}" [Phase Angle] is at an upper or lower bound in period {1}. + + + 172 + 3 + 3 + + + 173 + 3 + 1 + 1 + Constraint "{0}" Lines "{1}" has Constraint Lines [Flow Coefficient] and {2} defined. This coefficient will be ignored. + + + 174 + 3 + 1 + 1 + Constraint "{0}" Generators "{1}" has Constraint Generators [Reserve Provision Coefficient], but has no reserve memberships defined. This coefficient will be ignored. + + + 175 + 3 + 3 + + + 176 + 3 + 3 + + + 177 + 2 + 1 + 1 + The input data diagnostic file "{0}" could not be written. + + + 178 + 3 + 3 + + + 179 + 3 + 3 + + + 180 + 3 + 3 + + + 181 + 3 + 3 + + + 182 + 2 + 0 + 0 + Interface "{0}" limits imply Interface [Min Flow] {1} <= Interface [Flow] <= Interface [Max Flow] {2}. + + + 183 + 3 + 1 + 1 + Node "{0}" [Unserved Energy] in period {1} is above limit {2} MW by {3} MW due to a constraint infeasibility. + + + 184 + 1 + 0 + 0 + Region "{0}" must have at least one Node in service. + + + 185 + 1 + 0 + 0 + Generator "{0}" [Start Profile] has been defined as a constant value. Use the Timeslice field to define its start-up stages or use Generator [Run Up Rate] for a constant rate. + + + 186 + 2 + 0 + 0 + Generator "{0}" [Unit Commitment Optimality] = "Rounded Relaxation" is not compatible with Production [Unit Commitment Optimality]. + + + 187 + 1 + 0 + 0 + MT Schedule [Stochastic Method] and LT Plan [Stochastic Method] must both be set to "Deterministic" if either setting is "Deterministic". + + + 188 + 1 + 0 + 0 + ST Schedule [Stochastic Method] and LT Plan [Stochastic Method] must both be set to "Deterministic" if either setting is "Deterministic". + + + 189 + 2 + 0 + 0 + Failed to solve uplift. The solver returned solution status {0}. + + + 190 + 3 + 1 + 1 + Uplift was infeasible but successfully repaired. SMP may be outside the range defined by Region [Price Floor] and Region [Price Cap]. + + + 191 + 3 + 3 + + + 192 + 3 + 3 + + + 193 + 2 + 1 + 1 + Network separation is detected with Contingency "{0}". + + + 194 + 2 + 0 + 0 + {0} "{1}" [Mark-up Point] defined with {2} bands but {0} [Mark-up] is defined with {3} bands. + + + 195 + 2 + 0 + 0 + {0} "{1}" [Mark-up Point] defined with {2} bands but {0} [Bid Cost Mark-up] is defined with {3} bands. + + + 196 + 2 + 0 + 0 + Generator "{0}" defines up to {1} Generator [Units] and is a Reserve Contingency Generators for {2} Reserve objects but this membership is allowed only for single-unit Generator objects. For multi-unit use separate Generator objects. + + + 197 + 3 + 1 + 1 + Region/Zone "{0}" [Maintenance Factor] in step {1} accumulates to {2} but would normally sum to {3} which is the total number of hours in the step. + + + 198 + 3 + 1 + 1 + Node "{0}" [Dump Energy] in period {1} is above limit {2} MW by {3} MW due to a constraint infeasibility. + + + 199 + 3 + 1 + 1 + Multi-fuel CHP Generator "{0}" requires identical heat rate functions. Average heat rate at maximum power across defined fuels will be considered for heat production formulation. + + + 200 + 2 + 0 + 0 + Failed to correct non-physical flows. The solver returned solution status {0}. + + + 201 + 3 + 1 + 1 + Non-physical flow correction was infeasible but successfully repaired. + + + 202 + 3 + 1 + 1 + Constraint "{0}" skipped because its period type is too short for the resolution of {1}. + + + 203 + 3 + 1 + 1 + The Escalator [Compound Start Date] is later than the end of the horizon. The default date will be used ( {0} ). + + + 204 + 3 + 1 + 1 + The Escalator [Compound Start Date] is {0} years outside of the current horizon. + + + 205 + 2 + 1 + 1 + Generator "{0}" defined Generator Head Storage [Efficiency Point] (for "{1}") band={2} value={3} must be less than or equal to band={4} value={5}. + + + 206 + 1 + 0 + 0 + Variable "{0}" definition as a function of other Variable objects implies a circular reference. + + + 207 + 2 + 0 + 0 + Read {0} sample weights but expected {1}. + + + 208 + 2 + 1 + 1 + Line "{0}" flow limits must be defined when using Transmission [Loss Method] = "Piecewise Linear". Loss is turned off for this line. + + + 209 + 2 + 0 + 0 + {0} "{1}" [{2}] definition is ambiguous. The datum is defined both with the Escalator "{3}" and without. + + + 210 + 3 + 1 + 1 + Problem is infeasible. Solution status = {0}. + + + 211 + 1 + 0 + 0 + Failed to repair an infeasible problem. Solution status = {0}. + + + 212 + 2 + 1 + 1 + Failed to set user-defined solver parameter {0}. + + + 213 + 3 + 3 + 3 + Error reporting formulation diagnostics. {0} + + + 214 + 2 + 1 + 1 + No integer feasible solution exists. The linear solution will be reported. Solution status = {0}. + + + 215 + 2 + 1 + 1 + Generator "{0}" [Fuel Offtake] may be inaccurate in {1} periods due to tranche variables clearing out of order. Consider setting Generator [Formulate Non-convex]="Always". + + + 216 + 2 + 1 + 1 + Generator "{0}" [Unit Commitment Optimality] = "Rounded Relaxation" might violate [Min Up Time]/[Min Down Time] because Constraint Generators [Units Generating Coefficient] is defined. + + + 217 + 2 + 1 + 1 + Generator "{0}" defines [Commit] property which is incompatible with [Unit Commitment Optimality] = "Dynamic Program". The Generator will use the global commitment setting. + + + 218 + 1 + 0 + 0 + The "{0}" Region is missing its Reference Node membership, which is compulsory when using the [Aggregate Transmission] option. + + + 219 + 2 + 0 + 0 + {0} LOLP Target{1} might not be guaranteed in {2} of {3} periods. + + + 220 + 4 + 1 + 1 + Solution hierarchy computed {0} solution(s). No more feasible solutions exist. + + + 221 + 2 + 1 + 1 + There was an error writing the solution to the destination drive. The solution has been saved in the following location: {0} + + + 222 + 2 + 1 + 1 + There was a problem writing the zipped solution to the destination drive. The uncompressed solution has been saved in the following location: {0} + + + 223 + 2 + 1 + 1 + Matrix coefficients are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 224 + 2 + 1 + 1 + Variable objective function coefficients are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 225 + 2 + 1 + 1 + Variable bounds are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 226 + 2 + 1 + 1 + Constraint right-hand side coefficients are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 300 + 2 + 1 + 1 + Invalid token "{0}" in RHS expression for Row "{1}" + + + 301 + 1 + 0 + 0 + Error processing RPN expression for Row "{0}". {1} element(s) required in the stack to use the {2} operator + + + 302 + 2 + 1 + 1 + Expected no more than {0} element(s) to remain in the RPN stack, but found {1} after evaluating the expression for Row "{2}" + + + 3000 + 3 + 3 + + + 3001 + 3 + 3 + + + 3002 + 3 + 3 + + + 3003 + 1 + 1 + 1 + {0} but this collection must have exactly {1} member(s). + + + 3004 + 1 + 1 + 1 + {0} but this collection must have at least {1} member(s). + + + 3005 + 1 + 1 + 1 + {0} but this collection cannot have more than {1} member(s). + + + 3006 + 1 + 1 + 1 + Power Station "{0}" conflicts with a Generator of the same name. + + + 3007 + 4 + 1 + 1 + Skipped checking for missing files. + + + 3008 + 1 + 1 + 1 + File not found: {0} + + + 3009 + 4 + 1 + 1 + Skipped checking of memberships. + + + 3010 + 3 + 3 + + + 3011 + 3 + 3 + + + 3012 + 3 + 3 + + + 3013 + 1 + 1 + 1 + {0} objects are missing their system membership. + + + 3014 + 4 + 1 + 1 + Skipped checking of data against validation rules. + + + 3015 + 1 + 1 + 1 + {0} [{1}] band = {2} is defined multiple times with value {3}. + + + 3016 + 3 + 3 + + + 3017 + 1 + 1 + 1 + {0} [{1}] defined with value {2} but must be {3}. + + + 3018 + 1 + 1 + 1 + {0} [{1}] defined with value {2} and [Date From] = {3} after [Date To] = {4}. + + + 3019 + 1 + 1 + 1 + {0} [{1}] defined with multiple bands but this property cannot be multi-band. + + + 3020 + 1 + 1 + 1 + The input property [{0}] has been associated with the [{1}] collection, but this belongs to the [{2}] collection. Please use the [Check Database] option in the user interface before re-execution. + + + 3021 + 3 + 1 + 1 + {0}.{1} with parent "{2}" and child "{3}" Filename: "{4}" used to define {5} properties for the same object, but must only be used to define one property for any one object. + + + 3022 + 3 + 1 + 1 + {0}.{1} with parent "{2}" and child "{3}" band {4} uses Data File field in combination with Escalator and/or Condition and/or Variable and this is not supported. + + + 3023 + 3 + 3 + + + 3024 + 3 + 3 + + + 3025 + 3 + 3 + + + 3026 + 3 + 1 + 1 + Read {0} records(s) for object "{1}" in band {2}, but expected {3}. Default value of {4} assumed. File: "{5}". + + + 3027 + 3 + 1 + 1 + Profile {0} contains {1} zero values. + + + 3028 + 3 + 1 + 1 + Year ending: {0} skipped because the horizon does not completely span this year. + + + 3029 + 3 + 3 + + + 3030 + 3 + 1 + 1 + Data File [Shape Distortion] increased to: {0}. + + + 3031 + 3 + 1 + 1 + Data File [Energy] mismatch (under target) by {0} = {1}". + + + 3032 + 3 + 1 + 1 + Data File [Energy] mismatch (over target) by {0} = {1}. + + + 3033 + 2 + 1 + 1 + File "{0}" periods per day in file "{1}" must be a multiple of Horizon [Periods per Day] "{2}". + + + 3034 + 1 + 0 + 0 + MOSEK encountered a fatal internal error and terminated abnormally. + + + 3035 + 1 + 0 + 0 + The look-ahead in the chronological phase cannot have a higher resolution than the main horizon. + + + 3036 + 3 + 3 + + + 3037 + 2 + 0 + 0 + No delimiters found in header row of file {0}. + + + 3038 + 2 + 0 + 0 + Data for "{0}" not found in file "{1}" (assumed "Names in Columns" format). + + + 3039 + 1 + 0 + 0 + No header row found, or unable to recognise fields in the header. File "{0}". + + + 3040 + 2 + 0 + 0 + Value "{0}" for object "{1}" at line {2} in file "{3}" must be >= {4} + + + 3041 + 2 + 0 + 0 + Value "{0}" for object "{1}" at line {2} in file "{3}" must be <= {4} + + + 3042 + 2 + 0 + 0 + Viewing of Patterned file data is not currently supported prior to Model compilation. + + + 3043 + 3 + 1 + 1 + Read {0} records(s) for object "{1}" in band {2}, but expected {3}. File: "{4}". + + + 3044 + 1 + 0 + 0 + Error interpreting the header row of {0} "{1}". + + + 3045 + 1 + 0 + 0 + Error reading line {0} of {1} "{2}". + + + 3046 + 1 + 0 + 0 + Out of Memory Exception reading file: {0}. Tried to allocate {1} kB. + + + 3047 + 1 + 0 + 0 + Error interpreting the header row of {0}. + + + 3048 + 1 + 0 + 0 + General error reading line {0} of {1}. Periods per day = {2}. + + + 3049 + 1 + 0 + 0 + EEI File "{0}" has record length {1}, expected 80 or 82. + + + 3050 + 1 + 0 + 0 + Duplicate AM records for {0}. + + + 3051 + 1 + 0 + 0 + Duplicate PM records for {0}. + + + 3052 + 1 + 0 + 0 + {0} contained only {1} lines of data, expected {2}. {3} Check that the file is complete and that the Horizon [Periods per Day] is correct. + + + 3053 + 1 + 0 + 0 + {0}Specified Data File [Base Profile] "{1}" not found. + + + 3054 + 1 + 0 + 0 + {0}Invalid fiscal year range: {1}-{2}. + + + 3055 + 1 + 0 + 0 + Error in Data File [Holiday]. Expected {0} dates per holiday but got {1}. + + + 3056 + 1 + 0 + 0 + Source profile contained too few records. {0}. + + + 3057 + 1 + 0 + 0 + Error interpreting Holiday on band {0}. Could not locate base profile holiday start date. + + + 3058 + 1 + 0 + 0 + Error interpreting Holiday on band {0}. Could not locate holiday start date in year {1}. + + + 3059 + 1 + 0 + 0 + {0}Could not propagate profile year to period {1}. + + + 3060 + 2 + 0 + 0 + Solution status:= {0}. + + + 3061 + 1 + 0 + 0 + Cannot create the profile using the specified parameters. The problem is infeasible. Adjust the parameters and try again. + + + 3062 + 3 + 3 + + + 3063 + 1 + 0 + 0 + Database version number "{0}" does not match engine version number "{1}". + + + 3064 + 1 + 0 + 0 + {0} validation errors were detected. Please correct these errors before running the simulation. + + + 3065 + 1 + 0 + 0 + Selected Model and/or Project objects are not configured with a Horizon object. + + + 3066 + 3 + 3 + + + 3067 + 3 + 3 + + + 3068 + 2 + 0 + 0 + Capacity Factor constraints cannot be defined with period type of interval. + + + 3069 + 3 + 3 + + + 3070 + 3 + 3 + + + 3071 + 2 + 0 + 0 + Power Station "{0}" attempts to aggregate [ {1} ] with {2} bands on [ {3} ("{4}").{5} ("{6}") ] but {7} on the first member. + + + 3072 + 1 + 0 + 0 + ST Schedule must begin inside the planning Horizon. + + + 3073 + 1 + 0 + 0 + ST Schedule must run inside the planning Horizon. + + + 3074 + 1 + 0 + 0 + Horizon [Typical Week] does not support running '{0}' steps. + + + 3075 + 1 + 0 + 0 + For Horizon [Typical Week] mode ST Schedule must span one week, e.g. 1 step of 1 week, 7 steps of 1 day, 168 steps of 1 hour, etc. + + + 3076 + 1 + 0 + 0 + Horizon contained no months with specified typical week index. + + + 3077 + 1 + 0 + 0 + Invalid Horizon [Chrono Period From] option: {0}. Expected an index between 1 and {1}. + + + 3078 + 1 + 0 + 0 + Invalid Horizon [Chrono Period To] option: {0}. Expected an index between 1 and {1}. + + + 3079 + 1 + 0 + 0 + Invalid date range {0} to {1}. + + + 3080 + 2 + 1 + 1 + The step settings for this phase cover {0} intervals out of {1} in the horizon. No results will be calculated for the last {2} intervals. + + + 3081 + 3 + 3 + + + 3082 + 1 + 0 + 0 + Internal Error: ParsePattern() expected result array of rank 1. + + + 3083 + 3 + 3 + + + 3084 + 2 + 0 + 0 + Empty statement found in Timeslice "{0}". + + + 3085 + 2 + 0 + 0 + Timeslice "{0}" statement contains no identifier. + + + 3086 + 2 + 0 + 0 + Invalid month range in Timeslice "{0}". + + + 3087 + 2 + 0 + 0 + Invalid day of month range in Timeslice "{0}". + + + 3088 + 2 + 0 + 0 + Invalid day of week range in Timeslice "{0}". + + + 3089 + 2 + 0 + 0 + Invalid hour range in Timeslice "{0}". + + + 3090 + 2 + 0 + 0 + Invalid period range in Timeslice "{0}". + + + 3091 + 2 + 0 + 0 + Could not parse Timeslice statement "{0}". + + + 3092 + 2 + 0 + 0 + Unknown identifier "{0}" in Timeslice statement "{1}". + + + 3093 + 2 + 0 + 0 + Could not interpret the statement "{0}" in the Timeslice "{1}". + + + 3094 + 1 + 0 + 0 + Could not open: {0} It may be in use by another process. + + + 3095 + 2 + 0 + 0 + File "{0}" contains no data. + + + 3096 + 2 + 0 + 0 + Invalid data found at line {0} of file {1}. + + + 3097 + 2 + 1 + 1 + Cannot aggregate {0} for {1} "{2}" with child "{3}", because only {4} of the {5} components have that type of membership. + + + 3098 + 2 + 1 + 1 + Cannot aggregate {0} for {1} "{2}" with parent "{3}", because only {4} of the {5} components are included in that type of membership. + + + 3099 + 3 + 3 + + + 3100 + 3 + 3 + + + 3101 + 3 + 3 + + + 3102 + 3 + 3 + + + 3103 + 1 + 0 + 0 + The property {0} {1} [{2}] has the Condition "{3}" defined that does not exist. + + + 3104 + 1 + 1 + 1 + The Region "{1}" defines Region Reference Node of "{0}" but this is located in Region "{2}". + + + 3105 + 1 + 0 + 0 + Escalator "{0}" cannot define Escalator [Index] together with Escalator [Compound Index]. + + + 3106 + 2 + 1 + 1 + Data File line {0} contains {1} band(s) of data for object "{2}" but expected {3} bands. File "{4}". + + + 3107 + 1 + 0 + 0 + Escalator "{0}" cannot define Escalator [Compound Index] for both period types "{1}" and "{2}". + + + 3108 + 1 + 1 + 1 + Report "{0}" {1} [{2}] cannot be reported by period. + + + 3109 + 1 + 1 + 1 + Report "{0}" {1} [{2}] cannot be reported in summary. + + + 3110 + 1 + 1 + 1 + Report "{0}" {1} [{2}] is not reported in {3} simulation phase. + + + 3111 + 1 + 0 + 0 + The look-ahead in the chronological phase ({0} periods per day) must divide the planning horizon resolution ({1} periods per day). + + + 3112 + 1 + 0 + 0 + DATETIME field cannot be combined with YEAR, MONTH, DAY, or PERIOD. File "{0}". + + + 3113 + 1 + 0 + 0 + Data File line {0} defines invalid date YEAR={1}, MONTH={2}, DAY={3}. Conversion error message ="{4}". File "{5}". + + + 3114 + 1 + 0 + 0 + {0} [Blocks] = {1} cannot be greater than the number of intervals in a {2} = {3}. + + + 3115 + 1 + 0 + 0 + Generator "{0}" has memberships to more than one enabled Power Station objects. + + + 3116 + 2 + 0 + 0 + Data File line {0} defines an invalid date ( {1} ) with {2} culture settings. File "{3}". + + + 3117 + 2 + 0 + 0 + Failed to interpret the Timeslice "{0}" which appears to have invalid meta-patterns related to Timeslice "{1}". + + + 3118 + 2 + 0 + 0 + Generator "{0}" was not located in the {1} model "{2}". + + + 3119 + 2 + 0 + 0 + The interleaved property {0}.[{1}] is invalid. + + + 3120 + 3 + 3 + + + 3121 + 2 + 1 + 1 + The Model [Random Number Seed] property has not been set. The number {0} will be used. Variable samples and outage patterns in this simulation will repeat only if this same seed is set. + + + 3122 + 2 + 1 + 1 + Timeslice "{0}" is used but does not include any time periods. You should define the Timeslice [Include] property. + + + 3123 + 2 + 0 + 0 + Unable to run the interleave process due to invalid settings. Server stochastic mode [{0}] with {1} sample(s) is not consistent with the client stochastic mode [{2}] with {3} sample(s). + + + 3124 + 2 + 1 + 1 + The marginal unit diagnostic has skipped Region "{0}" because the reference node "{1}" is not a load node. + + + 3128 + 1 + 0 + 0 + Cannot fit {0} periods per {1} while pinning the selected number points. Either increase the number of periods or remove the point pinning. + + + 3129 + 1 + 0 + 0 + Generator "{0}" band count for Generator Fuels [Heat Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 3130 + 1 + 0 + 0 + Decision Variable "{0}" Objective Function Coefficient period type "{1}" is not consistent with Definition "{2}". + + + 3131 + 2 + 1 + 1 + Decision Variable "{0}" Objective Function Coefficient period type {1} is too long for ST Schedule. + + + 3132 + 2 + 1 + 1 + The specified output path and file name are too long. The solution will be written to the following temporary location: {0} + + + 3133 + 2 + 1 + 1 + OpenPLEXOS {0}. + + + 3134 + 2 + 0 + 0 + Conflict detected on Decision Variable {0} bounds, lower bound = {1}, upper bound = {2}, type = {3} + + + 3135 + 2 + 1 + 1 + Branch "{0}" NodeFrom and NodeTo are both defined as "{1}". It is dropped from simulation. + + + 3136 + 1 + 0 + 0 + Cannot connect Storage objects to Water Node objects when using "Energy" Hydro Model setting. + + + 3137 + 2 + 1 + 1 + File "{0}" contains {1} repeated values. + + + 3138 + 1 + 0 + 0 + Line "{0}" has [Max Flow] lower than [Min Flow]; [Max Flow] = "{1}" < [Min Flow] = "{2}". + + + 3139 + 2 + 1 + 1 + Property {0} is dropped because the interval length is set to {1}. + + + 3140 + 2 + 0 + 0 + Could not interpret the statement "{0}" in the Timeslice {1}. + + + 3141 + 2 + 1 + 1 + MT Schedule will run in one step for the Hanging Branches Rolling Horizon solution method. + + + 3142 + 4 + 1 + 1 + Skipped validation of the report selections. + + + 3143 + 1 + 0 + 0 + Horizon [Typical Week] mismatch to the start of the planning horizon. + + + 3144 + 2 + 1 + 1 + Constraint "{0}" Gas Fields "{1}" defines [End Volume Coefficient] and {2}. The latter coefficient will be ignored. + + + 3145 + 1 + 0 + 0 + Unable to formulate constraints for Base Gas Contract "{0}". ST schedule must span 365 days if no LT plan or MT schedule is enabled. + + + 3146 + 2 + 1 + 1 + Unable to formulate constraints for Base Gas Contract "{0}" for {1} phase. Contract will be treated as Swing contract for the current phase. + + + 3147 + 2 + 1 + 1 + Gas Contract "{0}" has memberships with multiple classes. Gas Node memberships will be ignored. + + + 3148 + 2 + 1 + 1 + Generator "{0}" cannot define a transition with itself. This transition membership has been removed. + + + 3149 + 2 + 1 + 1 + Gas Pipelines mapped to Gas Capacity Release Offer "{0}" do not form a path. + + + 3150 + 2 + 1 + 1 + Unable to formulate constraints for Base Gas Capacity Release Offer "{0}" for {1} phase. Release type will be treated as swing for the current phase. + + + 3151 + 2 + 1 + 1 + Gas Capacity Release Offer "{0}" has memberships with multiple classes. Gas pipelines memberships will be used and other memberships will be ignored. + + + 3152 + 2 + 1 + 1 + Gas Capacity Release Offer "{0}" has no memberships assigned to it. + + + 3153 + 2 + 1 + 1 + Maximum daily take for gas contract "{0}" is less than percentage of demand from all demand in this gas contract. + + + 3154 + 2 + 1 + 1 + Internal VoLL for region "{0}" must increase with increasing internal VoLL level. + + + 3155 + 2 + 1 + 1 + Scenario Tree: Globals [Hanging Branches Historical Year Start] is not defined. Hanging Branches Sample Reduction will be run automatically. + + + 3156 + 1 + 0 + 0 + Scenario Tree: Number of Hanging Branches {0} should be less than the number of historical years {1}. + + + 3157 + 1 + 0 + 0 + Scenario Tree: Globals [Hanging Branches Historical Year Start] data are invalid, please try using [Hanging Branches Sample Reduction]. + + + 3159 + 2 + 1 + 1 + Gas Storage has memberships with multiple gas nodes that each gas node has weather station connected. Only first weather station (connected to first gas node) will be used. + + + 3160 + 2 + 1 + 1 + Gas Contract has memberships with multiple gas nodes that each gas node has weather station connected. Only first weather station (connected to first gas node) will be used. + + + 3161 + 1 + 1 + 1 + The Generator [Outage Rating] for "{0}" is larger than or equal to its rated capacity in certain periods. Generator [Units Out] will not be applied to those periods. + + + 3162 + 3 + 1 + 1 + {0} "{1}" doesn't define property {2}. The preschedule for the object will be ignored. + + + 3163 + 1 + 1 + 1 + LT Plan specified [Allow Capacity Sharing] but none of the Regions or Zones have capacity reserve inputs. Capacity will not be shared except as specified in Line [Firm Capacity]. + + + 3164 + 1 + 1 + 1 + Constraint "{0}" RHS Hour is longer than the interval length of {1} hours. The Constraint will be excluded. Try using RHS instead. + + + 3165 + 1 + 0 + 0 + Variable '{0}' is configured for {1} sampling. The sampling method needs to be set to '{2}'. + + + 3200 + 1 + 0 + 0 + Could not interpret Variable "{0}" ML model schema column "{1}". Expected Collection_Name_Property. + + + 3201 + 1 + 0 + 0 + Could not interpret the class name "{0}" in the Variable "{1}" ML model schema column name "{2}" + + + 3202 + 1 + 0 + 0 + Could not interpret the "{0}" object name "{1}" in Variable "{2}" ML model schema column name "{3}" + + + 3203 + 1 + 0 + 0 + Could not interpret the property name "{0}" in Variable "{1}" ML model schema column name "{2}" + + + 3204 + 2 + 1 + 1 + The region {0} cannot belong to two or more decomposition groups. + + + 3205 + 1 + 0 + 0 + Error during the decomposition simulations. Unable to create final solution file. + + + 3206 + 2 + 1 + 1 + Geographical decomposition feature has been disabled. {0} + + + 3207 + 2 + 1 + 1 + Expansion file '{0}' does not exist. + + + 3208 + 2 + 0 + 0 + Gas Storage "{0}" [Injection Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3209 + 2 + 0 + 0 + Gas Storage "{0}" [Withdrawal Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3210 + 2 + 0 + 0 + Gas Storage "{0}" [Dispatch Injection Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3211 + 2 + 0 + 0 + Gas Storage "{0}" [Dispatch Withdrawal Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3212 + 2 + 0 + 0 + Gas Storage "{0}" sum of [Injection Withdrawal Charge Level] bands is "{1}"% but must sum to 100%. + + + 3213 + 2 + 1 + 1 + The value could not be calculated because "{0}" >= "{1}". + + + 3214 + 2 + 1 + 1 + The factorial for "{0}" could not be calculated. + + + 3215 + 2 + 1 + 1 + The total share of a vehicle at any particular interval can not be more than 1. The share is redistributed accordingly, so that the total share is equal to 1. + + + 3216 + 3 + 1 + 1 + Input time series for variable "{0}" is not stationary, PARMA fitting for it might not be accurate! + + + 3219 + 1 + 0 + 0 + The header column {0} in file "{1}" is not a valid column type. + + + 3220 + 1 + 0 + 0 + License unavailable for the following classes: {0}. + + + 3221 + 2 + 1 + 1 + Interleave configuration is ambiguous after generic object compilation. Collection IDs {0} each report "{1}". + + + 3222 + 2 + 1 + 1 + Max Ramp {0} for {1} is not available in Sampled Chronology. + + + 3223 + 3 + 1 + 1 + The total Gas Demand.Gas Node Demand Participation Factor does not sum to 1.0. Gas Demand: {0}, sum of Demand Participation Factor: {1}. + + + 3224 + 2 + 1 + 1 + Scenario Tree: Globals Hanging Branches tree settings are ignored in the following cases: 1) LT/MT phase is not running Stochastic mode, or 2) the horizon is too short for running a multi-stage optimization, or 3) sample reduction is required for the stochastic object. + + + 3226 + 2 + 1 + 1 + Scenario Tree: Globals [Full Branches Sample Reduction] is disabled. Number of Full and Hanging Branches {0} needs to be less than the number of historical years {1}. + + + 3227 + 3 + 1 + 1 + There is a mismatch between the number of offer quantity bands ({0}) and the number of bid-cost mark-up bands ({1}) for {2}. + + + 3228 + 2 + 1 + 1 + Constraint "{0}" is too long for ST Schedule. This constraint will be prorated each step. + + + 3229 + 1 + 0 + 0 + Circular Heat Input memberships detected for the following Generators: {0}, {1}. + + + 3230 + 2 + 1 + 1 + Constraint {0} defines [{1}] for Vehicle {2}. Vehicle [Max Discharge Rate] is zero or does not formulate storage (simple model). Coefficient will be ignored. + + + 3231 + 2 + 1 + 1 + Market "{0}" interacts with multiple classes ({1}). Ensure sales in this market correspond to one physical quantity (electricity, reserve capacity, water etc.). + + + 3232 + 1 + 1 + 1 + Disabling Transmission Aggregation because Kron-reduction has been enabled. + + + 3233 + 2 + 1 + 1 + Global Sampling File has been entered, but file {0} cannot be found. Sample reduction will be performed automatically. + + + 3234 + 1 + 0 + 0 + Invalid inputs for sampled chronology. Sampling interval type, sample type or reduced sample count of the {0} object should match that in the sampling file {1}. + + + 3235 + 2 + 0 + 0 + Property cannot be interleaved: {0}. All Constraints group properties are compiled to constraint objects before execution. + + + 3236 + 2 + 1 + 1 + Line "{0}" is assumed out-of-service because it is an unconstrained DC link. + + + 3237 + 2 + 1 + 1 + Constraint "{0}" cannot have more than one negative Decision Variable [Value Squared Coefficient] defined. + + + 3238 + 2 + 1 + 1 + Constraint "{0}" Decision Variable "{1}" [Value Squared Coefficient] should not be positive when a negative value is defined. + + + 3239 + 2 + 1 + 1 + Constraint "{0}" Decision Variable "{1}" [Lower Bound] should not be negative when its [Value Squared Coefficient] defined as a negative value. + + + 3240 + 2 + 1 + 1 + Constraint "{0}" [Sense] should be "<=" when Decision Variable [Value Squared Coefficient] is defined. + + + 3241 + 2 + 1 + 1 + Constraint "{0}" [LHS Type] should be "SUM" when Decision Variable [Value Squared Coefficient] is defined. + + + 3242 + 2 + 1 + 1 + Constraint "{0}" [RHS] should be zero when a negative Decision Variable [Value Squared Coefficient] is defined. + + + 3243 + 2 + 1 + 1 + Constraint "{0}" should not define a negative Decision Variable [Value Squared Coefficient] when other linear terms are defined. + + + 3244 + 2 + 1 + 1 + Both the Rating Factor and Max Capacity have values that vary over time for unit "{0}". This may cause the sampled available energy to not match expected results when percentage inputs are set to be scaled. + + + 3245 + 2 + 1 + 1 + Charging Station "{0}" defines [Deferrable Load] but no simple [Fixed Load] Vehicles are connected. + + + 3246 + 1 + 0 + 0 + Installed capacity exceeds expansion capacity for expansion candidate {0} "{1}". + + + 3247 + 2 + 1 + 1 + Large number of potential operating units for Generator "{0}" which models unit-by-unit commitment. High memory usage for the optimization may result. + + + 3248 + 1 + 0 + 0 + Scenario Tree: Stochastic [Stages Period Type] = "{0}" is not implemented for Hanging Branch trees. + + + 3249 + 3 + 1 + 1 + Financial coefficient [{0}] defined in non-price prescribed context and will be ignored. Constraint "{1}", object "{2}". + + + 3250 + 2 + 0 + 0 + Reliability {0} risk metric has decreased after Generator removal, no EFC convergence possible. Consider increasing VoLL or decreasing MIP gap. + + + 3251 + 2 + 0 + 0 + Constraint {1} has a period type {0} that is inconsistent with expansion period type {2}. + + + 3252 + 2 + 0 + 0 + Variable {0} is being referenced from its Variables - {1} - expression creating a circular reference error. + + + 3253 + 1 + 0 + 0 + Minimum retirement capacity exceeds capacity available for retirement for {0} "{1}". + + + 3254 + 3 + 1 + 1 + Unable to locate the Variable "{0}". + + + 3255 + 2 + 1 + 1 + Solver ran out of memory during optimize, repair or load of task {0}. + + + 3256 + 2 + 1 + 1 + Nodes* memberships detected with non-Nodal Transmission Detail. Phase: {0}. + + + 3257 + 1 + 0 + 0 + Incorrect use of Planning Horizon Lookahead Count detected. The attribute is intended for use with the MT Schedule Stochastic Methods Rolling Horizon or SDDP. + + + 3258 + 3 + 1 + 1 + Expansion optimality for {0} is Linear. Constraint {1} is dropped because integer builds are required for [Built Coefficient]. + + + 3259 + 3 + 1 + 1 + The required number of LDC blocks cannot be created with the input Global slicing block settings. + + + 3260 + 2 + 1 + 1 + Object "{0}" defines [{1}] without [{2}]. + + + 3261 + 3 + 1 + 1 + LT Plan Decomposition is not allowed for Fitted Chronology when the Overlap > 0. Decomposition has been reset to 1. + + + 1 + Popular + + + 2 + Ancillary Services + + + 4 + Capacity + + + 8 + Capacity Expansion + + + 16 + CCGT + + + 32 + CHP + + + 64 + Competition + + + 128 + Constraints + + + 256 + Conversions + + + 512 + Decomposition + + + 1024 + Demand + + + 2048 + Diagnostic + + + 4096 + Efficiency + + + 8192 + Emissions + + + 16384 + End Effects + + + 32768 + Fixed Cost + + + 65536 + Geospatial + + + 131072 + Heat + + + 262144 + Hydro + + + 524288 + Initial Conditions + + + 1048576 + Load + + + 2097152 + Losses + + + 4194304 + Offers and Bids + + + 8388608 + On/Off Switches + + + 16777216 + Outages + + + 33554432 + Performance + + + 67108864 + Pricing + + + 134217728 + Pumped Storage + + + 268435456 + Wind + + + 536870912 + Semi-Variable Cost + + + 1073741824 + Shortage + + + 2147483648 + Start + + + 4294967296 + Stochastic + + + 8589934592 + Stop + + + 17179869184 + Storage + + + 34359738368 + Power Flow + + + 68719476736 + Unit Commitment + + + 137438953472 + Variable Cost + + + 274877906944 + Risk + + + 549755813888 + Water + + \ No newline at end of file diff --git a/src/plexosdb/config/master_12.0R3_btu.xml b/src/plexosdb/config/master_12.0R3_btu.xml new file mode 100755 index 0000000..70c3425 --- /dev/null +++ b/src/plexosdb/config/master_12.0R3_btu.xml @@ -0,0 +1,219660 @@ + + + 1 + 2 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 2 + 2 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 3 + 4 + 1 + Unit + 0 + 0 + 0;"-";4;"kg";5;"t";6;"kt";7;"Mt";8;"Gt";9;"ton";23;"L";24;"kL";25;"ML";26;"GL";27;"m³";28;"km³";29;"CMD";30;"gal";31;"bbl";32;"ft3";33;"MCF";34;"MMCF";35;"MTPA";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";53;"TOE";54;"kTOE";55;"MTOE";56;"kcal";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT" + true + true + 2367 + Unit the fuel is measured in + true + + + 4 + 4 + 2 + Energy Density + 85 + 0 + true + true + 2368 + Energy per unit of the fuel + true + + + 5 + 6 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 6 + 6 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 7 + 7 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 8 + 7 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 9 + 9 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 10 + 9 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 11 + 24 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 12 + 24 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 13 + 34 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 14 + 34 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 15 + 35 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 16 + 35 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 17 + 36 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 18 + 36 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 19 + 37 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 20 + 37 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 21 + 37 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 22 + 37 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 23 + 38 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 24 + 38 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 25 + 38 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 26 + 38 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 27 + 39 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 28 + 39 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 29 + 40 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 30 + 40 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 31 + 40 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 32 + 40 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 33 + 41 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 34 + 41 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 35 + 41 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 36 + 41 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 37 + 42 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 38 + 42 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 39 + 42 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 40 + 42 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 41 + 43 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 42 + 43 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 43 + 44 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 44 + 44 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 45 + 46 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 46 + 46 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 47 + 47 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 48 + 47 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 49 + 48 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the Gas Path Is Enabled + 800000 + true + + + 50 + 49 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 51 + 49 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 52 + 51 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 53 + 51 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 54 + 53 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 55 + 53 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 56 + 54 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 57 + 54 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 58 + 55 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 59 + 55 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 60 + 57 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 61 + 57 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 62 + 59 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 63 + 59 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 64 + 60 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 65 + 60 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 66 + 63 + 1 + Unit + 0 + 0 + 0;"-";1;"m";2;"km";3;"Gkm";4;"kg";5;"t";6;"kt";7;"Mt";8;"Gt";9;"ton";10;"s";11;"min";12;"hr";13;"day";14;"week";15;"°C";16;"°F";17;"HDD";18;"CDD";19;"m²";20;"ha";21;"kha";22;"km2";23;"L";24;"kL";25;"ML";26;"GL";27;"m³";28;"km³";29;"CMD";30;"gal";31;"bbl";32;"ft3";33;"MCF";34;"MMCF";35;"MTPA";36;"kPa";37;"bar";38;"psi";39;"kW";40;"MW";41;"GW";42;"TW";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";49;"kWh";50;"MWh";51;"GWh";52;"TWh";53;"TOE";54;"kTOE";55;"MTOE";56;"kcal";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT" + true + true + 2367 + Unit the Commodity is measured in + true + + + 67 + 63 + 2 + Energy Density + 85 + 0 + true + true + 2368 + Energy per unit of the Commodity + true + + + 68 + 63 + 3 + Unit Type + 0 + 0 + In (0,1) + 0;"Quantity";1;"Rate" + true + true + 2326 + Convention for reporting of Commodity at the interval level + true + + + 69 + 63 + 4 + Intrinsic + 0 + 0 + In (0,1,2,3,4) + 0;"None";1;"Electricity";2;"Heat";3;"Gas";4;"Water" + true + true + 2862 + Intrinsic Commodity + true + + + 70 + 65 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 71 + 65 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 72 + 65 + 3 + Capacity Basis + 0 + 1 + In (0,1) + 0;"Input";1;"Output" + true + true + 2467 + The basis for capacity-related properties where "Input" refers to the Primary Input and "Output" refers to the Primary Output + true + + + 73 + 69 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 74 + 69 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 75 + 71 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 76 + 71 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 77 + 73 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 78 + 73 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 79 + 73 + 3 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + false + true + 810 + If Market [Buy/Sell Unit] properties act like unit commitment or apply independently every period. + true + + + 80 + 74 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the primary commodity is measured in + true + + + 81 + 74 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the primary commodity + true + + + 82 + 76 + 1 + Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the Transport Path Is Enabled + 800000 + true + + + 83 + 79 + 1 + Type + 0 + 0 + In (0,1,2,3,4) + 0;"Continuous";1;"Integer";2;"Binary";3;"Semi-continuous";4;"Semi-integer" + false + true + 927 + Type of decision variable (continuous or integer). + true + + + 84 + 79 + 2 + Time Lag + 0 + 0 + false + true + 1352 + Time lag for terms in the generic decision variable definition. + true + + + 85 + 79 + 3 + Time Invariant + 0 + 1 + In (0,1,2,3) + 0;"None";1;"Bounds";2;"Cost";3;"All" + false + true + 1498 + Controls which aspects of the generic decision variable represent time-invariant values. + true + + + 86 + 81 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the Data File is enabled for build in the next pass + 800000 + true + + + 87 + 81 + 2 + Growth Period + 0 + 4 + In (1,3,4,7) + 1;"Day";3;"Month";7;"Quarter";4;"Year" + false + true + 877 + Cycle over which the growth algorithm matches energy targets (day, month, year, quarter) + true + + + 88 + 81 + 3 + Method + 0 + 1 + In (0,1,2,3) + 0;"None";1;"Linear";2;"Quadratic";3;"Custom" + false + true + 471 + Method used to align maximum (and minimum if defined) and energy values + true + + + 89 + 81 + 4 + Relative Growth at Min + 12 + 0 + false + true + 675 + Relative growth at the lowest end of the LDC for Method = Quadratic + true + + + 90 + 81 + 5 + Shape Distortion + 0 + 0 + >=0 + false + true + 1287 + Distortion of the original duration curve shape as a function of the difference in maximum and energy growth rates. + true + + + 91 + 81 + 6 + Decimal Places + 0 + 0 + >=0 + false + true + 129 + Number of decimal places in output written to text files + true + + + 92 + 81 + 7 + Missing Value Method + 0 + 0 + In (0,1,2) + 0;"Last Value";1;"Zero";2;"Default Value" + false + true + 928 + Method used to fill missing values when reading Data Files + true + + + 93 + 81 + 8 + Periods per Day + 0 + 0 + Between 0 And 86400 + false + true + 606 + Number of periods per day for Data Files using the Period column + true + + + 94 + 81 + 9 + Upscaling Method + 0 + -1 + In (-1,0,1,2) + -1;"Auto";0;"Step";1;"Interpolate";2;"Boundary Interpolate" + false + true + 1299 + Method used to upscale data e.g. from hourly to 5-minute resolution. + 100 + true + + + 95 + 81 + 10 + Downscaling Method + 0 + -1 + In (-1,0,1,2,3,4) + -1;"Auto";0;"Average";1;"First";2;"Last";3;"Max";4;"Min" + false + true + 1300 + Method used to downscale data e.g. from 5-minute to hourly resolution. + 100 + true + + + 96 + 81 + 11 + Datetime Convention + 0 + 0 + In (0,1) + 0;"Beginning of Period";1;"End of Period" + false + true + 1344 + Convention used when reading DATETIME. + true + + + 97 + 81 + 12 + Locale + 0 + 0 + >=0 + false + true + 1345 + The numeric index of the locale that should be used to read the file. + true + + + 98 + 81 + 13 + Time Shift + 6 + 0 + false + true + 1771 + Number of hours to shift data in time when interpreting dates where a positive value means the data are from a time zone that is behind the 'reference' time zone. + true + + + 99 + 81 + 14 + Week Beginning + 0 + 0 + Between -1 And 7 + false + true + 857 + Start day for mapping file data to weeks (0=automatic, 1-7=weekday, -1=hydro weeks) + true + + + 100 + 81 + 15 + Historical Sampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + false + true + 1906 + Sample data from this file between the Year From and Year To + true + + + 101 + 81 + 16 + Historical Year From + 0 + 0 + >=0 + false + true + 1907 + First year read for historical sampling + true + + + 102 + 81 + 17 + Historical Year To + 0 + 0 + >=0 + false + true + 1908 + Last year read for historical sampling + true + + + 103 + 81 + 18 + Historical Year Start + 0 + 0 + >=0 + false + true + 1909 + Start year for historical sampling within the range Year From and Year To + true + + + 104 + 81 + 19 + Historical Year Ending + 0 + 12 + Between 1 And 12 + false + true + 1917 + Month that years end in the historical data + true + + + 105 + 81 + 20 + Historical Period Type + 0 + 2 + In (2,3) + 2;"Week";3;"Month" + false + true + 1910 + Take samples at each of these period types + true + + + 106 + 81 + 21 + Base Year + 0 + 0 + >=0 + false + true + 1956 + Base year for mapping data from a file with month, day and period but no year + true + + + 107 + 81 + 22 + Suppress Rescaling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 3020 + If rescaling should be suppressed in sampled chronology for this data file + 800000 + true + + + 108 + 82 + 1 + Compound Type + 0 + 0 + In (0,1) + 0;"Nominal";1;"Annual" + false + true + 937 + Type of compound escalator (nominal or annual equivalent rate) + true + + + 109 + 82 + 2 + Compound Start Date + 0 + -1 + false + true + 938 + Start date for compounding index (-1 means use start of planning horizon) + true + + + 110 + 85 + 1 + Read Order + 0 + 0 + true + true + 907 + Order in which to read scenario data (last read scenario has highest priority) + true + + + 111 + 85 + 2 + Locked + 0 + 0 + In (0,1) + 0;"Unlocked";1;"Locked" + true + true + 1170 + If the Scenario data are locked for editing. + true + + + 112 + 87 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the model is ready to be executed + true + + + 113 + 87 + 2 + Execution Order + 0 + 0 + >=0 + true + true + 1298 + Order in which to execute the Model when running in a batch. + true + + + 114 + 87 + 3 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + true + true + 662 + Random number seed for this model + true + + + 115 + 87 + 4 + Output to Folder + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 594 + If model output should be written to a folder under the source directory, or into the source folder itself + true + + + 116 + 87 + 5 + Make Unique Name + 0 + 0 + In (-1,0,1) + -1;"Yes";0;"No";"1";"Prompt" + true + true + 397 + If model output should be written to a unique filename for each execution + true + + + 117 + 87 + 6 + Write Input + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1221 + If Model input should be written to the output location along with the solution. + true + + + 118 + 87 + 7 + Load Custom Assemblies + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1348 + If the Model should run custom OpenPLEXOS assemblies. + true + + + 119 + 87 + 8 + Run Mode + 0 + 0 + In (0,1) + 0;"Normal";1;"Dry" + true + true + 1772 + Switches between Normal and Dry run modes + true + + + 120 + 87 + 9 + Objective Priority + 0 + 1 + >=0 + true + true + 2100 + Priority of the objective when doing hierarchical multi-objective optimization + true + + + 121 + 87 + 10 + Objective Weight + 0 + 1 + true + true + 2101 + Weight of the objective when doing blended multi-objective optimization + true + + + 122 + 87 + 11 + Objective Relative Tolerance + 0 + 0 + Between 0 And 1 + true + true + 2102 + Allowable relative degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 123 + 87 + 12 + Objective Absolute Tolerance + 0 + 0 + >=0 + true + true + 2103 + Allowable degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 124 + 88 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the project is enabled for execution + true + + + 125 + 89 + 1 + Periods per Day + 0 + 24 + Between 1 And 86400 + true + true + 606 + Number of intervals in each trading day + true + + + 126 + 89 + 2 + Compression Factor + 0 + 1 + >=1 + true + true + 2540 + Number of intervals to output per interval simulated + true + + + 127 + 89 + 3 + Date From + 0 + 43831 + >=0 + date + true + true + 125 + Start date of the planning horizon + true + + + 128 + 89 + 4 + Step Type + 0 + 1 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 765 + Planning horizon step type + true + + + 129 + 89 + 5 + Step Count + 0 + 1 + >=1 + true + true + 764 + Number of steps in the planning horizon + true + + + 130 + 89 + 6 + Look-ahead Count + 0 + 0 + >=0 + true + true + 2727 + Number of additional look-ahead steps in the planning horizon + true + + + 131 + 89 + 7 + Day Beginning + 0 + 0 + Between 0 And 23 + true + true + 126 + Start hour of the trading day + true + + + 132 + 89 + 8 + Week Beginning + 0 + 0 + Between -1 And 7 + true + true + 857 + Start day for weekly constraints + true + + + 133 + 89 + 9 + Year Ending + 0 + 0 + Between 0 And 12 + true + true + 865 + Last month of the fiscal year + true + + + 134 + 89 + 10 + Chronology + 0 + 0 + In (0,1) + 0;"Full";1;"Typical Week" + true + true + 79 + Type of chronology used + true + + + 135 + 89 + 11 + Chrono Date From + 0 + 43831 + >=0 + date + true + true + 74 + Start date for the chronological model + true + + + 136 + 89 + 12 + Chrono Period From + 0 + 1 + >=1 + true + true + 75 + Start interval for the chronological model + true + + + 137 + 89 + 13 + Chrono Period To + 0 + 24 + >=1 + true + true + 76 + End interval for the chronological model + true + + + 138 + 89 + 14 + Chrono Step Type + 0 + 2 + In (-1,0,1,2,3) + -1;"Second";0;"Minute";1;"Hour";2;"Day";3;"Week" + true + true + 78 + Chronological model step type + true + + + 139 + 89 + 15 + Chrono At a Time + 0 + 1 + >=1 + true + true + 73 + Number of steps in the chronological model + true + + + 140 + 89 + 16 + Chrono Step Count + 0 + 1 + >=1 + true + true + 77 + Number of step types in each step of the chronological model + true + + + 141 + 89 + 17 + Look-ahead Indicator + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 369 + Flag if chronological model used a look-ahead + true + + + 142 + 89 + 18 + Look-ahead Type + 0 + 1 + In (0,1,2,6) + 0;"Interval(s)";6;"Hour(s)";1;"Day(s)";2;"Week(s)" + true + true + 371 + Step type for look-ahead in chronological model + true + + + 143 + 89 + 19 + Look-ahead At a Time + 0 + 1 + >=1 + true + true + 368 + Number of step types in each step of the chronological model look-ahead + true + + + 144 + 89 + 20 + Look-ahead Periods per Day + 0 + 24 + Between 1 And 86400 + true + true + 370 + Number of intervals in each trading day of the look-ahead + true + + + 145 + 90 + 1 + Write Flat Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 863 + If the solution data are written to plain text files + true + + + 146 + 90 + 2 + Write XML Files + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 864 + If the solution data are written to XML files + true + + + 147 + 90 + 3 + XML Content + 0 + 0 + In (0,1) + 0;"Compact";1;"Full" + true + true + 1177 + Content of the zipped-XML solution files. Compact writes only binary solution tables. Raw writes binary and raw XML solution tables. + true + + + 148 + 90 + 4 + Output Results by Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 589 + If results are written by period + true + + + 149 + 90 + 5 + Output Results by Hour + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1582 + If summary results are written by hour + true + + + 150 + 90 + 6 + Output Results by Day + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 586 + If summary results are written by day + true + + + 151 + 90 + 7 + Output Results by Week + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 591 + If summary results are written by week + true + + + 152 + 90 + 8 + Output Results by Month + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 588 + If summary results are written by month + true + + + 153 + 90 + 9 + Output Results by Quarter + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1818 + If summary results are written by Quarter + true + + + 154 + 90 + 10 + Output Results by Fiscal Year + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 587 + If summary results are written by year + true + + + 155 + 90 + 11 + Output Statistics + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 593 + If statistics are calculated on multi-sample results + true + + + 156 + 90 + 12 + Output Results by Sample + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 590 + If each sample is output + true + + + 157 + 90 + 13 + Filter Objects By Interval + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 959 + If the selection of objects reported on applies to interval output + true + + + 158 + 90 + 14 + Filter Objects In Summary + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 960 + If the selection of objects reported on applies to summary output + true + + + 159 + 90 + 15 + Whole Years Only + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 961 + If reporting should be on whole years only + true + + + 160 + 90 + 16 + Datetime Convention + 0 + 0 + In (0,1) + 0;"Beginning of Period";1;"End of Period" + true + true + 1344 + Convention used when writing DATETIME. + true + + + 161 + 90 + 17 + Locale + 0 + 0 + >=0 + true + true + 1345 + The numeric index of the locale that should be used to write text files. + true + + + 162 + 90 + 18 + Flat File Format + 0 + 0 + In (0,1,2) + 0;"Datetime";1;"Periods in Columns";2;"Names in Columns" + true + true + 1359 + Format for text solution files. + true + + + 163 + 91 + 1 + Outage Pattern Count + 0 + 1 + >=1 + true + true + 521 + Number of outage patterns generated for use in MT and ST Schedule. + true + + + 164 + 91 + 2 + Monte Carlo Method + 0 + 0 + In (0,1) + 0;"Normal";1;"Convergent" + true + true + 520 + Monte-Carlo outage method. + true + + + 165 + 91 + 3 + Weibull Shape + 0 + 3 + >=0 + true + true + 523 + Shape parameter (beta) for the Weibull reliability function. + true + + + 166 + 91 + 4 + Convergent Smoothing + 0 + 5 + >=1 + true + true + 519 + Convergent Monte Carlo number of iterations used in converging outage rates. + true + + + 167 + 91 + 5 + Outage Scope + 0 + 0 + In (0,1,2,3) + 0;"All";1;"Forced Only";2;"Maintenance Only";3;"Planned Only" + true + true + 522 + Scope of preschedule outage pattern generator. + true + + + 168 + 91 + 6 + Convergence Period Type + 0 + 4 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1336 + Convergent Monte Carlo convergence period type. + true + + + 169 + 91 + 7 + Risk Sample Count + 0 + 1 + >=1 + true + true + 708 + Number of random samples generated on each Variable object. + true + + + 170 + 91 + 8 + Reduced Outage Pattern Count + 0 + 0 + >=0 + true + true + 1894 + Statistically reduce the outage patterns to at most this number. + true + + + 171 + 91 + 9 + Reduced Sample Count + 0 + 0 + >=0 + true + true + 1334 + Statistically reduce the [Risk Sample Count] to at most this number of random samples for use in simulation. + true + + + 172 + 91 + 10 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set drops to this level. + true + + + 173 + 91 + 11 + Forced Outages in Look-ahead + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1335 + If forced outages are included in the look-ahead. + true + + + 174 + 91 + 12 + EFOR Maintenance Adjust + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1793 + Adjust EFOR to account for Units Out + true + + + 175 + 91 + 13 + SDDP Iteration Limit + 0 + 20 + >=3 + true + true + 2435 + Maximum number of iterations in SDDP algorithm + true + + + 176 + 91 + 14 + SDDP Convergence Tolerance 1 + 0 + 1 + >=0 + true + true + 2436 + Objective function convergence criteria 1 for SDDP + true + + + 177 + 91 + 15 + SDDP Convergence Tolerance 2 + 0 + 0.2 + >=0 + true + true + 2437 + Objective function convergence criteria 2 for SDDP + true + + + 178 + 91 + 16 + SDDP Convergence Tolerance 2a + 0 + 0.8 + >=0 + true + true + 2438 + Objective function convergence criteria 2 (with adjustment) used in SDDP if simplification applies + true + + + 179 + 91 + 17 + SDDP Cut Sharing + 0 + 0 + In (0,1,2) + 0;"None";1;"Single";2;"Multiple" + true + true + 2642 + Type of cut sharing applied in the SDDP formulation + true + + + 180 + 91 + 18 + SDDP Simplified Chronology + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2439 + If the chronology is simplified to one block per stage during SDDP iterations + true + + + 181 + 91 + 19 + SDDP Head Effects + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2440 + If head effects are accounted for in SDDP iterations + true + + + 182 + 91 + 20 + SDDP Warm Start + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2610 + If the first forward pass of SDDP is replaced by fixed 'warm start' storage levels + true + + + 183 + 91 + 21 + SDDP Warm Start Level + 0 + 0.5 + Between 0 And 1 + true + true + 2611 + The levels to fix the storage in SDDP 'warm start' as a proportion of the distance between minimum and maximum storage levels + true + + + 184 + 91 + 22 + SDDP Replace Samples + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2614 + If the full branch samples in rolling horizon or the forward pass samples in SDDP should be replaced by user-defined samples + true + + + 185 + 91 + 23 + SDDP Final Pass Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2725 + If a final forward pass is run after the optimal policy iterations of the SDDP algorithm + true + + + 186 + 91 + 24 + FCF Scalar + 0 + 1000000 + true + true + 2441 + Scalar for future cost function objective and constraint terms + true + + + 187 + 91 + 25 + FCF Constant + 0 + 0 + true + true + 1485 + Constant future cost subtracted from the future cost during SDDP iterations + true + + + 188 + 91 + 26 + Simplified Chronology + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2541 + If the chronology is simplified to one block per stage during Rolling Horizon iterations + true + + + 189 + 91 + 27 + Simplify Hanging Branches After Branching + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2946 + If hanging branches are simplified in detail after branching + true + + + 190 + 91 + 28 + Simplify Hanging Branches Before Branching + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2947 + If hanging branches are simplified in detail before branching + true + + + 191 + 91 + 29 + Minimum Sample Weight + 0 + 1E-06 + >=0 + true + true + 2442 + Minimum sample weight for rolling horizon iterations + true + + + 192 + 91 + 30 + Deep Branching + 0 + 0 + >=0 + true + true + 2552 + For Rolling Horizon this is the level of additional branching after the end of regular branching + true + + + 193 + 91 + 31 + Rolling Horizon With Other Variables + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2532 + Perform historical sampling for all variable types + true + + + 194 + 91 + 32 + Rolling Stage Increment + 0 + -1 + true + true + 2677 + Number of stages rolled forward each iteration where -1 means this is automatically determined based on the scenario tree + true + + + 195 + 91 + 33 + Rolling Lookahead + 8 + 1 + true + true + 2724 + Number of years modeled after the end of branching in each rolling iteration + true + + + 196 + 91 + 34 + Deterministic Pass Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2726 + If the final deterministic pass is run after iterations of the Rolling Horizon algorithm + true + + + 197 + 91 + 35 + Deterministic Step Type + 0 + 0 + In (0,2,3,4) + 0;"None";2;"Week";3;"Month";4;"Year" + true + true + 2644 + The step type for solving the final deterministic pass of the rolling horizon where "None" solves the entire horizon in one step + true + + + 198 + 91 + 36 + Deterministic Batch Count + 0 + 1 + >=1 + true + true + 2650 + For Deterministic Step Type = "None" the samples in the deterministic phase will be divided into this number of batches + true + + + 199 + 91 + 37 + Deterministic Step Length + 0 + 1 + >=1 + true + true + 2645 + The number of Deterministic Step Type periods in each step of the deterministic pass of the rolling horizon + true + + + 200 + 91 + 38 + PARMA Model Type + 0 + -1 + In (-1,0,1) + -1;"None";0;"SARIMA";1;"PARMA" + true + true + 2534 + PARMA Model Type (-1 = None, 0 = SARIMA model, 1 = PARMA model) + true + + + 201 + 91 + 39 + Historical Full Branches + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2535 + Flag if full branches should be mapped by historical data in the PARMA model + true + + + 202 + 91 + 40 + Brazil Scenario Tree + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2536 + Flag if the PARMA scenario tree is created with non-equiprobability + true + + + 203 + 91 + 41 + SDDP Resampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2591 + Flag if resampling is performed for each SDDP iteration at the beginning of the forward pass (The Scenario Tree must be created with PARMA model using Brazilian Methodology) + true + + + 204 + 93 + 1 + Optimize Expansion + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2714 + If expansion is optimized by this simulation phase + true + + + 205 + 93 + 2 + Bridge Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2722 + If LT Plan should bridge (decompose) constraints for subsequent simulation phases + true + + + 206 + 93 + 3 + Bridge Storage + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2723 + If LT Plan should bridge (decompose) storage for subsequent simulation phases + true + + + 207 + 93 + 4 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 208 + 93 + 5 + Discount Period Type + 0 + 4 + In (1,2,3,4,6,7) + 3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor and expansion decisions will be computed for each of these periods. + true + + + 209 + 93 + 6 + At a Time + 0 + 0 + >=0 + true + true + 17 + Number of years solved in each step of LT Plan + true + + + 210 + 93 + 7 + Overlap + 0 + 0 + >=-1 + true + true + 595 + Number of years overlap between steps where -1 invokes Rolling Horizon + true + + + 211 + 93 + 8 + Chronology + 0 + 2 + In (2,3,4) + 2;"Partial";3;"Fitted";4;"Sampled" + true + true + 79 + Type of chronology used + true + + + 212 + 93 + 9 + LDC Type + 0 + 3 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 917 + One LDC is created for each period of this type in horizon. + true + + + 213 + 93 + 10 + Block Count + 0 + 12 + >=1 + true + true + 39 + Number of load duration curve blocks in each day/week/month. + true + + + 214 + 93 + 11 + Last Block Count + 0 + 0 + >=0 + true + true + 1702 + Number of load duration curve blocks in the last load duration curve of the horizon, or zero if the same as [Block Count]. + true + + + 215 + 93 + 12 + LDC Slicing Method + 0 + 0 + In (0,1) + 0;"Peak/Off-peak Bias";1;"Weighted Least-squares Fit" + true + true + 1200 + Method used to slice the LDC into blocks. + true + + + 216 + 93 + 13 + LDC Weight a + 0 + 0 + true + true + 1201 + LDC weighting polynomial function 'a' parameter. + true + + + 217 + 93 + 14 + LDC Weight b + 0 + 1 + true + true + 1202 + LDC weighting polynomial function 'b' parameter. + true + + + 218 + 93 + 15 + LDC Weight c + 0 + 0 + true + true + 1203 + LDC weighting polynomial function 'c' parameter. + true + + + 219 + 93 + 16 + LDC Weight d + 0 + 0 + true + true + 1204 + LDC weighting polynomial function 'd' parameter. + true + + + 220 + 93 + 17 + LDC Pin Top + 0 + -1 + >=-1 + true + true + 1205 + Number of points at the top of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 221 + 93 + 18 + LDC Pin Bottom + 0 + -1 + >=-1 + true + true + 1206 + Number of points at the bottom of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 222 + 93 + 19 + Sample Type + 0 + 2 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 1423 + For Chronology = "Sampled", take this type of sample. + true + + + 223 + 93 + 20 + Sampling Interval + 0 + 4 + In (-1,2,3,4,7) + -1;"Step";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1868 + For Chronology = "Sampled", take [Sample Type] samples in each of these intervals of time. + true + + + 224 + 93 + 21 + Sampled Block Count + 0 + 0 + >=0 + true + true + 2762 + Number of blocks modeled in each sample period (day/week) where zero means the original number of intervals + true + + + 225 + 93 + 22 + Sample Year Count + 0 + 0 + >=0 + true + true + 2227 + For [Chronology] = "Sampled", first select this many years then sample within only those years. + true + + + 226 + 93 + 23 + Reduced Sample Count + 0 + 4 + >=1 + true + true + 1334 + Statistically reduce the [Sample Type] periods to at most this number of samples each year. + true + + + 227 + 93 + 24 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set reaches this level. + true + + + 228 + 93 + 25 + Sampled Shallow Storage Treatment + 0 + 1 + In (1,2,3) + 1;"Automatic";2;"Custom";3;"Full"; + true + true + 3097 + For Chronology = "Sampled", method used for formulating low duration storages and batteries + true + + + 229 + 93 + 26 + Sampled Shallow Storage Cutoff + 6 + 0 + >=0 + true + true + 3098 + For [Chronology] = "Sampled" and [Sampled Shallow Storage Treatment] = "Custom", the maximum storage duration in hours for the shallow storage formulation to apply. + true + + + 230 + 93 + 27 + Decomposition + 0 + 1 + >=1 + true + true + 2963 + Reduce the number of simulated periods by this factor in the first pass of a two-pass decomposition + true + + + 231 + 93 + 28 + Optimality + 0 + 2 + In (0,1,2) + 0;"Linear";2;"Integer" + true + true + 581 + LT Plan integerization scheme. + true + + + 232 + 93 + 29 + Integerization Horizon + 8 + -1 + >=-1 + true + true + 322 + Number of years over which the expansion decisions are integerized + true + + + 233 + 93 + 30 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon effects + true + + + 234 + 93 + 31 + Limit Capital Cost Perpetuity by Economic Life + 0 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2937 + With perpetuity end effect, if annuity calculation should extend beyond the end of the horizon up to the Economic Life + true + + + 235 + 93 + 32 + Solution Count + 0 + 1 + >=1 + true + true + 1812 + Maximum number of solutions produced in the solution hierarchy + true + + + 236 + 93 + 33 + Solution Quality + 12 + 0 + Between 0 And 100 + true + true + 1813 + Continue producing solutions up to Solution Count or when Solution Quality falls to this level + true + + + 237 + 93 + 34 + Always Annualize Build Cost + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1957 + If [Build Cost] is always annualized even when an option retires inside the horizon + true + + + 238 + 93 + 35 + Depreciation Method + 0 + 0 + In (0,1,2) + 0;"None";1;"Straight-Line";2;"Declining" + true + true + 144 + Depreciation method for computing annuities + true + + + 239 + 93 + 36 + Tax Rate + 12 + 0 + true + true + 786 + Tax rate used to compute tax credits + true + + + 240 + 93 + 37 + Inflation Rate + 12 + 0 + true + true + 311 + Inflation rate used in depreciation calculations + true + + + 241 + 93 + 38 + Heat Rate Detail + 0 + 2 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 242 + 93 + 39 + Outage Increment + 1 + 10 + >=1 + true + true + 582 + Generator outage bin size in convolution + true + + + 243 + 93 + 40 + Use Effective Load Approach + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 836 + If LT Plan uses the effective load approach + true + + + 244 + 93 + 41 + Maintenance Sculpting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 982 + If LT Plan should sculpt maintenance derating according to the inverse of load. + true + + + 245 + 93 + 42 + Maintenance Rate Output Basis + 0 + 0 + In (0,1) + 0;"Step";1;"Year" + true + true + 3151 + Basis for Maintenance Rate (%) Output due to Maintenance Sculpting. + true + + + 246 + 93 + 43 + Pricing Method + 0 + 0 + In (0,1) + 0;"Average";1;"Marginal" + true + true + 620 + Type of generator pricing used in LT Plan. + true + + + 247 + 93 + 44 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in LT Plan. + false + + + 248 + 93 + 45 + Allow Capacity Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 8 + If regions/zones can share capacity reserves to meet requirements + true + + + 249 + 93 + 46 + Capacity Payments Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1081 + If payments are made for generation capacity + true + + + 250 + 93 + 47 + Co-optimize Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2129 + If unit commitment is co-optimized rather than sequentially optimized with expansion + true + + + 251 + 93 + 48 + Start Cost Amortization Period + 6 + 0 + >=0 + true + true + 885 + Number of hours over which generator start costs are amortized + true + + + 252 + 93 + 49 + Compute Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 88 + Master switch for computation of reliability indices LOLP, LOLE, etc. + true + + + 253 + 93 + 50 + Compute Multi-area Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1734 + Master switch for computation of reliability indices LOLP, LOLE, etc across multiple areas. + true + + + 254 + 93 + 51 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for LT Plan + true + + + 255 + 93 + 52 + Storage Restart + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2769 + If recycled storage should restart from their initial volume at the start of each capacity optimization period + true + + + 256 + 93 + 53 + Storage Formulate Head Effects + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2948 + If storage head effects should be formulated in LT Plan + true + + + 257 + 93 + 54 + Write Expansion Plan Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 908 + If expansion plans should be written to text files + true + + + 258 + 94 + 1 + Step Type + 0 + 1 + In (0,1,2) + 0;"Interval";1;"Day";2;"Week" + true + true + 765 + PASA step type: One period is modelled for each period of this type in horizon. + true + + + 259 + 94 + 2 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Definition of maintenance area for PASA. + true + + + 260 + 94 + 3 + Include DSP + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 300 + Include demand-side participation in PASA + true + + + 261 + 94 + 4 + Include Demand Bids + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 299 + Include demand bids are load in PASA + true + + + 262 + 94 + 5 + Include Contract Generation + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 297 + Include physical contract generation capacity in PASA + true + + + 263 + 94 + 6 + Include Contract Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 298 + Include physical contract load capacity in PASA + true + + + 264 + 94 + 7 + Include Market Purchases + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1232 + Include market purchases as generation capacity in PASA + true + + + 265 + 94 + 8 + Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 100 + If transmission line constraints are enabled in PASA. + true + + + 266 + 94 + 9 + Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 324 + If transmission interface constraints are enabled in PASA. + true + + + 267 + 94 + 10 + Maintenance Sculpting + 12 + 0 + Between 0 And 100 + true + true + 982 + Level of sculpting of maintenance outages: Higher sculpting means outages are more concentrated in high reserve periods + true + + + 268 + 94 + 11 + Compute Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 88 + Master switch for computation of reliability indices LOLP, LOLE, etc. + true + + + 269 + 94 + 12 + Compute Multi-area Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1734 + Master switch for computation of reliability indices LOLP, LOLE, etc across multiple areas. + true + + + 270 + 94 + 13 + Reliability Criterion + 0 + 0 + In (0,1) + 0;"LOLP";1;"Capacity Reserves" + true + true + 2705 + Criterion used to select periods for Monte Carlo reliability analysis + true + + + 271 + 94 + 14 + Reliability LOLP Tolerance + 0 + 0.01 + >=0 + true + true + 2673 + For reliability-based sampled chronology using LOLP criterion select intervals with LOLP at or above this level + true + + + 272 + 94 + 15 + Reliability Max Samples + 6 + 1E+30 + >=1 + true + true + 2674 + For reliability-based sampled chronology select no more than this many hours per year + true + + + 273 + 94 + 16 + Write Reliability Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2706 + If the periods selected for Monte Carlo reliability analysis should be written to text files + true + + + 274 + 94 + 17 + Write Outage Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 906 + If outage patterns should be written to text files + true + + + 275 + 94 + 18 + Energy Objective + 12 + 0 + Between 0 And 100 + true + true + 2055287956 + Relative contribution of energy margins to PASA objective function + true + + + 276 + 94 + 19 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for PASA. + true + + + 277 + 95 + 1 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 278 + 95 + 2 + Discount Period Type + 0 + 2 + In (1,2,3,4,6,7) + 6;"Hour";1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor will be computed for each of these periods. + true + + + 279 + 95 + 3 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon discounting + true + + + 280 + 95 + 4 + Step Type + 0 + 4 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 765 + Each simulation step will span steps of this type. + true + + + 281 + 95 + 5 + At a Time + 0 + 0 + >=0 + true + true + 17 + Number of day/week/months/years in each MT Schedule simulation step. + true + + + 282 + 95 + 6 + Chronology + 0 + 2 + In (2,3,4,5) + 2;"Partial";3;"Fitted";4;"Sampled";5;"Reliability" + true + true + 79 + Type of chronology used + true + + + 283 + 95 + 7 + LDC Type + 0 + 1 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 917 + Create one LDC for each period of this type in the horizon. + true + + + 284 + 95 + 8 + Block Count + 0 + 3 + >=1 + true + true + 39 + Number of load duration curve blocks in each day/week/month. + true + + + 285 + 95 + 9 + Last Block Count + 0 + 0 + >=0 + true + true + 1702 + Number of load duration curve blocks in the last load duration curve of the horizon, or zero if the same as [Block Count]. + true + + + 286 + 95 + 10 + LDC Slicing Method + 0 + 0 + In (0,1) + 0;"Peak/Off-peak Bias";1;"Weighted Least-squares Fit" + true + true + 1200 + Method used to slice the LDC into blocks. + true + + + 287 + 95 + 11 + LDC Weight a + 0 + 0 + true + true + 1201 + LDC weighting polynomial function 'a' parameter. + true + + + 288 + 95 + 12 + LDC Weight b + 0 + 1 + true + true + 1202 + LDC weighting polynomial function 'b' parameter. + true + + + 289 + 95 + 13 + LDC Weight c + 0 + 0 + true + true + 1203 + LDC weighting polynomial function 'c' parameter. + true + + + 290 + 95 + 14 + LDC Weight d + 0 + 0 + true + true + 1204 + LDC weighting polynomial function 'd' parameter. + true + + + 291 + 95 + 15 + LDC Pin Top + 0 + -1 + >=-1 + true + true + 1205 + Number of points at the top of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 292 + 95 + 16 + LDC Pin Bottom + 0 + -1 + >=-1 + true + true + 1206 + Number of points at the bottom of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 293 + 95 + 17 + Sample Type + 0 + 2 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 1423 + For [Chronology] = "Sampled", take this type of sample. + true + + + 294 + 95 + 18 + Sampling Interval + 0 + 4 + In (-1,2,3,4,7) + -1;"Step";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1868 + For Chronology = "Sampled", take [Sample Type] samples in each of these intervals of time. + true + + + 295 + 95 + 19 + Sampled Block Count + 0 + 0 + >=0 + true + true + 2762 + Number of blocks modeled in each sample period (day/week) where zero means the original number of intervals + true + + + 296 + 95 + 20 + Reduced Sample Count + 0 + 4 + >=1 + true + true + 1334 + Statistically reduce the [Sample Type] periods to at most this number of samples each year. + true + + + 297 + 95 + 21 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set reaches this level. + true + + + 298 + 95 + 22 + Sampled Shallow Storage Treatment + 0 + 1 + In (1,2,3) + 1;"Automatic";2;"Custom";3;"Full"; + true + true + 3097 + Sampled Shallow Storage Treatment + true + + + 299 + 95 + 23 + Sampled Shallow Storage Cutoff + 6 + 0 + >=0 + true + true + 3098 + For [Chronology] = "Sampled" and [Sampled Shallow Storage Treatment] = "Custom", the maximum storage duration in hours for the shallow storage formulation to apply. + true + + + 300 + 95 + 24 + Heat Rate Detail + 0 + 1 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 301 + 95 + 25 + Use Effective Load Approach + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 836 + If MT Schedule uses the effective load approach + true + + + 302 + 95 + 26 + Outage Increment + 1 + 10 + >=1 + true + true + 582 + Generator outage bin size in convolution + true + + + 303 + 95 + 27 + Pricing Method + 0 + 0 + In (0,1) + 0;"Average";1;"Marginal" + true + true + 620 + Type of generator pricing used in MT Schedule + true + + + 304 + 95 + 28 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in MT Schedule + false + + + 305 + 95 + 29 + New Entry Driver + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Reliability Only";2;"Reliability+Entrepreneurial";3;"Entrepreneurial Only" + true + true + 556 + New entry driver. + true + + + 306 + 95 + 30 + New Entry Capacity Mechanism + 0 + 0 + In (0,1,2) + 0;"None";1;"Capacity Payment";2;"Reserve Trader" + true + true + 555 + Capacity payment mechanism. + true + + + 307 + 95 + 31 + New Entry Time Lag + 55 + 12 + >=0 + true + true + 557 + Lag time for entrepreneurial entry. + true + + + 308 + 95 + 32 + Start Cost Amortization Period + 6 + 0 + >=0 + true + true + 885 + Number of hours over which generator start costs are amortized + true + + + 309 + 95 + 33 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for MT Schedule + true + + + 310 + 95 + 34 + Stochastic Algorithm + 0 + 0 + In (0,1) + 0;"Rolling Horizon";1;"SDDP" + true + true + 2235 + Algorithm invoked by the Stochastic Method when a scenario tree is present + true + + + 311 + 95 + 35 + Storage Formulate Head Effects + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2948 + If storage head effects should be formulated in MT Schedule. + true + + + 312 + 95 + 36 + Write Bridge Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1963 + If bridge information such as constraint decomposition and storage targets should be written to text files + true + + + 313 + 95 + 37 + Step Link Mode + 0 + 0 + In (0,1,2) + 0;"Link";1;"Break";2;"Parallel" + true + true + 1987 + Controls how the solutions of each step are linked together. + true + + + 314 + 95 + 38 + Reliability Min Contiguous Block + 6 + 0 + >=0 + true + true + 2675 + For reliability based sampled chronology ensure sampled periods are contained in contiguous blocks of at least this many hours + true + + + 315 + 96 + 1 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 316 + 96 + 2 + Discount Period Type + 0 + 2 + In (1,2,3,4,6,7) + 6;"Hour";1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor will be computed for each of these periods. + true + + + 317 + 96 + 3 + Discount Rate Reset + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2101737039 + Flag if discount factor resets at the beginning of each ST Schedule step. + true + + + 318 + 96 + 4 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon discounting + true + + + 319 + 96 + 5 + Heat Rate Detail + 0 + 0 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 320 + 96 + 6 + Transmission Detail + 0 + 1 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in ST Schedule + false + + + 321 + 96 + 7 + Stochastic Method + 0 + 1 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for ST Schedule + true + + + 322 + 96 + 8 + Storage Formulate Head Effects + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2948 + If storage head effects should be formulated in ST Schedule. + true + + + 323 + 96 + 9 + Step Link Mode + 0 + 0 + In (0,1,2) + 0;"Link";1;"Break";2;"Parallel" + true + true + 1987 + Controls how the solutions of each step are linked together. + true + + + 324 + 96 + 10 + Step Relink Count + 0 + 1 + >=1 + true + true + 2704 + Number of steps that require relinking of initial conditions in parallel Step Link Mode, where 1 means no relinking + true + + + 325 + 96 + 11 + Sequential Steps + 0 + 1 + >=1 + true + true + 2703 + Number of steps run in each sequential block when running in parallel Step Link Mode + true + + + 326 + 97 + 1 + Detail + 0 + 1 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 2104 + Level of detail used in transmission modeling + true + + + 327 + 97 + 2 + MVA Base + 0 + 100 + >=0 + true + true + 528 + MVA base for AC line parameters. + true + + + 328 + 97 + 3 + OF Method + 0 + 0 + In (0,1) + 0;"Variable Shift Factor";1;"Fixed Shift Factor" + true + true + 580 + Method for solving optimal power flow. + true + + + 329 + 97 + 4 + Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 100 + If transmission line constraints are enabled. + true + + + 330 + 97 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 976 + If transmission constraints should all be formulated upfront rather than checked iteratively. + true + + + 331 + 97 + 6 + Constraint Voltage Threshold + 4 + 0 + >=0 + true + true + 99 + Voltage level at which thermal limits are modelled. + true + + + 332 + 97 + 7 + Constraint Limit Penalty + 33 + -1 + true + true + 2685 + Penalty for exceeding line and transformer limits. + true + + + 333 + 97 + 8 + Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 324 + If interface constraints are enabled. + true + + + 334 + 97 + 9 + Enforce Limits On Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 178 + If lines and transformers in interfaces should have their limits enforced regardless of voltage + true + + + 335 + 97 + 10 + Interface Limit Penalty + 33 + -1 + true + true + 2686 + Penalty for exceeding interface flow limits. + true + + + 336 + 97 + 11 + Losses Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 387 + If transmission losses are enabled. + true + + + 337 + 97 + 12 + Loss Voltage Threshold + 4 + 0 + >=0 + true + true + 386 + Voltage level at which losses are modelled. + true + + + 338 + 97 + 13 + Loss Method + 0 + 0 + In (0,1,3,4,5) + 0;"Auto";1;"Piecewise Linear";3;"Conic";4;"Successive MLF";5;"Single-pass GPF" + true + true + 384 + Formulation method used to model transmission losses. + true + + + 339 + 97 + 14 + Max Loss Relative Error + 0 + 0 + >=0 + true + true + 379 + Maximum allowed relative error in the piecewise linear loss function. + true + + + 340 + 97 + 15 + Max Loss Absolute Error + 0 + 0 + >=0 + true + true + 1915 + Maximum allowed absolute error in the piecewise linear loss function. + true + + + 341 + 97 + 16 + Max Loss Tranches + 0 + 100 + >=1 + true + true + 438 + Maximum number of tranches in piecewise linear line loss function. + true + + + 342 + 97 + 17 + Loss Tolerance + 0 + 1E-05 + >=0 + true + true + 385 + Relative gap between real and modelled losses. + true + + + 343 + 97 + 18 + Max Loss Iterations + 0 + 50 + >=1 + true + true + 437 + Maximum number of iterations for converging the losses. + true + + + 344 + 97 + 19 + Max Embedded Loss Iterations + 0 + 2 + >=0 + true + true + 422 + Maximum number of iterations for removing embedded losses from load. + true + + + 345 + 97 + 20 + Detect Non-physical Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 890 + If non-physical losses should be detected (in the piecewise linear loss model) and removed via mixed-integer programming + true + + + 346 + 97 + 21 + PTDF Method + 0 + 0 + In (0,1,2,3,4) + 0;"Single Slack Bus";1;"Distributed Slack (Reference Load)";3;"Distributed Slack (Generation Capacity)";4;"Distributed Slack (Reference Generation)" + true + true + 636 + Method for computation of shift factors + true + + + 347 + 97 + 22 + Flow PTDF Threshold + 0 + 0.01 + >=0 + true + true + 637 + Minimum absolute value of PTDF as coefficient in transmission flow constraints. + true + + + 348 + 97 + 23 + Commitment PTDF Threshold + 0 + 0 + >=0 + true + true + 2801 + Minimum absolute value of PTDF coefficient in commitment solves. + true + + + 349 + 97 + 24 + Wheeling PTDF Threshold + 0 + 0.05 + >=0 + true + true + 1371 + Minimum absolute value of PTDF as coefficient in wheeling definitions. + true + + + 350 + 97 + 25 + LODF Threshold + 0 + 0.03 + >=0 + true + true + 2237 + Minimum absolute value of LODF to be used in contingency flow constraints. + true + + + 351 + 97 + 26 + Cache Transmission Matrices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1955 + Cache the transmission matrices to disk for future use. + true + + + 352 + 97 + 27 + Reactance Cut-off + 0 + 0 + true + true + 668 + Smallest allowable reactance when performing OPF. + true + + + 353 + 97 + 28 + Allow Dump Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 9 + Model Dump Energy in OPF + true + + + 354 + 97 + 29 + Allow Unserved Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 10 + Model Unserved Energy in OPF + true + + + 355 + 97 + 30 + Energy Balance Violation Variables + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2048 + Include violation variables on the transmission system energy balance equations + true + + + 356 + 97 + 31 + Bound Node Phase Angles + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1029 + If the Node [Phase Angle] values are subject to bounds in absolute value. + true + + + 357 + 97 + 32 + Max Absolute Phase Angle + 53 + 6.28 + Between 0 And 6.28318530717958 + true + true + 1030 + Maximum absolute value allowed for any Node [Phase Angle]. + true + + + 358 + 97 + 33 + Internal VoLL + 14 + 100000 + Between 0 And 1E+9 + true + true + 325 + Value of Lost Load used internally + true + + + 359 + 97 + 34 + USE Threshold + 12 + 100 + Between 0 And 100 + true + true + 1479 + Formulates the [Unserved Energy] variables on the top x% nodes (highest load). + true + + + 360 + 97 + 35 + Rental Method + 0 + 0 + In (0,1) + 0;"Point-to-Point";1;"Flow Gate" + true + true + 681 + Method used to calculate transmission rentals + true + + + 361 + 97 + 36 + Write Kron-reduced Model + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 3144 + If write Kron-reduced model is enabled. + true + + + 362 + 97 + 37 + Kron-reduced Model Input + 0 + 0 + In (0,1) + 0;"Virtual Markets Input";1;"Factor Matrix and External Injections" + true + true + 3145 + Input properties and files written out for Kron-reduced model. + true + + + 363 + 97 + 38 + Interruption Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 328 + If region interruption sharing is activated. + true + + + 364 + 97 + 39 + Report Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 684 + If transmission reporting is enabled. + true + + + 365 + 97 + 40 + Report Voltage Threshold + 4 + 0 + >=0 + true + true + 687 + Voltage level at which transmission reporting begins. + true + + + 366 + 97 + 41 + Report Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 686 + If all flows on lines selected interfaces are reported + true + + + 367 + 97 + 42 + Report All Interregional Flows + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 683 + If line flows between regions should be reported regardless of kV. + true + + + 368 + 97 + 43 + Report All Interzonal Flows + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1512 + If line flows between zones should be reported regardless of kV. + true + + + 369 + 97 + 44 + Report Injection and Load Nodes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 685 + If all injection and load buses (nodes) are reported on (regardless of voltage) + true + + + 370 + 97 + 45 + Convergence Report Level + 0 + 1 + In (0,1,2) + 0;"None";1;"Normal";2;"Verbose" + true + true + 114 + Level of screen reporting during transmission convergence iterations (none, normal, verbose) + true + + + 371 + 97 + 46 + SCUC Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 727 + If security constrained unit commitment (SCUC) is enabled + true + + + 372 + 97 + 47 + SCUC Constraint Voltage Threshold + 4 + 0 + >=0 + true + true + 726 + Voltage level at which SCUC line thermal limits are modelled. + true + + + 373 + 97 + 48 + SCUC Interface Constraints Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1032 + If enabled interface constraints are monitored in SCUC. + true + + + 374 + 97 + 49 + Enforce N-1 Contingencies + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1480 + If N-1 contingencies should be automatically enforced. + true + + + 375 + 97 + 50 + N-1 Contingency Voltage Threshold + 4 + 0 + >=0 + true + true + 1481 + Voltage level at which N-1 contingencies are automatically enforced. + true + + + 376 + 97 + 51 + Contingency Monitoring Threshold + 12 + 100 + Between 0 And 100 + true + true + 1627 + Monitor only this percentage of most affected Line/Transformer/Interface flows. + true + + + 377 + 97 + 52 + Contingency Limit Penalty + 33 + -1 + true + true + 2050 + Penalty for exceeding contingency flow limits. + true + + + 378 + 97 + 53 + Limit Threshold + 0 + 0.95 + Between 0 And 1 + true + true + 728 + Line, Transformer, or Interface flow loading threshold above which limits are added. + true + + + 379 + 97 + 54 + Limit Bootstrap Initial Threshold + 0 + 2 + >=0 + true + true + 1016 + Initial value of [Limit Threshold] during transmission constraint bootstrap phase. + true + + + 380 + 97 + 55 + Limit Bootstrap Threshold Decrement + 0 + 0.25 + Between 0 And 1 + true + true + 1017 + [Limit Threshold] decrement used for each iteration of transmission bootstrap phase. + true + + + 381 + 97 + 56 + Max Limit Iterations + 0 + 1000 + >=0 + true + true + 1018 + Maximum number of iterations during any one call to enforce transmission limits. + true + + + 382 + 97 + 57 + Filter Limits + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2006 + If transmission limits are filtered using extreme flows from MT Schedule + true + + + 383 + 97 + 58 + Zero Limit Treatment + 0 + 0 + In (0,1) + 0;"Out-of-service";1;"Unlimited" + true + true + 2120 + Treatment of AC elements with zero limits + true + + + 384 + 97 + 59 + Calculate Node LPF from Load + 0 + 0 + In (0,1) + 0;"No";1;"Yes" + true + true + 2140 + Automatically calculate Node LPF from input Load property + true + + + 385 + 98 + 1 + Dispatch by Power Station + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 148 + If generators in power stations should be treated in aggregate for dispatch. + true + + + 386 + 98 + 2 + Dispatch by Battery Station + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2996 + If batteries should be aggregated through manual or automatic battery stations for dispatch. + true + + + 387 + 98 + 3 + Power Station Aggregation Mode + 0 + 0 + In (0,1,2) + 0;"None";1;"Name";2;"Location" + true + true + 2821 + Automatically create Power Station objects by aggregating Generators + true + + + 388 + 98 + 4 + Battery Station Aggregation Mode + 0 + 0 + In (0,1,2) + 0;"None";1;"Name";2;"Location" + true + true + 2997 + Automatically create Battery Station objects by aggregating Batteries + true + + + 389 + 98 + 5 + Unit Commitment Optimality + 0 + 0 + In (0,1,2,3) + 0;"Linear";1;"Rounded Relaxation";2;"Integer" + true + true + 811 + Unit commitment integerization scheme. + true + + + 390 + 98 + 6 + Rounding Up Threshold + 0 + 0.5 + Between 0 And 1 + true + true + 711 + Threshold at which non-integers are rounded up. + true + + + 391 + 98 + 7 + Rounded Relaxation Commitment Model + 0 + 0 + In (0,1) + 0;"Central";1;"Self" + true + true + 1891 + Determines if the unit commitment decisions are made centrally or by self-commitment + true + + + 392 + 98 + 8 + Rounded Relaxation Tuning + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1151 + If the Rounded Relaxation method should self-tune the [Rounding Up Threshold]. + true + + + 393 + 98 + 9 + Rounded Relaxation Start Threshold + 0 + 0.25 + >=0 + true + true + 1152 + Start value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 394 + 98 + 10 + Rounded Relaxation End Threshold + 0 + 0.75 + <=1 + true + true + 1153 + End value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 395 + 98 + 11 + Rounded Relaxation Threshold Increment + 0 + 0.05 + >=0.01 + true + true + 1154 + Increment value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 396 + 98 + 12 + DP Capacity Factor Threshold + 12 + 20 + >=0 + true + true + 910 + Minimum capacity factor for generators to be dispatched by the DP + true + + + 397 + 98 + 13 + DP Capacity Factor Error Threshold + 12 + 20 + >=0 + true + true + 889 + Error in DP capacity factor compared to MT Schedule capacity factor below which the DP solution is accepted + true + + + 398 + 98 + 14 + Capacity Factor Constraint Basis + 0 + 0 + In (0,1) + 0;"Installed Capacity";1;"Rated Capacity" + true + true + 61 + Basis for capacity factor constraints. + true + + + 399 + 98 + 15 + Forced Outage Relaxes Min Down Time + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1860 + If ramp constraints should all be formulated upfront rather than checked iteratively. + true + + + 400 + 98 + 16 + Gas Demand Resolution + 0 + 0 + In (0,1,2) + 0;"Interval";1;"Hour";2;"Day" + true + true + 1964 + Resolution of input gas demands + true + + + 401 + 98 + 17 + Heat Rate Detail + 0 + 0 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling + true + + + 402 + 98 + 18 + Unit Commitment Heat Rate Detail + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2445 + If modeling fully detailed heat rates for unit commitment. Otherwise perform a two-pass UC/ED. + true + + + 403 + 98 + 19 + Integers in Look-ahead + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + true + true + 1422 + Controls when the look-ahead contains integers for unit commitment and other decisions. + true + + + 404 + 98 + 20 + Cooling States Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2130 + If generator unit cooling states are enabled + true + + + 405 + 98 + 21 + Run Up and Down Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2106 + If generator run up and run down are modeled + true + + + 406 + 98 + 22 + Transitions Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2108 + If generator transitions are modeled + true + + + 407 + 98 + 23 + Start Cost Method + 0 + 0 + In (0,1) + 0;"Optimize";1;"Calculate" + true + true + 993 + Method for handling start costs in the mathematical formulation (integrate into the formulation, or calculate ex-post) + true + + + 408 + 98 + 24 + Start and Stop Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2105 + If facility start up and shut down are modeled + true + + + 409 + 98 + 25 + Ramping Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2820 + If facility ramping constraints are modeled + true + + + 410 + 98 + 26 + Pump and Generate + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1943 + If pumped storage/battery is allowed to pump/charge and generate/discharge simultaneously + true + + + 411 + 98 + 27 + Increment and Decrement + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2867 + If simultaneous closure of increment and decrement bids/offers around a base is allowed + true + + + 412 + 98 + 28 + Fuel Use Function Precision + 0 + 0 + >=0 + true + true + 226 + Precision for calculation of linear approximation to fuel function. + true + + + 413 + 98 + 29 + Max Heat Rate Tranches + 0 + 10 + Between 1 And 100 + true + true + 432 + Maximum number of tranches in the fuel function piecewise linear approximation + true + + + 414 + 98 + 30 + Min Heat Rate Tranche Size + 0 + 0 + >=0 + true + true + 2567 + Minimum tranche size in fuel function piecewise linear approximation + true + + + 415 + 98 + 31 + Heat Rate Error Method + 0 + 2 + In (0,1,2,3,4) + 0;"Throw Error";1;"Warn Adjust Report Raw";2;"Warn Adjust Report Adjusted";3;"No Warn Adjust";4;"Allow Non-convex" + true + true + 262 + Method for handling non-convex heat rate functions. + true + + + 416 + 98 + 32 + Formulate Upfront + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 976 + If production constraints should all be formulated upfront rather than checked iteratively. + true + + + 417 + 98 + 33 + Formulate Ramp Upfront + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1370 + If ramp constraints should all be formulated upfront rather than checked iteratively. + true + + + 418 + 98 + 34 + Warm Up Process Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2539 + If modeling of Facility Warm Up Process is enabled + true + + + 419 + 99 + 1 + Equilibrium Model + 0 + 0 + In (0,1,2) + 0;"None";1;"LRMC";2;"Nash-Cournot" + true + true + 179 + Equilibrium Model. Optimizes generation / pricing position of portfolios over the short or medium term. + true + + + 420 + 99 + 2 + Default Elasticity + 56 + -0.2 + <0 + true + true + 132 + Default price elasticity of demand + true + + + 421 + 99 + 3 + Demand Scaling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1447 + If Nash-Cournot result scales input loads to reflect price elasticity of demand. + true + + + 422 + 99 + 4 + Revenue Targeting Method + 0 + 0 + In (0,1,2) + 0;"Increment Only";1;"Decrement Only";2;"Increment or Decrement" + true + true + 699 + Method used in adjusting offers to meet revenue targets. + true + + + 423 + 99 + 5 + Revenue Targeting Iterations + 0 + 1 + >=1 + true + true + 698 + Number of iterations used to recover fixed costs. + true + + + 424 + 99 + 6 + Pricing Strategy + 0 + 0 + In (0,1,2,3) + 0;"Off";1;"No Congestion";2;"Regional";3;"Zonal" + true + true + 621 + The Bertrand Competition strategy used to set offer/bid prices each interval. + true + + + 425 + 99 + 7 + Bertrand Detect Active Ramp Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1416 + If the Bertrand algorithm should detect when generators are constrained due to ramping. + true + + + 426 + 99 + 8 + Bertrand OOMOD Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1417 + If the Bertrand algorithm should seek to maximize profits by out-of-merit-order dispatch. + true + + + 427 + 99 + 9 + Epsilon + 0 + 0.01 + >0 + true + true + 442 + Minimum margin between competing offer prices or between offer prices and the price cap. + true + + + 428 + 99 + 10 + RSI Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 715 + If Residual Supply Index method is used. + true + + + 429 + 99 + 11 + RSI Enabled for Load Bids + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2845 + If Residual Supply Index method is used for Load Bids. + true + + + 430 + 99 + 12 + RSI Bid-Cost Mark-up Method + 0 + 0 + In (0,1,2) + 0;"Variable by Merit Order";1;"Variable by Supply Capacity";2;"Uniform" + true + true + 713 + Method used in applying calculated bid cost markups to companies then generating units. + true + + + 431 + 99 + 13 + No Load Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 558 + If marginal cost bid should be adjusted to account for no-load cost + true + + + 432 + 99 + 14 + Mark-up Min Stable Level + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 410 + If mark-up should be applied to the full range of unit output including [Min Stable Level]. + true + + + 433 + 99 + 15 + Start Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1869 + If mark-ups are calculated to recover generator start cost + true + + + 434 + 99 + 16 + Start Cost Mark-up Production Bands + 0 + 100 + >=1 + true + true + 1870 + Number of bands of production used in recovery of a start cost across each window + true + + + 435 + 99 + 17 + Start Cost Mark-up Window + 6 + 24 + true + true + 1871 + Number of hours over which a start cost should be recovered using mark-up on production + true + + + 436 + 99 + 18 + Start Cost Mark-up Method + 0 + 0 + In (0,1) + 0;"Co-optimize";1;"Simple" + true + true + 2565 + Algorithm used to apply start cost mark-ups + true + + + 437 + 99 + 19 + Contracts Optimize Offers + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 112 + If contract position should be considered when offering generation. + true + + + 438 + 99 + 20 + Contracts Settlement Method + 0 + 0 + In (0,1,2) + 0;"Fixed";1;"Pro-rata";2;"Least-cost" + true + true + 113 + Method of calculating contract quantities for settlement + true + + + 439 + 99 + 21 + Contracts Handoff Point + 0 + 0 + In (0,1) + 0;"Purchaser's Price";1;"Generator's Price" + true + true + 111 + Location of hand-off for setting of contract settlement price + true + + + 440 + 99 + 22 + Market Trading Format + 0 + 1 + In (0,1) + 0;"Bilateral";1;"POOLCO" + true + true + 407 + Trading format for Cournot model (Bilateral=No Arbitrage, POOLCO=With Arbitrage). + true + + + 441 + 99 + 23 + Non Price Setting Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2107 + If non-price setting plant should be fixed prior to the final price calculation + true + + + 442 + 100 + 1 + SOLVER + 0 + 4 + In (0,1,2,3,4,6,7,8) + 0;"MOSEK";1;"CPLEX";2;"Xpress-MP";3;"SoPlex/SCIP";4;"Gurobi";6;"Default";7;"GLPK";8;"COPT" + true + true + 755 + SOLVER engine used by PLEXOS. + true + + + 443 + 100 + 2 + Small LP Optimizer + 0 + 0 + Between 0 And 9 + 0;"Auto";1;"Barrier";2;"Conic";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";7;"Mixed Integer";8;"Nonconvex";9;"Concurrent" + true + true + 750 + Optimizer used to solve 'small' liner programming problems. + true + + + 444 + 100 + 3 + Small LP Nonzero Count + 0 + 250000 + >0 + true + true + 749 + Maximum number of non-zeros in a 'small' linear programming problem. + true + + + 445 + 100 + 4 + Cold Start Optimizer 1 + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 83 + First priority optimizer used to solve problems from a cold-start. + true + + + 446 + 100 + 5 + Cold Start Optimizer 2 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 84 + Second priority optimizer used to solve problems from a cold-start. + true + + + 447 + 100 + 6 + Cold Start Optimizer 3 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 85 + Third priority optimizer used to solve problems from a cold-start. + true + + + 448 + 100 + 7 + Hot Start Optimizer 1 + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 271 + First priority optimizer used to solve problems from a hot-start. + true + + + 449 + 100 + 8 + Hot Start Optimizer 2 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 272 + Second priority optimizer used to solve problems from a hot-start. + true + + + 450 + 100 + 9 + Hot Start Optimizer 3 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 273 + Third priority optimizer used to solve problems from a hot-start. + true + + + 451 + 100 + 10 + Concurrent Mode + 0 + 0 + In (0,1) + 0;"Deterministic";1;"Opportunistic" + true + true + 2693 + Mode for the concurrent optimizer + true + + + 452 + 100 + 11 + Presolve + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2773 + Toggles on/off solver presolve + true + + + 453 + 100 + 12 + Sparsify + 0 + -1 + In (-1,0,1,2) + -1;"Automatic";0;"Off";1;"MIP";2;"Always" + true + true + 3163 + Strategy for matrix sparsification during presolve + true + + + 454 + 100 + 13 + Scaling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2774 + Toggles on/off solver problem scaling + true + + + 455 + 100 + 14 + Barrier Convergence Tolerance + 0 + 1E-08 + Between 0 And 1 + true + true + 2961 + Termination criteria for the Barrier algorithm + true + + + 456 + 100 + 15 + Crossover + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2768 + If crossover is used to transform the interior solution produced by barrier into a basic solution + true + + + 457 + 100 + 16 + Feasibility Tolerance + 0 + 0 + >=0 + true + true + 2446 + Allowable violation of variable bounds (0 = solver default value) + true + + + 458 + 100 + 17 + Optimality Tolerance + 0 + 0 + >=0 + true + true + 2653 + Optimality tolerance (0 = solver default value) + true + + + 459 + 100 + 18 + Objective Scalar + 0 + 1 + >0 + true + true + 2651 + Scale the objective function internally by this factor + true + + + 460 + 100 + 19 + Objective Tolerance + 0 + 0 + >=0 + true + true + 2652 + Smallest allowable objective function coefficient + true + + + 461 + 100 + 20 + Maximum Threads + 0 + -1 + >=-1 + true + true + 468 + Maximum number of threads used simultaneously by all simplex and interior point optimizers, where -1 means all available threads. + true + + + 462 + 100 + 21 + MIP Root Optimizer + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 516 + Optimizer used to solve the linear relaxation of a mixed-integer program. + true + + + 463 + 100 + 22 + MIP Node Optimizer + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 513 + Optimizer used at the nodes of the branch and bound algorithm. + true + + + 464 + 100 + 23 + MIP Relative Gap + 0 + 0.0001 + >=0 + true + true + 515 + Declare the integer solution optimal when this gap is reached between the current integer solution and best-bound linear relaxation (this is not a measure of optimality). + true + + + 465 + 100 + 24 + MIP Improve Start Gap + 0 + 0 + >=0 + true + true + 1309 + Switch strategy to improving the best integer solution when this gap is reached. + true + + + 466 + 100 + 25 + MIP Absolute Gap + 0 + 0 + >=0 + true + true + 2447 + Absolute tolerance on the gap between the best integer objective and the objective of the best node remaining + true + + + 467 + 100 + 26 + MIP Max Relative Gap + 0 + 0 + >=0 + true + true + 2646 + When set to a value greater than zero, the MIP Max Time is treated as a soft constraint with optimization continuing until the MIP Max Relative Gap is reached. + true + + + 468 + 100 + 27 + MIP Max Absolute Gap + 0 + 0 + >=0 + true + true + 2819 + When set to a value greater than zero, the MIP Max Time is treated as a soft constraint with optimization continuing until the MIP Max Absolute Gap is reached. + true + + + 469 + 100 + 28 + MIP Max Time + 5 + -1 + >=-1 + true + true + 511 + Maximum time in mixed integer programming algorithm + true + + + 470 + 100 + 29 + MIP Max Relaxation Repair Time + 5 + -1 + >=-1 + true + true + 1905 + Maximum time allowed in repairing an infeasible mixed integer programming problem + true + + + 471 + 100 + 30 + MIP Maximum Threads + 0 + -1 + >=-1 + true + true + 512 + Maximum number of threads used by the mixed integer optimizer, where -1 means all available threads. + true + + + 472 + 100 + 31 + MIP Start Solution + 0 + 1 + Between 0 And 2 + 0;"Never";1;"Within Step";2;"Within And Between Steps" + true + true + 1945 + MIP solver will be warm started with previous solutions according to this setting. + true + + + 473 + 100 + 32 + MIP Focus + 0 + 0 + In (0,1,2,3) + 0;"Balanced";1;"Feasibility";2;"Optimality";3;"Best Bound" + true + true + 2659 + High-level solution strategy for the MIP solver + true + + + 474 + 100 + 33 + Carry over MIP Time + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2448 + If unused MIP Max Time is carried over to the next MIP solve allowing more time on harder problems + true + + + 475 + 100 + 34 + MIP Max Time with Carry over + 5 + -1 + >=-1 + true + true + 2449 + Maximum time in mixed integer programming algorithm including any unused time carried over + true + + + 476 + 100 + 35 + MIP Hard Stop + 5 + -1 + >=-1 + true + true + 2770 + Hard limit on the mixed integer programming time when using MIP Max Relative Gap and MIP Max Time is a soft limit + true + + + 477 + 100 + 36 + MIP Interrupt + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2802 + If the MIP search can be interrupted by pressing the CTRL-P key combination + true + + + 478 + 100 + 37 + Hint Mode + 0 + 0 + In (0,1,2) + 0;"Start";1;"Hint";2;"Fixed" + true + true + 2772 + Controls how variable hints are used by the solver + true + + + 479 + 100 + 38 + Random Number Seed + 0 + 0 + Between 0 And 2000000000 + true + true + 662 + Random number seed for the solver + true + + + 480 + 100 + 39 + Monitoring Periodic Clearing + 0 + 0 + >=0 + true + true + 2694 + Clear monitored constraints and variables from the formulation periodically (number of steps) + true + + + 481 + 100 + 40 + Monitoring Maximum Threads + 0 + -1 + >=-1 + true + true + 2450 + Maximum number of threads for monitored constraint iterations, where -1 means all available threads. + true + + + 482 + 100 + 41 + Maximum Monitored MIP Iterations + 0 + -1 + true + true + 2045 + Maximum number of monitored row/column iterations with MIP enabled + true + + + 483 + 100 + 42 + Maximum Parallel Tasks + 0 + -1 + >=-1 + true + true + 1918 + Maximum number of parallel optimizations run concurrently, where -1 means one task per CPU. + true + + + 484 + 100 + 43 + Feasibility Repair Failure + 0 + 0 + In (0,1) + 0;"Stop";1;"Continue" + true + true + 1989 + Action to take if an infeasible problem cannot be repaired. + true + + + 485 + 101 + 1 + Clear Existing + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1022 + Clear (delete) existing diagnostic files from the solution folder. + true + + + 486 + 101 + 2 + Task Size + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1023 + Print the size of the optimization task. + true + + + 487 + 101 + 3 + Task Components + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 962 + Print a summary of the formulation elements by class. + true + + + 488 + 101 + 4 + LP Progress + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 391 + Show progress messages from the LP/QP solver + true + + + 489 + 101 + 5 + MIP Progress + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 514 + Show progress messages from the MIP solver + true + + + 490 + 101 + 6 + Solver Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 756 + Print a summary of the solution status, objective function value, etc for each mathematical program solved. + true + + + 491 + 101 + 7 + Summary Exact Conditioning + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2887 + Report exact basis condition number (if available) in the solver summary. + true + + + 492 + 101 + 8 + Solution Status + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1171 + Status of the solution to each mathematical programming problem. + true + + + 493 + 101 + 9 + Times + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1024 + Print the time taken for each activity. + true + + + 494 + 101 + 10 + Sample Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1025 + Print summary for each sample of a multi-sample run. + true + + + 495 + 101 + 11 + Step Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1026 + Print summary for each step of a multi-step run. + true + + + 496 + 101 + 12 + Performance Summary + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1893 + Print performance summary at the completion of each simulation phase. + true + + + 497 + 101 + 13 + Step From + 0 + 1 + >=1 + true + true + 1418 + Limit diagnostic file writing to step numbers starting at this number. + true + + + 498 + 101 + 14 + Step To + 0 + -1 + >=-1 + true + true + 1419 + Limit diagnostic file writing to step numbers ending at this number (-1 means infinity). + true + + + 499 + 101 + 15 + Sample From + 0 + 1 + >=1 + true + true + 1883 + Limit diagnostic file writing to sample numbers starting at this number. + true + + + 500 + 101 + 16 + Sample To + 0 + -1 + >=-1 + true + true + 1884 + Limit diagnostic file writing to sample numbers ending at this number (-1 means infinity). + true + + + 501 + 101 + 17 + LP Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 390 + Write math programs to disk in LP text format + true + + + 502 + 101 + 18 + MPS Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1035 + Write math programs to disk in MPS text format + true + + + 503 + 101 + 19 + Solution Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 754 + Write math program solutions to disk in text format + true + + + 504 + 101 + 20 + Generic Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1033 + Use generic names in math program files + true + + + 505 + 101 + 21 + Binary Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 38 + Write math programs to disk in binary format + true + + + 506 + 101 + 22 + Use Generic Writer + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1895 + Use generic writer for LP and solution files + true + + + 507 + 101 + 23 + Sort Row Column Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1896 + Generic writer will sort row and columns names + true + + + 508 + 101 + 24 + Full LP Files + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 696022935 + Write Full LP files + true + + + 509 + 101 + 25 + Standardize Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1897 + Generic writer will standardize names in LP and SOL files + true + + + 510 + 101 + 26 + Strip Model Name + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1898 + Generic writer will strip out the Model name from LP and SOL files + true + + + 511 + 101 + 27 + Algebraic + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1899 + Write LP files in algebraic format + true + + + 512 + 101 + 28 + Skip Zero Values + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1900 + Generic writer will print only non-zero valued primal and dual variables in SOL files + true + + + 513 + 101 + 29 + Zero Tolerance LP + 0 + 0 + >=0 + true + true + 1901 + Generic writer zero value tolerance for LP file writing + true + + + 514 + 101 + 30 + Zero Tolerance SOL + 0 + 0 + >=0 + true + true + 1902 + Generic writer zero value tolerance for SOL file writing + true + + + 515 + 101 + 31 + Decimal Places LP + 0 + 6 + >=0 + true + true + 1903 + Generic writer decimal places for LP file writing + true + + + 516 + 101 + 32 + Decimal Places SOL + 0 + 6 + >=0 + true + true + 1904 + Generic writer decimal places for SOL file writing + true + + + 517 + 101 + 33 + Infeasibility LP Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2568 + Write infeasible and repaired math programs to disk in text format + true + + + 518 + 101 + 34 + Infeasibility MPS Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2569 + Write infeasible and repaired math programs to disk in MPS format + true + + + 519 + 101 + 35 + Max Infeasibility Log Lines + 0 + -1 + >=-1 + true + true + 1421 + Maximum number of infeasibility diagnostic lines written to the screen and log file. + true + + + 520 + 101 + 36 + IIS + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2225 + Compute the irreducibly inconsistent set (IIS) for each infeasibility and write to disk in text format + true + + + 521 + 101 + 37 + Feasibility Repair Weight + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1117 + Write the weights used in feasibility repair for each variable/constraint class + true + + + 522 + 101 + 38 + Database Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1922 + Output the database loading process to log file. + true + + + 523 + 101 + 39 + Licensing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1923 + Writes details of licenses checked out + true + + + 524 + 101 + 40 + Computer Information + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1925 + Output computer information. + true + + + 525 + 101 + 41 + Data File Read + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1924 + Output data file information to log file. + true + + + 526 + 101 + 42 + Monitored Iterations Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2046 + Print a summery message after iterations of row/column monitoring + true + + + 527 + 101 + 43 + Monitored Iterations + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2047 + Print messages for every iteration of row/column monitoring + true + + + 528 + 101 + 44 + Bertrand Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 30 + Write diagnostics for the Bertrand pricing algorithm + true + + + 529 + 101 + 45 + Revenue Recovery + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 697 + Write diagnostics for the LRMC recovery algorithm + true + + + 530 + 101 + 46 + Bid-Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 32 + Write diagnostics for RSI bid cost markup calculations + true + + + 531 + 101 + 47 + New Entry + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 554 + Write diagnostics for MT Schedule new entry calculations + true + + + 532 + 101 + 48 + Shift Factors + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 745 + Write the computed shift factors (PTDF) to a diagnostic file + true + + + 533 + 101 + 49 + Unserved Energy + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 825 + Write diagnostics each time USE occurs at a node + true + + + 534 + 101 + 50 + Interruption Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 328 + Write diagnostics for interruption sharing + true + + + 535 + 101 + 51 + Network Traversal + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1944 + Invokes network reduction algorithm which can improve performance on large-scale networks. + true + + + 536 + 101 + 52 + Transmission Topology + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1921 + Write a summary of the transmission topology to the log + true + + + 537 + 101 + 53 + Transmission Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 797 + Write diagnostics for convergence of the quadratic loss method + true + + + 538 + 101 + 54 + Congestion Charges + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 956 + Write diagnostics for Node.[Congestion Charge] calculations + true + + + 539 + 101 + 55 + Marginal Loss Charges + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 957 + Write diagnostics for Node.[Marginal Loss Charge] calculations + true + + + 540 + 101 + 56 + Binding Contingencies + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 958 + Write diagnostics for binding Contingency constraints + true + + + 541 + 101 + 57 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 810 + Write diagnostics for the Rounded Relaxation unit commitment algorithm + true + + + 542 + 101 + 58 + Constraint Decomposition + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 95 + Write diagnostics for constraint decomposition in MT Schedule + true + + + 543 + 101 + 59 + Constraint Rollover + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 98 + Write diagnostics for constraint RHS carry-over in ST Schedule + true + + + 544 + 101 + 60 + Storage Decomposition + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1620 + Write diagnostics for storage decomposition + true + + + 545 + 101 + 61 + Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 804 + Write diagnostics for uplift and Uniform Pricing + true + + + 546 + 101 + 62 + Marginal Unit + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 671 + Execute region marginal unit diagnostic (this is an active diagnostic) + true + + + 547 + 101 + 63 + Marginal Unit Transmission Detail + 0 + 0 + In (0,1) + 0;"Regional";1;"System" + true + true + 1755 + Transmission area for marginal unit diagnostic + true + + + 548 + 101 + 64 + Marginal Unit Increment + 1 + -1 + true + true + 1223 + Increment used for load in the marginal unit diagnostic. + true + + + 549 + 101 + 65 + Marginal Expansion Unit + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1222 + Run algorithm to calculate the marginal generating unit for expansion (LT Plan). + true + + + 550 + 101 + 66 + Marginal Expansion Increment + 1 + 1000 + true + true + 1224 + Increment used for load in the region marginal expansion unit diagnostic. + true + + + 551 + 101 + 67 + Region Supply + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 672 + Execute region supply diagnostic (this is an active diagnostic) + true + + + 552 + 101 + 68 + Annuities + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 15 + Write diagnostics for annuity calculations + true + + + 553 + 101 + 69 + NPV + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1621 + Write diagnostics for LT Plan NPV of optimal plan + true + + + 554 + 101 + 70 + Embedded Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 870 + Write diagnostics for embedded loss iterations + true + + + 555 + 101 + 71 + Outages + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 895 + Write diagnostics for generator and line outages + true + + + 556 + 101 + 72 + Random Number Seed + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 662 + Write out the Random Number Seed used for each Generator and Line + true + + + 557 + 101 + 73 + Interleaved + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1375 + Write diagnostics for Model Interleaved run mode + true + + + 558 + 101 + 74 + Heat Rate + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 260 + Write diagnostics for Generator Heat Rate curve fitting and non-convex corrections. + true + + + 559 + 101 + 75 + Objective Function + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1420 + Write diagnostics for non-zero terms in the objective function. + true + + + 560 + 101 + 76 + Future Cost Function + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1503 + Write diagnostics for the future cost function. + true + + + 561 + 101 + 77 + Historical Sampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1906 + Write the historical samples. + true + + + 562 + 101 + 78 + Scenario Tree + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1681 + Write diagnostics for the scenario tree + true + + + 563 + 101 + 79 + Sample Weights + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1682 + Write diagnostics for the sample weights + true + + + 564 + 101 + 80 + SDDP Convergence + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2434 + Write SDDP convergence diagnostic file + true + + + 565 + 101 + 81 + Sample Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2874 + Write diagnostics for reduced sample periods and periods mapping by sampled chronology. + true + + + 566 + 101 + 82 + ATC Reports + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 3009 + Write ATC min, ATC max, and most limiting elements for ATC to diagnostic files. + true + + + 567 + 101 + 83 + Levelized Company Costs + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 3014 + Write diagnostics for LT Plan Company Levelized Costs + true + + + 568 + 102 + 1 + Report + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1354 + If enabled the list object is passed into the solution file and can be used to build queries in the solution viewer + true + + + 569 + 102 + 2 + Filter + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1355 + If enabled the list object becomes a filter for the input interface. + true + + + 570 + 102 + 3 + Inclusive Empty + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1356 + This means that an empty collection implies all objects are included. + true + + + 571 + 102 + 4 + Transient + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1357 + Transient lists are not saved in the XML but only exist in the current session. + true + + + 6 + 128 + 4 + + + 6 + 140 + 366 + + + 7 + 128 + 4 + + + 7 + 129 + 10 + + + 8 + 148 + 0 + + + 11 + 155 + -1 + + + 11 + 156 + -1 + + + 12 + 163 + 20 + + + 13 + 207 + 10 + + + 17 + 320 + 0 + + + 18 + 328 + 1 + + + 18 + 331 + 230 + + + 18 + 353 + 0 + + + 18 + 354 + 0 + + + 18 + 365 + 230 + + + 1 + 1 + 0 + - + + + 2 + 2 + 0 + - + + + 3 + 3 + 0 + - + + + 4 + 4 + 0 + - + + + 5 + 5 + 0 + - + + + 6 + 6 + 0 + - + + + 7 + 7 + 0 + - + + + 8 + 8 + 0 + - + + + 9 + 9 + 0 + - + + + 10 + 10 + 0 + - + + + 11 + 11 + 0 + - + + + 12 + 12 + 0 + - + + + 13 + 13 + 0 + - + + + 14 + 14 + 0 + - + + + 15 + 15 + 0 + - + + + 16 + 16 + 0 + - + + + 17 + 17 + 0 + - + + + 18 + 18 + 0 + - + + + 19 + 19 + 0 + - + + + 20 + 20 + 0 + - + + + 21 + 21 + 0 + - + + + 22 + 22 + 0 + - + + + 23 + 23 + 0 + - + + + 24 + 24 + 0 + - + + + 25 + 25 + 0 + - + + + 26 + 26 + 0 + - + + + 27 + 27 + 0 + - + + + 28 + 28 + 0 + - + + + 29 + 29 + 0 + - + + + 30 + 30 + 0 + - + + + 31 + 31 + 0 + - + + + 32 + 32 + 0 + - + + + 33 + 33 + 0 + - + + + 34 + 34 + 0 + - + + + 35 + 35 + 0 + - + + + 36 + 36 + 0 + - + + + 37 + 37 + 0 + - + + + 38 + 38 + 0 + - + + + 39 + 39 + 0 + - + + + 40 + 40 + 0 + - + + + 41 + 41 + 0 + - + + + 42 + 42 + 0 + - + + + 43 + 43 + 0 + - + + + 44 + 44 + 0 + - + + + 45 + 45 + 0 + - + + + 46 + 46 + 0 + - + + + 47 + 47 + 0 + - + + + 48 + 48 + 0 + - + + + 49 + 49 + 0 + - + + + 50 + 50 + 0 + - + + + 51 + 51 + 0 + - + + + 52 + 52 + 0 + - + + + 53 + 53 + 0 + - + + + 54 + 54 + 0 + - + + + 55 + 55 + 0 + - + + + 56 + 56 + 0 + - + + + 57 + 57 + 0 + - + + + 58 + 58 + 0 + - + + + 59 + 59 + 0 + - + + + 60 + 60 + 0 + - + + + 61 + 61 + 0 + - + + + 62 + 62 + 0 + - + + + 63 + 63 + 0 + - + + + 64 + 64 + 0 + - + + + 65 + 65 + 0 + - + + + 66 + 66 + 0 + - + + + 67 + 67 + 0 + - + + + 68 + 68 + 0 + - + + + 69 + 69 + 0 + - + + + 70 + 70 + 0 + - + + + 71 + 71 + 0 + - + + + 72 + 72 + 0 + - + + + 73 + 73 + 0 + - + + + 74 + 74 + 0 + - + + + 75 + 75 + 0 + - + + + 76 + 76 + 0 + - + + + 77 + 77 + 0 + - + + + 78 + 78 + 0 + - + + + 79 + 79 + 0 + - + + + 80 + 80 + 0 + - + + + 81 + 81 + 0 + - + + + 82 + 82 + 0 + - + + + 83 + 83 + 0 + - + + + 84 + 84 + 0 + - + + + 85 + 85 + 0 + - + + + 86 + 86 + 0 + - + + + 87 + 87 + 0 + - + + + 88 + 88 + 0 + - + + + 89 + 89 + 0 + - + + + 90 + 90 + 0 + - + + + 91 + 91 + 0 + - + + + 92 + 92 + 0 + - + + + 93 + 93 + 0 + - + + + 94 + 94 + 0 + - + + + 95 + 95 + 0 + - + + + 96 + 96 + 0 + - + + + 97 + 97 + 0 + - + + + 98 + 98 + 0 + - + + + 99 + 99 + 0 + - + + + 100 + 100 + 0 + - + + + 101 + 101 + 0 + - + + + 102 + 102 + 0 + - + + + 103 + 103 + 0 + - + + + 1 + System + 1 + true + 1 + The integrated energy system + + + 2 + Generator + 2 + true + 22 + Generating unit, or collection of like generating units + + + 3 + Power Station + 2 + false + 23 + Collection of Generators that can be dispatched together + + + 4 + Fuel + 2 + true + 18 + Fuel for a thermal generating unit + + + 5 + Fuel Contract + 2 + false + 24 + Fuel contract + + + 6 + Power2X + 2 + false + 115 + Facility to convert electric power to hydrogen and then gas or other products + + + 7 + Battery + 2 + false + 61 + Battery energy storage system + + + 8 + Battery Station + 2 + false + 134 + Collection of Batteries that can be dispatched together + + + 9 + Storage + 2 + false + 19 + Storage reservoir, head-pond, or tail-pond + + + 10 + Waterway + 2 + false + 20 + Waterway for representing rivers, canals, and spillways + + + 11 + Emission + 2 + false + 21 + Class of generator emission (e.g. NoX, SoX, CO2, etc) + + + 12 + Abatement + 2 + false + 55 + Emission abatement technology + + + 13 + Physical Contract + 2 + false + 25 + Physical contract (import, export, or wheel) + + + 14 + Purchaser + 2 + false + 26 + Demand + + + 15 + Reserve + 2 + false + 16 + Ancillary service + + + 16 + Reliability + 2 + false + 116 + Reliability group + + + 17 + Financial Contract + 2 + false + 4 + Financial contract (e.g. CfD, swap, cap, etc) + + + 18 + Cournot + 2 + false + 6 + Nash-Cournot game + + + 19 + RSI + 2 + false + 7 + Residual supply index analysis + + + 20 + Firm Capacity Group + 2 + false + 133 + Group of Generators and Batteries for which a dynamic firm capacity is modeled + + + 21 + Region + 3 + true + 8 + Transmission region/area + + + 22 + Pool + 3 + false + 75 + Set of transmission regions in a pool + + + 23 + Zone + 3 + true + 9 + Set of transmission buses in a zone + + + 24 + Node + 3 + true + 10 + Transmission node/bus + + + 25 + Load + 3 + false + 121 + Electricity Load + + + 26 + Line + 3 + true + 11 + Transmission line (AC, DC, or notional/entrepreneurial interconnector) + + + 27 + MLF + 3 + false + 12 + Marginal loss factor equation + + + 28 + Transformer + 3 + false + 13 + Voltage transformer + + + 29 + Flow Control + 3 + false + 14 + Flow control + + + 30 + Interface + 3 + false + 15 + Transmission interface + + + 31 + Contingency + 3 + false + 17 + A contingency for use in security constrained economic dispatch + + + 32 + Hub + 3 + false + 59 + A collection of nodes representing a pricing area + + + 33 + Transmission Right + 3 + false + 5 + Transmission right (FTR, SRA) + + + 34 + Heat Plant + 4 + false + 72 + Heat production plant + + + 35 + Heat Node + 4 + false + 73 + Heat connection point + + + 36 + Heat Storage + 4 + false + 118 + Storage where thermal energy can be stored and withdrawn + + + 37 + Gas Field + 5 + false + 49 + Field from which gas is extracted + + + 38 + Gas Plant + 5 + false + 70 + Gas processing plant e.g. converting raw natural gas to pipeline quality + + + 39 + Gas Pipeline + 5 + false + 51 + Pipeline for transporting gas + + + 40 + Gas Node + 5 + false + 52 + Connection point in gas network + + + 41 + Gas Storage + 5 + false + 50 + Storage where gas can be injected and extracted + + + 42 + Gas Demand + 5 + false + 53 + Demand for gas + + + 43 + Gas DSM Program + 5 + false + 109 + Demand side management programs + + + 44 + Gas Basin + 5 + false + 60 + Collection of gas fields in a common basin + + + 45 + Gas Zone + 5 + false + 56 + Set of gas nodes + + + 46 + Gas Contract + 5 + false + 69 + Gas contract + + + 47 + Gas Transport + 5 + false + 71 + Gas shipment + + + 48 + Gas Path + 5 + false + 132 + Gas shipment path + + + 49 + Gas Capacity Release Offer + 5 + false + 110 + The release of available pipeline or storage capacity to another party. + + + 50 + Energy Content + 5 + false + 988638929 + Class of Energy contents + + + 51 + Water Plant + 6 + false + 63 + Water production plant e.g. desalination plant + + + 52 + Water Pipeline + 6 + false + 65 + Water network pipeline + + + 53 + Water Node + 6 + false + 66 + Water network node + + + 54 + Water Storage + 6 + false + 64 + Water storage tank + + + 55 + Water Demand + 6 + false + 67 + Demand for water + + + 56 + Water Zone + 6 + false + 68 + Set of water network nodes + + + 57 + Water Pump Station + 6 + false + 119 + Collection of Pumps that can be dispatched together + + + 58 + Water Pump + 6 + false + 120 + Device to move water upstream using electrical energy + + + 59 + Vehicle + 7 + false + 112 + An electric vehicle (EV, PHEV, etc) + + + 60 + Charging Station + 7 + false + 113 + An electric vehicle charging station + + + 61 + Fleet + 7 + false + 114 + A fleet of vehicles + + + 62 + Company + 8 + false + 2 + Energy utility or other ownership entity + + + 63 + Commodity + 9 + false + 122 + A commodity that can be produced, consumed, stored, transformed, traded, priced and constrained + + + 64 + Process + 9 + false + 123 + A process that transforms one or more input commodities to one or more output commodities + + + 65 + Facility + 9 + false + 124 + A facility that performs one or more processes + + + 66 + Maintenance + 9 + false + 62 + A class of maintenance events to be optimally placed in time + + + 67 + Component + 9 + false + 135 + Spare parts which are consumed by maintenance events + + + 68 + Flow Network + 9 + false + 126 + A network that flows a Commodity + + + 69 + Flow Node + 9 + false + 127 + A node in a flow network + + + 70 + Flow Path + 9 + false + 128 + A path in a flow network + + + 71 + Flow Storage + 9 + false + 129 + A storage located at a Flow Node + + + 72 + Entity + 9 + false + 125 + Ownership and/or strategic entity + + + 73 + Market + 9 + false + 3 + A market that can supply and/or demand a Commodity + + + 74 + Transport + 9 + false + 329459841 + A transport that transfers goods + + + 75 + Transport Hub + 9 + false + 1322298233 + A hub that exports goods to or imports goods from a transport + + + 76 + Transport Path + 9 + false + 1210828619 + A path followed by a Transport + + + 77 + Constraint + 10 + false + 27 + Generic constraint + + + 78 + Objective + 10 + false + 111 + Generic objective function + + + 79 + Decision Variable + 10 + false + 57 + Generic decision variable + + + 80 + Nonlinear Constraint + 10 + false + 117 + Generic non-linear constraint + + + 81 + Data File + 11 + true + 29 + Reference to an external text file + + + 82 + Variable + 11 + false + 31 + Stochastic variable + + + 83 + Timeslice + 11 + false + 34 + Timeslice for applying to data and/or reporting + + + 84 + Global + 11 + false + 58 + Data that are global to the simulation + + + 85 + Scenario + 11 + true + 35 + Data scenario + + + 86 + Weather Station + 11 + false + 76 + Collection of all weather events related to local station + + + 87 + Model + 12 + true + 36 + Collection of data scenarios that define a model to be evaluated + + + 88 + Project + 12 + true + 37 + Collection of models saved into single project database + + + 89 + Horizon + 13 + true + 32 + Simulation horizon + + + 90 + Report + 13 + true + 33 + Set of report selections + + + 91 + Stochastic + 14 + true + 46 + Stochastic settings + + + 92 + Preview + 13 + true + 131 + Preview of the input data used + + + 93 + LT Plan + 13 + true + 38 + LT Plan simulation phase + + + 94 + PASA + 13 + true + 39 + PASA simulation phase + + + 95 + MT Schedule + 13 + true + 40 + MT Schedule simulation phase + + + 96 + ST Schedule + 13 + true + 41 + ST Schedule simulation phase + + + 97 + Transmission + 14 + true + 43 + Transmission settings + + + 98 + Production + 14 + true + 44 + Production settings + + + 99 + Competition + 14 + true + 45 + Competition settings + + + 100 + Performance + 14 + true + 47 + Performance settings + + + 101 + Diagnostic + 14 + true + 48 + Diagnostic settings + + + 102 + List + 15 + true + 54 + Generic list of objects + + + 103 + Layout + 15 + true + 130 + A graphical layout + + + 1 + - + 0 + + + 2 + Electric + 1 + + + 3 + Transmission + 2 + + + 4 + Heat + 14 + + + 5 + Gas + 10 + + + 6 + Water + 11 + + + 7 + Transport + 15 + + + 8 + Ownership + 3 + + + 9 + Universal + 16 + + + 10 + Generic + 4 + + + 11 + Data + 5 + + + 12 + Execute + 6 + + + 13 + Simulation + 7 + + + 14 + Settings + 8 + + + 15 + List + 13 + + + 1 + 1 + 2 + Generators + 0 + -1 + true + true + 36 + Generator objects + 1 + + + 2 + 2 + 2 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Generator inherits from + Generator objects inheriting from this template + 2 + + + 3 + 102 + 2 + Generators + 0 + -1 + Lists + 0 + -1 + true + true + 36 + set of Generator objects in the List + set of Lists containing the Generator + 3 + + + 4 + 2 + 2 + Heat Input + 0 + -1 + Heat Output + 0 + -1 + false + false + 40 + set of generators that provide heat input to the generator + generator that receives the waste heat from this generator + 4 + + + 5 + 2 + 2 + Transition + 0 + -1 + false + false + 218 + set of generators that can transition + 5 + + + 6 + 2 + 3 + Power Station + 0 + -1 + Generators + 0 + -1 + true + false + 76 + power station the generator belongs to + power station the generator is aggregated in to + 6 + + + 7 + 2 + 4 + Fuels + 0 + -1 + Generators + 0 + -1 + true + false + 31 + set of fuels used by the generator + set of generators that use the fuel + 7 + + + 8 + 2 + 4 + Start Fuels + 0 + -1 + Generators Started + 0 + -1 + true + false + 92 + fuels available for starting units + set of generators that use the fuel to start + 8 + + + 9 + 2 + 6 + Source Power2X + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 293 + 9 + + + 10 + 2 + 9 + Head Storage + 0 + 1 + Exporting Generators + 0 + -1 + true + false + 38 + head storage for the generator + set of generators that draw water from the storage + 10 + + + 11 + 2 + 9 + Tail Storage + 0 + 1 + Importing Generators + 0 + -1 + true + false + 97 + tail storage for the generator + set of generators that release water into the storage + 11 + + + 12 + 2 + 24 + Nodes + 1 + -1 + Generators + 0 + -1 + true + false + 70 + set of nodes the generator injects energy at + set of generators injecting at the node + 12 + + + 13 + 2 + 24 + Nodes* + 0 + -1 + Generators* + 0 + -1 + false + true + 178 + creates copies of the generator at each node in this collection + create copies of these generators and place at this node + 13 + + + 14 + 2 + 35 + Heat Input Nodes + 0 + -1 + Generators Supplied + 0 + -1 + true + false + 223 + set of heat nodes supplying heat to the generator + set of generators supplied by the node + 14 + + + 15 + 2 + 35 + Heat Output Nodes + 0 + -1 + Supplying Generators + 0 + -1 + true + false + 224 + set of heat nodes collecting waste heat from the generator + set of generators supplying waste heat to the node + 15 + + + 16 + 2 + 37 + Source Gas Fields + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 289 + 16 + + + 17 + 2 + 38 + Source Gas Plants + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 292 + 17 + + + 18 + 2 + 40 + Gas Node + 0 + -1 + Generators + 0 + -1 + true + false + 117 + set of gas nodes connected to the generator + set of generators connected to the gas node + 18 + + + 19 + 2 + 40 + Start Gas Nodes + 0 + -1 + Generators Started + 0 + -1 + true + false + 304 + set of gas nodes available for starting units + set of generators connected to the gas node + 19 + + + 20 + 2 + 41 + Source Gas Storages + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 290 + 20 + + + 21 + 2 + 46 + Source Gas Contracts + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 291 + 21 + + + 22 + 2 + 47 + Source Gas Transports + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 299 + 22 + + + 23 + 2 + 53 + Water Node + 0 + 1 + Generators + 0 + -1 + true + false + 200 + Water Node the Generator connects to + set of Generators connected to the Water Node + 23 + + + 24 + 2 + 62 + Companies + 0 + -1 + Generators + 0 + -1 + true + false + 9 + set of companies that own the generator + set of generators the company owns + 24 + + + 25 + 2 + 63 + Commodities Consumed + 0 + -1 + Consuming Generators + 0 + -1 + true + false + 274 + set of Commodities consumed by the Generator + set of Generators that consume the Commodity + 25 + + + 26 + 2 + 63 + Commodities Produced + 0 + -1 + Producing Generators + 0 + -1 + true + false + 275 + set of Commodities produced by the Generator + set of Generators that produce the Commodity + 26 + + + 27 + 2 + 66 + Maintenances + 0 + -1 + Generators + 0 + -1 + true + false + 179 + set of maintenance events on the generator + set of generators taken out on maintenance + 27 + + + 28 + 2 + 69 + Flow Nodes + 0 + -1 + Generators + 0 + -1 + true + false + 279 + set of Flow Nodes the Generator connects to + set of Generators connected to the Flow Node + 28 + + + 29 + 2 + 73 + Capacity Markets + 0 + -1 + Capacity Generators + 0 + -1 + true + true + 4 + set of capacity markets the generator sells into + set of generators that sell capacity into the market + 29 + + + 30 + 2 + 73 + Heat Markets + 0 + -1 + Heat Generators + 0 + -1 + true + true + 286 + set of markets the generator sell heat-based products into + set of generators providing heat-based products to the market + 30 + + + 31 + 2 + 73 + Mark-to-Markets + 0 + -1 + Generators + 0 + -1 + false + false + 228 + market used to mark-to-market energy and reserves + generators using this market to mark-to-market + 31 + + + 32 + 2 + 77 + Constraints + 0 + -1 + Generators + 0 + -1 + true + true + 12 + set of Constraints on the Generator + set of Generators in the Constraint + 32 + + + 33 + 2 + 78 + Objectives + 0 + -1 + Generators + 0 + -1 + true + true + 240 + set of Objectives on the Generator + set of Generators in the Objective + 33 + + + 34 + 2 + 79 + Decision Variables + 0 + -1 + Generators + 0 + -1 + true + true + 166 + set of generators whose equations include the decision variable + Decision Variables included in the Generator formulation + 34 + + + 35 + 2 + 82 + Conditions + 0 + -1 + Generators + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Generator + set of Generator objects that define when the Variable is active + 35 + + + 36 + 1 + 3 + Power Stations + 0 + -1 + true + true + 77 + Power Station objects + 36 + + + 37 + 3 + 3 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Power Station inherits from + Power Station objects inheriting from this template + 37 + + + 38 + 102 + 3 + Power Stations + 0 + -1 + Lists + 0 + -1 + true + true + 77 + set of Power Station objects in the List + set of Lists containing the Power Station + 38 + + + 39 + 3 + 24 + Nodes + 0 + -1 + true + false + 70 + (optional) set of nodes the power station injects at + 39 + + + 40 + 1 + 4 + Fuels + 0 + -1 + true + true + 31 + Fuel objects + 40 + + + 41 + 4 + 4 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fuel inherits from + Fuel objects inheriting from this template + 41 + + + 42 + 102 + 4 + Fuels + 0 + -1 + Lists + 0 + -1 + true + true + 31 + set of Fuel objects in the List + set of Lists containing the Fuel + 42 + + + 43 + 4 + 6 + Source Power2X + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 293 + 43 + + + 44 + 4 + 37 + Source Gas Fields + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 289 + 44 + + + 45 + 4 + 38 + Source Gas Plants + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 292 + 45 + + + 46 + 4 + 40 + Gas Nodes + 0 + -1 + Fuels + 0 + -1 + true + false + 115 + set of gas nodes the fuel is delivered through + set of fuels delivered from the gas node + 46 + + + 47 + 4 + 41 + Source Gas Storages + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 290 + 47 + + + 48 + 4 + 46 + Source Gas Contracts + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 291 + 48 + + + 49 + 4 + 47 + Source Gas Transports + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 299 + 49 + + + 50 + 4 + 62 + Companies + 0 + -1 + Fuels + 0 + -1 + true + false + 9 + set of companies that own the fuel + set of fuels the company owns + 50 + + + 51 + 4 + 65 + Facilities + 0 + -1 + Fuels + 0 + -1 + true + true + 267 + set of Facilities that consume the Fuel + set of Fuels the Facility consumes + 51 + + + 52 + 4 + 69 + Flow Nodes + 0 + -1 + Fuels + 0 + -1 + true + false + 279 + set of Flow Nodes the Fuel connects to + set of Fuels connected to the Flow Node + 52 + + + 53 + 4 + 73 + Markets + 0 + -1 + Fuels + 0 + -1 + true + false + 61 + set of markets the fuel is bought/sold from/to + set of fuels in the market + 53 + + + 54 + 4 + 77 + Constraints + 0 + -1 + Fuels + 0 + -1 + true + true + 12 + set of Constraints on the Fuel + set of Fuels in the Constraint + 54 + + + 55 + 4 + 78 + Objectives + 0 + -1 + Fuels + 0 + -1 + true + true + 240 + set of Objectives on the Fuel + set of Fuels in the Objective + 55 + + + 56 + 4 + 82 + Conditions + 0 + -1 + Fuels + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Fuel + set of Fuel objects that define when the Variable is active + 56 + + + 57 + 1 + 5 + Fuel Contracts + 0 + -1 + true + true + 30 + Fuel Contract objects + 57 + + + 58 + 5 + 5 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fuel Contract inherits from + Fuel Contract objects inheriting from this template + 58 + + + 59 + 102 + 5 + Fuel Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 30 + set of Fuel Contract objects in the List + set of Lists containing the Fuel Contract + 59 + + + 60 + 5 + 2 + Generators + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 36 + set of generators whose fuel use is subject to the contract + set of fuel contracts associated with supply to the generator + 60 + + + 61 + 5 + 4 + Fuel + 1 + 1 + Fuel Contracts + 0 + -1 + true + false + 29 + fuel in the contract + set of fuel contracts on the fuel + 61 + + + 62 + 5 + 62 + Companies + 0 + -1 + Fuel Contracts + 0 + -1 + true + false + 9 + set of companies that own the fuel contract + set of fuel contracts owned by the company + 62 + + + 63 + 5 + 77 + Constraints + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Fuel Contract + set of Fuel Contracts in the Constraint + 63 + + + 64 + 5 + 78 + Objectives + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Fuel Contract + set of Fuel Contracts in the Objective + 64 + + + 65 + 1 + 6 + Power2X + 0 + -1 + true + true + 244 + Power2X objects + 65 + + + 66 + 6 + 6 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Power2X inherits from + Power2X objects inheriting from this template + 66 + + + 67 + 102 + 6 + Power2X + 0 + -1 + Lists + 0 + -1 + true + true + 244 + set of Power2X objects in the List + set of Lists containing the Power2X + 67 + + + 68 + 6 + 4 + Fuels + 0 + 1 + Power2X + 0 + -1 + true + false + 31 + The set of fuels produced by the facility + The set of Power2X facilities that produce the fuel + 68 + + + 69 + 6 + 24 + Nodes + 1 + -1 + Power2X + 0 + -1 + true + false + 70 + The set of electric nodes the facility draws load from + The set of Power2X facilities at the node + 69 + + + 70 + 6 + 35 + Heat Nodes + 0 + -1 + Power2X + 0 + 1 + true + true + 220 + The set of heat nodes the facility supplies + The Power2X facility at the heat node + 70 + + + 71 + 6 + 36 + Heat Storages + 0 + -1 + Power2X + 0 + 1 + true + true + 253 + The set of Heat Storages connected to Power2X + The Power2X facility that is connected to Heat Storage + 71 + + + 72 + 6 + 40 + Gas Nodes + 0 + -1 + Power2X + 0 + -1 + true + true + 115 + The set of gas nodes the facility supplies + The Power2X facility at the gas node + 72 + + + 73 + 6 + 41 + Gas Storages + 0 + -1 + Power2X + 0 + 1 + true + true + 113 + The set of Gas Storages connected to Power2X + The Power2X facility connected to Gas Storage + 73 + + + 74 + 6 + 53 + Water Nodes + 0 + -1 + Power2X + 0 + 1 + true + true + 191 + The set of water nodes the facility draws water from + The Power2X facility at the water node + 74 + + + 75 + 6 + 62 + Companies + 0 + -1 + Power2X + 0 + -1 + true + false + 9 + set of companies that own the Power2X + set of Power2X the company owns + 75 + + + 76 + 6 + 63 + Commodities + 0 + -1 + Power2X + 0 + -1 + true + false + 260 + set of Commodities produced by the Power2X facility + The set of Power2X facilities that produce the Commodity + 76 + + + 77 + 6 + 69 + Flow Nodes + 0 + -1 + Power2X + 0 + -1 + true + false + 279 + set of Flow Nodes the Power2X connects to + set of Power2X objects connected to the Flow Node + 77 + + + 78 + 6 + 77 + Constraints + 0 + -1 + Power2X + 0 + -1 + true + true + 12 + set of Constraints on the Power2X + set of Power2X in the Constraint + 78 + + + 79 + 6 + 78 + Objectives + 0 + -1 + Power2X + 0 + -1 + true + true + 240 + set of Objectives on the Power2X + set of Power2X in the Objective + 79 + + + 80 + 6 + 82 + Conditions + 0 + -1 + Power2X + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Power2X object + set of Power2X objects that define when the Variable is active + 80 + + + 81 + 1 + 7 + Batteries + 0 + -1 + true + true + 176 + Battery objects + 81 + + + 82 + 7 + 7 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Battery inherits from + Battery objects inheriting from this template + 82 + + + 83 + 102 + 7 + Batteries + 0 + -1 + Lists + 0 + -1 + true + true + 176 + set of Battery objects in the List + set of Lists containing the Battery + 83 + + + 84 + 7 + 8 + Battery Station + 0 + -1 + Batteries + 0 + -1 + true + false + 318 + battery station the battery belongs to + battery station the battery is aggregated in to + 84 + + + 85 + 7 + 24 + Nodes + 1 + -1 + Batteries + 0 + -1 + true + false + 70 + set of nodes the battery is connected to + set of batteries connected to the node + 85 + + + 86 + 7 + 24 + Nodes* + 0 + -1 + Batteries* + 0 + -1 + false + true + 178 + creates copies of the battery at each node in this collection + create copies of these batteries and place at this node + 86 + + + 87 + 7 + 62 + Companies + 0 + -1 + Batteries + 0 + -1 + true + false + 9 + set of companies that own the battery + set of batteries the company owns + 87 + + + 88 + 7 + 63 + Commodities Consumed + 0 + -1 + Consuming Batteries + 0 + -1 + true + false + 274 + set of Commodities consumed by the Battery + set of Batteries that consume the Commodity + 88 + + + 89 + 7 + 63 + Commodities Produced + 0 + -1 + Producing Batteries + 0 + -1 + true + false + 275 + set of Commodities produced by the Battery + set of Batteries that produce the Commodity + 89 + + + 90 + 7 + 69 + Flow Nodes + 0 + -1 + Batteries + 0 + -1 + true + false + 279 + set of Flow Nodes the Battery connects to + set of Batteries connected to the Flow Node + 90 + + + 91 + 7 + 73 + Capacity Markets + 0 + -1 + Capacity Batteries + 0 + -1 + true + true + 4 + set of capacity markets the battery sells into + set of batteries that sell capacity into the market + 91 + + + 92 + 7 + 77 + Constraints + 0 + -1 + Batteries + 0 + -1 + true + true + 12 + set of Constraints on the Battery + set of Batteries in the Constraint + 92 + + + 93 + 7 + 78 + Objectives + 0 + -1 + Batteries + 0 + -1 + true + true + 240 + set of Objectives on the Battery + set of Batteries in the Objective + 93 + + + 94 + 7 + 82 + Conditions + 0 + -1 + Batteries + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Battery + set of Battery objects that define when the Variable is active + 94 + + + 95 + 1 + 8 + Battery Stations + 0 + -1 + true + true + 319 + Battery Station objects + 95 + + + 96 + 8 + 8 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Battery Station inherits from + Battery Station objects inheriting from this template + 96 + + + 97 + 102 + 8 + Battery Stations + 0 + -1 + Lists + 0 + -1 + true + true + 319 + set of Battery Station objects in the List + set of Lists containing the Battery Station + 97 + + + 98 + 8 + 24 + Nodes + 0 + -1 + true + false + 70 + (optional) set of nodes the battery station injects at + 98 + + + 99 + 1 + 9 + Storages + 0 + -1 + true + true + 96 + Storage objects + 99 + + + 100 + 9 + 9 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Storage inherits from + Storage objects inheriting from this template + 100 + + + 101 + 102 + 9 + Storages + 0 + -1 + Lists + 0 + -1 + true + true + 96 + set of Storage objects in the List + set of Lists containing the Storage + 101 + + + 102 + 9 + 53 + Water Nodes + 0 + -1 + Storages + 0 + 1 + true + false + 191 + water nodes the water storage connects to + water storage the water nodes connect to + 102 + + + 103 + 9 + 77 + Constraints + 0 + -1 + Storages + 0 + -1 + true + true + 12 + set of Constraints on the Storage + set of Storages in the Constraint + 103 + + + 104 + 9 + 78 + Objectives + 0 + -1 + Storages + 0 + -1 + true + true + 240 + set of Objectives on the Storage + set of Storages in the Objective + 104 + + + 105 + 9 + 82 + Conditions + 0 + -1 + Storages + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Storage + set of Storage objects that define when the Variable is active + 105 + + + 106 + 9 + 84 + Globals + 0 + -1 + Storages + 0 + -1 + true + true + 167 + set of Globals defining data for the Storage + set of Storage objects defining Global data + 106 + + + 107 + 1 + 10 + Waterways + 0 + -1 + true + true + 104 + Waterway objects + 107 + + + 108 + 10 + 10 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Waterway inherits from + Waterway objects inheriting from this template + 108 + + + 109 + 102 + 10 + Waterways + 0 + -1 + Lists + 0 + -1 + true + true + 104 + set of Waterway objects in the List + set of Lists containing the Waterway + 109 + + + 110 + 10 + 9 + Storage From + 0 + 1 + Exporting Waterways + 0 + -1 + true + false + 94 + storage the waterway takes water from + set of exporting waterways + 110 + + + 111 + 10 + 9 + Storage To + 0 + 1 + Importing Waterways + 0 + -1 + true + false + 95 + storage the waterway takes water to + set of importing waterways + 111 + + + 112 + 10 + 77 + Constraints + 0 + -1 + Waterways + 0 + -1 + true + true + 12 + set of Constraints on the Waterway + set of Waterways in the Constraint + 112 + + + 113 + 10 + 78 + Objectives + 0 + -1 + Waterways + 0 + -1 + true + true + 240 + set of Objectives on the Waterway + set of Waterways in the Objective + 113 + + + 114 + 1 + 11 + Emissions + 0 + -1 + true + true + 20 + Emission objects + 114 + + + 115 + 11 + 11 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Emission inherits from + Emission objects inheriting from this template + 115 + + + 116 + 102 + 11 + Emissions + 0 + -1 + Lists + 0 + -1 + true + true + 20 + set of Emission objects in the List + set of Lists containing the Emission + 116 + + + 117 + 11 + 2 + Generators + 0 + -1 + Emissions + 0 + -1 + true + true + 36 + set of generators that produce the emission + set of emissions produced by the generator + 117 + + + 118 + 11 + 4 + Fuels + 0 + -1 + Emissions + 0 + -1 + true + true + 31 + set of fuels that produce the emission + set of emissions produced by the fuel + 118 + + + 119 + 11 + 6 + Power2X + 0 + -1 + Emissions + 0 + -1 + true + true + 244 + set of Power2X objects that produce the Emission + set of Emissions produced by the Power2X object + 119 + + + 120 + 11 + 37 + Gas Fields + 0 + -1 + Emissions + 0 + -1 + true + true + 112 + set of Gas Fields that produce the Emission + set of Emissions produced by the Gas Field + 120 + + + 121 + 11 + 38 + Gas Plants + 0 + -1 + Emissions + 0 + -1 + true + true + 210 + set of Gas Plants that produce the Emission + set of Emissions produced by the Gas Plant + 121 + + + 122 + 11 + 40 + Gas Nodes + 0 + -1 + Emissions + 0 + -1 + true + true + 115 + set of gas nodes that produce the emission + set of emissions produced by the gas node + 122 + + + 123 + 11 + 42 + Gas Demands + 0 + -1 + Emissions + 0 + -1 + true + true + 116 + set of Gas Demands that produce the Emission + set of Emissions produced by the Gas Demand + 123 + + + 124 + 11 + 46 + Gas Contracts + 0 + -1 + Emissions + 0 + -1 + true + true + 207 + set of Gas Contracts that produce the Emission + set of Emissions produced by the Gas Contract + 124 + + + 125 + 11 + 47 + Gas Transports + 0 + -1 + Emissions + 0 + -1 + true + true + 211 + set of Gas Transports that produce the Emission + set of Emissions produced by the Gas Transport + 125 + + + 126 + 11 + 51 + Water Plants + 0 + -1 + Emissions + 0 + -1 + true + true + 188 + set of Water Plants that produce the Emission + set of Emissions produced by the Water Plant + 126 + + + 127 + 11 + 59 + Vehicles + 0 + -1 + Emissions + 0 + -1 + true + true + 241 + set of Vehicles that produce the Emission + set of Emissions produced by the Vehicle + 127 + + + 128 + 11 + 63 + Commodities + 0 + -1 + Emissions + 0 + -1 + true + true + 260 + set of Commodities co-produced with the Emission + set of Emissions co-producing the Commodity + 128 + + + 129 + 11 + 65 + Facilities + 0 + -1 + Emissions + 0 + -1 + true + true + 267 + set of Facilities that produce or remove the Emission + set of Emissions the Facility produces + 129 + + + 130 + 11 + 73 + Markets + 0 + -1 + Emissions + 0 + -1 + true + false + 61 + set of markets the emission is bought/sold from/to + set of emissions in the market + 130 + + + 131 + 11 + 77 + Constraints + 0 + -1 + Emissions + 0 + -1 + true + true + 12 + set of Constraints on the Emission + set of Emissions in the Constraint + 131 + + + 132 + 11 + 78 + Objectives + 0 + -1 + Emissions + 0 + -1 + true + true + 240 + set of Objectives on the Emission + set of Emissions in the Objective + 132 + + + 133 + 1 + 12 + Abatements + 0 + -1 + true + true + 157 + Abatement objects + 133 + + + 134 + 12 + 12 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Abatement inherits from + Abatement objects inheriting from this template + 134 + + + 135 + 102 + 12 + Abatements + 0 + -1 + Lists + 0 + -1 + true + true + 157 + set of Abatement objects in the List + set of Lists containing the Abatement + 135 + + + 136 + 12 + 2 + Generators + 0 + -1 + Abatements + 0 + -1 + true + true + 36 + set of generators the abatement technology is connected to + set of abatements connected to the generator + 136 + + + 137 + 12 + 4 + Consumables + 0 + -1 + Abatements + 0 + -1 + true + true + 158 + set of consumables that are used by the abatement technology + set of abatements that consume the fuel + 137 + + + 138 + 12 + 11 + Emissions + 0 + -1 + Abatements + 0 + -1 + true + true + 20 + set of emissions that are removed by this abatement technology + set of abatements applied to the emission + 138 + + + 139 + 12 + 37 + Gas Fields + 0 + -1 + Abatements + 0 + -1 + true + true + 112 + set of gas fields the abatement technology is connected to + set of abatements connected to the gas field + 139 + + + 140 + 12 + 38 + Gas Plants + 0 + -1 + Abatements + 0 + -1 + true + true + 210 + set of gas plants the abatement technology is connected to + set of abatements connected to the gas plant + 140 + + + 141 + 12 + 40 + Gas Nodes + 0 + -1 + Abatements + 0 + -1 + true + true + 115 + set of gas nodes the abatement technology is connected to + set of abatements connected to the gas node + 141 + + + 142 + 12 + 42 + Gas Demands + 0 + -1 + Abatements + 0 + -1 + true + true + 116 + set of gas demands the abatement technology is connected to + set of abatements connected to the gas demand + 142 + + + 143 + 12 + 46 + Gas Contracts + 0 + -1 + Abatements + 0 + -1 + true + true + 207 + set of gas contracts the abatement technology is connected to + set of abatements connected to the gas contract + 143 + + + 144 + 12 + 77 + Constraints + 0 + -1 + Abatements + 0 + -1 + true + true + 12 + set of Constraints on the Abatement + set of Abatements in the Constraint + 144 + + + 145 + 12 + 78 + Objectives + 0 + -1 + Abatements + 0 + -1 + true + true + 240 + set of Objectives on the Abatement + set of Abatements in the Objective + 145 + + + 146 + 1 + 13 + Physical Contracts + 0 + -1 + true + true + 75 + Physical Contract objects + 146 + + + 147 + 13 + 13 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Physical Contract inherits from + Physical Contract objects inheriting from this template + 147 + + + 148 + 102 + 13 + Physical Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 75 + set of Physical Contract objects in the List + set of Lists containing the Physical Contract + 148 + + + 149 + 13 + 24 + Generation Node + 0 + 1 + Generation Contracts + 0 + -1 + true + false + 34 + node for generation in the contract + set of generation contracts at the node + 149 + + + 150 + 13 + 24 + Load Node + 0 + 1 + Load Contracts + 0 + -1 + true + false + 59 + node for load in the contract + set of load contracts at the node + 150 + + + 151 + 13 + 62 + Companies + 0 + -1 + Physical Contracts + 0 + -1 + true + false + 9 + set of companies that own the physical contract + set of physical contracts owned by the company + 151 + + + 152 + 13 + 77 + Constraints + 0 + -1 + Physical Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Physical Contract + set of Physical Contracts in the Constraint + 152 + + + 153 + 13 + 78 + Objectives + 0 + -1 + Physical Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Physical Contract + set of Physical Contracts in the Objective + 153 + + + 154 + 13 + 82 + Conditions + 0 + -1 + Physical Contracts + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Physical Contract + set of Physical Contracts objects that define when the Variable is active + 154 + + + 155 + 1 + 14 + Purchasers + 0 + -1 + true + true + 81 + Purchaser objects + 155 + + + 156 + 14 + 14 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Purchaser inherits from + Purchaser objects inheriting from this template + 156 + + + 157 + 102 + 14 + Purchasers + 0 + -1 + Lists + 0 + -1 + true + true + 81 + set of Purchaser objects in the List + set of Lists containing the Purchaser + 157 + + + 158 + 14 + 24 + Nodes + 1 + -1 + Purchasers + 0 + -1 + true + false + 70 + set of nodes the purchaser withdraws energy from + set of purchasers at the node + 158 + + + 159 + 14 + 24 + Nodes* + 0 + -1 + Purchasers* + 0 + -1 + false + true + 178 + creates copies of the Purchaser at each node in this collection + create copies of these Purchasers and place at this node + 159 + + + 160 + 14 + 62 + Companies + 0 + -1 + Purchasers + 0 + -1 + true + false + 9 + set of companies that own the purchaser + set of purchasers owned by the company + 160 + + + 161 + 14 + 77 + Constraints + 0 + -1 + Purchasers + 0 + -1 + true + true + 12 + set of Constraints on the Purchaser + set of Purchasers in the Constraint + 161 + + + 162 + 14 + 78 + Objectives + 0 + -1 + Purchasers + 0 + -1 + true + true + 240 + set of Objectives on the Purchaser + set of Purchasers in the Objective + 162 + + + 163 + 1 + 15 + Reserves + 0 + -1 + true + true + 88 + Reserve objects + 163 + + + 164 + 15 + 15 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Reserve inherits from + Reserve objects inheriting from this template + 164 + + + 165 + 102 + 15 + Reserves + 0 + -1 + Lists + 0 + -1 + true + true + 88 + set of Reserve objects in the List + set of Lists containing the Reserve + 165 + + + 166 + 15 + 2 + Generators + 0 + -1 + Reserves + 0 + -1 + true + true + 36 + set of generators that provide the reserve + set of reserves provided by the generator + 166 + + + 167 + 15 + 2 + Generator Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 35 + set of generators that are contingencies + set of reserves the generator is a contingency for + 167 + + + 168 + 15 + 2 + Generator Cost Allocation + 0 + -1 + Reserve Costs Allocated + 0 + -1 + false + true + 110 + set of generators over which the cost of the reserve is allocated + set of reserves whose costs are allocated to the generator + 168 + + + 169 + 15 + 6 + Power2X + 0 + -1 + Reserves + 0 + -1 + true + true + 244 + The set of Power2X facilities that provide the reserve + The set of reserves provided by the Power2X facility + 169 + + + 170 + 15 + 7 + Batteries + 0 + -1 + Reserves + 0 + -1 + true + true + 176 + set of batteries that provide the reserve + set of reserves provided by the battery + 170 + + + 171 + 15 + 7 + Battery Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 301 + set of batteries that are contingencies + set of reserves the battery is a contingency for + 171 + + + 172 + 15 + 14 + Purchasers + 0 + -1 + Reserves + 0 + -1 + true + true + 81 + set of purchasers that provide the reserve + set of reserve the purchaser provides interruptible load for + 172 + + + 173 + 15 + 15 + Nested Reserves + 0 + -1 + Master Reserves + 0 + -1 + false + false + 66 + reserves nested inside this reserve class + reserves this class is nested inside + 173 + + + 174 + 15 + 21 + Regions + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 85 + set of regions that set the load risk + set of reserves the region is a contingency for + 174 + + + 175 + 15 + 23 + Zones + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 106 + set of zones that set the load risk + set of reserves the zone is a contingency for + 175 + + + 176 + 15 + 26 + Lines + 0 + -1 + Reserves + 0 + -1 + false + true + 57 + set of lines that share the reserve + set of reserves the line is sharing + 176 + + + 177 + 15 + 26 + Line Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 56 + set of lines that are contingencies + set of reserves the line is a contingency for + 177 + + + 178 + 15 + 73 + Markets + 0 + -1 + Reserves + 0 + -1 + true + false + 61 + set of markets the reserve is bought/sold from/to + set of reserves in the market + 178 + + + 179 + 15 + 77 + Constraints + 0 + -1 + Reserves + 0 + -1 + true + true + 12 + set of Constraints on the Reserve + set of Reserves in the Constraint + 179 + + + 180 + 15 + 78 + Objectives + 0 + -1 + Reserves + 0 + -1 + true + true + 240 + set of Objectives on the Reserve + set of Reserves in the Objective + 180 + + + 181 + 15 + 82 + Conditions + 0 + -1 + Reserves + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Reserve + set of Reserve objects that define when the Variable is active + 181 + + + 182 + 1 + 16 + Reliability + 0 + -1 + true + true + 249 + Reliability objects + 182 + + + 183 + 16 + 16 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Reliability inherits from + Reliability objects inheriting from this template + 183 + + + 184 + 102 + 16 + Reliability + 0 + -1 + Lists + 0 + -1 + true + true + 249 + set of Reliability objects in the List + set of Lists containing the Reliability + 184 + + + 185 + 16 + 2 + Generators + 0 + -1 + Reliability + 0 + -1 + true + true + 36 + set of generators in the reliability group + set of reliability groups for the generator + 185 + + + 186 + 16 + 7 + Batteries + 0 + -1 + Reliability + 0 + -1 + true + true + 176 + set of batteries in the reliability group + set of reliability groups for the battery + 186 + + + 187 + 16 + 21 + Region + 1 + 1 + Reliability + 0 + -1 + true + true + 84 + reference region for the reliability group + set of reliability groups referencing the region + 187 + + + 188 + 1 + 17 + Financial Contracts + 0 + -1 + true + true + 28 + Financial Contract objects + 188 + + + 189 + 17 + 17 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Financial Contract inherits from + Financial Contract objects inheriting from this template + 189 + + + 190 + 102 + 17 + Financial Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 28 + set of Financial Contract objects in the List + set of Lists containing the Financial Contract + 190 + + + 191 + 17 + 2 + Generators + 0 + -1 + Financial Contracts + 0 + -1 + true + true + 36 + set of generators involved in the financial contract + set of financial contracts associated with the generator + 191 + + + 192 + 17 + 21 + Region + 0 + 1 + Financial Contracts + 0 + -1 + true + false + 84 + region the contract is settled in + set of financial contracts settled in the region + 192 + + + 193 + 17 + 21 + Regions + 0 + -1 + true + true + 85 + 193 + + + 194 + 17 + 62 + Generating Companies + 0 + -1 + Generation Contracts + 0 + -1 + true + false + 32 + generating party or parties + set of financial contracts the company is a generating party to + 194 + + + 195 + 17 + 62 + Purchasing Companies + 0 + -1 + Purchase Contracts + 0 + -1 + true + false + 82 + purchasing party or parties + set of financial contracts the company is a purchasing party to + 195 + + + 196 + 17 + 82 + Conditions + 0 + -1 + Financial Contracts + 0 + -1 + true + true + 11 + set of conditions that apply to the financial contract + set of financial contracts the condition applies to + 196 + + + 197 + 1 + 18 + Cournots + 0 + -1 + true + true + 15 + Cournot objects + 197 + + + 198 + 18 + 18 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Cournot inherits from + Cournot objects inheriting from this template + 198 + + + 199 + 102 + 18 + Cournots + 0 + -1 + Lists + 0 + -1 + true + true + 15 + set of Cournot objects in the List + set of Lists containing the Cournot + 199 + + + 200 + 18 + 21 + Region + 1 + 1 + true + false + 84 + region associated with the Cournot game + 200 + + + 201 + 1 + 19 + RSIs + 0 + -1 + true + true + 89 + RSI objects + 201 + + + 202 + 19 + 19 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the RSI inherits from + RSI objects inheriting from this template + 202 + + + 203 + 102 + 19 + RSIs + 0 + -1 + Lists + 0 + -1 + true + true + 89 + set of RSI objects in the List + set of Lists containing the RSI + 203 + + + 204 + 19 + 21 + Region + 1 + 1 + RSIs + 0 + -1 + true + false + 84 + region associated with the RSI + 204 + + + 205 + 19 + 26 + Lines + 0 + -1 + RSIs + 0 + -1 + true + true + 57 + set of lines included in import capacity calculations + 205 + + + 206 + 19 + 30 + Interfaces + 0 + -1 + RSIs + 0 + -1 + true + true + 50 + set of interfaces included in import capacity calculations + 206 + + + 207 + 19 + 62 + Companies + 0 + -1 + RSIs + 0 + -1 + true + true + 9 + 207 + + + 208 + 1 + 20 + Firm Capacity Group + 0 + -1 + true + true + 316 + Firm Capacity Group objects + 208 + + + 209 + 20 + 20 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Firm Capacity Group inherits from + Firm Capacity Group objects inheriting from this template + 209 + + + 210 + 102 + 20 + Firm Capacity Group + 0 + -1 + Lists + 0 + -1 + true + true + 316 + set of Firm Capacity Group objects in the List + set of Lists containing the Firm Capacity Group + 210 + + + 211 + 20 + 2 + Generators + 0 + -1 + Firm Capacity Groups + 0 + -1 + true + true + 36 + set of Generators in the Firm Capacity Group + set of Firm Capacity Groups associated with the Generator + 211 + + + 212 + 20 + 6 + Power2X + 0 + -1 + Firm Capacity Groups + 0 + -1 + true + true + 244 + set of Power2X objects in the Firm Capacity Group + set of Firm Capacity Groups associated with the Power2X object + 212 + + + 213 + 20 + 7 + Batteries + 0 + -1 + Firm Capacity Group + 0 + -1 + false + true + 176 + set of Batteries in the Firm Capacity Group + set of Firm Capacity Groups associated with the Battery + 213 + + + 214 + 1 + 21 + Regions + 0 + -1 + true + true + 85 + Region objects + 214 + + + 215 + 21 + 21 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Region inherits from + Region objects inheriting from this template + 215 + + + 216 + 102 + 21 + Regions + 0 + -1 + Lists + 0 + -1 + true + true + 85 + set of Region objects in the List + set of Lists containing the Region + 216 + + + 217 + 21 + 2 + Generators + 0 + -1 + Regions + 0 + -1 + false + true + 36 + 217 + + + 218 + 21 + 6 + Power2X + 0 + -1 + Regions + 0 + -1 + false + true + 244 + 218 + + + 219 + 21 + 7 + Batteries + 0 + -1 + Regions + 0 + -1 + false + true + 176 + 219 + + + 220 + 21 + 11 + Emissions + 0 + -1 + Regions + 0 + -1 + true + true + 20 + set of emissions in the region + set of Regions that produce the emission + 220 + + + 221 + 21 + 13 + Generation Contracts + 0 + -1 + false + true + 33 + 221 + + + 222 + 21 + 13 + Load Contracts + 0 + -1 + false + true + 58 + 222 + + + 223 + 21 + 14 + Purchasers + 0 + -1 + Regions + 0 + -1 + false + true + 81 + 223 + + + 224 + 21 + 20 + Firm Capacity Groups + 0 + -1 + Region + 0 + 1 + true + true + 317 + Firm Capacity Groups associated with the Region + Region referencing the Firm Capacity Group + 224 + + + 225 + 21 + 21 + Regions + 0 + -1 + false + true + 85 + set of regions the region connects to + 225 + + + 226 + 21 + 22 + Pool + 0 + 1 + Regions + 0 + -1 + true + false + 231 + pool the region is in (for transmission) + set of regions in the pool + 226 + + + 227 + 21 + 24 + Reference Node + 0 + 1 + false + false + 83 + the reference node for the region + 227 + + + 228 + 21 + 26 + Exporting Lines + 0 + -1 + false + true + 25 + 228 + + + 229 + 21 + 26 + Importing Lines + 0 + -1 + false + true + 47 + 229 + + + 230 + 21 + 26 + Interregional Lines + 0 + -1 + false + true + 51 + 230 + + + 231 + 21 + 26 + Intraregional Lines + 0 + -1 + false + true + 53 + 231 + + + 232 + 21 + 28 + Exporting Transformers + 0 + -1 + false + true + 181 + 232 + + + 233 + 21 + 28 + Importing Transformers + 0 + -1 + false + true + 182 + 233 + + + 234 + 21 + 28 + Interregional Transformers + 0 + -1 + false + true + 183 + 234 + + + 235 + 21 + 28 + Intraregional Transformers + 0 + -1 + false + true + 185 + 235 + + + 236 + 21 + 34 + Heat Plants + 0 + -1 + Regions + 0 + -1 + false + true + 219 + 236 + + + 237 + 21 + 38 + Gas Plants + 0 + -1 + Regions + 0 + -1 + false + true + 210 + 237 + + + 238 + 21 + 41 + Gas Storages + 0 + -1 + Regions + 0 + -1 + false + true + 113 + 238 + + + 239 + 21 + 51 + Water Plants + 0 + -1 + Regions + 0 + -1 + false + true + 188 + 239 + + + 240 + 21 + 62 + Utilities + 0 + -1 + true + true + 102 + set of utility-owned companies (competitive fringe in RSI) + 240 + + + 241 + 21 + 65 + Facilities + 0 + -1 + Regions + 0 + -1 + false + true + 267 + 241 + + + 242 + 21 + 73 + Markets + 0 + -1 + false + true + 61 + 242 + + + 243 + 21 + 77 + Constraints + 0 + -1 + Regions + 0 + -1 + true + true + 12 + set of Constraints on the Region + set of Regions in the Constraint + 243 + + + 244 + 21 + 78 + Objectives + 0 + -1 + Regions + 0 + -1 + true + true + 240 + set of Objectives on the Region + set of Regions in the Objective + 244 + + + 245 + 21 + 82 + Conditions + 0 + -1 + Regions + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Region + set of Region objects that define when the Variable is active + 245 + + + 246 + 1 + 22 + Pools + 0 + -1 + true + true + 230 + Pool objects + 246 + + + 247 + 22 + 22 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Pool inherits from + Pool objects inheriting from this template + 247 + + + 248 + 102 + 22 + Pools + 0 + -1 + Lists + 0 + -1 + true + true + 230 + set of Pool objects in the List + set of Lists containing the Pool + 248 + + + 249 + 22 + 15 + ORDC Reserves + 0 + -1 + Pools + 0 + 1 + false + true + 300 + Specifies Raise and Operational Reserves for ORDC calculations + Pool the Reserve belongs to (for ORDC calculations) + 249 + + + 250 + 22 + 22 + Pools + 0 + -1 + false + true + 230 + set of Pools the Pool transacts with + 250 + + + 251 + 22 + 24 + ORDC System Lambda Nodes + 0 + -1 + ORDC System Lambda Nodes + 0 + 1 + false + true + 310 + The set of Nodes that their energy components dictate the system lambda for the ORDC algorithm + Node used in the system lambda for the ORDC calculation + 251 + + + 252 + 22 + 62 + Companies + 0 + -1 + Pools + 0 + 1 + false + true + 9 + set of companies in the pool + pool the company is in (for energy balancing) + 252 + + + 253 + 1 + 23 + Zones + 0 + -1 + true + true + 106 + Zone objects + 253 + + + 254 + 23 + 23 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Zone inherits from + Zone objects inheriting from this template + 254 + + + 255 + 102 + 23 + Zones + 0 + -1 + Lists + 0 + -1 + true + true + 106 + set of Zone objects in the List + set of Lists containing the Zone + 255 + + + 256 + 23 + 2 + Generators + 0 + -1 + Zones + 0 + -1 + false + true + 36 + 256 + + + 257 + 23 + 2 + Capacity Generators + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 2 + 257 + + + 258 + 23 + 7 + Batteries + 0 + -1 + Zones + 0 + -1 + false + true + 176 + 258 + + + 259 + 23 + 7 + Capacity Batteries + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 226 + 259 + + + 260 + 23 + 11 + Emissions + 0 + -1 + Zones + 0 + -1 + true + true + 20 + set of emissions in the zone + 260 + + + 261 + 23 + 13 + Capacity Generation Contracts + 0 + -1 + false + true + 1 + 261 + + + 262 + 23 + 13 + Capacity Load Contracts + 0 + -1 + false + true + 3 + 262 + + + 263 + 23 + 13 + Generation Contracts + 0 + -1 + false + true + 33 + 263 + + + 264 + 23 + 13 + Load Contracts + 0 + -1 + false + true + 58 + 264 + + + 265 + 23 + 14 + Purchasers + 0 + -1 + Zones + 0 + -1 + false + true + 81 + 265 + + + 266 + 23 + 14 + Capacity Purchasers + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 6 + 266 + + + 267 + 23 + 20 + Firm Capacity Groups + 0 + -1 + Zone + 0 + 1 + true + true + 317 + Firm Capacity Groups associated with the Zone + Zone referencing the Firm Capacity Group + 267 + + + 268 + 23 + 21 + Region + 0 + 1 + Zones + 0 + -1 + true + false + 84 + the region the zone belongs to + set of zones in the region + 268 + + + 269 + 23 + 23 + Zones + 0 + -1 + true + true + 106 + set of zones the zone connects to + 269 + + + 270 + 23 + 24 + Reference Node + 0 + 1 + false + false + 83 + the reference node for the zone + 270 + + + 271 + 23 + 26 + Exporting Capacity Lines + 0 + -1 + false + true + 23 + 271 + + + 272 + 23 + 26 + Exporting Lines + 0 + -1 + false + true + 25 + 272 + + + 273 + 23 + 26 + Importing Capacity Lines + 0 + -1 + false + true + 45 + 273 + + + 274 + 23 + 26 + Importing Lines + 0 + -1 + false + true + 47 + 274 + + + 275 + 23 + 26 + Interzonal Lines + 0 + -1 + false + true + 52 + 275 + + + 276 + 23 + 26 + Intrazonal Lines + 0 + -1 + false + true + 54 + 276 + + + 277 + 23 + 28 + Exporting Capacity Transformers + 0 + -1 + false + true + 164 + 277 + + + 278 + 23 + 28 + Exporting Transformers + 0 + -1 + false + true + 181 + 278 + + + 279 + 23 + 28 + Importing Capacity Transformers + 0 + -1 + false + true + 165 + 279 + + + 280 + 23 + 28 + Importing Transformers + 0 + -1 + false + true + 182 + 280 + + + 281 + 23 + 28 + Interzonal Transformers + 0 + -1 + false + true + 184 + 281 + + + 282 + 23 + 28 + Intrazonal Transformers + 0 + -1 + false + true + 186 + 282 + + + 283 + 23 + 34 + Heat Plants + 0 + -1 + Zones + 0 + -1 + false + true + 219 + 283 + + + 284 + 23 + 34 + Capacity Heat Plants + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 307 + 284 + + + 285 + 23 + 38 + Gas Plants + 0 + -1 + Zones + 0 + -1 + false + true + 210 + 285 + + + 286 + 23 + 38 + Capacity Gas Plants + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 305 + 286 + + + 287 + 23 + 41 + Gas Storages + 0 + -1 + Zones + 0 + -1 + false + true + 113 + 287 + + + 288 + 23 + 41 + Capacity Gas Storages + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 306 + 288 + + + 289 + 23 + 51 + Water Plants + 0 + -1 + Zones + 0 + -1 + false + true + 188 + 289 + + + 290 + 23 + 51 + Capacity Water Plants + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 308 + 290 + + + 291 + 23 + 65 + Facilities + 0 + -1 + Zones + 0 + 0 + false + true + 267 + 291 + + + 292 + 23 + 65 + Capacity Facilities + 0 + -1 + Capacity Zones + 0 + 0 + false + true + 309 + 292 + + + 293 + 23 + 73 + Markets + 0 + -1 + false + true + 61 + 293 + + + 294 + 23 + 73 + Capacity Markets + 0 + -1 + false + true + 4 + 294 + + + 295 + 23 + 77 + Constraints + 0 + -1 + Zones + 0 + -1 + true + true + 12 + set of Constraints on the Zone + set of Zones in the Constraint + 295 + + + 296 + 23 + 78 + Objectives + 0 + -1 + Zones + 0 + -1 + true + true + 240 + set of Objectives on the Zone + set of Zones in the Objective + 296 + + + 297 + 23 + 82 + Conditions + 0 + -1 + Zones + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Zone + set of Zone objects that define when the Variable is active + 297 + + + 298 + 1 + 24 + Nodes + 0 + -1 + true + true + 70 + Node objects + 298 + + + 299 + 24 + 24 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Node inherits from + Node objects inheriting from this template + 299 + + + 300 + 102 + 24 + Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 70 + set of Node objects in the List + set of Lists containing the Node + 300 + + + 301 + 24 + 11 + Virtual Emissions + 0 + -1 + Virtual Nodes + 0 + -1 + true + true + 320 + emissions associated with the node in a virtual emission network + nodes the virtual emission is connected to + 301 + + + 302 + 24 + 21 + Region + 1 + 1 + Nodes + 0 + -1 + true + false + 84 + the region the node belongs to + set of nodes in the region + 302 + + + 303 + 24 + 23 + Zone + 0 + 1 + Nodes + 0 + -1 + true + false + 105 + zone the node is in (for transmission) + set of nodes in the zone + 303 + + + 304 + 24 + 23 + Capacity Zones + 0 + -1 + Capacity Nodes + 0 + -1 + true + true + 7 + capacity zones the node belongs to + set of nodes in the capacity zone + 304 + + + 305 + 24 + 24 + AC Voltage Magnitude Target Node + 0 + 1 + false + false + 315 + The target node for voltage regulation + 305 + + + 306 + 24 + 32 + Hubs + 0 + -1 + Nodes + 0 + -1 + true + false + 170 + hub the node belongs to + set of nodes in the hub + 306 + + + 307 + 24 + 62 + Companies + 0 + -1 + Nodes + 0 + -1 + true + true + 9 + set of companies that own the nodes + set of nodes the company owns + 307 + + + 308 + 24 + 65 + Facilities + 0 + -1 + Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Node + set of Nodes the Facility connects to + 308 + + + 309 + 24 + 70 + Exporting Flow Paths + 0 + -1 + Node From + 0 + 1 + true + true + 297 + set of flow paths exporting from the node + node the flow path exports from + 309 + + + 310 + 24 + 70 + Importing Flow Paths + 0 + -1 + Node To + 0 + 1 + true + true + 298 + set of flow paths importing to the node + node the flow path imports to + 310 + + + 311 + 24 + 73 + Markets + 0 + -1 + Nodes + 0 + 1 + true + true + 61 + external markets connected to the node + node the market can buy and sell energy at + 311 + + + 312 + 24 + 77 + Constraints + 0 + -1 + Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Node + set of Nodes in the Constraint + 312 + + + 313 + 24 + 78 + Objectives + 0 + -1 + Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Node + set of Nodes in the Objective + 313 + + + 314 + 24 + 79 + Decision Variables + 0 + -1 + Nodes + 0 + -1 + true + true + 166 + set of nodes whose equations include the decision variable + Decision Variables included in the Node formulation + 314 + + + 315 + 24 + 82 + Conditions + 0 + -1 + Nodes + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Node + set of Node objects that define when the Variable is active + 315 + + + 316 + 24 + 86 + Weather Stations + 0 + 1 + Nodes + 0 + -1 + true + false + 233 + weather station the node is in + set of nodes in the weather station + 316 + + + 317 + 1 + 25 + Loads + 0 + -1 + true + true + 259 + Electricity Loads + 317 + + + 318 + 25 + 25 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Load inherits from + Load objects inheriting from this template + 318 + + + 319 + 102 + 25 + Loads + 0 + -1 + Lists + 0 + -1 + true + true + 259 + set of Load objects in the List + set of Lists containing the Load + 319 + + + 320 + 25 + 24 + Node + 1 + 1 + Loads + 0 + -1 + true + false + 67 + the node the load belongs to + set of loads at the node + 320 + + + 321 + 25 + 62 + Company + 0 + 1 + Loads + 0 + -1 + true + false + 285 + the company the load belongs to + set of loads owned by the company + 321 + + + 322 + 1 + 26 + Lines + 0 + -1 + true + true + 57 + Line objects + 322 + + + 323 + 26 + 26 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Line inherits from + Line objects inheriting from this template + 323 + + + 324 + 102 + 26 + Lines + 0 + -1 + Lists + 0 + -1 + true + true + 57 + set of Line objects in the List + set of Lists containing the Line + 324 + + + 325 + 26 + 11 + Virtual Emissions + 0 + -1 + Virtual Lines + 0 + -1 + true + true + 320 + 325 + + + 326 + 26 + 24 + Node From + 1 + 1 + Exporting Lines + 0 + -1 + true + false + 68 + node that the line notionally exports from + set of exporting lines + 326 + + + 327 + 26 + 24 + Node To + 1 + 1 + Importing Lines + 0 + -1 + true + false + 69 + node that the line notionally imports to + set of importing lines + 327 + + + 328 + 26 + 62 + Companies + 0 + -1 + Lines + 0 + -1 + true + false + 9 + set of companies that owns the line + set of lines owned by the company + 328 + + + 329 + 26 + 66 + Maintenances + 0 + -1 + Lines + 0 + -1 + true + false + 179 + set of maintenance events on the line + set of lines taken out on maintenance + 329 + + + 330 + 26 + 77 + Constraints + 0 + -1 + Lines + 0 + -1 + true + true + 12 + set of Constraints on the Line + set of Lines in the Constraint + 330 + + + 331 + 26 + 78 + Objectives + 0 + -1 + Lines + 0 + -1 + true + true + 240 + set of Objectives on the Line + set of Lines in the Objective + 331 + + + 332 + 26 + 82 + Conditions + 0 + -1 + Lines + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Line + set of Line objects that define when the Variable is active + 332 + + + 333 + 1 + 27 + MLFs + 0 + -1 + true + true + 63 + MLF objects + 333 + + + 334 + 27 + 27 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the MLF inherits from + MLF objects inheriting from this template + 334 + + + 335 + 102 + 27 + MLFs + 0 + -1 + Lists + 0 + -1 + true + true + 63 + set of MLF objects in the List + set of Lists containing the MLF + 335 + + + 336 + 27 + 21 + Regions + 0 + -1 + true + true + 85 + set of regions whose demand appears in the MLF equation + 336 + + + 337 + 27 + 24 + Node + 1 + 1 + true + false + 67 + reference node for the MLF equation + 337 + + + 338 + 27 + 26 + Line + 1 + 1 + true + false + 55 + interregional notional interconnector whose losses are determined by the MLF equation + 338 + + + 339 + 1 + 28 + Transformers + 0 + -1 + true + true + 99 + Transformer objects + 339 + + + 340 + 28 + 28 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Transformer inherits from + Transformer objects inheriting from this template + 340 + + + 341 + 102 + 28 + Transformers + 0 + -1 + Lists + 0 + -1 + true + true + 99 + set of Transformer objects in the List + set of Lists containing the Transformer + 341 + + + 342 + 28 + 24 + Node From + 1 + 1 + Exporting Transformers + 0 + -1 + true + false + 68 + node that the transformer takes power from + set of exporting transformers + 342 + + + 343 + 28 + 24 + Node To + 1 + 1 + Importing Transformers + 0 + -1 + true + false + 69 + node that the transformer takes power to + set of importing transformers + 343 + + + 344 + 28 + 77 + Constraints + 0 + -1 + Transformers + 0 + -1 + true + true + 12 + set of Constraints on the Transformer + set of Transformers in the Constraint + 344 + + + 345 + 28 + 78 + Objectives + 0 + -1 + Transformers + 0 + -1 + true + true + 240 + set of Objectives on the Transformer + set of Transformers in the Objective + 345 + + + 346 + 1 + 29 + Flow Controls + 0 + -1 + true + true + 74 + Flow Control objects + 346 + + + 347 + 29 + 29 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Control inherits from + Flow Control objects inheriting from this template + 347 + + + 348 + 102 + 29 + Flow Controls + 0 + -1 + Lists + 0 + -1 + true + true + 74 + set of Flow Control objects in the List + set of Lists containing the Flow Control + 348 + + + 349 + 29 + 26 + Line + 1 + 1 + Flow Controls + 0 + -1 + true + false + 55 + line the flow control operates on + flow control associated with the line + 349 + + + 350 + 29 + 26 + Lines* + 0 + -1 + Flow Controls* + 0 + -1 + false + true + 187 + creates copies of the flow control at each line in this collection + create copies of these flow controls and place at this line + 350 + + + 351 + 29 + 77 + Constraints + 0 + -1 + Flow Controls + 0 + -1 + true + true + 12 + set of Constraints on the Flow Control + set of Flow Controls in the Constraint + 351 + + + 352 + 29 + 78 + Objectives + 0 + -1 + Flow Controls + 0 + -1 + true + true + 240 + set of Objectives on the Flow Control + set of Flow Controls in the Objective + 352 + + + 353 + 1 + 30 + Interfaces + 0 + -1 + true + true + 50 + Interface objects + 353 + + + 354 + 30 + 30 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Interface inherits from + Interface objects inheriting from this template + 354 + + + 355 + 102 + 30 + Interfaces + 0 + -1 + Lists + 0 + -1 + true + true + 50 + set of Interface objects in the List + set of Lists containing the Interface + 355 + + + 356 + 30 + 26 + Lines + 0 + -1 + Interfaces + 0 + -1 + true + true + 57 + set of lines in the interface + interfaces the line is in + 356 + + + 357 + 30 + 28 + Transformers + 0 + -1 + Interfaces + 0 + -1 + true + true + 99 + set of transformers in the interface + set of interfaces defined on the transformer + 357 + + + 358 + 30 + 77 + Constraints + 0 + -1 + Interfaces + 0 + -1 + true + true + 12 + set of Constraints on the Interface + set of Interfaces in the Constraint + 358 + + + 359 + 30 + 78 + Objectives + 0 + -1 + Interfaces + 0 + -1 + true + true + 240 + set of Objectives on the Interface + set of Interfaces in the Objective + 359 + + + 360 + 30 + 82 + Conditions + 0 + -1 + Interfaces + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Interface + set of Interface objects that define when the Variable is active + 360 + + + 361 + 1 + 31 + Contingencies + 0 + -1 + true + true + 13 + Contingency objects + 361 + + + 362 + 31 + 31 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Contingency inherits from + Contingency objects inheriting from this template + 362 + + + 363 + 102 + 31 + Contingencies + 0 + -1 + Lists + 0 + -1 + true + true + 13 + set of Contingency objects in the List + set of Lists containing the Contingency + 363 + + + 364 + 31 + 2 + Generators + 0 + -1 + Contingencies + 0 + -1 + true + false + 36 + set of generators that form the contingency + set of contingencies the generator defines + 364 + + + 365 + 31 + 26 + Lines + 0 + -1 + Contingencies + 0 + -1 + true + false + 57 + set of lines that form the contingency + set of contingencies the line defines + 365 + + + 366 + 31 + 26 + Lines Monitored + 0 + -1 + Reporting Monitoring Contingencies + 0 + -1 + true + true + 311 + 366 + + + 367 + 31 + 26 + Monitored Lines + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 107 + set of lines whose limits are monitored under the contingency + set of contingencies the line is monitored under + 367 + + + 368 + 31 + 28 + Transformers + 0 + -1 + Contingencies + 0 + -1 + true + false + 99 + set of transformers that form the contingency + set of contingencies the transformer defines + 368 + + + 369 + 31 + 28 + Monitored Transformers + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 108 + set of transformers whose limits are monitored under the contingency + set of contingencies the transformer is monitored under + 369 + + + 370 + 31 + 28 + Transformers Monitored + 0 + -1 + Reporting Monitoring Contingencies + 0 + -1 + true + true + 312 + 370 + + + 371 + 31 + 30 + Interfaces Monitored + 0 + -1 + Reporting Monitoring Contingencies + 0 + -1 + true + true + 313 + 371 + + + 372 + 31 + 30 + Monitored Interfaces + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 109 + set of interfaces whose limits are monitored under the contingency + set of contingencies the interface is monitored under + 372 + + + 373 + 1 + 32 + Hubs + 0 + -1 + true + true + 170 + Hub objects + 373 + + + 374 + 32 + 32 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Hub inherits from + Hub objects inheriting from this template + 374 + + + 375 + 102 + 32 + Hubs + 0 + -1 + Lists + 0 + -1 + true + true + 170 + set of Hub objects in the List + set of Lists containing the Hub + 375 + + + 376 + 32 + 77 + Constraints + 0 + -1 + Hubs + 0 + -1 + true + true + 12 + set of Constraints on the Hub + set of Hubs in the Constraint + 376 + + + 377 + 32 + 78 + Objectives + 0 + -1 + Hubs + 0 + -1 + true + true + 240 + set of Objectives on the Hub + set of Hubs in the Objective + 377 + + + 378 + 1 + 33 + Transmission Rights + 0 + -1 + true + true + 101 + Transmission Right objects + 378 + + + 379 + 33 + 33 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Transmission Right inherits from + Transmission Right objects inheriting from this template + 379 + + + 380 + 102 + 33 + Transmission Rights + 0 + -1 + Lists + 0 + -1 + true + true + 101 + set of Transmission Right objects in the List + set of Lists containing the Transmission Right + 380 + + + 381 + 33 + 23 + Zone From + 0 + 1 + true + false + 171 + zone for generation in the transmission right + 381 + + + 382 + 33 + 23 + Zone To + 0 + 1 + true + false + 172 + zone for load in the transmission right + 382 + + + 383 + 33 + 24 + Node From + 0 + 1 + true + false + 68 + node for generation in the transmission right + 383 + + + 384 + 33 + 24 + Node To + 0 + 1 + true + false + 69 + node for load in the transmission right + 384 + + + 385 + 33 + 26 + Line + 0 + 1 + true + false + 55 + line whose rentals are involved in the transmission right + 385 + + + 386 + 33 + 32 + Hub From + 0 + 1 + true + false + 173 + hub for generation in the transmission right + 386 + + + 387 + 33 + 32 + Hub To + 0 + 1 + true + false + 174 + hub for load in the transmission right + 387 + + + 388 + 33 + 62 + Companies + 0 + -1 + Transmission Rights + 0 + -1 + true + false + 9 + companies that own the transmission right + transmissions rights owned by the company + 388 + + + 389 + 1 + 34 + Heat Plants + 0 + -1 + true + true + 219 + Heat Plant objects + 389 + + + 390 + 34 + 34 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Plant inherits from + Heat Plant objects inheriting from this template + 390 + + + 391 + 102 + 34 + Heat Plants + 0 + -1 + Lists + 0 + -1 + true + true + 219 + set of Heat Plant objects in the List + set of Lists containing the Heat Plant + 391 + + + 392 + 34 + 4 + Fuels + 0 + -1 + Heat Plants + 0 + -1 + true + false + 31 + set of fuels consumed + set of heat plants that consume the fuel + 392 + + + 393 + 34 + 4 + Start Fuels + 0 + -1 + Heat Plants Started + 0 + -1 + true + false + 92 + fuels available for starting units + set of heat plants that use the fuel to start + 393 + + + 394 + 34 + 24 + Nodes + 0 + -1 + Heat Plants + 0 + -1 + true + false + 70 + set of nodes injected at + set of heat plants connected to the node + 394 + + + 395 + 34 + 35 + Heat Input Nodes + 0 + -1 + Input Heat Plants + 0 + -1 + true + false + 223 + set of heat nodes the heat plant injects to + set of heat plants connected to the heat node + 395 + + + 396 + 34 + 35 + Heat Output Nodes + 0 + -1 + Output Heat Plants + 0 + -1 + true + false + 224 + set of heat nodes the heat plant receives from + set of heat plants connected to the heat node + 396 + + + 397 + 34 + 40 + Gas Nodes + 0 + -1 + Heat Plants + 0 + -1 + true + true + 115 + set of source gas nodes for the heat plant + set of heat plants connected to the gas node + 397 + + + 398 + 34 + 77 + Constraints + 0 + -1 + Heat Plants + 0 + -1 + true + true + 12 + set of Constraints on the Heat Plant + set of Heat Plants in the Constraint + 398 + + + 399 + 34 + 78 + Objectives + 0 + -1 + Heat Plants + 0 + -1 + true + true + 240 + set of Objectives on the Heat Plant + set of Heat Plants in the Objective + 399 + + + 400 + 34 + 82 + Conditions + 0 + -1 + Heat Plants + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Heat Plant + set of Heat Plant objects that define when the Variable is active + 400 + + + 401 + 1 + 35 + Heat Nodes + 0 + -1 + true + true + 220 + Heat Node objects + 401 + + + 402 + 35 + 35 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Node inherits from + Heat Node objects inheriting from this template + 402 + + + 403 + 102 + 35 + Heat Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 220 + set of Heat Node objects in the List + set of Lists containing the Heat Node + 403 + + + 404 + 35 + 35 + Heat Export Nodes + 0 + -1 + Heat Import Nodes + 0 + -1 + true + false + 225 + set of node heat is exported to + set of heat nodes importing to node + 404 + + + 405 + 35 + 51 + Water Plants + 0 + -1 + Heat Nodes + 0 + -1 + true + false + 188 + set of water plants supplied + set of nodes supplying heat + 405 + + + 406 + 35 + 65 + Facilities + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Heat Node + set of Heat Nodes the Facility connects to + 406 + + + 407 + 35 + 73 + Markets + 0 + -1 + Heat Nodes + 0 + 1 + true + true + 61 + external heat markets connected to the heat node + heat node the market can by and sell heat at + 407 + + + 408 + 35 + 77 + Constraints + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Heat Node + set of Heat Nodes in the Constraint + 408 + + + 409 + 35 + 78 + Objectives + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Heat Node + set of Heat Nodes in the Objective + 409 + + + 410 + 35 + 82 + Conditions + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Heat Node + set of Heat Node objects that define when the Variable is active + 410 + + + 411 + 1 + 36 + Heat Storages + 0 + -1 + true + true + 253 + Heat Storage objects + 411 + + + 412 + 36 + 36 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Storage inherits from + Heat Storage objects inheriting from this template + 412 + + + 413 + 102 + 36 + Heat Storages + 0 + -1 + Lists + 0 + -1 + true + true + 253 + set of Heat Storage objects in the List + set of Lists containing the Heat Storage + 413 + + + 414 + 36 + 35 + Heat Nodes + 1 + 1 + Heat Storages + 0 + 1 + true + false + 220 + set of heat nodes the heat storage injects to and withdraws from + set of heat storages connected to the heat node + 414 + + + 415 + 36 + 77 + Constraints + 0 + -1 + Heat Storages + 0 + -1 + true + true + 12 + set of Constraints on the Heat Storage + set of Heat Storages in the Constraint + 415 + + + 416 + 36 + 78 + Objectives + 0 + -1 + Heat Storages + 0 + -1 + true + true + 240 + set of Objectives on the Heat Storage + set of Heat Storages in the Objective + 416 + + + 417 + 1 + 37 + Gas Fields + 0 + -1 + true + true + 112 + Gas Field objects + 417 + + + 418 + 37 + 37 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Field inherits from + Gas Field objects inheriting from this template + 418 + + + 419 + 102 + 37 + Gas Fields + 0 + -1 + Lists + 0 + -1 + true + true + 112 + set of Gas Field objects in the List + set of Lists containing the Gas Field + 419 + + + 420 + 37 + 40 + Gas Node + 0 + -1 + Gas Fields + 0 + -1 + true + true + 117 + gas node the gas field connects to + set of gas fields connected to the gas node + 420 + + + 421 + 37 + 44 + Gas Basin + 0 + -1 + Gas Fields + 0 + -1 + true + true + 177 + gas basins the gas field belongs to + set of gas fields in the gas basin + 421 + + + 422 + 37 + 62 + Companies + 0 + -1 + Gas Fields + 0 + -1 + true + false + 9 + Set of companies that own the gas field + set of gas fields the company owns + 422 + + + 423 + 37 + 66 + Maintenances + 0 + -1 + Gas Fields + 0 + -1 + true + false + 179 + set of maintenance events on the gas field + set of gas fields taken out by the maintenance event + 423 + + + 424 + 37 + 77 + Constraints + 0 + -1 + Gas Fields + 0 + -1 + true + true + 12 + set of Constraints on the Gas Field + set of Gas Fields in the Constraint + 424 + + + 425 + 37 + 78 + Objectives + 0 + -1 + Gas Fields + 0 + -1 + true + true + 240 + set of Objectives on the Gas Field + set of Gas Fields in the Objective + 425 + + + 426 + 1 + 38 + Gas Plants + 0 + -1 + true + true + 210 + Gas Plant objects + 426 + + + 427 + 38 + 38 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Plant inherits from + Gas Plant objects inheriting from this template + 427 + + + 428 + 102 + 38 + Gas Plants + 0 + -1 + Lists + 0 + -1 + true + true + 210 + set of Gas Plant objects in the List + set of Lists containing the Gas Plant + 428 + + + 429 + 38 + 24 + Node + 0 + 1 + Gas Plants + 0 + -1 + true + false + 67 + Electric Node the Gas Plant connects to + set of Gas Plants connected to the Electric Node + 429 + + + 430 + 38 + 40 + Input Node + 0 + 1 + Gas Plants Supplied + 0 + -1 + true + false + 208 + Gas Node the Gas Plant imports gas from + set of Gas Plants the Gas Node supplies + 430 + + + 431 + 38 + 40 + Output Node + 1 + 1 + Supplying Gas Plants + 0 + -1 + true + false + 209 + Gas Node the Gas Plant exports gas to + set of Gas Plants that supply the Gas Node + 431 + + + 432 + 38 + 66 + Maintenances + 0 + -1 + Gas Plants + 0 + -1 + true + false + 179 + set of maintenance events on the gas plant + set of gas plants taken out by the maintenance event + 432 + + + 433 + 38 + 77 + Constraints + 0 + -1 + Gas Plants + 0 + -1 + true + true + 12 + set of Constraints on the Gas Plant + set of Gas Plants in the Constraint + 433 + + + 434 + 38 + 78 + Objectives + 0 + -1 + Gas Plants + 0 + -1 + true + true + 240 + set of Objectives on the Gas Plant + set of Gas Plants in the Objective + 434 + + + 435 + 38 + 79 + Decision Variables + 0 + -1 + Gas Plants + 0 + -1 + true + true + 166 + set of gas plants whose equations include the decision variable + Decision Variables included in the Gas Plant formulation + 435 + + + 436 + 1 + 39 + Gas Pipelines + 0 + -1 + true + true + 114 + Gas Pipeline objects + 436 + + + 437 + 39 + 39 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Pipeline inherits from + Gas Pipeline objects inheriting from this template + 437 + + + 438 + 102 + 39 + Gas Pipelines + 0 + -1 + Lists + 0 + -1 + true + true + 114 + set of Gas Pipeline objects in the List + set of Lists containing the Gas Pipeline + 438 + + + 439 + 39 + 11 + Virtual Emissions + 0 + -1 + Virtual Gas Pipelines + 0 + -1 + true + true + 320 + 439 + + + 440 + 39 + 40 + Gas Node From + 1 + 1 + Exporting Gas Pipelines + 0 + -1 + true + false + 118 + gas node the gas pipeline exports from + set of gas pipelines exporting from the gas node + 440 + + + 441 + 39 + 40 + Gas Node To + 1 + 1 + Importing Gas Pipelines + 0 + -1 + true + false + 119 + gas node the gas pipeline imports to + set of gas pipelines importing to the gas node + 441 + + + 442 + 39 + 48 + Gas Paths + 0 + -1 + Gas Pipelines + 0 + -1 + false + true + 303 + set of Gas Paths that are associated with a Gas Pipeline to deliver gas + set of Gas Pipelines associated with the Gas Path + 442 + + + 443 + 39 + 50 + Virtual Energy Contents + 0 + -1 + Virtual Gas Pipelines + 0 + -1 + true + true + 1625795042 + 443 + + + 444 + 39 + 66 + Maintenances + 0 + -1 + Gas Pipelines + 0 + -1 + true + false + 179 + set of maintenance events on the gas pipeline + set of gas pipelines taken out by the maintenance event + 444 + + + 445 + 39 + 77 + Constraints + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 12 + set of Constraints on the Gas Pipeline + set of Gas Pipelines in the Constraint + 445 + + + 446 + 39 + 78 + Objectives + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 240 + set of Objectives on the Gas Pipeline + set of Gas Pipelines in the Objective + 446 + + + 447 + 39 + 82 + Conditions + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Gas Pipeline + set of Gas Pipeline objects that define when the Variable is active + 447 + + + 448 + 1 + 40 + Gas Nodes + 0 + -1 + true + true + 115 + Gas Node objects + 448 + + + 449 + 40 + 40 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Node inherits from + Gas Node objects inheriting from this template + 449 + + + 450 + 102 + 40 + Gas Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 115 + set of Gas Node objects in the List + set of Lists containing the Gas Node + 450 + + + 451 + 40 + 11 + Virtual Emissions + 0 + -1 + Virtual Gas Nodes + 0 + -1 + true + true + 320 + set of emissions associated with the Gas Node in a virtual emission network + set of Gas Nodes associated with the virtual emission + 451 + + + 452 + 40 + 45 + Gas Zones + 0 + -1 + Gas Nodes + 0 + -1 + true + false + 159 + set of gas zones the gas node belongs to + set of gas nodes in the gas zone + 452 + + + 453 + 40 + 47 + Gas Transports + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 211 + 453 + + + 454 + 40 + 48 + Gas Paths + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 303 + set of Gas paths that the gas node is a part of + set of gas nodes that are in the gas path + 454 + + + 455 + 40 + 50 + Virtual Energy Contents + 0 + -1 + Virtual Gas Nodes + 0 + -1 + true + true + 1625795042 + set of Energy Contents associated with the Gas Node in a virtual energy network + set of Gas Nodes associated with the virtual Energy content + 455 + + + 456 + 40 + 65 + Facilities + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Gas Node + set of Gas Nodes the Facility connects to + 456 + + + 457 + 40 + 73 + Markets + 0 + -1 + Gas Nodes + 0 + 1 + true + true + 61 + external gas market connected to the gas node + gas node the market can buy and sell gas at + 457 + + + 458 + 40 + 77 + Constraints + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Gas Node + set of Gas Nodes in the Constraint + 458 + + + 459 + 40 + 78 + Objectives + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Gas Node + set of Gas Nodes in the Objective + 459 + + + 460 + 1 + 41 + Gas Storages + 0 + -1 + true + true + 113 + Gas Storage objects + 460 + + + 461 + 41 + 41 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Storage inherits from + Gas Storage objects inheriting from this template + 461 + + + 462 + 102 + 41 + Gas Storages + 0 + -1 + Lists + 0 + -1 + true + true + 113 + set of Gas Storage objects in the List + set of Lists containing the Gas Storage + 462 + + + 463 + 41 + 6 + Source Power2X + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 293 + 463 + + + 464 + 41 + 24 + Node + 0 + 1 + Gas Storages + 0 + -1 + true + false + 67 + Electric Node the Gas Storage connects to + set of Gas Storages connected to the Electric Node + 464 + + + 465 + 41 + 37 + Source Gas Fields + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 289 + 465 + + + 466 + 41 + 38 + Source Gas Plants + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 292 + 466 + + + 467 + 41 + 40 + Gas Nodes + 1 + -1 + Gas Storages + 0 + -1 + true + true + 115 + gas node the gas storage connects to + set of gas storages connected to the gas node + 467 + + + 468 + 41 + 41 + Source Gas Storages + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 290 + 468 + + + 469 + 41 + 46 + Source Gas Contracts + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 291 + 469 + + + 470 + 41 + 47 + Source Gas Transports + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 299 + 470 + + + 471 + 41 + 50 + Virtual Energy Contents + 0 + -1 + Virtual Gas Storages + 0 + -1 + true + true + 1625795042 + 471 + + + 472 + 41 + 66 + Maintenances + 0 + -1 + Gas Storages + 0 + -1 + true + false + 179 + set of maintenance events on the gas storage + set of gas storages taken out by the maintenance event + 472 + + + 473 + 41 + 77 + Constraints + 0 + -1 + Gas Storages + 0 + -1 + true + true + 12 + set of Constraints on the Gas Storage + set of Gas Storages in the Constraint + 473 + + + 474 + 41 + 78 + Objectives + 0 + -1 + Gas Storages + 0 + -1 + true + true + 240 + set of Objectives on the Gas Storage + set of Gas Storages in the Objective + 474 + + + 475 + 41 + 82 + Conditions + 0 + -1 + Gas Storages + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Gas Storage + set of Gas Storage objects that define when the Variable is active + 475 + + + 476 + 1 + 42 + Gas Demands + 0 + -1 + true + true + 116 + Gas Demand objects + 476 + + + 477 + 42 + 42 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Demand inherits from + Gas Demand objects inheriting from this template + 477 + + + 478 + 102 + 42 + Gas Demands + 0 + -1 + Lists + 0 + -1 + true + true + 116 + set of Gas Demand objects in the List + set of Lists containing the Gas Demand + 478 + + + 479 + 42 + 6 + Source Power2X + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 293 + 479 + + + 480 + 42 + 37 + Source Gas Fields + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 289 + 480 + + + 481 + 42 + 38 + Source Gas Plants + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 292 + 481 + + + 482 + 42 + 39 + Source Gas Pipelines + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 321 + 482 + + + 483 + 42 + 40 + Gas Nodes + 1 + -1 + Gas Demands + 0 + -1 + true + true + 115 + set of gas nodes the demand occurs at + set of gas demands at this gas node + 483 + + + 484 + 42 + 41 + Source Gas Storages + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 290 + 484 + + + 485 + 42 + 46 + Linked Gas Contracts + 0 + -1 + Linked Gas Demands + 0 + -1 + true + true + 288 + gas contracts linked to the gas demand + set of gas demands linked with the gas contract + 485 + + + 486 + 42 + 46 + Source Gas Contracts + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 291 + 486 + + + 487 + 42 + 47 + Source Gas Transports + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 299 + 487 + + + 488 + 42 + 62 + Companies + 0 + -1 + Gas Demands + 0 + -1 + true + false + 9 + set of companies that own the gas demand + set of gas demands the company owns + 488 + + + 489 + 1 + 43 + Gas DSM Programs + 0 + -1 + true + true + 235 + Gas DSM Program objects + 489 + + + 490 + 43 + 43 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas DSM Program inherits from + Gas DSM Program objects inheriting from this template + 490 + + + 491 + 102 + 43 + Gas DSM Programs + 0 + -1 + Lists + 0 + -1 + true + true + 235 + set of Gas DSM Program objects in the List + set of Lists containing the Gas DSM Program + 491 + + + 492 + 43 + 42 + Gas Demands + 1 + -1 + Gas DSM Programs + 0 + -1 + true + false + 116 + set of gas demand for the DSM program + set of gas DSM programs for the gas demand + 492 + + + 493 + 43 + 77 + Constraints + 0 + -1 + Gas DSM Programs + 0 + -1 + true + true + 12 + set of Constraints on the Gas DSM Program + set of Gas DSM Programs in the Constraint + 493 + + + 494 + 43 + 78 + Objectives + 0 + -1 + Gas DSM Programs + 0 + -1 + true + true + 240 + set of Objectives on the Gas DSM Program + set of Gas DSM Programs in the Objective + 494 + + + 495 + 1 + 44 + Gas Basins + 0 + -1 + true + true + 175 + Gas Basin objects + 495 + + + 496 + 44 + 44 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Basin inherits from + Gas Basin objects inheriting from this template + 496 + + + 497 + 102 + 44 + Gas Basins + 0 + -1 + Lists + 0 + -1 + true + true + 175 + set of Gas Basin objects in the List + set of Lists containing the Gas Basin + 497 + + + 498 + 44 + 77 + Constraints + 0 + -1 + Gas Basins + 0 + -1 + true + true + 12 + set of Constraints on the Gas Basin + set of Gas Basins in the Constraint + 498 + + + 499 + 44 + 78 + Objectives + 0 + -1 + Gas Basins + 0 + -1 + true + true + 240 + set of Objectives on the Gas Basin + set of Gas Basins in the Objective + 499 + + + 500 + 1 + 45 + Gas Zones + 0 + -1 + true + true + 159 + Gas Zone objects + 500 + + + 501 + 45 + 45 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Zone inherits from + Gas Zone objects inheriting from this template + 501 + + + 502 + 102 + 45 + Gas Zones + 0 + -1 + Lists + 0 + -1 + true + true + 159 + set of Gas Zone objects in the List + set of Lists containing the Gas Zone + 502 + + + 503 + 45 + 2 + Generators + 0 + -1 + false + true + 36 + 503 + + + 504 + 45 + 37 + Gas Fields + 0 + -1 + false + true + 112 + 504 + + + 505 + 45 + 38 + Gas Plants + 0 + -1 + false + true + 210 + 505 + + + 506 + 45 + 39 + Exporting Gas Pipelines + 0 + -1 + false + true + 160 + 506 + + + 507 + 45 + 39 + Importing Gas Pipelines + 0 + -1 + false + true + 161 + 507 + + + 508 + 45 + 39 + Interzonal Gas Pipelines + 0 + -1 + false + true + 162 + 508 + + + 509 + 45 + 39 + Intrazonal Gas Pipelines + 0 + -1 + false + true + 163 + 509 + + + 510 + 45 + 41 + Gas Storages + 0 + -1 + false + true + 113 + 510 + + + 511 + 45 + 42 + Gas Demands + 0 + -1 + false + true + 116 + 511 + + + 512 + 45 + 46 + Gas Contracts + 0 + -1 + false + true + 207 + 512 + + + 513 + 45 + 47 + Exporting Gas Transports + 0 + -1 + false + true + 214 + 513 + + + 514 + 45 + 47 + Importing Gas Transports + 0 + -1 + false + true + 215 + 514 + + + 515 + 45 + 47 + Interzonal Gas Transports + 0 + -1 + false + true + 216 + 515 + + + 516 + 45 + 47 + Intrazonal Gas Transports + 0 + -1 + false + true + 217 + 516 + + + 517 + 1 + 46 + Gas Contracts + 0 + -1 + true + true + 207 + Gas Contract objects + 517 + + + 518 + 46 + 46 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Contract inherits from + Gas Contract objects inheriting from this template + 518 + + + 519 + 102 + 46 + Gas Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 207 + set of Gas Contract objects in the List + set of Lists containing the Gas Contract + 519 + + + 520 + 46 + 37 + Gas Fields + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 112 + gas fields that have a contract to produce gas + set of gas contracts associated with gas field production + 520 + + + 521 + 46 + 39 + Gas Pipelines + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 114 + gas pipelines that have a contract to transport gas + set of gas contracts associated with gas transportation + 521 + + + 522 + 46 + 40 + Gas Nodes + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 115 + gas nodes that have a contract to deliver gas + set of gas contracts associated with gas nodes + 522 + + + 523 + 46 + 47 + Gas Transports + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 211 + gas transports that have a contract to deliver gas + set of gas contracts associated with gas transport + 523 + + + 524 + 46 + 48 + Gas Paths + 0 + -1 + Gas Contracts + 0 + -1 + false + true + 303 + set of Gas Paths that are associated with a Gas Contract to deliver gas + set of Gas Contracts associated with the Gas Path + 524 + + + 525 + 46 + 62 + Companies + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 9 + company that have a contract to supply gas + set of gas contract supplying to the company + 525 + + + 526 + 46 + 77 + Constraints + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Gas Contract + set of Gas Contracts in the Constraint + 526 + + + 527 + 46 + 78 + Objectives + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Gas Contract + set of Gas Contracts in the Objective + 527 + + + 528 + 1 + 47 + Gas Transports + 0 + -1 + true + true + 211 + Gas Transport objects + 528 + + + 529 + 47 + 47 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Transport inherits from + Gas Transport objects inheriting from this template + 529 + + + 530 + 102 + 47 + Gas Transports + 0 + -1 + Lists + 0 + -1 + true + true + 211 + set of Gas Transport objects in the List + set of Lists containing the Gas Transport + 530 + + + 531 + 47 + 6 + Source Power2X + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 293 + 531 + + + 532 + 47 + 37 + Source Gas Fields + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 289 + 532 + + + 533 + 47 + 38 + Source Gas Plants + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 292 + 533 + + + 534 + 47 + 40 + Export Node + 0 + 1 + Exporting Gas Transports + 0 + -1 + true + false + 212 + gas node the gas transport exports from + set of gas transports exporting from the gas node + 534 + + + 535 + 47 + 40 + Import Node + 0 + -1 + Importing Gas Transports + 0 + -1 + true + true + 213 + gas node the gas transport imports to + set of gas transports importing to the gas node + 535 + + + 536 + 47 + 41 + Source Gas Storages + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 290 + 536 + + + 537 + 47 + 46 + Source Gas Contracts + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 291 + 537 + + + 538 + 47 + 47 + Source Gas Transports + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 299 + 538 + + + 539 + 47 + 48 + Gas Paths + 0 + -1 + Gas Transports + 0 + -1 + true + true + 303 + set of gas paths that the gas transport can take + set of gas transports that can travel along a gas path + 539 + + + 540 + 47 + 48 + Initial Gas Path + 0 + 1 + Gas Transports Started + 0 + -1 + true + true + 314 + initial gas path that the gas transport is on at the beginning of the horizon + set of gas transports that are already travelling along a gas path at the beginning of the horizon + 540 + + + 541 + 47 + 66 + Maintenances + 0 + -1 + Gas Transports + 0 + -1 + true + false + 179 + set of maintenance events on the gas transport + set of gas transports taken out by the maintenance event + 541 + + + 542 + 47 + 77 + Constraints + 0 + -1 + Gas Transports + 0 + -1 + true + true + 12 + set of Constraints on the Gas Transport + set of Gas Transports in the Constraint + 542 + + + 543 + 47 + 78 + Objectives + 0 + -1 + Gas Transports + 0 + -1 + true + true + 240 + set of Objectives on the Gas Transport + set of Gas Transports in the Objective + 543 + + + 544 + 1 + 48 + Gas Paths + 0 + -1 + true + true + 303 + Gas Path objects + 544 + + + 545 + 48 + 48 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Path inherits from + Gas Path objects inheriting from this template + 545 + + + 546 + 102 + 48 + Gas Paths + 0 + -1 + Lists + 0 + -1 + true + true + 303 + set of Gas Path objects in the List + set of Lists containing the Gas Path + 546 + + + 547 + 1 + 49 + Gas Capacity Release Offers + 0 + -1 + true + true + 239 + Gas Capacity Release Offer objects + 547 + + + 548 + 49 + 49 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Capacity Release Offer inherits from + Gas Capacity Release Offer objects inheriting from this template + 548 + + + 549 + 102 + 49 + Gas Capacity Release Offers + 0 + -1 + Lists + 0 + -1 + true + true + 239 + set of Gas Capacity Release Offer objects in the List + set of Lists containing the Gas Capacity Release Offer + 549 + + + 550 + 49 + 39 + Gas Pipelines + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + false + 114 + set of gas pipelines for the gas capacity release offers + set of gas capacity release offers for gas pipelines + 550 + + + 551 + 49 + 41 + Gas Storages + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + false + 113 + set of gas storages for the gas capacity release offers + set of gas capacity release offers for gas storages + 551 + + + 552 + 49 + 77 + Constraints + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + true + 12 + set of Constraints on the Gas Capacity Release Offer + set of Gas Capacity Release Offers in the Constraint + 552 + + + 553 + 49 + 78 + Objectives + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + true + 240 + set of Objectives on the Gas Capacity Release Offer + set of Gas Capacity Release Offers in the Objective + 553 + + + 554 + 1 + 50 + Energy Contents + 0 + 1 + true + false + 1079442475 + Energy Content objects + 554 + + + 555 + 50 + 50 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Energy Content inherits from + Energy Content objects inheriting from this template + 555 + + + 556 + 102 + 50 + Energy Contents + 0 + -1 + Lists + 0 + -1 + true + true + 1079442475 + set of Energy Content objects in the List + set of Lists containing the Energy Content + 556 + + + 557 + 50 + 37 + Gas Fields + 0 + -1 + Energy Contents + 0 + -1 + true + true + 112 + set of Gas Fields that produce the Energy Content + set of Energy Contents produced by the Gas Field + 557 + + + 558 + 50 + 38 + Gas Plants + 0 + -1 + Energy Contents + 0 + -1 + true + true + 210 + set of Gas Plants that produce the Energy Content + set of Energy Contents produced by the Gas Plant + 558 + + + 559 + 50 + 40 + Gas Nodes + 0 + -1 + Energy Contents + 0 + -1 + true + true + 115 + set of Gas Nodes that produce the Energy Content + set of Energy Contents produced by the Gas Node + 559 + + + 560 + 50 + 42 + Gas Demands + 0 + -1 + Energy Contents + 0 + -1 + true + true + 116 + set of Gas Demands that produce the Energy Content + set of Energy Contents produced by the Gas Demand + 560 + + + 561 + 50 + 46 + Gas Contracts + 0 + -1 + Energy Contents + 0 + -1 + true + true + 207 + set of Gas Contracts that produce the Energy content + set of Energy Contents produced by the Gas Contract + 561 + + + 562 + 50 + 47 + Gas Transports + 0 + -1 + Energy Contents + 0 + -1 + true + true + 211 + set of Gas Transports that produce the Energy Content + set of Energy Contents produced by the Gas Transport + 562 + + + 563 + 1 + 51 + Water Plants + 0 + -1 + true + true + 188 + Water Plant objects + 563 + + + 564 + 51 + 51 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Plant inherits from + Water Plant objects inheriting from this template + 564 + + + 565 + 102 + 51 + Water Plants + 0 + -1 + Lists + 0 + -1 + true + true + 188 + set of Water Plant objects in the List + set of Lists containing the Water Plant + 565 + + + 566 + 51 + 24 + Node + 0 + 1 + Water Plants + 0 + -1 + true + false + 67 + Electric Node the Water Plant connects to + set of Water Plants connected to the Electric Node + 566 + + + 567 + 51 + 53 + Input Node + 0 + 1 + Water Plant Supplied + 0 + -1 + true + false + 208 + Water Node the Water Plant imports water from (or 'the sea' if none is defined) + set of Water Plants the Water Node supplies + 567 + + + 568 + 51 + 53 + Output Node + 1 + 1 + Supplying Water Plants + 0 + -1 + true + false + 209 + Water Node the Water Plant exports water to + set of Water Plants that supply the Water Node + 568 + + + 569 + 51 + 66 + Maintenances + 0 + -1 + Water Plants + 0 + -1 + true + false + 179 + set of maintenance events on the water plant + set of water plants taken out by the maintenance event + 569 + + + 570 + 51 + 77 + Constraints + 0 + -1 + Water Plants + 0 + -1 + true + true + 12 + set of Constraints on the Water Plant + set of Water Plants in the Constraint + 570 + + + 571 + 51 + 78 + Objectives + 0 + -1 + Water Plants + 0 + -1 + true + true + 240 + set of Objectives on the Water Plant + set of Water Plants in the Objective + 571 + + + 572 + 51 + 79 + Decision Variables + 0 + -1 + Water Plants + 0 + -1 + true + true + 166 + set of water plants whose equations include the decision variable + Decision Variables included in the Water Plant formulation + 572 + + + 573 + 1 + 52 + Water Pipelines + 0 + -1 + true + true + 190 + Water Pipeline objects + 573 + + + 574 + 52 + 52 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pipeline inherits from + Water Pipeline objects inheriting from this template + 574 + + + 575 + 102 + 52 + Water Pipelines + 0 + -1 + Lists + 0 + -1 + true + true + 190 + set of Water Pipeline objects in the List + set of Lists containing the Water Pipeline + 575 + + + 576 + 52 + 53 + Water Node From + 1 + 1 + Exporting Water Pipelines + 0 + -1 + true + false + 201 + Water Node the Water Pipeline exports from + set of Water Pipelines exporting from the Water Node + 576 + + + 577 + 52 + 53 + Water Node To + 1 + 1 + Importing Water Pipelines + 0 + -1 + true + false + 202 + Water Node the Water Pipeline imports to + set of Water Pipelines importing to the Water Node + 577 + + + 578 + 52 + 66 + Maintenances + 0 + -1 + Water Pipelines + 0 + -1 + true + false + 179 + set of maintenance events on the water pipeline + set of water pipelines taken out by the maintenance event + 578 + + + 579 + 52 + 77 + Constraints + 0 + -1 + Water Pipelines + 0 + -1 + true + true + 12 + set of Constraints on the Water Pipeline + set of Water Pipelines in the Constraint + 579 + + + 580 + 52 + 78 + Objectives + 0 + -1 + Water Pipelines + 0 + -1 + true + true + 240 + set of Objectives on the Water Pipeline + set of Water Pipelines in the Objective + 580 + + + 581 + 1 + 53 + Water Nodes + 0 + -1 + true + true + 191 + Water Node objects + 581 + + + 582 + 53 + 53 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Node inherits from + Water Node objects inheriting from this template + 582 + + + 583 + 102 + 53 + Water Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 191 + set of Water Node objects in the List + set of Lists containing the Water Node + 583 + + + 584 + 53 + 24 + Node + 0 + 1 + Water Nodes + 0 + -1 + true + false + 67 + Node the Water Node connects to + set of Water Nodes connected to the Electric Node + 584 + + + 585 + 53 + 56 + Water Zones + 0 + -1 + Water Nodes + 0 + -1 + true + true + 193 + set of Water Zones the Water node belongs to + set of Water Nodes in the Water Zone + 585 + + + 586 + 53 + 65 + Facilities + 0 + -1 + Water Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Water Node + set of Water Nodes the Facility connects to + 586 + + + 587 + 53 + 73 + Markets + 0 + -1 + Water Nodes + 0 + 1 + true + true + 61 + external water market connected to the water node + water node the market can buy and sell water at + 587 + + + 588 + 53 + 77 + Constraints + 0 + -1 + Water Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Water Node + set of Water Nodes in the Constraint + 588 + + + 589 + 53 + 78 + Objectives + 0 + -1 + Water Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Water Node + set of Water Nodes in the Objective + 589 + + + 590 + 1 + 54 + Water Storages + 0 + -1 + true + true + 189 + Water Storage objects + 590 + + + 591 + 54 + 54 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Storage inherits from + Water Storage objects inheriting from this template + 591 + + + 592 + 102 + 54 + Water Storages + 0 + -1 + Lists + 0 + -1 + true + true + 189 + set of Water Storage objects in the List + set of Lists containing the Water Storage + 592 + + + 593 + 54 + 53 + Water Node + 1 + 1 + Water Storages + 0 + -1 + true + false + 200 + Water Node the Water Storage connects to + set of Water Storages connected to the Water Node + 593 + + + 594 + 54 + 66 + Maintenances + 0 + -1 + Water Storages + 0 + -1 + true + false + 179 + set of maintenance events on the water storage + set of water storages taken out by the maintenance event + 594 + + + 595 + 54 + 77 + Constraints + 0 + -1 + Water Storages + 0 + -1 + true + true + 12 + set of Constraints on the Water Storage + set of Water Storages in the Constraint + 595 + + + 596 + 54 + 78 + Objectives + 0 + -1 + Water Storages + 0 + -1 + true + true + 240 + set of Objectives on the Water Storage + set of Water Storages in the Objective + 596 + + + 597 + 1 + 55 + Water Demands + 0 + -1 + true + true + 192 + Water Demand objects + 597 + + + 598 + 55 + 55 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Demand inherits from + Water Demand objects inheriting from this template + 598 + + + 599 + 102 + 55 + Water Demands + 0 + -1 + Lists + 0 + -1 + true + true + 192 + set of Water Demand objects in the List + set of Lists containing the Water Demand + 599 + + + 600 + 55 + 53 + Water Nodes + 1 + -1 + Water Demands + 0 + -1 + true + false + 191 + set of Water Nodes the Water Demand occurs at + set of Water Demands at this Water Node + 600 + + + 601 + 1 + 56 + Water Zones + 0 + -1 + true + true + 193 + Water Zone objects + 601 + + + 602 + 56 + 56 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Zone inherits from + Water Zone objects inheriting from this template + 602 + + + 603 + 102 + 56 + Water Zones + 0 + -1 + Lists + 0 + -1 + true + true + 193 + set of Water Zone objects in the List + set of Lists containing the Water Zone + 603 + + + 604 + 56 + 51 + Water Plants + 0 + -1 + false + true + 188 + 604 + + + 605 + 56 + 52 + Exporting Water Pipelines + 0 + -1 + false + true + 203 + 605 + + + 606 + 56 + 52 + Importing Water Pipelines + 0 + -1 + false + true + 204 + 606 + + + 607 + 56 + 52 + Interzonal Water Pipelines + 0 + -1 + false + true + 205 + 607 + + + 608 + 56 + 52 + Intrazonal Water Pipelines + 0 + -1 + false + true + 206 + 608 + + + 609 + 56 + 54 + Water Storages + 0 + -1 + false + true + 189 + 609 + + + 610 + 56 + 55 + Water Demands + 0 + -1 + false + true + 192 + 610 + + + 611 + 1 + 57 + Water Pump Stations + 0 + -1 + true + true + 254 + Water Pump Station objects + 611 + + + 612 + 57 + 57 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pump Station inherits from + Water Pump Station objects inheriting from this template + 612 + + + 613 + 102 + 57 + Water Pump Stations + 0 + -1 + Lists + 0 + -1 + true + true + 254 + set of Water Pump Station objects in the List + set of Lists containing the Water Pump Station + 613 + + + 614 + 57 + 52 + Water Pipeline + 0 + 1 + true + false + 256 + Water Pipeline connected to the water pump station + 614 + + + 615 + 57 + 54 + Downstream Water Storage + 0 + 1 + true + false + 258 + Water Storage situated downstream to the pump station + 615 + + + 616 + 57 + 54 + Upstream Water Storage + 0 + 1 + true + false + 257 + Water Storage situated upstream to the water pump station + 616 + + + 617 + 57 + 58 + Water Pumps + 0 + -1 + Water Pump Stations + 0 + 1 + true + true + 255 + Collection of water pumps associated with the water pump station + Water pump stations associated with a water pump + 617 + + + 618 + 57 + 77 + Constraints + 0 + -1 + Water Pump Stations + 0 + -1 + true + true + 12 + set of Constraints on the Water Pump Station + set of Water Pump Stations in the Constraint + 618 + + + 619 + 57 + 78 + Objectives + 0 + -1 + Water Pump Stations + 0 + -1 + true + true + 240 + set of Objectives on the Water Pump Station + set of Water Pump Stations in the Objective + 619 + + + 620 + 1 + 58 + Water Pumps + 0 + -1 + true + true + 255 + Water Pump objects + 620 + + + 621 + 58 + 58 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pump inherits from + Water Pump objects inheriting from this template + 621 + + + 622 + 102 + 58 + Water Pumps + 0 + -1 + Lists + 0 + -1 + true + true + 255 + set of Water Pump objects in the List + set of Lists containing the Water Pump + 622 + + + 623 + 58 + 77 + Constraints + 0 + -1 + Water Pumps + 0 + -1 + true + true + 12 + set of Constraints on the Water Pumps + set of Water Pumps in the Constraint + 623 + + + 624 + 1 + 59 + Vehicles + 0 + -1 + true + true + 241 + Vehicle objects + 624 + + + 625 + 59 + 59 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Vehicle inherits from + Vehicle objects inheriting from this template + 625 + + + 626 + 102 + 59 + Vehicles + 0 + -1 + Lists + 0 + -1 + true + true + 241 + set of Vehicle objects in the List + set of Lists containing the Vehicle + 626 + + + 627 + 59 + 60 + Charging Stations + 0 + -1 + Vehicles + 0 + -1 + true + true + 242 + set of Charging Stations used by the Vehicle + set of Vehicles that use the Charging Station + 627 + + + 628 + 59 + 61 + Fleets + 0 + -1 + Vehicles + 0 + -1 + true + false + 243 + set of Fleets the Vehicle belongs to + set of Vehicles in the Fleet + 628 + + + 629 + 59 + 63 + Commodities + 0 + -1 + Vehicles + 0 + -1 + true + false + 260 + set of Commodities consumed by the Vehicle + set of Vehicles consuming the Commodity + 629 + + + 630 + 59 + 77 + Constraints + 0 + -1 + Vehicles + 0 + -1 + true + true + 12 + set of Constraints on the Vehicle + set of Vehicles in the Constraint + 630 + + + 631 + 59 + 78 + Objectives + 0 + -1 + Vehicles + 0 + -1 + true + true + 240 + set of Objectives on the Vehicle + set of Vehicles in the Objective + 631 + + + 632 + 1 + 60 + Charging Stations + 0 + -1 + true + true + 242 + Charging Station objects + 632 + + + 633 + 60 + 60 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Charging Station inherits from + Charging Station objects inheriting from this template + 633 + + + 634 + 102 + 60 + Charging Stations + 0 + -1 + Lists + 0 + -1 + true + true + 242 + set of Charging Station objects in the List + set of Lists containing the Charging Station + 634 + + + 635 + 60 + 15 + Reserves + 0 + -1 + Charging Stations + 0 + -1 + true + true + 88 + set of Reserves provided by the Charging Station + set of Charging Stations providing the Reserve + 635 + + + 636 + 60 + 24 + Node + 1 + 1 + Charging Stations + 0 + -1 + true + false + 67 + Charging Station connection point in the electric network + set of Charging Stations connected to the electric Node + 636 + + + 637 + 60 + 63 + Commodities + 0 + -1 + Charging Stations + 0 + -1 + true + false + 260 + set of Commodities consumed by the Charging Station + set of Charging Stations consuming the Commodity + 637 + + + 638 + 60 + 77 + Constraints + 0 + -1 + Charging Stations + 0 + -1 + true + true + 12 + set of Constraints on the Charging Station + set of Charging Stations in the Constraint + 638 + + + 639 + 1 + 61 + Fleets + 0 + -1 + true + true + 243 + Fleet objects + 639 + + + 640 + 61 + 61 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fleet inherits from + Fleet objects inheriting from this template + 640 + + + 641 + 102 + 61 + Fleets + 0 + -1 + Lists + 0 + -1 + true + true + 243 + set of Fleet objects in the List + set of Lists containing the Fleet + 641 + + + 642 + 61 + 62 + Companies + 0 + -1 + Fleets + 0 + -1 + true + false + 9 + set of Companies that own the Fleet + set of Fleets owned by the Company + 642 + + + 643 + 1 + 62 + Companies + 0 + -1 + true + true + 9 + Company objects + 643 + + + 644 + 62 + 62 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Company inherits from + Company objects inheriting from this template + 644 + + + 645 + 102 + 62 + Companies + 0 + -1 + Lists + 0 + -1 + true + true + 9 + set of Company objects in the List + set of Lists containing the Company + 645 + + + 646 + 62 + 4 + Fuels + 0 + -1 + true + true + 31 + 646 + + + 647 + 62 + 11 + Emissions + 0 + -1 + Companies + 0 + -1 + true + true + 20 + set of emissions produced by the company + set of companies that produce the emission + 647 + + + 648 + 62 + 15 + Reserves + 0 + -1 + true + true + 88 + 648 + + + 649 + 62 + 21 + Regions + 0 + -1 + Companies + 0 + -1 + true + true + 85 + set of regions the company has load responsibilities in + set of companies that are responsible for the load in the region + 649 + + + 650 + 62 + 59 + Vehicles + 0 + -1 + true + true + 241 + 650 + + + 651 + 62 + 62 + Companies + 0 + -1 + false + true + 9 + set of Companies the Company connects to + 651 + + + 652 + 62 + 63 + Commodities + 0 + -1 + true + true + 260 + 652 + + + 653 + 62 + 65 + Facilities + 0 + -1 + Companies + 0 + -1 + true + true + 267 + set of Facilities owned by the Company + Companies that own the Facility + 653 + + + 654 + 62 + 73 + Markets + 0 + -1 + Companies + 0 + -1 + true + true + 61 + Markets the Company own trades in + Companies that own the trades in the Market + 654 + + + 655 + 62 + 77 + Constraints + 0 + -1 + Companies + 0 + -1 + true + true + 12 + set of Constraints on the Company + set of Companies in the Constraint + 655 + + + 656 + 62 + 78 + Objectives + 0 + -1 + Companies + 0 + -1 + true + true + 240 + set of Objectives on the Company + set of Companies in the Objective + 656 + + + 657 + 1 + 63 + Commodities + 0 + -1 + true + true + 260 + Commodity objects + 657 + + + 658 + 63 + 63 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Commodity inherits from + Commodity objects inheriting from this template + 658 + + + 659 + 102 + 63 + Commodities + 0 + -1 + Lists + 0 + -1 + true + true + 260 + set of Commodity objects in the List + set of Lists containing the Commodity + 659 + + + 660 + 63 + 73 + Markets + 0 + -1 + Commodities + 0 + 1 + true + false + 61 + Markets the Commodity is traded in + Commodity traded in the Market + 660 + + + 661 + 63 + 75 + Transport Hubs + 0 + -1 + Commodities + 1 + -1 + true + true + 69298537 + Transport Hubs that the trade in the Commodity + Commodities that are traded through the Transport Hub + 661 + + + 662 + 63 + 77 + Constraints + 0 + -1 + Commodities + 0 + -1 + true + true + 12 + set of Constraints on the Commodity + set of Commodities in the Constraint + 662 + + + 663 + 63 + 78 + Objectives + 0 + -1 + Commodities + 0 + -1 + true + true + 240 + set of Objectives on the Commodity + set of Commodities in the Objective + 663 + + + 664 + 1 + 64 + Processes + 0 + -1 + true + true + 261 + Process objects + 664 + + + 665 + 64 + 64 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Process inherits from + Process objects inheriting from this template + 665 + + + 666 + 102 + 64 + Processes + 0 + -1 + Lists + 0 + -1 + true + true + 261 + set of Process objects in the List + set of Lists containing the Process + 666 + + + 667 + 64 + 63 + Primary Input + 0 + 1 + Primary Consumers + 0 + -1 + true + true + 263 + the primary input Commodity to the Process + set of Processes for which this Commodity is the primary input + 667 + + + 668 + 64 + 63 + Primary Output + 0 + 1 + Primary Producers + 0 + -1 + true + true + 265 + the primary output Commodity of the Process + set of Processes for which this Commodity is the primary output + 668 + + + 669 + 64 + 63 + Secondary Inputs + 0 + -1 + Secondary Consumers + 0 + -1 + true + true + 264 + the set of secondary input Commodities to the Process + set of Processes for which this Commodity is a secondary input + 669 + + + 670 + 64 + 63 + Secondary Outputs + 0 + -1 + Secondary Producers + 0 + -1 + true + true + 266 + the set of secondary output Commodities of the Process + set of Processes for which this Commodity is a secondary output + 670 + + + 671 + 64 + 77 + Constraints + 0 + -1 + Processes + 0 + -1 + true + true + 12 + set of Constraints on the Process + set of Processes in the Constraint + 671 + + + 672 + 64 + 78 + Objectives + 0 + -1 + Processes + 0 + -1 + true + true + 240 + set of Objectives on the Process + set of Processes in the Objective + 672 + + + 673 + 1 + 65 + Facilities + 0 + -1 + true + true + 267 + Facility objects + 673 + + + 674 + 65 + 65 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Facility inherits from + Facility objects inheriting from this template + 674 + + + 675 + 102 + 65 + Facilities + 0 + -1 + Lists + 0 + -1 + true + true + 267 + set of Facility objects in the List + set of Lists containing the Facility + 675 + + + 676 + 65 + 63 + Primary Inputs + 0 + -1 + Primary Consuming Facilities + 0 + -1 + true + true + 268 + 676 + + + 677 + 65 + 63 + Primary Outputs + 0 + -1 + Primary Producing Facilities + 0 + -1 + true + true + 270 + 677 + + + 678 + 65 + 63 + Secondary Inputs + 0 + -1 + Secondary Consuming Facilities + 0 + -1 + true + true + 264 + 678 + + + 679 + 65 + 63 + Secondary Outputs + 0 + -1 + Secondary Producing Facilities + 0 + -1 + true + true + 266 + 679 + + + 680 + 65 + 64 + Primary Process + 0 + 1 + Primary Facilities + 0 + -1 + true + false + 276 + the primary Process performed by the Facility + set of Facilities where this is the primary Process + 680 + + + 681 + 65 + 64 + Secondary Processes + 0 + -1 + Secondary Facilities + 0 + -1 + true + true + 277 + set of secondary Processes performed by the Facility + set of Facilities where this is a secondary Process + 681 + + + 682 + 65 + 64 + Warm Up Process + 0 + 1 + Facilities Warmed Up + 0 + -1 + true + false + 295 + the Process that runs during the Facility warm up time + set of Facilities where this is the Warm Up Process + 682 + + + 683 + 65 + 66 + Maintenances + 0 + -1 + Facilities + 0 + -1 + true + false + 179 + set of maintenance events on the facility + set of Facilities taken out on maintenance + 683 + + + 684 + 65 + 69 + Flow Nodes + 0 + -1 + Facilities + 0 + -1 + true + true + 279 + Set of Flow Nodes the Facility connects to + set of Facilities connected to the Flow Node + 684 + + + 685 + 65 + 72 + Entities + 0 + -1 + Facilities + 0 + -1 + true + true + 273 + set of Entities associated with the Facility + set of Facilities associated with the Entity + 685 + + + 686 + 65 + 77 + Constraints + 0 + -1 + Facilities + 0 + -1 + true + true + 12 + set of Constraints on the Facility + set of Facilities in the Constraint + 686 + + + 687 + 65 + 78 + Objectives + 0 + -1 + Facilities + 0 + -1 + true + true + 240 + set of Objectives on the Facility + set of Facilities in the Objective + 687 + + + 688 + 65 + 82 + Conditions + 0 + -1 + Facilities + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Facility + set of Facilities that define when the Variable is active + 688 + + + 689 + 1 + 66 + Maintenances + 0 + -1 + true + true + 179 + Maintenance objects + 689 + + + 690 + 66 + 66 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Maintenance inherits from + Maintenance objects inheriting from this template + 690 + + + 691 + 102 + 66 + Maintenances + 0 + -1 + Lists + 0 + -1 + true + true + 179 + set of Maintenance objects in the List + set of Lists containing the Maintenance + 691 + + + 692 + 66 + 66 + Prerequisites + 0 + -1 + Dependencies + 0 + -1 + true + false + 180 + set of maintenance events that must precede this event + set of maintenance events that depend on the completion of this event + 692 + + + 693 + 66 + 67 + Components + 0 + -1 + Maintenances + 0 + -1 + true + true + 322 + set of components used in this event + set of events using this component + 693 + + + 694 + 66 + 77 + Constraints + 0 + -1 + Maintenances + 0 + -1 + true + true + 12 + set of Constraints on the Maintenance + set of Maintenances in the Constraint + 694 + + + 695 + 66 + 78 + Objectives + 0 + -1 + Maintenances + 0 + -1 + true + true + 240 + set of Objectives on the Maintenance + set of Maintenances in the Objective + 695 + + + 696 + 1 + 67 + Components + 0 + -1 + true + true + 322 + Component objects + 696 + + + 697 + 67 + 67 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Component inherits from + Component objects inheriting from this template + 697 + + + 698 + 102 + 67 + Components + 0 + -1 + Lists + 0 + -1 + true + true + 322 + set of Component objects in the List + set of Lists containing the Component + 698 + + + 699 + 1 + 68 + Flow Networks + 0 + -1 + true + true + 278 + Flow Network objects + 699 + + + 700 + 68 + 68 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Network inherits from + Flow Network objects inheriting from this template + 700 + + + 701 + 102 + 68 + Flow Networks + 0 + -1 + Lists + 0 + -1 + true + true + 278 + set of Flow Network objects in the List + set of Lists containing the Flow Network + 701 + + + 702 + 68 + 63 + Commodity + 1 + 1 + Flow Networks + 0 + -1 + true + true + 287 + Commodity flowing on the Flow Network + set of Flow Networks flowing the Commodity + 702 + + + 703 + 68 + 65 + Facilities + 0 + -1 + Flow Networks + 0 + -1 + true + true + 267 + 703 + + + 704 + 68 + 69 + Flow Nodes + 0 + -1 + Flow Network + 0 + 1 + true + true + 279 + Set of Flow Nodes in the Flow Network + Flow Network the Flow Node belongs to + 704 + + + 705 + 68 + 71 + Flow Storages + 0 + -1 + Flow Network + 0 + -1 + true + true + 294 + 705 + + + 706 + 68 + 77 + Constraints + 0 + -1 + Flow Networks + 0 + -1 + true + true + 12 + set of Constraints on the Flow Network + set of Flow Networks in the Constraint + 706 + + + 707 + 68 + 78 + Objectives + 0 + -1 + Flow Networks + 0 + -1 + true + true + 240 + set of Objectives on the Flow Network + set of Flow Networks in the Objective + 707 + + + 708 + 1 + 69 + Flow Nodes + 0 + -1 + true + true + 279 + Flow Node objects + 708 + + + 709 + 69 + 69 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Node inherits from + Flow Node objects inheriting from this template + 709 + + + 710 + 102 + 69 + Flow Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 279 + set of Flow Node objects in the List + set of Lists containing the Flow Node + 710 + + + 711 + 69 + 72 + Entities + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 273 + set of Entities associated with the Flow Node + set of Flow Nodes associated with the Entity + 711 + + + 712 + 69 + 73 + Markets + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 61 + set of Markets connected to the Flow Node + Flow Nodes the Market is connected to + 712 + + + 713 + 69 + 75 + Transport Hubs + 0 + -1 + Flow Nodes + 1 + -1 + true + true + 69298537 + Transport Hub the Flow Node connects to + Flow Nodes that are connected to the Transport Hub + 713 + + + 714 + 69 + 77 + Constraints + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Flow Node + set of Flow Nodes in the Constraint + 714 + + + 715 + 69 + 78 + Objectives + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Flow Node + set of Flow Nodes in the Objective + 715 + + + 716 + 1 + 70 + Flow Paths + 0 + -1 + true + true + 280 + Flow Path objects + 716 + + + 717 + 70 + 70 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Path inherits from + Flow Path objects inheriting from this template + 717 + + + 718 + 102 + 70 + Flow Paths + 0 + -1 + Lists + 0 + -1 + true + true + 280 + set of Flow Path objects in the List + set of Lists containing the Flow Path + 718 + + + 719 + 70 + 69 + Flow Node From + 0 + 1 + Exporting Flow Paths + 0 + -1 + true + false + 282 + Flow Node the Flow Path exports from + set of Flow Paths exporting from the Flow Node + 719 + + + 720 + 70 + 69 + Flow Node To + 0 + 1 + Importing Flow Paths + 0 + -1 + true + false + 283 + Flow Node the Flow Path imports to + set of Flow Paths importing to the Flow Node + 720 + + + 721 + 70 + 72 + Entities + 0 + -1 + Flow Paths + 0 + -1 + true + true + 273 + set of Entities associated with the Flow Paths + set of Flow Paths associated with the Entity + 721 + + + 722 + 70 + 77 + Constraints + 0 + -1 + Flow Paths + 0 + -1 + true + true + 12 + set of Constraints on the Flow Path + set of Flow Paths in the Constraint + 722 + + + 723 + 70 + 78 + Objectives + 0 + -1 + Flow Paths + 0 + -1 + true + true + 240 + set of Objectives on the Flow Path + set of Flow Paths in the Objective + 723 + + + 724 + 1 + 71 + Flow Storages + 0 + -1 + true + true + 294 + Flow Storage objects + 724 + + + 725 + 71 + 71 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Storage inherits from + Flow Storage objects inheriting from this template + 725 + + + 726 + 102 + 71 + Flow Storages + 0 + -1 + Lists + 0 + -1 + true + true + 294 + set of Flow Storage objects in the List + set of Lists containing the Flow Storage + 726 + + + 727 + 71 + 69 + Flow Node + 1 + 1 + Flow Storages + 0 + -1 + true + false + 284 + Flow Node the Flow Storage connects to + 727 + + + 728 + 71 + 72 + Entities + 0 + -1 + Flow Storages + 0 + -1 + true + true + 273 + set of Entities associated with the Flow Storages + set of Flow Storage associated with the Entity + 728 + + + 729 + 71 + 77 + Constraints + 0 + -1 + Flow Storages + 0 + -1 + true + true + 12 + set of Constraints on the Flow Storage + set of Flow Storages in the Constraint + 729 + + + 730 + 71 + 78 + Objectives + 0 + -1 + Flow Storages + 0 + -1 + true + true + 240 + set of Objectives on the Flow Storage + set of Flow Storages in the Objective + 730 + + + 731 + 1 + 72 + Entities + 0 + -1 + true + true + 273 + Entity objects + 731 + + + 732 + 72 + 72 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Entity inherits from + Entity objects inheriting from this template + 732 + + + 733 + 102 + 72 + Entities + 0 + -1 + Lists + 0 + -1 + true + true + 273 + set of Entity objects in the List + set of Lists containing the Entity + 733 + + + 734 + 72 + 63 + Commodities + 0 + -1 + true + true + 260 + 734 + + + 735 + 72 + 77 + Constraints + 0 + -1 + Entities + 0 + -1 + true + true + 12 + set of Constraints on the Entity + set of Entities in the Constraint + 735 + + + 736 + 72 + 78 + Objectives + 0 + -1 + Entities + 0 + -1 + true + true + 240 + set of Objectives on the Entity + set of Entities in the Objective + 736 + + + 737 + 1 + 73 + Markets + 0 + -1 + true + true + 61 + Market objects + 737 + + + 738 + 73 + 73 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Market inherits from + Market objects inheriting from this template + 738 + + + 739 + 102 + 73 + Markets + 0 + -1 + Lists + 0 + -1 + true + true + 61 + set of Market objects in the List + set of Lists containing the Market + 739 + + + 740 + 73 + 72 + Entities + 0 + -1 + Markets + 0 + -1 + true + true + 273 + Entities that own the trades in the Market + Markets the Entity trades in + 740 + + + 741 + 73 + 77 + Constraints + 0 + -1 + Markets + 0 + -1 + true + true + 12 + set of Constraints on the Market + set of Markets in the Constraint + 741 + + + 742 + 73 + 78 + Objectives + 0 + -1 + Markets + 0 + -1 + true + true + 240 + set of Objectives on the Market + set of Markets in the Objective + 742 + + + 743 + 1 + 74 + Transports + 0 + -1 + true + true + 478697816 + Transport objects + 743 + + + 744 + 74 + 74 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Transport inherits from + Transport objects inheriting from this template + 744 + + + 745 + 102 + 74 + Transports + 0 + -1 + Lists + 0 + -1 + true + true + 478697816 + set of Transport objects in the List + set of Lists containing the Transport + 745 + + + 746 + 74 + 63 + Fuel Commodity + 0 + 1 + Fuel Transports + 0 + -1 + true + false + 879218493 + The commodity used by the Transport as fuel + Set of Transports that use the commodity as fuel + 746 + + + 747 + 74 + 63 + Primary Commodity + 1 + 1 + Primary Transports + 0 + -1 + true + false + 795742667 + The primary commodity transported by the Transport + Set of Transports that transport the commodity + 747 + + + 748 + 74 + 75 + Export Hubs + 1 + -1 + Export Transports + 0 + -1 + true + true + 553168766 + The Hubs through which commodities are exported using a Transport + Set of Transports that receive commodities from a Hub + 748 + + + 749 + 74 + 75 + Import Hubs + 1 + -1 + Import Transports + 0 + -1 + true + true + 327845829 + The Hubs through which commodities are imported from a Transport + Set of Transports that deliver commodities to a Hub + 749 + + + 750 + 74 + 76 + Transport Paths + 1 + -1 + Transports + 0 + -1 + true + true + 858202073 + The paths through which a Transport can travel + Set of Transports that can travel through the path + 750 + + + 751 + 74 + 76 + Initial Transport Path + 0 + 1 + Transports Started + 0 + -1 + true + true + 1792548685 + Initial path that the transport is on at the beginning of the horizon + Set of transports that are already travelling along a path at the beginning of the horizon + 751 + + + 752 + 1 + 75 + Transport Hubs + 0 + -1 + true + true + 69298537 + Transport hubs + 752 + + + 753 + 75 + 75 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Transport Hub inherits from + Transport Hub objects inheriting from this template + 753 + + + 754 + 102 + 75 + Transport Hubs + 0 + -1 + Lists + 0 + -1 + true + true + 69298537 + set of Transport Hub objects in the List + set of Lists containing the Transport Hub + 754 + + + 755 + 75 + 75 + Transport Hubs To + 0 + -1 + Transport Hubs From + 0 + -1 + true + true + 1963749604 + Set of Transport Hubs the Transport Hub is connected to + Set of Transport Hubs the Transport Hub is connected to + 755 + + + 756 + 75 + 76 + Transport Paths + 0 + -1 + Transport Hubs + 0 + -1 + true + true + 858202073 + Set of Transport Paths associated with a Transport Hub + The Transport Hubs that are part of a Transport Path + 756 + + + 757 + 1 + 76 + Transport Paths + 0 + -1 + true + true + 858202073 + Transport path objects + 757 + + + 758 + 76 + 76 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Transport Path inherits from + Transport Path objects inheriting from this template + 758 + + + 759 + 102 + 76 + Transport Paths + 0 + -1 + Lists + 0 + -1 + true + true + 858202073 + set of Transport Path objects in the List + set of Lists containing the Transport Path + 759 + + + 760 + 1 + 77 + Constraints + 0 + -1 + true + true + 12 + Constraint objects + 760 + + + 761 + 77 + 77 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Constraint inherits from + Constraint objects inheriting from this template + 761 + + + 762 + 102 + 77 + Constraints + 0 + -1 + Lists + 0 + -1 + true + true + 12 + set of Constraint objects in the List + set of Lists containing the Constraint + 762 + + + 763 + 77 + 82 + Conditions + 0 + -1 + Conditional Constraints + 0 + -1 + true + true + 11 + set of switching variables for this constraint + set of constraints switched by this variable + 763 + + + 764 + 1 + 78 + Objectives + 0 + -1 + true + true + 240 + Objective + 764 + + + 765 + 78 + 78 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Objective inherits from + Objective objects inheriting from this template + 765 + + + 766 + 102 + 78 + Objectives + 0 + -1 + Lists + 0 + -1 + true + true + 240 + set of Objective objects in the List + set of Lists containing the Objective + 766 + + + 767 + 1 + 79 + Decision Variables + 0 + -1 + true + true + 166 + Decision Variable objects + 767 + + + 768 + 79 + 79 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Decision Variable inherits from + Decision Variable objects inheriting from this template + 768 + + + 769 + 102 + 79 + Decision Variables + 0 + -1 + Lists + 0 + -1 + true + true + 166 + set of Decision Variable objects in the List + set of Lists containing the Decision Variable + 769 + + + 770 + 79 + 77 + Constraints + 0 + -1 + Decision Variables + 0 + -1 + true + true + 12 + set of Constraints on the Decision Variable + set of Decision Variables in the Constraint + 770 + + + 771 + 79 + 77 + Definition + 0 + 1 + Definitions + 0 + 1 + true + false + 168 + Constraint that defines the Decision Variable value + Decision Variable defined by this Constraint + 771 + + + 772 + 79 + 78 + Objectives + 0 + -1 + Decision Variables + 0 + -1 + true + true + 240 + set of Objectives on the Decision Variable + set of Decision Variables in the Objective + 772 + + + 773 + 1 + 80 + Nonlinear Constraints + 0 + -1 + true + true + 250 + Nonlinear Constraint objects + 773 + + + 774 + 80 + 80 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Nonlinear Constraint inherits from + Nonlinear Constraint objects inheriting from this template + 774 + + + 775 + 102 + 80 + Nonlinear Constraints + 0 + -1 + Lists + 0 + -1 + true + true + 250 + set of Nonlinear Constraint objects in the List + set of Lists containing the Nonlinear Constraint + 775 + + + 776 + 80 + 79 + Decision Variable X + 1 + 1 + true + false + 251 + Decision Variable object specifying "X" for the Nonlinear Constraint + 776 + + + 777 + 80 + 79 + Decision Variable Y + 1 + 1 + true + false + 252 + Decision Variable object specifying "Y" for the Nonlinear Constraint + 777 + + + 778 + 1 + 81 + Data Files + 0 + -1 + true + true + 16 + Data File objects + 778 + + + 779 + 102 + 81 + Data Files + 0 + -1 + Lists + 0 + -1 + true + true + 16 + set of Data File objects in the List + set of Lists containing the Data File + 779 + + + 780 + 1 + 82 + Variables + 0 + -1 + true + true + 103 + Variable objects + 780 + + + 781 + 102 + 82 + Variables + 0 + -1 + Lists + 0 + -1 + true + true + 103 + set of Variable objects in the List + set of Lists containing the Variable + 781 + + + 782 + 82 + 77 + Constraints + 0 + -1 + Variables + 0 + -1 + true + true + 12 + set of Constraints on the Variable + set of Variables in the Constraint + 782 + + + 783 + 82 + 78 + Objectives + 0 + -1 + Variables + 0 + -1 + true + true + 240 + set of Objectives on the Variable + set of Variables in the Objective + 783 + + + 784 + 82 + 82 + Variables + 0 + -1 + true + true + 103 + correlation matrix + 784 + + + 785 + 82 + 82 + Conditions + 0 + -1 + true + true + 11 + set of conditions the condition depends on + 785 + + + 786 + 1 + 83 + Timeslices + 0 + -1 + true + true + 98 + Timeslice objects + 786 + + + 787 + 102 + 83 + Timeslices + 0 + -1 + Lists + 0 + -1 + true + true + 98 + set of Timeslice objects in the List + set of Lists containing the Timeslice + 787 + + + 788 + 1 + 84 + Globals + 0 + -1 + true + true + 167 + Global objects + 788 + + + 789 + 102 + 84 + Globals + 0 + -1 + Lists + 0 + -1 + true + true + 167 + set of Global objects in the List + set of Lists containing the Global + 789 + + + 790 + 1 + 85 + Scenarios + 0 + -1 + true + true + 90 + Scenario objects + 790 + + + 791 + 102 + 85 + Scenarios + 0 + -1 + Lists + 0 + -1 + true + true + 90 + set of Scenario objects in the List + set of Lists containing the Scenario + 791 + + + 792 + 1 + 86 + Weather Stations + 0 + -1 + true + true + 233 + Weather station objects + 792 + + + 793 + 102 + 86 + Weather Stations + 0 + -1 + Lists + 0 + -1 + true + true + 233 + set of Weather Station objects in the List + set of Lists containing the Weather Station + 793 + + + 794 + 86 + 40 + Gas Node + 0 + -1 + Weather Stations + 0 + 1 + true + false + 117 + gas node the weather station connects to + set of weather stations connected to the gas node + 794 + + + 795 + 86 + 41 + Gas Storages + 0 + -1 + false + true + 113 + 795 + + + 796 + 86 + 42 + Gas Demands + 0 + -1 + false + true + 116 + 796 + + + 797 + 1 + 87 + Models + 0 + -1 + true + true + 64 + Model objects + 797 + + + 798 + 87 + 85 + Scenarios + 0 + -1 + Models + 0 + -1 + true + true + 90 + set of scenarios used by the model + set of models that use the scenario + 798 + + + 799 + 87 + 16 + Reliability + 0 + 1 + Models + 0 + -1 + true + false + 249 + Reliability object evaluated in the model + set of models that run this Reliability object + 799 + + + 800 + 87 + 89 + Horizon + 1 + 1 + Models + 0 + -1 + true + false + 43 + horizon for the model + set of models that run this Horizon + 800 + + + 801 + 87 + 90 + Report + 1 + 1 + Models + 0 + -1 + true + false + 86 + report for the model + set of models that use these Report settings + 801 + + + 802 + 87 + 92 + Preview + 0 + 1 + Models + 0 + -1 + true + false + 302 + Preview settings for the model + set of models that run this Preview + 802 + + + 803 + 87 + 93 + LT Plan + 0 + 1 + Models + 0 + -1 + true + false + 60 + LT Plan settings for the model + set of models that run this LT Plan + 803 + + + 804 + 87 + 94 + PASA + 0 + 1 + Models + 0 + -1 + true + false + 71 + PASA settings for the model + set of models that run the this PASA + 804 + + + 805 + 87 + 95 + MT Schedule + 0 + 1 + Models + 0 + -1 + true + false + 65 + MT Schedule settings for the model + set of models that run this MT Schedule + 805 + + + 806 + 87 + 96 + ST Schedule + 0 + 1 + Models + 0 + -1 + true + false + 91 + ST Schedule settings for the model + set of models that run this ST Schedule + 806 + + + 807 + 87 + 91 + Stochastic + 0 + 1 + Models + 0 + -1 + true + false + 93 + Stochastic settings for the model + set of models using these Stochastic settings + 807 + + + 808 + 87 + 97 + Transmission + 0 + 1 + Models + 0 + -1 + true + false + 100 + Transmission settings for Model + set of Models using these Transmission settings + 808 + + + 809 + 87 + 98 + Production + 0 + 1 + Models + 0 + -1 + true + false + 78 + Production settings for Model + set of Models using these Production settings + 809 + + + 810 + 87 + 99 + Competition + 0 + 1 + Models + 0 + -1 + true + false + 10 + Competition settings for Model + set of Models using these Competition settings + 810 + + + 811 + 87 + 100 + Performance + 0 + 1 + Models + 0 + -1 + true + false + 72 + Performance settings for Model + set of Models using these Performance settings + 811 + + + 812 + 87 + 101 + Diagnostic + 0 + 1 + Models + 0 + -1 + true + false + 18 + Diagnostic settings for Model + set of Models using these Diagnostic settings + 812 + + + 813 + 87 + 87 + Interleaved + 0 + 1 + true + false + 155 + model run interleaved with this model + 813 + + + 814 + 1 + 88 + Projects + 0 + -1 + true + true + 79 + Project objects + 814 + + + 815 + 88 + 87 + Models + 1 + -1 + Projects + 0 + -1 + true + true + 64 + set of models included in the project + set of projects the model is included in + 815 + + + 816 + 88 + 89 + Horizon + 1 + 1 + Projects + 0 + -1 + true + false + 43 + horizon for the project + set of projects that run this Horizon + 816 + + + 817 + 88 + 90 + Report + 1 + 1 + Projects + 0 + -1 + true + false + 86 + report for the project + set of projects using these Report settings + 817 + + + 818 + 1 + 89 + Horizons + 0 + -1 + true + true + 44 + Horizon objects + 818 + + + 819 + 1 + 90 + Reports + 0 + -1 + true + true + 87 + Report objects + 819 + + + 820 + 90 + 82 + Master Filter + 0 + 1 + Master Filtered Reports + 0 + -1 + true + true + 236 + master conditional filter that defines which periods will be reported + Report object which the master filter condition belongs to + 820 + + + 821 + 90 + 82 + Object Filter + 0 + -1 + Object Filtered Reports + 0 + -1 + true + true + 237 + set of filter conditions that define which objects will be reported + Report object which the condition belongs to + 821 + + + 822 + 90 + 102 + Lists + 0 + -1 + Reports + 0 + -1 + true + true + 120 + set of Lists in the Report + set of Report objects containing the List + 822 + + + 823 + 1 + 91 + Stochastic + 0 + -1 + true + true + 93 + Stochastic objects + 823 + + + 824 + 1 + 92 + Preview + 0 + -1 + true + true + 302 + Preview objects + 824 + + + 825 + 1 + 93 + LT Plan + 0 + -1 + true + true + 60 + LT Plan objects + 825 + + + 826 + 93 + 82 + Variables + 0 + -1 + LT Plans + 0 + -1 + true + true + 103 + Variables providing profiles for chronological slicing, fitting or sampling + set of LT Plans using the Variable profile for chronological slicing, fitting or sampling + 826 + + + 827 + 93 + 97 + Transmission + 0 + 1 + LT Plans + 0 + -1 + true + false + 100 + Transmission settings for LT Plan + set of LT Plans using these Transmission settings + 827 + + + 828 + 93 + 98 + Production + 0 + 1 + LT Plans + 0 + -1 + true + false + 78 + Production settings for LT Plan + set of LT Plans using these Production settings + 828 + + + 829 + 93 + 99 + Competition + 0 + 1 + LT Plans + 0 + -1 + true + false + 10 + Competition settings for LT Plan + set of LT Plans using these Competition settings + 829 + + + 830 + 93 + 100 + Performance + 0 + 1 + LT Plans + 0 + -1 + true + false + 72 + Performance settings for LT Plan + set of LT Plans using these Performance settings + 830 + + + 831 + 93 + 101 + Diagnostic + 0 + 1 + LT Plans + 0 + -1 + true + false + 18 + Diagnostic settings for LT Plan + set of LT Plans using these Diagnostic settings + 831 + + + 832 + 1 + 94 + PASA + 0 + -1 + true + true + 71 + PASA objects + 832 + + + 833 + 94 + 97 + Transmission + 0 + 1 + PASAs + 0 + -1 + true + false + 100 + Transmission settings for PASA + set of PASAs using these Transmission settings + 833 + + + 834 + 94 + 98 + Production + 0 + 1 + PASAs + 0 + -1 + true + false + 78 + Production settings for PASA + set of PASAs using these Production settings + 834 + + + 835 + 94 + 99 + Competition + 0 + 1 + PASAs + 0 + -1 + true + false + 10 + Competition settings for PASA + set of PASAs using these Competition settings + 835 + + + 836 + 94 + 100 + Performance + 0 + 1 + PASAs + 0 + -1 + true + false + 72 + Performance settings for PASA + set of PASAs using these Performance settings + 836 + + + 837 + 94 + 101 + Diagnostic + 0 + 1 + PASAs + 0 + -1 + true + false + 18 + Diagnostic settings for PASA + set of PASAs using these Diagnostic settings + 837 + + + 838 + 1 + 95 + MT Schedule + 0 + -1 + true + true + 65 + MT Schedule objects + 838 + + + 839 + 95 + 82 + Variables + 0 + -1 + MT Schedules + 0 + -1 + true + true + 103 + Variables providing profiles for chronological slicing, fitting or sampling + set of MT Schedules using the Variable profile for chronological slicing, fitting or sampling + 839 + + + 840 + 95 + 97 + Transmission + 0 + 1 + MT Schedules + 0 + -1 + true + false + 100 + Transmission settings for MT Schedule + set of MT Schedules using these Transmission settings + 840 + + + 841 + 95 + 98 + Production + 0 + 1 + MT Schedules + 0 + -1 + true + false + 78 + Production settings for MT Schedule + set of MT Schedules using these Production settings + 841 + + + 842 + 95 + 99 + Competition + 0 + 1 + MT Schedules + 0 + -1 + true + false + 10 + Competition settings for MT Schedule + set of MT Schedules using these Competition settings + 842 + + + 843 + 95 + 100 + Performance + 0 + 1 + MT Schedules + 0 + -1 + true + false + 72 + Performance settings for MT Schedule + set of MT Schedules using these Performance settings + 843 + + + 844 + 95 + 101 + Diagnostic + 0 + 1 + MT Schedules + 0 + -1 + true + false + 18 + Diagnostic settings for MT Schedule + set of MT Schedules using these Diagnostic settings + 844 + + + 845 + 1 + 96 + ST Schedule + 0 + -1 + true + true + 91 + ST Schedule objects + 845 + + + 846 + 96 + 97 + Transmission + 0 + 1 + ST Schedules + 0 + -1 + true + false + 100 + Transmission settings for ST Schedule + set of ST Schedules using these Transmission settings + 846 + + + 847 + 96 + 98 + Production + 0 + 1 + ST Schedules + 0 + -1 + true + false + 78 + Production settings for ST Schedule + set of ST Schedules using these Production settings + 847 + + + 848 + 96 + 99 + Competition + 0 + 1 + ST Schedules + 0 + -1 + true + false + 10 + Competition settings for ST Schedule + set of ST Schedules using these Competition settings + 848 + + + 849 + 96 + 100 + Performance + 0 + 1 + ST Schedules + 0 + -1 + true + false + 72 + Performance settings for ST Schedule + set of ST Schedules using these Performance settings + 849 + + + 850 + 96 + 101 + Diagnostic + 0 + 1 + ST Schedules + 0 + -1 + true + false + 18 + Diagnostic settings for ST Schedule + set of ST Schedules using these Diagnostic settings + 850 + + + 851 + 1 + 97 + Transmission + 0 + -1 + true + true + 100 + Transmission objects + 851 + + + 852 + 1 + 98 + Production + 0 + -1 + true + true + 78 + Production objects + 852 + + + 853 + 1 + 99 + Competition + 0 + -1 + true + true + 10 + Competition objects + 853 + + + 854 + 1 + 100 + Performance + 0 + -1 + true + true + 72 + Performance objects + 854 + + + 855 + 1 + 101 + Diagnostics + 0 + -1 + true + true + 19 + Diagnostic objects + 855 + + + 856 + 1 + 102 + Lists + 0 + -1 + true + true + 120 + List objects + 856 + + + 857 + 102 + 102 + Lists + 0 + -1 + true + true + 120 + set of List objects in the List + 857 + + + 858 + 1 + 103 + Layouts + 0 + -1 + true + true + 296 + Layout objects + 858 + + + 859 + 103 + 103 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Layout inherits from + Layout objects inheriting from this template + 859 + + + 860 + 102 + 103 + Layouts + 0 + -1 + Lists + 0 + -1 + true + true + 296 + set of Layout objects in the List + set of Lists containing the Layout + 860 + + + 861 + 103 + 9 + Storages + 0 + -1 + Layouts + 0 + -1 + true + true + 96 + set of Storage objects in the Layout + set of Layouts containing the Storage + 861 + + + 862 + 103 + 24 + Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 70 + set of Node objects in the Layout + set of Layouts containing the Node + 862 + + + 863 + 103 + 35 + Heat Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 220 + set of Heat Node objects in the Layout + set of Layouts containing the Heat Node + 863 + + + 864 + 103 + 40 + Gas Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 115 + set of Gas Node objects in the Layout + set of Layouts containing the Gas Node + 864 + + + 865 + 103 + 53 + Water Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 191 + set of Water Node objects in the Layout + set of Layouts containing the Water Node + 865 + + + 866 + 103 + 69 + Flow Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 279 + set of Flow Node objects in the Layout + set of Layouts containing the Flow Node + 866 + + + 117 + 7 + 118 + + + 117 + 8 + 118 + + + 193 + 188 + 214 + + + 207 + 201 + 643 + + + 217 + 12 + 302 + + + 219 + 85 + 302 + + + 220 + 214 + 114 + + + 221 + 149 + 302 + + + 222 + 150 + 302 + + + 223 + 158 + 302 + + + 225 + 214 + 214 + + + 228 + 326 + 302 + 327 + 302 + 1 + + + 229 + 327 + 302 + 326 + 302 + 1 + + + 230 + 326 + 302 + 327 + 302 + 1 + + + 230 + 327 + 302 + 326 + 302 + 1 + + + 231 + 326 + 302 + 327 + 302 + 0 + + + 231 + 327 + 302 + 326 + 302 + 0 + + + 232 + 342 + 302 + 343 + 302 + 1 + + + 233 + 343 + 302 + 342 + 302 + 1 + + + 234 + 342 + 302 + 343 + 302 + 1 + + + 234 + 343 + 302 + 342 + 302 + 1 + + + 235 + 342 + 302 + 343 + 302 + 0 + + + 235 + 343 + 302 + 342 + 302 + 0 + + + 236 + 394 + 302 + + + 237 + 429 + 302 + + + 238 + 464 + 302 + + + 239 + 566 + 302 + + + 241 + 302 + 308 + + + 242 + 302 + 311 + + + 256 + 12 + 303 + + + 257 + 12 + 304 + + + 258 + 85 + 303 + + + 259 + 85 + 304 + + + 260 + 253 + 114 + + + 261 + 149 + 304 + + + 262 + 150 + 304 + + + 263 + 149 + 303 + + + 264 + 150 + 303 + + + 265 + 158 + 303 + + + 266 + 158 + 304 + + + 269 + 253 + 253 + + + 271 + 326 + 304 + 327 + 304 + 1 + + + 272 + 326 + 303 + 327 + 303 + 1 + + + 273 + 327 + 304 + 326 + 304 + 1 + + + 274 + 327 + 303 + 326 + 303 + 1 + + + 275 + 326 + 303 + 327 + 303 + 1 + + + 275 + 327 + 303 + 326 + 303 + 1 + + + 276 + 326 + 303 + 327 + 303 + 0 + + + 276 + 327 + 303 + 326 + 303 + 0 + + + 277 + 342 + 304 + 343 + 304 + 1 + + + 278 + 342 + 303 + 343 + 303 + 1 + + + 279 + 343 + 304 + 342 + 304 + 1 + + + 280 + 343 + 303 + 342 + 303 + 1 + + + 281 + 342 + 303 + 343 + 303 + 1 + + + 281 + 343 + 303 + 342 + 303 + 1 + + + 282 + 342 + 303 + 343 + 303 + 0 + + + 282 + 343 + 303 + 342 + 303 + 0 + + + 283 + 394 + 303 + + + 284 + 394 + 304 + + + 285 + 429 + 303 + + + 286 + 429 + 304 + + + 287 + 464 + 303 + + + 288 + 464 + 304 + + + 289 + 566 + 303 + + + 291 + 303 + 308 + + + 292 + 304 + 308 + + + 293 + 303 + 311 + + + 294 + 304 + 311 + + + 503 + 18 + 452 + + + 504 + 420 + 452 + + + 505 + 431 + 452 + + + 506 + 440 + 452 + 441 + 452 + 1 + + + 507 + 441 + 452 + 440 + 452 + 1 + + + 508 + 440 + 452 + 441 + 452 + 1 + + + 508 + 441 + 452 + 440 + 452 + 1 + + + 509 + 440 + 452 + 441 + 452 + 0 + + + 509 + 441 + 452 + 440 + 452 + 0 + + + 510 + 467 + 452 + + + 511 + 483 + 452 + + + 512 + 522 + 452 + + + 513 + 534 + 452 + 535 + 452 + 1 + + + 514 + 535 + 452 + 534 + 452 + 1 + + + 515 + 534 + 452 + 535 + 452 + 1 + + + 515 + 535 + 452 + 534 + 452 + 1 + + + 516 + 534 + 452 + 535 + 452 + 0 + + + 516 + 535 + 452 + 534 + 452 + 0 + + + 604 + 568 + 585 + + + 605 + 576 + 585 + 577 + 585 + 1 + + + 606 + 577 + 585 + 576 + 585 + 1 + + + 607 + 576 + 585 + 577 + 585 + 1 + + + 607 + 577 + 585 + 576 + 585 + 1 + + + 608 + 576 + 585 + 577 + 585 + 0 + + + 608 + 577 + 585 + 576 + 585 + 0 + + + 609 + 593 + 585 + + + 610 + 600 + 585 + + + 646 + 24 + 7 + + + 647 + 643 + 114 + + + 648 + 643 + 163 + + + 649 + 643 + 214 + + + 650 + 642 + 628 + + + 652 + 653 + 677 + + + 652 + 653 + 679 + + + 676 + 667 + 680 + + + 677 + 668 + 680 + + + 678 + 669 + 680 + + + 678 + 669 + 681 + + + 679 + 670 + 680 + + + 679 + 670 + 681 + + + 703 + 684 + 704 + + + 705 + 727 + 704 + + + 734 + 685 + 677 + + + 734 + 685 + 679 + + + Dynamic + 0 + + + Hydro Model + Energy + + + Interface + 5 + + + Language + 9 + + + Lock Attributes + 0 + + + Lock Configuration + 0 + + + Lock Memberships + 0 + + + Lock Objects + 0 + + + Lock Properties + 0 + + + Revision + 175 + + + Units + Metric + + + Validated + 0 + + + Version + 12.000 + + + Saved With + PLEXOS 9.200 R06 x64 Edition + + + Culture + en-US English (United States) + + + UICulture + en-US English (United States) + + + Decimal + . + + + DBID + 7d279306-ff8a-4911-a567-f9fe3924b032 + + + 1 + 1 + 1 + 797 + 87 + 2 + + + 2 + 1 + 1 + 797 + 87 + 3 + + + 3 + 1 + 1 + 797 + 87 + 4 + + + 4 + 1 + 1 + 797 + 87 + 5 + + + 5 + 1 + 1 + 818 + 89 + 6 + + + 6 + 1 + 1 + 818 + 89 + 7 + + + 7 + 1 + 1 + 819 + 90 + 8 + + + 8 + 1 + 1 + 819 + 90 + 9 + + + 9 + 1 + 1 + 819 + 90 + 10 + + + 10 + 1 + 1 + 819 + 90 + 11 + + + 11 + 1 + 1 + 823 + 91 + 12 + + + 12 + 1 + 1 + 825 + 93 + 13 + + + 13 + 1 + 1 + 832 + 94 + 14 + + + 14 + 1 + 1 + 838 + 95 + 15 + + + 15 + 1 + 1 + 845 + 96 + 16 + + + 16 + 1 + 1 + 845 + 96 + 17 + + + 17 + 1 + 1 + 851 + 97 + 18 + + + 18 + 1 + 1 + 854 + 100 + 19 + + + 19 + 87 + 2 + 800 + 89 + 7 + + + 20 + 87 + 3 + 800 + 89 + 6 + + + 21 + 87 + 4 + 800 + 89 + 6 + + + 22 + 87 + 5 + 800 + 89 + 6 + + + 23 + 87 + 2 + 801 + 90 + 8 + + + 24 + 87 + 3 + 801 + 90 + 9 + + + 25 + 87 + 4 + 801 + 90 + 10 + + + 26 + 87 + 5 + 801 + 90 + 11 + + + 27 + 87 + 5 + 807 + 91 + 12 + + + 28 + 87 + 2 + 803 + 93 + 13 + + + 29 + 87 + 3 + 804 + 94 + 14 + + + 30 + 87 + 4 + 804 + 94 + 14 + + + 31 + 87 + 5 + 804 + 94 + 14 + + + 32 + 87 + 3 + 805 + 95 + 15 + + + 33 + 87 + 4 + 805 + 95 + 15 + + + 34 + 87 + 5 + 805 + 95 + 15 + + + 35 + 87 + 3 + 806 + 96 + 16 + + + 36 + 87 + 4 + 806 + 96 + 17 + + + 37 + 87 + 5 + 806 + 96 + 16 + + + 38 + 87 + 3 + 808 + 97 + 18 + + + 39 + 87 + 2 + 811 + 100 + 19 + + + 40 + 87 + 3 + 811 + 100 + 19 + + + 41 + 87 + 4 + 811 + 100 + 19 + + + 42 + 87 + 5 + 811 + 100 + 19 + + + 1 + 1 + System + 1 + the system object + 98bd24fd-e92b-4738-92d4-3f03a8a09cc3 + + + 2 + 87 + Long Term + 87 + Long Term model with LT Plan + 8ac14ba8-c29d-4805-a7c4-185199e7fe8b + + + 3 + 87 + Nodal + 87 + Nodal model with MT and ST Schedule + 480a9f72-97d2-47fc-bcd2-1e4e8d6dc089 + + + 4 + 87 + Regional + 87 + Regional model with MT and ST Schedule + d4b86f02-f545-4369-9b15-7f9fd90bcb77 + + + 5 + 87 + Reliability + 87 + Reliability study with MT and ST Schedule + d463d7cb-8038-4071-9b99-ee5970a45c2a + + + 6 + 89 + 2020 + 89 + The year 2020 + fc5f8da4-3567-44c9-aa2b-57434d2095c0 + + + 7 + 89 + 2020-29 + 89 + The 10-year study period 2020-29 + 459b3309-93ee-49b9-9272-7fb9a1329ea9 + + + 8 + 90 + Long Term + 90 + Reporting for Long Term model + 7b86dc77-6df9-4029-a7c9-a959bfc2dcb6 + + + 9 + 90 + Nodal + 90 + Reporting for Nodal model + 5ea40b2b-5b80-4523-ac3b-cda13d882afb + + + 10 + 90 + Regional + 90 + Reporting for Regional model + b72a94d3-ba54-402e-8391-52855d8aa49a + + + 11 + 90 + Reliability + 90 + Reporting for Reliability model + 606146e3-cbc4-4b78-bca4-70ae44a133bc + + + 12 + 91 + Monte Carlo s=20 + 91 + Monte Carlo simulation with a sample size of 20 + c217c361-f9b5-4434-9994-4514a249a0b8 + + + 13 + 93 + LDC r=10 + 93 + LT Plan for capacity expansion planning using LDC and discount rate of 10% + 72dd0286-9f68-4d74-bb24-c191c159e0d6 + + + 14 + 94 + Regional + 94 + PASA for maintenance scheduling + 45297721-62a1-457e-8891-0d644b7c3733 + + + 15 + 95 + Regional + 95 + MT Schedule for constraint decomposition in regional mode + 40f2a2ef-50fa-40dd-8779-885e4bde2cf6 + + + 16 + 96 + Nodal + 96 + ST Schedule chronological simulation in nodal mode + b1e6d38e-4b17-4b24-aec2-65ab7f1826ff + + + 17 + 96 + Regional + 96 + ST Schedule chronological simulation in regional mode + fbc7fb10-1173-4412-a0b7-0a64a178a59d + + + 18 + 97 + Large-scale 230kV + 97 + Transmission options for large-scale networks + e943f5d6-8907-468c-80f6-49e35620f1d9 + + + 19 + 100 + Gurobi + 100 + bb2917d7-545e-4de0-b95c-af1e9d373382 + + + 1 + 1 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the generator must be reported even if it is out-of-service + 800000 + true + + + 2 + 1 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the generator for the generation of outages + 101000000 + true + + + 3 + 1 + 2 + 3 + Dispatchable + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2895 + A dispatchable generator operates anywhere within its technical limits whereas a non-dispatchable generator operates at its maximum available rating at all times + 800000 + true + + + 4 + 1 + 2 + 4 + Max Heat Rate Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 432 + Maximum number of tranches in the fuel function piecewise linear approximation. + 1000 + true + + + 5 + 1 + 2 + 5 + Formulate Non-convex + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order. + 1000 + true + + + 6 + 1 + 2 + 6 + Hydro Efficiency Optimality + 0 + -1 + In (-1,0,2) + -1;"Auto";0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2763 + Controls when integers are used to enforce multi-band hydro efficiency functions to dispatch in order + true + + + 7 + 1 + 2 + 7 + Head Effects Method + 0 + 0 + In (0,1) + 0;"Backward Looking";1;"Dynamic" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1920 + Method used to account for the effects of storage head on efficiency + 41000 + true + + + 8 + 1 + 2 + 8 + Min Down Time Mode + 0 + 1 + In (0,1) + 0;"Relaxed";1;"Enforced" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1652 + Controls how [Min Down Time] is applied after outages. + 1000000080 + true + + + 9 + 1 + 2 + 9 + Forced Outage Rate Denominator + 0 + 0 + In (0,1) + 0;"Time";1;"Operating Time" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1819 + Denominator for Forced Outage Rate calculations + 100000000 + true + + + 10 + 1 + 2 + 10 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 100000000 + true + + + 11 + 1 + 2 + 11 + Fixed Load Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 202 + Method of interpreting zero values of the [Fixed Load] property. + 80 + true + + + 12 + 1 + 2 + 12 + Fixed Load Global + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2465 + If [Fixed Load] applies across all units or unit-by-unit + true + + + 13 + 1 + 2 + 13 + Min Load Global + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2321 + If [Min Load] applies across all units or unit-by-unit + true + + + 14 + 1 + 2 + 14 + Load Subtracter Global + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2846 + If [Load Subtracter] applies across all units or unit-by-unit + true + + + 15 + 1 + 2 + 15 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the generator can set price + 4000000 + true + + + 16 + 1 + 2 + 16 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 400000 + true + + + 17 + 1 + 2 + 17 + Offers Must Clear in Order + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 576 + Flag to control ordering of clearing of user-defined generator offers. + 400000 + true + + + 18 + 1 + 2 + 18 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the generator. + 1000000000 + true + + + 19 + 1 + 2 + 19 + Unit Commitment Period + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2389 + Period between unit commitment (on/off) decisions. + 1000000000 + true + + + 20 + 1 + 2 + 20 + Unit Commitment Aggregation + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2412 + Flag if the generator is aggregated into an equivalent single unit for the purpose of unit commitment + 1000000000 + true + + + 21 + 1 + 2 + 21 + Rounding Up Threshold + 0 + -1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 711 + Threshold at which non-integers are rounded up. + 1000000000 + true + + + 22 + 1 + 2 + 22 + Include in Rounded Relaxation Merit Order + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1792 + Flag if Generator is included in the Region merit order for Rounded Relaxation unit commitment. + 1000000000 + true + + + 23 + 1 + 2 + 23 + Start Profile Range + 0 + 0 + In (0,1) + 0;"Min Stable Level";1;"Max Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1615 + Maximum range for [Start Profile] + 1000000000 + true + + + 24 + 1 + 2 + 24 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 25 + 1 + 2 + 25 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 26 + 1 + 2 + 26 + Declining Depreciation Balance + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 130 + Balance applied to declining depreciation method + 8 + true + + + 27 + 1 + 2 + 27 + Production Decomposition Method + 0 + 0 + In (0,1) + 0;"Optimized";1;"Fixed" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 931 + Method used to decompose generator production from MT to ST Schedule + 200 + true + + + 28 + 1 + 2 + 28 + Include in Uplift + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1362 + If this generator's costs are included in the uplift calculations. + 4000000 + true + + + 29 + 1 + 2 + 29 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this generator receives capacity payments. + 8 + true + + + 30 + 1 + 2 + 30 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 31 + 1 + 2 + 31 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 20 + true + + + 32 + 1 + 2 + 32 + End Effects Method + 0 + 2 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period heat volumes. + 20 + true + + + 33 + 1 + 2 + 33 + Recycle Penalty + 61 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 20 + true + + + 34 + 1 + 2 + 34 + Pump Timeframe + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2545 + Maximum hours to pump after generation + false + + + 35 + 1 + 2 + 35 + Controllable Inflow + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2779 + Proportion of Natural Inflow that is controllable + 40000 + true + + + 36 + 1 + 2 + 36 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 20 + true + + + 37 + 1 + 2 + 37 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 20 + true + + + 38 + 1 + 2 + 38 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 20 + true + + + 39 + 1 + 2 + 39 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 20 + true + + + 40 + 1 + 2 + 40 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 20 + true + + + 41 + 1 + 2 + 41 + Decomposition Bound Penalty + 61 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 20 + true + + + 42 + 1 + 2 + 42 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 20 + true + + + 43 + 1 + 2 + 43 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the generator's capacity acts strategically + 40 + true + + + 44 + 1 + 2 + 44 + Transition Type + 0 + 0 + In (0,1) + 0;"Individual";1;"Group" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1881 + If the generator can transition between a single generator or to a group of generators. + 1000000000 + true + + + 45 + 1 + 2 + 45 + Simultaneous Pump and Generation + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2628 + Pumped storage can pump and generate simultaneously + 80 + true + + + 46 + 1 + 2 + 46 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 47 + 1 + 2 + 47 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 48 + 1 + 2 + 48 + Min Up Time by Cooling State + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2832 + determines whether cooling states are considered for Min Up Time + true + + + 49 + 1 + 2 + 49 + Back Pressure Generator + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 756582614 + If the generator is a back pressure generator or not + true + + + 50 + 1 + 2 + 50 + Is DSM Peak Load Modifier + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1653293864 + Flag indicating if this generator is modeled as electric DSM, i.e. reduces the Peak Load instead of adding to the Region's Firm Capacity. + 900004 + true + + + 51 + 1 + 2 + 51 + Scale Participation Factors + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2993 + Flag if participation factors should be scaled for a generator + 800000 + false + + + 52 + 1 + 3 + 52 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 53 + 1 + 3 + 53 + Max Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 414 + Maximum generating capacity of each unit + 5 + true + + + 54 + 1 + 3 + 54 + Min Stable Level + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 501 + Minimum stable generation level + 1000000081 + true + + + 55 + 1 + 3 + 55 + Min Stable Level Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2629 + Penalty applied to violation of min stable level. + 1000000081 + true + + + 56 + 1 + 3 + 56 + Min Stable Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1372 + Minimum stable generation level as a proportion of [Max Capacity] + 1000000080 + true + + + 57 + 1 + 3 + 57 + Fuel Price + 29 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 225 + Fuel price (when not using Fuels collection) + 2000000000 + true + + + 58 + 1 + 3 + 58 + Load Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate. + 1000 + true + + + 59 + 1 + 3 + 59 + Heat Rate + 36 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 260 + Average heat rate (total fuel divided by total generation) + 1001 + true + + + 60 + 1 + 3 + 60 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 61 + 1 + 3 + 61 + Heat Rate Incr + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 62 + 1 + 3 + 62 + Heat Rate Incr2 + 38 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 264 + Second-order polynomial term in unit fuel use function + 1000 + true + + + 63 + 1 + 3 + 63 + Heat Rate Incr3 + 44 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 265 + Third-order polynomial term in unit fuel use function + 1000 + true + + + 64 + 1 + 3 + 64 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 65 + 1 + 3 + 65 + Pump VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2626 + Variable operation and maintenance charge for pump + 2000000001 + false + + + 66 + 1 + 3 + 66 + Generating VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2627 + Variable operation and maintenance charge for generating + 2000000001 + false + + + 67 + 1 + 3 + 67 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 68 + 1 + 3 + 68 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge for generation + 2000000000 + true + + + 69 + 1 + 3 + 69 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running a generating unit when on-line + 20000000 + true + + + 70 + 1 + 3 + 70 + Generation Credit + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2764 + Credit received for generation + 2000000000 + true + + + 71 + 1 + 3 + 71 + Generation Credit Start Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2765 + Year to start applying Generation Credits + 1000000080 + true + + + 72 + 1 + 3 + 72 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 73 + 1 + 3 + 73 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 74 + 1 + 3 + 74 + Run Up Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while running the unit up from zero to [Min Stable Level]. + 80000000 + true + + + 75 + 1 + 3 + 75 + Start Profile + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for running the unit up from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 76 + 1 + 3 + 76 + Start Profile Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2639 + Penalty for violation of [Start Profile]. + 80 + true + + + 77 + 1 + 3 + 77 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 78 + 1 + 3 + 78 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 79 + 1 + 3 + 79 + Run Down Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1020 + Ramp rate that applies while running the unit down from [Min Stable Level] to zero + 200000000 + true + + + 80 + 1 + 3 + 80 + Shutdown Profile + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 933 + Detailed regime for running the unit down from [Min Stable Level] when [Run Down Rate] is non-constant. + 200000000 + true + + + 81 + 1 + 3 + 81 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 82 + 1 + 3 + 82 + Rolling Planning Bonus + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2519 + Bonus for remaining online at the end of the look-ahead + 1000000000 + true + + + 83 + 1 + 3 + 83 + Rating + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 665 + Rated capacity of units + 81 + true + + + 84 + 1 + 3 + 84 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + true + + + 85 + 1 + 3 + 85 + Rating Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2631 + Penalty for violation of Rating + true + + + 86 + 1 + 3 + 86 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 87 + 1 + 3 + 87 + Min Up Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2592 + Penalty for violation of min up time + 1000000080 + true + + + 88 + 1 + 3 + 88 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 89 + 1 + 3 + 89 + Min Down Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2593 + Penalty for violation of min down time + 1000000080 + true + + + 90 + 1 + 3 + 90 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 91 + 1 + 3 + 91 + Max Up Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2594 + Penalty for violation of max up time + 1000000080 + true + + + 92 + 1 + 3 + 92 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 93 + 1 + 3 + 93 + Max Down Time Penalty + 48 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2620 + Penalty for violation of max down time + 1000000080 + true + + + 94 + 1 + 3 + 94 + Generating Units + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2531 + Number of generating units + 1000000080 + true + + + 95 + 1 + 3 + 95 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 96 + 1 + 3 + 96 + Fixed Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load + 10000080 + true + + + 97 + 1 + 3 + 97 + Fixed Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1092 + Penalty for violation of [Fixed Load]. + 80 + true + + + 98 + 1 + 3 + 98 + Min Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 486 + Minimum level of station load (must run/run of river) + 80 + true + + + 99 + 1 + 3 + 99 + Min Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1093 + Penalty for violation of [Min Load]. + 80 + true + + + 100 + 1 + 3 + 100 + Max Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 436 + Maximum level of unit load (unit may provide spinning reserve with remainder of spare capacity) + 80 + true + + + 101 + 1 + 3 + 101 + Max Load Penalty + 33 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2595 + Penalty for violation of [Max Load]. + 80 + true + + + 102 + 1 + 3 + 102 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Number of units that should be committed + 1000000080 + true + + + 103 + 1 + 3 + 103 + Fuel Mix Penalty + 29 + 0 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 222 + Penalty applied to violations of fuel mixing constraints + 1000 + false + + + 104 + 1 + 3 + 104 + Ramp Up Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Load point for use with multi-band Max Ramp Up constraints + 80 + true + + + 105 + 1 + 3 + 105 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate that applies at the given load point + 80 + true + + + 106 + 1 + 3 + 106 + Ramp Up Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 107 + 1 + 3 + 107 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 108 + 1 + 3 + 108 + Ramp Down Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Load point for use with multi-band Max Ramp Down constraints + 80 + true + + + 109 + 1 + 3 + 109 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate that applies at the given load point + 80 + true + + + 110 + 1 + 3 + 110 + Ramp Down Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 111 + 1 + 3 + 111 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 112 + 1 + 3 + 112 + Rough Running Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 709 + Start point of rough running range + 80 + true + + + 113 + 1 + 3 + 113 + Rough Running Range + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 710 + Length of rough running range (must be paired with Rough Running Point) + 80 + true + + + 114 + 1 + 3 + 114 + Regulation Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 673 + Start point of regulation reserve range + 2 + true + + + 115 + 1 + 3 + 115 + Regulation Range + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 674 + Length of regulation reserve range (must be paired with Regulation Point) + 2 + true + + + 116 + 1 + 3 + 116 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of capacity + 2 + true + + + 117 + 1 + 3 + 117 + Aux Fixed + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 118 + 1 + 3 + 118 + Aux Base + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 119 + 1 + 3 + 119 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of generation + 200000 + true + + + 120 + 1 + 3 + 120 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) + 600000 + true + + + 121 + 1 + 3 + 121 + Natural Inflow + 25 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 530 + Natural inflow to the generator (controllable and uncontrolled) + 40000 + true + + + 122 + 1 + 3 + 122 + Efficiency Base + 119 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 887 + Flow rate at notional zero load for hydro unit + 41000 + true + + + 123 + 1 + 3 + 123 + Efficiency Incr + 120 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Efficiency of hydro generation + 41000 + true + + + 124 + 1 + 3 + 124 + Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1831 + Annual degradation in generating efficiency with age + 1000 + false + + + 125 + 1 + 3 + 125 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 639 + Efficiency of pumping + 8041001 + true + + + 126 + 1 + 3 + 126 + Pump Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 642 + Load drawn by a unit in pumping mode + 8040001 + true + + + 127 + 1 + 3 + 127 + Pump Load Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2736 + A multiplier (percentage) on the pump load + 80 + true + + + 128 + 1 + 3 + 128 + Pump Load Penalty + 33 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2596 + Penalty for violation of Pump Load. + 8040080 + true + + + 129 + 1 + 3 + 129 + Pump Units + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 645 + Number of pump units + 8040004 + true + + + 130 + 1 + 3 + 130 + Min Pump Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 490 + Minimum unit load while pumping + 8040080 + true + + + 131 + 1 + 3 + 131 + Must Pump Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 915 + Number of pump units that must be running in pump mode + 1008040080 + true + + + 132 + 1 + 3 + 132 + Max Units Pumping + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1145 + Maximum number of units allowed to be running in pump mode. + 1008040080 + true + + + 133 + 1 + 3 + 133 + Fixed Pump Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1328 + Fixed pump load + 8040080 + true + + + 134 + 1 + 3 + 134 + Fixed Pump Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1329 + Penalty for violation of [Fixed Pump Load]. + 8040080 + true + + + 135 + 1 + 3 + 135 + Pump UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1229 + Use of system charge for pump load + 2008040000 + true + + + 136 + 1 + 3 + 136 + Min Pump Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1802 + Minimum number of hours a unit must be run in pump mode after being started + 1000000080 + true + + + 137 + 1 + 3 + 137 + Min Pump Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1829 + Minimum number of hours a unit must be off after being shut down from pump mode + 1000000080 + true + + + 138 + 1 + 3 + 138 + Max Pump Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2888 + Maximum number of hours a unit can be run in pump mode after being started + 1000000080 + true + + + 139 + 1 + 3 + 139 + Generation Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1932 + Minimum time between operating in generation mode and pump mode + 8000000 + true + + + 140 + 1 + 3 + 140 + Pump Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1933 + Minimum time between operating in pump mode and generation mode + 8000000 + true + + + 141 + 1 + 3 + 141 + Reserves VO&M Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 690 + Variable O&M cost associated with providing spinning reserve + 2000000002 + true + + + 142 + 1 + 3 + 142 + Sync Cond Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 775 + Maximum number of synchronous condenser units + 40006 + true + + + 143 + 1 + 3 + 143 + Must-run Sync Cond Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 526 + Number of must-run synchronous condenser units + 40082 + true + + + 144 + 1 + 3 + 144 + Sync Cond Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 772 + Load drawn by a unit in synchronous condenser mode + 40002 + true + + + 145 + 1 + 3 + 145 + Sync Cond VO&M Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 776 + Variable O&M cost associated with running a unit in synchronous condenser mode + 2000040002 + true + + + 146 + 1 + 3 + 146 + Reserve Share + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 689 + Proportion of maximum capacity that must be set aside for reserves + 2 + true + + + 147 + 1 + 3 + 147 + Initial Generation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 313 + Generation at time zero + 80000 + true + + + 148 + 1 + 3 + 148 + Initial Units Generating + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 317 + Number of units generating at time zero + 1000080000 + true + + + 149 + 1 + 3 + 149 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the unit has been up for at time zero + 1000080000 + true + + + 150 + 1 + 3 + 150 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the unit has been down for at time zero + 1000080000 + true + + + 151 + 1 + 3 + 151 + Initial Pumping + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1827 + Generator pump load at time zero + 80000 + false + + + 152 + 1 + 3 + 152 + Initial Units Pumping + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1828 + Number of units pumping at time zero + 1000080000 + true + + + 153 + 1 + 3 + 153 + Initial Hours Pumping + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1931 + Hours the unit has been pumping for at time zero + 1000080000 + true + + + 154 + 1 + 3 + 154 + Last Start State + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 934 + Number of hours the unit had been down before the last start + 1000080000 + true + + + 155 + 1 + 3 + 155 + Reference Generation + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 669 + Generation level for generation slack PTDF calculation + 800000000 + true + + + 156 + 1 + 3 + 156 + Load Subtracter + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1296 + Generation subtracted from the System load duration curve prior to slicing. + 10100000 + true + + + 157 + 1 + 3 + 157 + Price Following + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1775 + Proportion of energy optimized, where the remainder is proportional load following + 40000 + true + + + 158 + 1 + 3 + 158 + Load Following Profile + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1773 + Profile to follow for proportional load following + 40000 + true + + + 159 + 1 + 3 + 159 + Load Following Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1774 + Regression factor for proportional load following + 40000 + true + + + 160 + 1 + 3 + 160 + Boiler Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 40 + Efficiency of the boiler component of a combined-cycle plant + 10 + true + + + 161 + 1 + 3 + 161 + Heat Load + 15 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 255 + Waste heat that must be extracted for exogenous loads (CCGT) + 30 + true + + + 162 + 1 + 3 + 162 + Power to Heat Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 611 + Ratio of heat production to electric production + 20 + true + + + 163 + 1 + 3 + 163 + CHP Electric Heat Rate Incr + 36 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 71 + Incremental electric heat rate in heating mode + 20 + true + + + 164 + 1 + 3 + 164 + CHP Heat Surrogate Rate Incr + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 72 + Notional value for heat fuel offtake estimation. + 20 + true + + + 165 + 1 + 3 + 165 + Boiler Heat Rate Incr + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 42 + Incremental heat rate for heat production from boiler + 20 + true + + + 166 + 1 + 3 + 166 + Max Boiler Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 413 + Maximum heat production from ancillary boiler + 20 + true + + + 167 + 1 + 3 + 167 + Max Heat + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1514 + Maximum heat allowed in storage + 400020000 + true + + + 168 + 1 + 3 + 168 + Min Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1515 + Minimum heat allowed in storage + 400020000 + true + + + 169 + 1 + 3 + 169 + Max Heat Penalty + 29 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2597 + Adds a penalty to the max heat constraint to allow for relaxation + 2000000000 + true + + + 170 + 1 + 3 + 170 + Opening Heat + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1513 + Initial heat in the storage + 400020000 + true + + + 171 + 1 + 3 + 171 + Heat Withdrawal Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1518 + Incremental cost of withdrawing heat from the storage + 400020000 + true + + + 172 + 1 + 3 + 172 + Heat Injection Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1519 + Incremental cost of injecting heat into the storage + 400020000 + true + + + 173 + 1 + 3 + 173 + Fixed Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1338 + Generic annual fixed charge + 8008 + true + + + 174 + 1 + 3 + 174 + Heat Loss + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1516 + Rate at which heat is lost from storage + 400020000 + true + + + 175 + 1 + 3 + 175 + Water Offtake + 68 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1801 + Water recycled through the generator (e.g. for cooling) + 8000000000 + true + + + 176 + 1 + 3 + 176 + Water Consumption + 68 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1803 + Water consumed by the generator (e.g. evaporative cooling losses) + 8000000000 + true + + + 177 + 1 + 3 + 177 + Max Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 451 + Maximum rate of release from each unit + 40080 + true + + + 178 + 1 + 3 + 178 + AC Reactive Power Minimum + 122 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2953 + The minimum reactive power available + 800000000 + false + + + 179 + 1 + 3 + 179 + AC Reactive Power Maximum + 122 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2954 + The maximum reactive power available + 800000000 + false + + + 180 + 1 + 3 + 180 + Turbine Blade Radius + 23 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 3018 + Turbine Blade Radius + 10000080 + true + + + 181 + 1 + 3 + 181 + Wind Power Coefficient + 0 + 0.593 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 3019 + Wind Power Coefficient + 10000080 + true + + + 182 + 1 + 9 + 182 + Max Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 423 + Maximum energy + 80 + true + + + 183 + 1 + 9 + 182 + Max Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1548 + Maximum energy in hour + 80 + true + + + 184 + 1 + 9 + 182 + Max Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 424 + Maximum energy in day + 80 + true + + + 185 + 1 + 9 + 182 + Max Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 426 + Maximum energy in week + 80 + true + + + 186 + 1 + 9 + 182 + Max Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 425 + Maximum energy in month + 80 + true + + + 187 + 1 + 9 + 182 + Max Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 427 + Maximum energy in year + 80 + true + + + 188 + 1 + 9 + 183 + Min Energy + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1110 + Minimum energy + 80 + true + + + 189 + 1 + 9 + 183 + Min Energy Hour + 1 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1549 + Minimum energy in hour + 80 + true + + + 190 + 1 + 9 + 183 + Min Energy Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1111 + Minimum energy in day + 80 + true + + + 191 + 1 + 9 + 183 + Min Energy Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1112 + Minimum energy in week + 80 + true + + + 192 + 1 + 9 + 183 + Min Energy Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1113 + Minimum energy in month + 80 + true + + + 193 + 1 + 9 + 183 + Min Energy Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1114 + Minimum energy in year + 80 + true + + + 194 + 1 + 9 + 184 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor (energy constraint) + 80 + true + + + 195 + 1 + 9 + 184 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 196 + 1 + 9 + 184 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 197 + 1 + 9 + 184 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 198 + 1 + 9 + 184 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 199 + 1 + 9 + 184 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 200 + 1 + 9 + 185 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor + 80 + true + + + 201 + 1 + 9 + 185 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 202 + 1 + 9 + 185 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 203 + 1 + 9 + 185 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 204 + 1 + 9 + 185 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 205 + 1 + 9 + 185 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 206 + 1 + 9 + 186 + Max Energy Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1190 + Penalty applied to violations of [Max Energy] and [Max Capacity Factor] constraints. + 80 + true + + + 207 + 1 + 9 + 187 + Min Energy Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1191 + Penalty applied to violations of [Min Energy] and [Min Capacity Factor] constraints. + 80 + true + + + 208 + 1 + 9 + 188 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 209 + 1 + 9 + 188 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 210 + 1 + 9 + 188 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 211 + 1 + 9 + 188 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 212 + 1 + 9 + 188 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 213 + 1 + 9 + 188 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 214 + 1 + 9 + 189 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints. + 1080000080 + true + + + 215 + 1 + 9 + 190 + Energy Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 868 + Scalar applied to generator energy limits and energy implied by capacity factor constraints + 80 + true + + + 216 + 1 + 9 + 191 + Max Generation Curtailed + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2922 + Maximum generation curtailed + 80 + true + + + 217 + 1 + 9 + 191 + Max Generation Curtailed Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2923 + Maximum generation curtailed in hour + 80 + true + + + 218 + 1 + 9 + 191 + Max Generation Curtailed Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2924 + Maximum generation curtailed in day + 80 + true + + + 219 + 1 + 9 + 191 + Max Generation Curtailed Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2925 + Maximum generation curtailed in week + 80 + true + + + 220 + 1 + 9 + 191 + Max Generation Curtailed Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2926 + Maximum generation curtailed in month + 80 + true + + + 221 + 1 + 9 + 191 + Max Generation Curtailed Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2927 + Maximum generation curtailed in year + 80 + true + + + 222 + 1 + 9 + 192 + Max Generation Curtailment Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2928 + Maximum proportion of generation curtailed + 80 + true + + + 223 + 1 + 9 + 192 + Max Generation Curtailment Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2929 + Maximum proportion of generation curtailed in hour + 80 + true + + + 224 + 1 + 9 + 192 + Max Generation Curtailment Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2930 + Maximum proportion of generation curtailed in day + 80 + true + + + 225 + 1 + 9 + 192 + Max Generation Curtailment Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2931 + Maximum proportion of generation curtailed in week + 80 + true + + + 226 + 1 + 9 + 192 + Max Generation Curtailment Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2932 + Maximum proportion of generation curtailed in month + 80 + true + + + 227 + 1 + 9 + 192 + Max Generation Curtailment Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2933 + Maximum proportion of generation curtailed in year + 80 + true + + + 228 + 1 + 9 + 193 + Max Heat Withdrawal + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1520 + Maximum amount of heat that can be withdrawn from the storage + 400020000 + true + + + 229 + 1 + 9 + 193 + Max Heat Withdrawal Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1553 + Maximum amount of heat that can be withdrawn from the storage in a hour + 400020000 + true + + + 230 + 1 + 9 + 193 + Max Heat Withdrawal Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1521 + Maximum amount of heat that can be withdrawn from the storage in a day + 400020000 + true + + + 231 + 1 + 9 + 193 + Max Heat Withdrawal Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1522 + Maximum amount of heat that can be withdrawn from the storage in a week + 400020000 + true + + + 232 + 1 + 9 + 193 + Max Heat Withdrawal Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1523 + Maximum amount of heat that can be withdrawn from the storage in a month + 400020000 + true + + + 233 + 1 + 9 + 193 + Max Heat Withdrawal Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1524 + Maximum amount of heat that can be withdrawn from the storage in a year + 400020000 + true + + + 234 + 1 + 9 + 194 + Max Heat Injection + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1525 + Maximum amount of heat that can be injected into the storage + 400020000 + true + + + 235 + 1 + 9 + 194 + Max Heat Injection Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1554 + Maximum amount of heat that can be injected into the storage in a hour + 400020000 + true + + + 236 + 1 + 9 + 194 + Max Heat Injection Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1526 + Maximum amount of heat that can be injected into the storage in a day + 400020000 + true + + + 237 + 1 + 9 + 194 + Max Heat Injection Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1527 + Maximum amount of heat that can be injected into the storage in a week + 400020000 + true + + + 238 + 1 + 9 + 194 + Max Heat Injection Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1528 + Maximum amount of heat that can be injected into the storage in a month + 400020000 + true + + + 239 + 1 + 9 + 194 + Max Heat Injection Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1529 + Maximum amount of heat that can be injected into the storage in a year + 400020000 + true + + + 240 + 1 + 9 + 195 + Min Heat Withdrawal + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1530 + Amount of heat that must be withdrawn from storage + 400020000 + true + + + 241 + 1 + 9 + 195 + Min Heat Withdrawal Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1555 + Amount of heat that must be withdrawn from storage each hour + 400020000 + true + + + 242 + 1 + 9 + 195 + Min Heat Withdrawal Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1531 + Amount of heat that must be withdrawn from storage each day + 400020000 + true + + + 243 + 1 + 9 + 195 + Min Heat Withdrawal Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1532 + Amount of heat that must be withdrawn from storage each week + 400020000 + true + + + 244 + 1 + 9 + 195 + Min Heat Withdrawal Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1533 + Amount of heat that must be withdrawn from storage each month + 400020000 + true + + + 245 + 1 + 9 + 195 + Min Heat Withdrawal Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1534 + Amount of heat that must be withdrawn from storage each year + 400020000 + true + + + 246 + 1 + 9 + 196 + Min Heat Injection + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1535 + Amount of heat that must be injected into the storage + 400020000 + true + + + 247 + 1 + 9 + 196 + Min Heat Injection Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1556 + Amount of heat that must be injected into the storage each hour + 400020000 + true + + + 248 + 1 + 9 + 196 + Min Heat Injection Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1536 + Amount of heat that must be injected into the storage each day + 400020000 + true + + + 249 + 1 + 9 + 196 + Min Heat Injection Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1537 + Amount of heat that must be injected into the storage each week + 400020000 + true + + + 250 + 1 + 9 + 196 + Min Heat Injection Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1538 + Amount of heat that must be injected into the storage each month + 400020000 + true + + + 251 + 1 + 9 + 196 + Min Heat Injection Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1539 + Amount of heat that must be injected into the storage each year + 400020000 + true + + + 252 + 1 + 4 + 197 + Offer Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for incr/decr style offer + 400000 + true + + + 253 + 1 + 4 + 198 + Offer No Load Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 568 + Fixed dispatch cost component of generator offer. + 400000 + true + + + 254 + 1 + 4 + 199 + Offer Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band + 400001 + true + + + 255 + 1 + 4 + 200 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400001 + true + + + 256 + 1 + 4 + 201 + Offer Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1368 + Scalar applied to the [Offer Quantity] property + 400000 + true + + + 257 + 1 + 4 + 202 + Offer Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1386 + Adder applied to the [Offer Price] property + 400000 + true + + + 258 + 1 + 4 + 203 + Offer Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1365 + Scalar applied to the [Offer Price] property + 400000 + true + + + 259 + 1 + 4 + 204 + Mark-up + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 408 + Mark-up above marginal cost + 400040 + true + + + 260 + 1 + 4 + 205 + Bid-Cost Mark-up + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + 400040 + true + + + 261 + 1 + 4 + 206 + Mark-up Point + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1091 + Load point for use with multi-point [Mark-up] or [Bid-Cost Mark-up]. + 400040 + true + + + 262 + 1 + 4 + 207 + Pump Bid Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1301 + Base pump load for balancing bid + 8400000 + true + + + 263 + 1 + 4 + 208 + Pump Bid Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 1303 + Pump load bid quantity in band + 8400000 + true + + + 264 + 1 + 4 + 209 + Pump Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1302 + Bid price of pump load in band + 8400000 + true + + + 265 + 1 + 4 + 210 + Pump Bid Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1369 + Scalar applied to the [Pump Bid Quantity] property + 8400000 + true + + + 266 + 1 + 4 + 211 + Pump Bid Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1387 + Adder applied to the [Pump Bid Price] property + 8400000 + true + + + 267 + 1 + 4 + 212 + Pump Bid Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1367 + Scalar applied to the [Pump Bid Price] property + 8400000 + true + + + 268 + 1 + 4 + 213 + Simultaneous Increment and Decrement + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2868 + Degenerate increment and decrement offers and bids can be cleared simultaneously + 400000 + true + + + 269 + 1 + 4 + 214 + Strategic Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1009 + Generating unit rating for application in RSI capacity calculations + 40 + true + + + 270 + 1 + 4 + 215 + Strategic Reference Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1031 + Sent-out marginal generation reference price for RSI markup application. + 40 + true + + + 271 + 1 + 4 + 216 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Pumping unit/Anti-generation rating for application in RSI capacity calculations. + 40 + true + + + 272 + 1 + 4 + 217 + Economic Maximum + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2240 + Unit maximum generation economically available + 40 + true + + + 273 + 1 + 4 + 218 + Economic Minimum + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2241 + Unit minimum generation economically available + 40 + true + + + 274 + 1 + 4 + 219 + Tie Break Group + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2962 + Tiebreak group that the generator belongs to + 40 + true + + + 275 + 1 + 5 + 220 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 276 + 1 + 5 + 221 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 277 + 1 + 5 + 222 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 278 + 1 + 6 + 223 + Initial Age + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Average age of units at the start of the simulation horizon + 80000 + true + + + 279 + 1 + 6 + 224 + Power Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1830 + Annual degradation of power with age + 4 + true + + + 280 + 1 + 6 + 225 + Capacity Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1960 + Annual degradation in storage capacity with age + 4 + false + + + 281 + 1 + 6 + 226 + Equity Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 180 + Annual required return on equity + 8000 + true + + + 282 + 1 + 6 + 227 + Debt Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 127 + Annual debt charge + 8000 + true + + + 283 + 1 + 6 + 228 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the generator to capacity reserves + C + true + + + 284 + 1 + 6 + 229 + Firm Capacity Unit Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2664 + The total number of units installed in band corresponding to the same band of [Firm Capacity] + C + true + + + 285 + 1 + 7 + 230 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 286 + 1 + 7 + 231 + Effective Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2672 + Effective forced outage rate for use in calculation of reliability indices + true + + + 287 + 1 + 7 + 232 + Forced Outage + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 288 + 1 + 7 + 233 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 289 + 1 + 7 + 234 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 290 + 1 + 7 + 235 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 291 + 1 + 7 + 236 + Min Time Between Maintenance + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2506 + Minimum time between maintenance events + 1000000 + true + + + 292 + 1 + 7 + 237 + Min Total Maintenance Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2543 + Minimum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 293 + 1 + 7 + 238 + Max Total Maintenance Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2544 + Maximum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 294 + 1 + 7 + 239 + Maintenance + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 392 + Capacity lost to maintenance + 1000000 + false + + + 295 + 1 + 7 + 240 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Unit rating during outage + 1000000 + true + + + 296 + 1 + 7 + 241 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 297 + 1 + 7 + 242 + Outage Pump Load + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1402 + Load drawn by a unit in pumping mode + 1000000 + true + + + 298 + 1 + 7 + 243 + Initial Operating Hours + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1820 + Hours the unit has been operating since the last forced outage + 1000080000 + true + + + 299 + 1 + 7 + 244 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 300 + 1 + 7 + 245 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 301 + 1 + 7 + 246 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 302 + 1 + 7 + 247 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 303 + 1 + 7 + 248 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 304 + 1 + 8 + 249 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 305 + 1 + 8 + 250 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 306 + 1 + 8 + 251 + One-time Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1958 + One-time cost associated with the project + 8 + true + + + 307 + 1 + 8 + 252 + Establishment Cost + 34 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1160069392 + Establishment cost associated with the project + 8 + true + + + 308 + 1 + 8 + 253 + Investment Tax Credit + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2850 + Percentage of the annualized build cost to apply to investment credit + 2000000000 + true + + + 309 + 1 + 8 + 254 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 310 + 1 + 8 + 255 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning. + 8 + true + + + 311 + 1 + 8 + 256 + Commission Date + 0 + 1 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the generator was commissioned for use with [Technical Life] + 8 + true + + + 312 + 1 + 8 + 257 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 313 + 1 + 8 + 258 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 314 + 1 + 8 + 259 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 315 + 1 + 8 + 260 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered). + 9 + true + + + 316 + 1 + 8 + 261 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 317 + 1 + 8 + 262 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 318 + 1 + 8 + 263 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 319 + 1 + 8 + 264 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 320 + 1 + 8 + 265 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 321 + 1 + 8 + 266 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 322 + 1 + 8 + 267 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 323 + 1 + 8 + 268 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 324 + 1 + 8 + 269 + Build Set Size + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1453 + Expansion must occur in sets of this many units where zero indicates any set size + 88 + true + + + 325 + 1 + 8 + 270 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 326 + 1 + 8 + 271 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 327 + 1 + 8 + 272 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 328 + 1 + 8 + 273 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the generator for capacity + 4000008 + true + + + 329 + 1 + 8 + 274 + Expansion Economy Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 2959 + Cost of building a unit at economy of scale (band) + 8008 + true + + + 330 + 1 + 8 + 275 + Expansion Economy Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 999 + 2960 + Minimum number of units required for the expansion economy (band) + 88 + true + + + 331 + 1 + 8 + 276 + Capacity Build Option Cost + 47 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 1693153088 + Cost of the capacity build option (matching band) + D + false + + + 332 + 1 + 8 + 277 + Recovery Price Adder + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Recovery price adder to include for MT/ST optimization + 8008 + false + + + 333 + 1 + 8 + 278 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Generator production + 8009 + false + + + 334 + 1 + 11 + 279 + Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 968 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 335 + 1 + 11 + 280 + Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 969 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 1100000000 + true + + + 336 + 1 + 11 + 281 + Pump Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1394 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 337 + 1 + 11 + 282 + Pump Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1395 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 1100000000 + true + + + 338 + 1 + 11 + 283 + Generation Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1608 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 339 + 1 + 11 + 284 + Generation Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1609 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 340 + 1 + 11 + 285 + Pump Load Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1610 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 341 + 1 + 11 + 286 + Pump Load Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1611 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 342 + 1 + 11 + 287 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 343 + 1 + 11 + 288 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 344 + 1 + 12 + 289 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 345 + 1 + 12 + 290 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 346 + 1 + 12 + 291 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 347 + 5 + 1 + 1 + Transition Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1139 + Cost required for a Generator transition + 1000000000 + true + + + 348 + 7 + 1 + 1 + Transport Charge + 29 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 800 + Transport charge (added to base fuel price) + 2000000000 + true + + + 349 + 7 + 1 + 2 + Mutually Exclusive + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 998 + If the Fuel cannot be mixed with other Fuels associated with this Generator. + 80 + true + + + 350 + 7 + 1 + 3 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Fixed fuel mix ratio + 80 + true + + + 351 + 7 + 1 + 4 + Min Ratio + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 494 + Minimum fuel mix ratio + 80 + true + + + 352 + 7 + 1 + 5 + Max Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 450 + Maximum fuel mix ratio + 80 + true + + + 353 + 7 + 1 + 6 + Max Input + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 433 + Maximum amount of fuel input to generator + 80 + true + + + 354 + 7 + 1 + 7 + Rating + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 665 + Rating of generating units when running this fuel + 80 + true + + + 355 + 7 + 1 + 8 + Is Available + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 332 + If the fuel is available for use by the generator + 800000 + true + + + 356 + 7 + 1 + 9 + Heat Rate Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 266 + Scalar on base generator heat rate function + 1000 + true + + + 357 + 7 + 1 + 10 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 358 + 7 + 1 + 11 + Heat Rate + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Heat-rate at load point (used with Load Point) or 'b' in the heat input function + 1000 + true + + + 359 + 7 + 1 + 12 + Heat Rate Incr + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + Average marginal heat-rate in band + 1000 + true + + + 360 + 7 + 1 + 13 + Heat Rate Incr2 + 38 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 264 + Second-order polynomial term in unit fuel use function + 1000 + true + + + 361 + 7 + 1 + 14 + Heat Rate Incr3 + 44 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 265 + Third-order polynomial term in unit fuel use function + 1000 + true + + + 362 + 7 + 1 + 15 + Transition Cost Down + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1134 + Cost required for Fuel Transition shutdown process (surplus over Production Offtake). + 1000000000 + true + + + 363 + 7 + 1 + 16 + Transition Cost Up + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1135 + Cost required for Fuel Transition start-up process (surplus over Production Offtake). + 1000000000 + true + + + 364 + 7 + 1 + 17 + Decoupling Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1136 + Number of hours Fuel can’t be used for Generation after a shutdown + 1000000000 + true + + + 365 + 7 + 1 + 18 + Coupling Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1137 + Number of hours Fuel has to be used after a start-up + 1000000000 + true + + + 366 + 7 + 1 + 19 + Emission Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 165 + Scalar on emissions from this generator and fuel combination + 2000 + true + + + 367 + 7 + 1 + 20 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + MW offer in band + 400000 + true + + + 368 + 7 + 1 + 21 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400000 + true + + + 369 + 8 + 1 + 1 + Offtake at Start + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 578 + Fuel required to start a unit + 1080000000 + true + + + 370 + 8 + 1 + 2 + Transport Charge + 29 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 800 + Cost of transporting the fuel to the generator + 1080000000 + true + + + 371 + 8 + 1 + 3 + Emission Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 165 + Scalar on emissions from this generator and start fuel combination + 80002000 + true + + + 372 + 10 + 1 + 1 + Flow Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 210 + Units of storage received per unit of generation + 40000 + true + + + 373 + 10 + 1 + 2 + Flow at Start + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1208 + The amount of water released when starting a generating unit. + 1080040000 + true + + + 374 + 10 + 1 + 3 + Efficiency Point + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1340 + Storage percentage full associated with [Efficiency Scalar] + 41000 + true + + + 375 + 10 + 1 + 4 + Efficiency Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1341 + Generation efficiency scalar at the given [Efficiency Point] + 41000 + true + + + 376 + 11 + 1 + 1 + Flow Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 210 + Units of storage received per unit of generation + 40000 + true + + + 377 + 12 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator output injected at the node + true + + + 378 + 12 + 1 + 2 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of pump load at the node + true + + + 379 + 13 + 1 + 1 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of installed units at the Node + 800000 + true + + + 380 + 15 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 381 + 18 + 1 + 1 + Enable Co-optimization + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2558 + If the gas node is available for use by the generator + true + + + 382 + 19 + 1 + 1 + Offtake at Start + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 578 + Amount of gas required to start a unit + 1080000000 + true + + + 383 + 19 + 1 + 2 + Transport Charge + 29 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 800 + Cost of transporting the gas to the generator + 1080000000 + true + + + 384 + 19 + 1 + 3 + Emission Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 165 + Scalar on emissions from this generator and start gas node combination + 80002000 + true + + + 385 + 24 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 386 + 25 + 3 + 1 + Generation Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity consumed per unit of generation + true + + + 387 + 25 + 3 + 2 + Pump Load Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity consumed per unit of pump load + true + + + 388 + 25 + 3 + 3 + Fuel Offtake Coefficient + 106 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity consumed per unit of fuel used + true + + + 389 + 25 + 8 + 4 + Capacity Built Coefficient + 107 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Amount of the Commodity consumed per unit of capacity built + true + + + 390 + 25 + 8 + 5 + Capacity Retired Coefficient + 107 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Amount of the Commodity consumed per unit of capacity retired + true + + + 391 + 26 + 2 + 1 + Mutually Exclusive Production + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2756 + If the energy used for producing commodities and serving load are mutually exclusive + 800000 + true + + + 392 + 26 + 3 + 2 + Generation Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity produced per unit of generation + true + + + 393 + 26 + 3 + 3 + Pump Load Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity produced per unit of pump load + true + + + 394 + 26 + 3 + 4 + Fuel Offtake Coefficient + 106 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity produced per unit of fuel used + true + + + 395 + 27 + 1 + 1 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 585 + Unit rating during outage + 4 + true + + + 396 + 27 + 1 + 2 + Outage Rating Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1715 + Proportion of [Rating] during outage + 4 + true + + + 397 + 27 + 1 + 3 + Outage Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1716 + Unit [Firm Capacity] during outage + 4 + true + + + 398 + 27 + 1 + 4 + Outage Firm Capacity Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1717 + Proportion of [Firm Capacity] during outage + 4 + true + + + 399 + 28 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of generation + true + + + 400 + 28 + 3 + 2 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of pump load + true + + + 401 + 28 + 3 + 3 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of fuel offtake + true + + + 402 + 29 + 4 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for capacity market + true + + + 403 + 29 + 4 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band for capacity market + true + + + 404 + 30 + 1 + 1 + Conversion Rate + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 115 + Conversion rate of generator heat input to waste heat input. + 1000 + true + + + 405 + 32 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 406 + 32 + 3 + 2 + Generation Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 239 + Coefficient of the square of generation + true + + + 407 + 32 + 3 + 3 + Generation SUM Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 240 + Coefficient of the square of the summed generation + true + + + 408 + 32 + 3 + 4 + Generation Sent Out Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1147 + Coefficient of generation measured at the station gate + true + + + 409 + 32 + 3 + 5 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor. + true + + + 410 + 32 + 3 + 6 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation. + 1000000000 + true + + + 411 + 32 + 3 + 7 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + 1000000000 + true + + + 412 + 32 + 3 + 8 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 413 + 32 + 3 + 9 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 414 + 32 + 3 + 10 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the generating unit has been off + 1000000000 + true + + + 415 + 32 + 3 + 11 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 416 + 32 + 3 + 12 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of committed capacity + 1000000004 + true + + + 417 + 32 + 3 + 13 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 418 + 32 + 3 + 14 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + 1000 + true + + + 419 + 32 + 3 + 15 + Waste Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1887 + Coefficient of waste heat + 20000 + true + + + 420 + 32 + 3 + 16 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of emission production + 2000 + true + + + 421 + 32 + 3 + 17 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + 20 + true + + + 422 + 32 + 3 + 18 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 643 + Coefficient of pump load + 8040000 + true + + + 423 + 32 + 3 + 19 + Pump Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1645 + Coefficient of number of hours the generating unit is running in pump mode + 8040000 + true + + + 424 + 32 + 3 + 20 + Units Pumping Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1148 + Coefficient on the number of units pumping + 1008040000 + true + + + 425 + 32 + 3 + 21 + Pump Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1323 + Coefficient on the number of pump units started + 1088040000 + true + + + 426 + 32 + 3 + 22 + Sync Cond Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1646 + Coefficient of synchronous condenser load + 1000000002 + true + + + 427 + 32 + 3 + 23 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + 1000000002 + true + + + 428 + 32 + 3 + 24 + Sync Cond Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1648 + Coefficient of number of hours the generating unit is running in synchronous condenser mode + 1000000002 + true + + + 429 + 32 + 3 + 25 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 430 + 32 + 3 + 26 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 431 + 32 + 3 + 27 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 432 + 32 + 3 + 28 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 433 + 32 + 3 + 29 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 434 + 32 + 3 + 30 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 435 + 32 + 3 + 31 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + 2 + true + + + 436 + 32 + 3 + 32 + Sync Cond Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 774 + Coefficient of synchronous condenser reserve provision + 2 + true + + + 437 + 32 + 3 + 33 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + 2 + true + + + 438 + 32 + 3 + 34 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 439 + 32 + 3 + 35 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 440 + 32 + 3 + 36 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 441 + 32 + 3 + 37 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 442 + 32 + 3 + 38 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 443 + 32 + 3 + 39 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + 2 + true + + + 444 + 32 + 3 + 40 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + 2 + true + + + 445 + 32 + 3 + 41 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + 2 + true + + + 446 + 32 + 3 + 42 + Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1469 + Coefficient of flexibility up + 2 + true + + + 447 + 32 + 3 + 43 + Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1470 + Coefficient of flexibility down + 2 + true + + + 448 + 32 + 3 + 44 + Ramp Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1471 + Coefficient of ramp flexibility up + 2 + true + + + 449 + 32 + 3 + 45 + Ramp Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1472 + Coefficient of ramp flexibility down + 2 + true + + + 450 + 32 + 3 + 46 + Withdrawal Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of generator heat withdrawal + 20000 + true + + + 451 + 32 + 3 + 47 + Injection Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of generator heat injection + 20000 + true + + + 452 + 32 + 3 + 48 + Water Offtake Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1804 + Coefficient of generator water offtake + 8000000000 + true + + + 453 + 32 + 3 + 49 + Water Consumption Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1805 + Coefficient of generator water consumption + 8000000000 + true + + + 454 + 32 + 3 + 50 + Reserve Provision Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2893 + Generation coefficient of reserve provision + 2 + false + + + 455 + 32 + 3 + 51 + Reserve Provision Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2894 + Load coefficient of reserve provision + 2 + false + + + 456 + 32 + 5 + 52 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 457 + 32 + 5 + 53 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 458 + 32 + 5 + 54 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 459 + 32 + 5 + 55 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 460 + 32 + 5 + 56 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 461 + 32 + 5 + 57 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 462 + 32 + 6 + 58 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 463 + 32 + 6 + 59 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 464 + 32 + 6 + 60 + Rated Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 664 + Coefficient of capacity as measured by Rating + C + true + + + 465 + 32 + 6 + 61 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 466 + 32 + 6 + 62 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the average age of units + 8 + true + + + 467 + 32 + 6 + 63 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of generator contribution to capacity reserves + C + true + + + 468 + 32 + 7 + 64 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 469 + 32 + 7 + 65 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 470 + 32 + 8 + 66 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 471 + 32 + 8 + 67 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 472 + 32 + 8 + 68 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 473 + 32 + 8 + 69 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 474 + 32 + 8 + 70 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 475 + 32 + 8 + 71 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 476 + 32 + 8 + 72 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 477 + 32 + 8 + 73 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 478 + 32 + 8 + 74 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 479 + 33 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation measured at the generator-terminal + true + + + 480 + 33 + 3 + 2 + Generation Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 239 + Coefficient of the square of generation measured at the generator terminal + false + + + 481 + 33 + 3 + 3 + Generation SUM Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 240 + Coefficient of the square of the summed generation measured at the generator terminal + false + + + 482 + 33 + 3 + 4 + Generation Sent Out Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1147 + Coefficient of generation measured at the station gate + true + + + 483 + 33 + 3 + 5 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor. + true + + + 484 + 33 + 3 + 6 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation. + true + + + 485 + 33 + 3 + 7 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 486 + 33 + 3 + 8 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + true + + + 487 + 33 + 3 + 9 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + true + + + 488 + 33 + 3 + 10 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the generating unit has been off + true + + + 489 + 33 + 3 + 11 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + true + + + 490 + 33 + 3 + 12 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of committed capacity + true + + + 491 + 33 + 3 + 13 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 492 + 33 + 3 + 14 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + true + + + 493 + 33 + 3 + 15 + Waste Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1887 + Coefficient of waste heat + true + + + 494 + 33 + 3 + 16 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of emission production + true + + + 495 + 33 + 3 + 17 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + true + + + 496 + 33 + 3 + 18 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 643 + Coefficient of pump load + true + + + 497 + 33 + 3 + 19 + Pump Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1645 + Coefficient of number of hours the generating unit is running in pump mode + true + + + 498 + 33 + 3 + 20 + Units Pumping Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1148 + Coefficient on the number of units pumping + true + + + 499 + 33 + 3 + 21 + Pump Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1323 + Coefficient on the number of pump units started + true + + + 500 + 33 + 3 + 22 + Sync Cond Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1646 + Coefficient of synchronous condenser load + true + + + 501 + 33 + 3 + 23 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + true + + + 502 + 33 + 3 + 24 + Sync Cond Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1648 + Coefficient of number of hours the generating unit is running in synchronous condenser mode + true + + + 503 + 33 + 3 + 25 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 504 + 33 + 3 + 26 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 505 + 33 + 3 + 27 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 506 + 33 + 3 + 28 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 507 + 33 + 3 + 29 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 508 + 33 + 3 + 30 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + true + + + 509 + 33 + 3 + 31 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + true + + + 510 + 33 + 3 + 32 + Sync Cond Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 774 + Coefficient of synchronous condenser reserve provision + true + + + 511 + 33 + 3 + 33 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + true + + + 512 + 33 + 3 + 34 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + true + + + 513 + 33 + 3 + 35 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + true + + + 514 + 33 + 3 + 36 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + true + + + 515 + 33 + 3 + 37 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + true + + + 516 + 33 + 3 + 38 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + true + + + 517 + 33 + 3 + 39 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 518 + 33 + 3 + 40 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + true + + + 519 + 33 + 3 + 41 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + true + + + 520 + 33 + 3 + 42 + Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1469 + Coefficient of flexibility up + true + + + 521 + 33 + 3 + 43 + Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1470 + Coefficient of flexibility down + true + + + 522 + 33 + 3 + 44 + Ramp Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1471 + Coefficient of ramp flexibility up + true + + + 523 + 33 + 3 + 45 + Ramp Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1472 + Coefficient of ramp flexibility down + true + + + 524 + 33 + 3 + 46 + Withdrawal Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of generator heat withdrawal + true + + + 525 + 33 + 3 + 47 + Injection Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of generator heat injection + true + + + 526 + 33 + 3 + 48 + Water Offtake Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1804 + Coefficient of generator water offtake + true + + + 527 + 33 + 3 + 49 + Water Consumption Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1805 + Coefficient of generator water consumption + true + + + 528 + 33 + 5 + 50 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 529 + 33 + 5 + 51 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 530 + 33 + 5 + 52 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 531 + 33 + 5 + 53 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 532 + 33 + 5 + 54 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 533 + 33 + 5 + 55 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 534 + 33 + 6 + 56 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 535 + 33 + 6 + 57 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 536 + 33 + 6 + 58 + Rated Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 664 + Coefficient of capacity as measured by Rating + true + + + 537 + 33 + 6 + 59 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 538 + 33 + 6 + 60 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + true + + + 539 + 33 + 6 + 61 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of generator contribution to capacity reserves + true + + + 540 + 33 + 7 + 62 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 541 + 33 + 7 + 63 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 542 + 33 + 8 + 64 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 543 + 33 + 8 + 65 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 544 + 33 + 8 + 66 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 545 + 33 + 8 + 67 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 546 + 33 + 8 + 68 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 547 + 33 + 8 + 69 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 548 + 33 + 8 + 70 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 549 + 33 + 8 + 71 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 550 + 33 + 8 + 72 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 551 + 34 + 1 + 1 + Heat Input Definition Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1885 + Coefficient of the Decision Variable in the Generator Heat Input definition equation + true + + + 552 + 35 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation in condition + true + + + 553 + 35 + 3 + 2 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 554 + 35 + 3 + 3 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit starts + true + + + 555 + 35 + 3 + 4 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + true + + + 556 + 35 + 3 + 5 + Efficiency Coefficient + 120 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2643 + Coefficient of generator efficiency + true + + + 557 + 35 + 3 + 6 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + true + + + 558 + 35 + 3 + 7 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 643 + Coefficient of pump load + 8040000 + true + + + 559 + 35 + 6 + 8 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 560 + 35 + 6 + 9 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 561 + 35 + 6 + 10 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 562 + 35 + 6 + 11 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 563 + 35 + 7 + 12 + Outage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2563 + Coefficient of capacity on outage + 4 + true + + + 564 + 35 + 7 + 13 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 4 + true + + + 565 + 35 + 7 + 14 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 566 + 35 + 8 + 15 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 567 + 35 + 8 + 16 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 568 + 35 + 8 + 17 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 569 + 35 + 8 + 18 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 570 + 35 + 8 + 19 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 571 + 35 + 8 + 20 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 572 + 35 + 8 + 21 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 573 + 35 + 8 + 22 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 574 + 36 + 1 + 1 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + false + false + false + 1 + 335 + Flag if the Power Station is enabled + 800000 + true + + + 575 + 39 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator load injected at the node + true + + + 576 + 40 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 577 + 40 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 578 + 40 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal stockpile trajectory from one simulation phase to the next. + 400000000 + true + + + 579 + 40 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition stockpile target penalty function 'a' term. + 400000000 + true + + + 580 + 40 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition stockpile target penalty function 'b' term. + 400000000 + true + + + 581 + 40 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition stockpile target penalty function 'c' term. + 400000000 + true + + + 582 + 40 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition stockpile target penalty function 'x' term. + 400000000 + true + + + 583 + 40 + 2 + 8 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of stockpile bounds when the decomposition implies possible violations. + 400000000 + true + + + 584 + 40 + 3 + 9 + Units + 0 + 1 + In (0,1) + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 812 + Flag if fuel exists + 800000 + true + + + 585 + 40 + 3 + 10 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Fuel price + 2000000001 + true + + + 586 + 40 + 3 + 11 + Tax + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 785 + Fuel tax + 2000000000 + true + + + 587 + 40 + 3 + 12 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 905 + Increment to the price of the fuel + 2000000000 + true + + + 588 + 40 + 3 + 13 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Multiplier on the price of the fuel + 2000000000 + true + + + 589 + 40 + 3 + 14 + Heat Value + 37 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of fuel + 100 + false + + + 590 + 40 + 3 + 15 + Shadow Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 742 + Shadow price of fuel (if defined as input, sets the internal price for fuel) + 2000000000 + true + + + 591 + 40 + 3 + 16 + Shadow Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1082 + Increment to the shadow price of the fuel (use only when Shadow Price is defined) + 2000000000 + true + + + 592 + 40 + 3 + 17 + Shadow Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 896 + Multiplier on the shadow price of the fuel (use only when Shadow Price is defined) + 2000000000 + true + + + 593 + 40 + 3 + 18 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 594 + 40 + 10 + 19 + Max Inventory + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1589 + Maximum fuel allowed in stockpile + 400000000 + true + + + 595 + 40 + 10 + 20 + Min Inventory + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum fuel required in stockpile + 400000000 + true + + + 596 + 40 + 10 + 21 + Opening Inventory + 87 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1591 + Initial fuel in the stockpile + 400000000 + true + + + 597 + 40 + 10 + 22 + Delivery + 87 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Fuel delivered to the stockpile + 400000000 + true + + + 598 + 40 + 10 + 23 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of delivering fuel to the stockpile + 400000000 + true + + + 599 + 40 + 10 + 24 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost applied to closing inventory in the stockpile + 400000000 + true + + + 600 + 40 + 10 + 25 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity in the stockpile + 400000000 + true + + + 601 + 40 + 10 + 26 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Incremental cost of taking fuel from stockpile + 400000000 + true + + + 602 + 40 + 9 + 27 + Max Offtake + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 939 + Maximum fuel offtake per interval + 80 + true + + + 603 + 40 + 9 + 27 + Max Offtake Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1557 + Maximum fuel offtake in hour + 80 + true + + + 604 + 40 + 9 + 27 + Max Offtake Day + 87 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 940 + Maximum fuel offtake in day + 80 + true + + + 605 + 40 + 9 + 27 + Max Offtake Week + 87 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 941 + Maximum fuel offtake in week + 80 + true + + + 606 + 40 + 9 + 27 + Max Offtake Month + 87 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 942 + Maximum fuel offtake in month + 80 + true + + + 607 + 40 + 9 + 27 + Max Offtake Year + 87 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 943 + Maximum fuel offtake in year + 80 + true + + + 608 + 40 + 9 + 28 + Min Offtake + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 944 + Minimum fuel offtake per interval + 80 + true + + + 609 + 40 + 9 + 28 + Min Offtake Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1558 + Minimum fuel offtake in hour + 80 + true + + + 610 + 40 + 9 + 28 + Min Offtake Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 945 + Minimum fuel offtake in day + 80 + true + + + 611 + 40 + 9 + 28 + Min Offtake Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 946 + Minimum fuel offtake in week + 80 + true + + + 612 + 40 + 9 + 28 + Min Offtake Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 947 + Minimum fuel offtake in month + 80 + true + + + 613 + 40 + 9 + 28 + Min Offtake Year + 87 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 948 + Minimum fuel offtake in year + 80 + true + + + 614 + 40 + 9 + 29 + Max Offtake Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2426 + Penalty applied to violations of [Max Offtake]constraints + 80 + true + + + 615 + 40 + 9 + 30 + Min Offtake Penalty + 88 + 1000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2427 + Penalty applied to violations of [Min Offtake] constraints + 80 + true + + + 616 + 40 + 9 + 31 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of fuel that can be taken from stockpile + 400000000 + true + + + 617 + 40 + 9 + 31 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of fuel that can be taken from stockpile in a hour + 400000000 + true + + + 618 + 40 + 9 + 31 + Max Withdrawal Day + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of fuel that can be taken from stockpile in a day + 400000000 + true + + + 619 + 40 + 9 + 31 + Max Withdrawal Week + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of fuel that can be taken from stockpile in a week + 400000000 + true + + + 620 + 40 + 9 + 31 + Max Withdrawal Month + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of fuel that can be taken from stockpile in a month + 400000000 + true + + + 621 + 40 + 9 + 31 + Max Withdrawal Year + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of fuel that can be taken from stockpile in a year + 400000000 + true + + + 622 + 40 + 9 + 32 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1258 + Amount of fuel that must be taken from stockpile + 400000000 + true + + + 623 + 40 + 9 + 32 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of fuel that must be taken from stockpile each hour + 400000000 + true + + + 624 + 40 + 9 + 32 + Min Withdrawal Day + 87 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of fuel that must be taken from stockpile each day + 400000000 + true + + + 625 + 40 + 9 + 32 + Min Withdrawal Week + 87 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of fuel that must be taken from stockpile each week + 400000000 + true + + + 626 + 40 + 9 + 32 + Min Withdrawal Month + 87 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of fuel that must be taken from stockpile each month + 400000000 + true + + + 627 + 40 + 9 + 32 + Min Withdrawal Year + 87 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of fuel that must be taken from stockpile each year + 400000000 + true + + + 628 + 40 + 12 + 33 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 629 + 40 + 12 + 34 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 630 + 40 + 12 + 35 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 631 + 50 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 632 + 51 + 3 + 1 + Consumption Rate + 113 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2752 + Fuel consumed per unit of the Primary Output from the Facility + true + + + 633 + 54 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 634 + 54 + 1 + 2 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of fuel emission + 2000 + true + + + 635 + 54 + 1 + 3 + In Use Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1382 + Boolean value (1 if the Fuel is in use, 0 otherwise) + 1000000000 + true + + + 636 + 54 + 1 + 4 + Closing Inventory Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of fuel stockpile closing inventory. + 400000000 + true + + + 637 + 54 + 1 + 5 + Inventory Change Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in fuel stockpile level. + 400000000 + true + + + 638 + 54 + 1 + 6 + Delivery Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of delivery to fuel stockpile. + 400000000 + true + + + 639 + 54 + 1 + 7 + Withdrawal Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal from fuel stockpile. + 400000000 + true + + + 640 + 54 + 1 + 8 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation with given fuel + true + + + 641 + 55 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 642 + 55 + 1 + 2 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of fuel emission + true + + + 643 + 55 + 1 + 3 + In Use Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1382 + Boolean value (1 if the Fuel is in use, 0 otherwise) + true + + + 644 + 55 + 1 + 4 + Closing Inventory Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of fuel stockpile closing inventory + true + + + 645 + 55 + 1 + 5 + Inventory Change Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in fuel stockpile level + true + + + 646 + 55 + 1 + 6 + Delivery Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of delivery to fuel stockpile + true + + + 647 + 55 + 1 + 7 + Withdrawal Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal from fuel stockpile + true + + + 648 + 55 + 1 + 8 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation with given fuel + true + + + 649 + 56 + 3 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 650 + 57 + 9 + 1 + Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 650 + Contract quantity + 80 + true + + + 651 + 57 + 9 + 1 + Quantity Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + true + 1 + 1559 + Total contract quantity in hour + 80 + true + + + 652 + 57 + 9 + 1 + Quantity Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + true + 1 + 651 + Total contract quantity in day + 80 + true + + + 653 + 57 + 9 + 1 + Quantity Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + true + 1 + 653 + Total contract quantity in week + 80 + true + + + 654 + 57 + 9 + 1 + Quantity Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + true + 1 + 652 + Total contract quantity in month + 80 + true + + + 655 + 57 + 9 + 1 + Quantity Year + 87 + 0 + 1 + 0 + 0 + 4 + false + false + true + true + 1 + 654 + Total contract quantity in year + 80 + true + + + 656 + 57 + 3 + 2 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 612 + Contract price + 2000000001 + true + + + 657 + 57 + 3 + 3 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 905 + Increment to the price of the fuel contract. + 2000000000 + true + + + 658 + 57 + 3 + 4 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Multiplier on the price of the fuel contract. + 2000000000 + true + + + 659 + 57 + 3 + 5 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed charge for the fuel contract + 8000 + true + + + 660 + 57 + 9 + 6 + Take-or-Pay Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 778 + Contract take-or-pay quantity + 80 + true + + + 661 + 57 + 9 + 6 + Take-or-Pay Quantity Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1560 + Contract take-or-pay quantity in hour + 80 + true + + + 662 + 57 + 9 + 6 + Take-or-Pay Quantity Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 779 + Contract take-or-pay quantity in day + 80 + true + + + 663 + 57 + 9 + 6 + Take-or-Pay Quantity Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 781 + Contract take-or-pay quantity in week + 80 + true + + + 664 + 57 + 9 + 6 + Take-or-Pay Quantity Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 780 + Contract take-or-pay quantity in month + 80 + true + + + 665 + 57 + 9 + 6 + Take-or-Pay Quantity Year + 87 + 0 + 1 + 0 + 0 + 4 + false + true + true + false + 1 + 782 + Contract take-or-pay quantity in year + 80 + true + + + 666 + 57 + 9 + 7 + Take-or-Pay Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 777 + Contract take-or-pay price + 80 + true + + + 667 + 57 + 12 + 8 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 668 + 57 + 12 + 9 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 669 + 57 + 12 + 10 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 670 + 62 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of fuel contract + 40 + true + + + 671 + 63 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel contract offtake + true + + + 672 + 64 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel contract offtake + true + + + 673 + 65 + 2 + 1 + Max Efficiency Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2443 + Maximum number of tranches in the efficiency piecewise linear approximation + 1000 + true + + + 674 + 65 + 2 + 2 + Formulate Non-convex + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order + 1000 + true + + + 675 + 65 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 100000000 + true + + + 676 + 65 + 2 + 4 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 677 + 65 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 678 + 65 + 2 + 6 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 679 + 65 + 2 + 7 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled + 8 + true + + + 680 + 65 + 3 + 8 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 681 + 65 + 3 + 9 + Max Load + 1 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 436 + Maximum load of each unit + 5 + true + + + 682 + 65 + 3 + 10 + Min Stable Level + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 501 + Minimum allowed electric load when operating + 1000000081 + true + + + 683 + 65 + 3 + 11 + VO&M Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 684 + 65 + 3 + 12 + VO&M Denominator + 0 + 1 + In (0,1) + 0;"Input";1;"Output"; + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2085842141 + Setting to determine how VO&M Cost is calculated + true + + + 685 + 65 + 3 + 13 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 686 + 65 + 3 + 14 + Load Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point efficiency + 1000 + true + + + 687 + 65 + 3 + 15 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1209 + Efficiency of energy conversion process + 1000 + true + + + 688 + 65 + 3 + 16 + Energy Conversion Factor + 0 + 3.6 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3015 + Power2X customized energy conversion factor represents a conversion from MWh to GJ + 1000 + true + + + 689 + 65 + 3 + 17 + Water Consumption + 68 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1803 + Water consumed by the Power2X facility + 1000 + true + + + 690 + 65 + 3 + 18 + Ramp Up Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Load point for use with multi-band Max Ramp Up constraints + 80 + true + + + 691 + 65 + 3 + 19 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate that applies at the given load point + 80 + true + + + 692 + 65 + 3 + 20 + Ramp Up Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 693 + 65 + 3 + 21 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 694 + 65 + 3 + 22 + Ramp Down Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Load point for use with multi-band Max Ramp Down constraints + 80 + true + + + 695 + 65 + 3 + 23 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate that applies at the given load point + 80 + true + + + 696 + 65 + 3 + 24 + Ramp Down Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 697 + 65 + 3 + 25 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 698 + 65 + 3 + 26 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 699 + 65 + 3 + 27 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 700 + 65 + 3 + 28 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 701 + 65 + 3 + 29 + Run Up Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while increasing load from zero to [Min Stable Level]. + 80000000 + true + + + 702 + 65 + 3 + 30 + Start Profile + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for increasing load from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 703 + 65 + 3 + 31 + Start Profile Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2639 + Penalty for violation of [Start Profile]. + 80 + true + + + 704 + 65 + 3 + 32 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 705 + 65 + 3 + 33 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 706 + 65 + 3 + 34 + Run Down Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1020 + Ramp rate that applies while running the unit down from [Min Stable Level] to zero + 200000000 + true + + + 707 + 65 + 3 + 35 + Shutdown Profile + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 933 + Detailed regime for running the unit down from [Min Stable Level] when [Run Down Rate] is non-constant. + 200000000 + true + + + 708 + 65 + 3 + 36 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 709 + 65 + 3 + 37 + Aux Fixed + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 710 + 65 + 3 + 38 + Aux Base + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 711 + 65 + 3 + 39 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of production + 200000 + true + + + 712 + 65 + 3 + 40 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 713 + 65 + 3 + 41 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 714 + 65 + 3 + 42 + Min Stable Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1372 + Minimum stable operation level as a proportion of [Max Load] + 1000000080 + true + + + 715 + 65 + 3 + 43 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Power2X object + 100 + true + + + 716 + 65 + 3 + 44 + Bid Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2547 + Base load for balancing bid + true + + + 717 + 65 + 3 + 45 + Bid Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + true + + + 718 + 65 + 3 + 46 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Energy bid price + true + + + 719 + 65 + 9 + 47 + Max Production + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum production + 80 + true + + + 720 + 65 + 9 + 47 + Max Production Hour + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production in hour + 80 + true + + + 721 + 65 + 9 + 47 + Max Production Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production in day + 80 + true + + + 722 + 65 + 9 + 47 + Max Production Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production in week + 80 + true + + + 723 + 65 + 9 + 47 + Max Production Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production in month + 80 + true + + + 724 + 65 + 9 + 47 + Max Production Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production in year + 80 + true + + + 725 + 65 + 9 + 48 + Min Production + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1275 + Minimum production + 80 + true + + + 726 + 65 + 9 + 48 + Min Production Hour + 15 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production in hour + 80 + true + + + 727 + 65 + 9 + 48 + Min Production Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production in day + 80 + true + + + 728 + 65 + 9 + 48 + Min Production Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production in week + 80 + true + + + 729 + 65 + 9 + 48 + Min Production Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production in month + 80 + true + + + 730 + 65 + 9 + 48 + Min Production Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production in year + 80 + true + + + 731 + 65 + 9 + 49 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor (production constraint) + 80 + true + + + 732 + 65 + 9 + 49 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 733 + 65 + 9 + 49 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 734 + 65 + 9 + 49 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 735 + 65 + 9 + 49 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 736 + 65 + 9 + 49 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 737 + 65 + 9 + 50 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor + 80 + true + + + 738 + 65 + 9 + 50 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 739 + 65 + 9 + 50 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 740 + 65 + 9 + 50 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 741 + 65 + 9 + 50 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 742 + 65 + 9 + 50 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 743 + 65 + 9 + 51 + Max Production Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1361 + Penalty applied to violations of [Max Production] and [Max Capacity Factor] constraints. + 80 + true + + + 744 + 65 + 9 + 52 + Min Production Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2292 + Penalty applied to violations of [Min Production] and [Min Capacity Factor] constraints. + 80 + true + + + 745 + 65 + 9 + 53 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 746 + 65 + 9 + 53 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 747 + 65 + 9 + 53 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 748 + 65 + 9 + 53 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 749 + 65 + 9 + 53 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 750 + 65 + 9 + 53 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 751 + 65 + 9 + 54 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints. + 1080000080 + true + + + 752 + 65 + 6 + 55 + Initial Age + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Age of the Power2X in years at the start of the simulation horizon + 80000 + true + + + 753 + 65 + 6 + 56 + Power Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1830 + Annual degradation of maximum electrical load with age + 4 + true + + + 754 + 65 + 6 + 57 + Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 1831 + Annual degradation in efficiency when operated at maximum capacity. Bands 2+ define candidates with lower degradation but lower maximum capacity factors + 4 + true + + + 755 + 65 + 6 + 58 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the Power2X to capacity reserves + C + true + + + 756 + 65 + 6 + 59 + Firm Capacity Unit Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2664 + The total number of units installed in band corresponding to the same band of [Firm Capacity] + C + true + + + 757 + 65 + 7 + 60 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 758 + 65 + 7 + 61 + Forced Outage + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 759 + 65 + 7 + 62 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 760 + 65 + 7 + 63 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 761 + 65 + 7 + 64 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 762 + 65 + 7 + 65 + Min Total Maintenance Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2543 + Minimum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 763 + 65 + 7 + 66 + Max Total Maintenance Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2544 + Maximum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 764 + 65 + 7 + 67 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 765 + 65 + 7 + 68 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Unit rating during outage + 1000000 + true + + + 766 + 65 + 7 + 69 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 767 + 65 + 7 + 70 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 768 + 65 + 7 + 71 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 769 + 65 + 7 + 72 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 770 + 65 + 7 + 73 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 771 + 65 + 8 + 74 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 772 + 65 + 8 + 75 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a Power2X production unit + 8 + true + + + 773 + 65 + 8 + 76 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 774 + 65 + 8 + 77 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning. + 8 + true + + + 775 + 65 + 8 + 78 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 776 + 65 + 8 + 79 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 777 + 65 + 8 + 80 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered). + 9 + true + + + 778 + 65 + 8 + 81 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 779 + 65 + 8 + 82 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units allowed to be retired in aggregate over the planning horizon + 88 + true + + + 780 + 65 + 8 + 83 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 781 + 65 + 8 + 84 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 782 + 65 + 8 + 85 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 783 + 65 + 8 + 86 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 784 + 65 + 8 + 87 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 785 + 65 + 8 + 88 + Min Units Retired in Year + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 786 + 65 + 8 + 89 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 787 + 65 + 8 + 90 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 788 + 65 + 8 + 91 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 789 + 65 + 8 + 92 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the Power2X production for capacity + 4000008 + true + + + 790 + 65 + 8 + 93 + Expansion Economy Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 2959 + Cost of building a unit at economy of scale (band) + 8008 + true + + + 791 + 65 + 8 + 94 + Expansion Economy Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 999 + 2960 + Minimum number of units required for the expansion economy (band) + 88 + true + + + 792 + 65 + 8 + 95 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 793 + 65 + 8 + 96 + Recovery Price Adder + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Recovery price adder to include for MT/ST optimization + 8008 + false + + + 794 + 65 + 8 + 97 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Power2X production + 8009 + false + + + 795 + 65 + 11 + 98 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 796 + 65 + 11 + 99 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 797 + 65 + 12 + 100 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 798 + 65 + 12 + 101 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 799 + 65 + 12 + 102 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 800 + 68 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this fuel produced + true + + + 801 + 69 + 1 + 1 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of facility load at the node + true + + + 802 + 70 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Heat Node + true + + + 803 + 71 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Heat Storage + true + + + 804 + 72 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Gas Node + true + + + 805 + 72 + 1 + 2 + Min Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by Power2X in the blend + 100 + true + + + 806 + 72 + 1 + 3 + Max Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by Power2X in the blend + 100 + true + + + 807 + 73 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Gas Storage + true + + + 808 + 74 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's water consumption that gets drawn from this Water Node + true + + + 809 + 75 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 810 + 76 + 1 + 1 + Ratio + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 666 + Amount of the Commodity produced per unit of input energy to the facility + true + + + 811 + 77 + 3 + 1 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 626 + Amount of the Power2X production on the Flow Node injected(positive)/withdrawn(negative) per unit of production + true + + + 812 + 78 + 3 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 813 + 78 + 3 + 2 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 814 + 78 + 3 + 3 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 815 + 78 + 3 + 4 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load drawn by the facility + true + + + 816 + 78 + 3 + 5 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of facility production + true + + + 817 + 78 + 3 + 6 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 818 + 78 + 3 + 7 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 819 + 78 + 3 + 8 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 820 + 78 + 3 + 9 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 821 + 78 + 3 + 10 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 822 + 78 + 3 + 11 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 823 + 78 + 3 + 12 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 824 + 78 + 5 + 13 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 825 + 78 + 5 + 14 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 826 + 78 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 827 + 78 + 5 + 16 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 828 + 78 + 5 + 17 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 829 + 78 + 5 + 18 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 830 + 78 + 6 + 19 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 831 + 78 + 6 + 20 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 832 + 78 + 8 + 21 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built constraint + 8 + true + + + 833 + 78 + 8 + 22 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired constraint + 8 + true + + + 834 + 78 + 8 + 23 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 835 + 78 + 8 + 24 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 836 + 78 + 8 + 25 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 837 + 78 + 8 + 26 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 838 + 78 + 8 + 27 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 839 + 78 + 8 + 28 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 840 + 78 + 8 + 29 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 841 + 79 + 3 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 842 + 79 + 3 + 2 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 843 + 79 + 3 + 3 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 844 + 79 + 3 + 4 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load drawn by the facility + true + + + 845 + 79 + 3 + 5 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of facility production + false + + + 846 + 79 + 3 + 6 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 847 + 79 + 3 + 7 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 848 + 79 + 3 + 8 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 849 + 79 + 3 + 9 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 850 + 79 + 3 + 10 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 851 + 79 + 3 + 11 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 852 + 79 + 3 + 12 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 853 + 79 + 5 + 13 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 854 + 79 + 5 + 14 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 855 + 79 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 856 + 79 + 5 + 16 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 857 + 79 + 5 + 17 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 858 + 79 + 5 + 18 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 859 + 79 + 6 + 19 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 860 + 79 + 6 + 20 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 861 + 79 + 8 + 21 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 862 + 79 + 8 + 22 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 863 + 79 + 8 + 23 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 864 + 79 + 8 + 24 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 865 + 79 + 8 + 25 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 866 + 79 + 8 + 26 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 867 + 80 + 6 + 1 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 868 + 81 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the generator for the generation of outages + 101000000 + true + + + 869 + 81 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 100000000 + true + + + 870 + 81 + 2 + 3 + End Effects Method + 0 + 2 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period energy. + 20 + true + + + 871 + 81 + 2 + 4 + Recycle Ignore Look Ahead + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2129793778 + If battery should ignore the Look Ahead when Battery End Effects Method is recycle + 80 + true + + + 872 + 81 + 2 + 5 + Recharge Timeframe + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2546 + Maximum hours to recharge after discharge + true + + + 873 + 81 + 2 + 6 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the battery can set price + 4000000 + true + + + 874 + 81 + 2 + 7 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal state-of-charge from one simulation phase to the next + 400000000 + true + + + 875 + 81 + 2 + 8 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition state-of-charge target penalty function 'a' term + 400000000 + true + + + 876 + 81 + 2 + 9 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition state-of-charge target penalty function 'b' term + 400000000 + true + + + 877 + 81 + 2 + 10 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition state-of-charge target penalty function 'c' term + 400000000 + true + + + 878 + 81 + 2 + 11 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition state-of-charge target penalty function 'x' term + 400000000 + true + + + 879 + 81 + 2 + 12 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of state-of-charge bounds when the decomposition implies possible violations + 400000000 + true + + + 880 + 81 + 2 + 13 + Non-physical Charge Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2870 + Penalty applied to non-physical charging of the battery. A value of -1 means none is allowed. + 400000000 + true + + + 881 + 81 + 2 + 14 + Non-physical Discharge Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2871 + Penalty applied to non-physical discharging of the battery. A value of -1 means none is allowed. + 400000000 + true + + + 882 + 81 + 2 + 15 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 883 + 81 + 2 + 16 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 884 + 81 + 2 + 17 + Declining Depreciation Balance + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 130 + Balance applied to declining depreciation method + 8 + true + + + 885 + 81 + 2 + 18 + Build Cost Multiplier + 0 + 1 + In (0,1,2) + 0;"None";1;"Production Capacity";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 886 + 81 + 2 + 19 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if the capital cost recovery feature is modeled for expansion planning + 8 + true + + + 887 + 81 + 2 + 20 + Simultaneous Charge and Discharge + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2632 + Battery can charge and discharge simultaneously + 80 + true + + + 888 + 81 + 2 + 21 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the battery. + 1000000000 + true + + + 889 + 81 + 2 + 22 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the battery acts strategically + 40 + true + + + 890 + 81 + 2 + 23 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 891 + 81 + 2 + 24 + Scale Distribution Factors + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3012 + Flag if distribution factors should be scaled for a battery + 800000 + false + + + 892 + 81 + 3 + 25 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of BESS units installed + 800001 + true + + + 893 + 81 + 3 + 26 + Capacity + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of the BESS + 5 + true + + + 894 + 81 + 3 + 27 + Duration + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1476 + Battery duration used to determine the MWh capacity + 4 + true + + + 895 + 81 + 3 + 28 + Max Power + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1756 + Power at full discharge + 5 + true + + + 896 + 81 + 3 + 29 + Max Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 436 + Power at full charge including inverter losses + 5 + true + + + 897 + 81 + 3 + 30 + Max SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1666 + Allowable maximum State of Charge + 5 + true + + + 898 + 81 + 3 + 31 + Min SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1667 + Allowable minimum state of charge + 5 + true + + + 899 + 81 + 3 + 32 + Initial SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1670 + Initial State of Charge + 5 + true + + + 900 + 81 + 3 + 33 + Charge Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 901 + 81 + 3 + 34 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 902 + 81 + 3 + 35 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 903 + 81 + 3 + 36 + Charging VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2624 + Variable operation and maintenance charge for charging + 2000000001 + true + + + 904 + 81 + 3 + 37 + Discharging VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2625 + Variable operation and maintenance charge for discharging + 2000000001 + true + + + 905 + 81 + 3 + 38 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Fixed operations and maintenance charge + 8000 + true + + + 906 + 81 + 3 + 39 + Fixed Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1338 + Generic annual fixed charge + 8008 + true + + + 907 + 81 + 3 + 40 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge for generation + 2000000000 + true + + + 908 + 81 + 3 + 41 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 909 + 81 + 3 + 42 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 910 + 81 + 3 + 43 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 911 + 81 + 3 + 44 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 656 + Penalty for violating Max Ramp Down constraint. + 80 + true + + + 912 + 81 + 3 + 45 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 913 + 81 + 3 + 46 + Aux Fixed + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 914 + 81 + 3 + 47 + Aux Base + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 915 + 81 + 3 + 48 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of generation and load + 200000 + true + + + 916 + 81 + 3 + 49 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Battery marginal loss factor (MLF or TLF) + 600000 + true + + + 917 + 81 + 3 + 50 + Min Discharge Level + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2553 + Minimum discharge level when discharging + 80 + true + + + 918 + 81 + 3 + 51 + Min Charge Level + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2554 + Minimum unit charge level when charging + 80 + true + + + 919 + 81 + 3 + 52 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a battery must discharge after discharging starts + 1000000080 + true + + + 920 + 81 + 3 + 53 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a battery must have zero discharge after discharging stops + 1000000080 + true + + + 921 + 81 + 3 + 54 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a battery can discharge after discharging starts + 1000000080 + true + + + 922 + 81 + 3 + 55 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a battery can have zero discharge after discharging stops + 1000000080 + true + + + 923 + 81 + 3 + 56 + Min Charge Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2876 + Minimum number of hours a unit must be run in charge mode after being started + 1000000080 + true + + + 924 + 81 + 3 + 57 + Min Charge Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2877 + Minimum number of hours a unit must refrain from charging after being shut down from charge mode + 1000000080 + true + + + 925 + 81 + 3 + 58 + Max Charge Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2889 + Maximum number of hours a unit can be run in charge mode after being started + 1000000080 + true + + + 926 + 81 + 3 + 59 + Discharge Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2657 + Minimum time between operating in discharge mode and charge mode + 80 + true + + + 927 + 81 + 3 + 60 + Charge Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2658 + Minimum time between operating in charge mode and discharge mode + 80 + true + + + 928 + 81 + 3 + 61 + Self Discharge Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2710 + Percentage of stored energy lost per hour due to self-discharge. + 200000 + true + + + 929 + 81 + 9 + 62 + Max Cycles + 62 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1832 + Number of cycles allowed each interval + 80 + true + + + 930 + 81 + 9 + 62 + Max Cycles Hour + 62 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1833 + Number of cycles allowed each hour + 80 + true + + + 931 + 81 + 9 + 62 + Max Cycles Day + 62 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1834 + Number of cycles allowed each day + 80 + true + + + 932 + 81 + 9 + 62 + Max Cycles Week + 62 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1835 + Number of cycles allowed each week + 80 + true + + + 933 + 81 + 9 + 62 + Max Cycles Month + 62 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1836 + Number of cycles allowed each month + 80 + true + + + 934 + 81 + 9 + 62 + Max Cycles Year + 62 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1837 + Number of cycles allowed each year + 80 + true + + + 935 + 81 + 9 + 63 + Energy Target + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1861 + Battery stored energy target + 80 + true + + + 936 + 81 + 9 + 63 + Energy Target Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1862 + end of hour battery stored energy target + 80 + true + + + 937 + 81 + 9 + 63 + Energy Target Day + 3 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1863 + end of day battery stored energy target + 80 + true + + + 938 + 81 + 9 + 63 + Energy Target Week + 3 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1864 + end of week battery stored energy target + 80 + true + + + 939 + 81 + 9 + 63 + Energy Target Month + 3 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1865 + end of month battery stored energy target + 80 + true + + + 940 + 81 + 9 + 63 + Energy Target Year + 3 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1866 + end of year battery stored energy target + 80 + true + + + 941 + 81 + 9 + 64 + Energy Target Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1867 + Penalty for violating the battery stored energy target. + 80 + true + + + 942 + 81 + 9 + 65 + SoC Target + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 194048949 + Battery State of Charge target + 80 + true + + + 943 + 81 + 9 + 65 + SoC Target Hour + 12 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1075856882 + end of hour battery state of charge target + 80 + true + + + 944 + 81 + 9 + 65 + SoC Target Day + 12 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 626749896 + end of day battery state of charge target + 80 + true + + + 945 + 81 + 9 + 65 + SoC Target Week + 12 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1693285067 + end of week battery state of charge target + 80 + true + + + 946 + 81 + 9 + 65 + SoC Target Month + 12 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 2123227489 + end of month battery state of charge target + 80 + true + + + 947 + 81 + 9 + 65 + SoC Target Year + 12 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1682677665 + end of year battery state of charge target + 80 + true + + + 948 + 81 + 9 + 66 + Max Energy Discharging + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3045 + Max Energy Discharging + 80 + true + + + 949 + 81 + 9 + 66 + Max Energy Discharging Hour + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3046 + Max Energy Discharging Hour + 80 + true + + + 950 + 81 + 9 + 66 + Max Energy Discharging Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3047 + Max Energy Discharging Day + 80 + true + + + 951 + 81 + 9 + 66 + Max Energy Discharging Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3048 + Max Energy Discharging Week + 80 + true + + + 952 + 81 + 9 + 66 + Max Energy Discharging Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3049 + Max Energy Discharging Month + 80 + true + + + 953 + 81 + 9 + 66 + Max Energy Discharging Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3050 + Max Energy Discharging Year + 80 + true + + + 954 + 81 + 9 + 67 + Min Energy Discharging + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3052 + Min Energy Discharging + 80 + true + + + 955 + 81 + 9 + 67 + Min Energy Discharging Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3053 + Min Energy Discharging Hour + 80 + true + + + 956 + 81 + 9 + 67 + Min Energy Discharging Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3054 + Min Energy Discharging Day + 80 + true + + + 957 + 81 + 9 + 67 + Min Energy Discharging Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3055 + Min Energy Discharging Week + 80 + true + + + 958 + 81 + 9 + 67 + Min Energy Discharging Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3056 + Min Energy Discharging Month + 80 + true + + + 959 + 81 + 9 + 67 + Min Energy Discharging Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3057 + Min Energy Discharging Year + 80 + true + + + 960 + 81 + 9 + 68 + Max Energy Discharging Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3058 + Max Energy Discharging Penalty + 80 + true + + + 961 + 81 + 9 + 69 + Min Energy Discharging Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3059 + Min Energy Discharging Penalty + 80 + true + + + 962 + 81 + 9 + 70 + Max Energy Charging + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3063 + Max Energy Discharging + 80 + true + + + 963 + 81 + 9 + 70 + Max Energy Charging Hour + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3064 + Max Energy Discharging Hour + 80 + true + + + 964 + 81 + 9 + 70 + Max Energy Charging Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3065 + Max Energy Discharging Day + 80 + true + + + 965 + 81 + 9 + 70 + Max Energy Charging Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3066 + Max Energy Discharging Week + 80 + true + + + 966 + 81 + 9 + 70 + Max Energy Charging Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3067 + Max Energy Discharging Month + 80 + true + + + 967 + 81 + 9 + 70 + Max Energy Charging Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3068 + Max Energy Discharging Year + 80 + true + + + 968 + 81 + 9 + 71 + Min Energy Charging + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3069 + Min Energy Discharging + 80 + true + + + 969 + 81 + 9 + 71 + Min Energy Charging Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3070 + Min Energy Discharging Hour + 80 + true + + + 970 + 81 + 9 + 71 + Min Energy Charging Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3071 + Min Energy Discharging Day + 80 + true + + + 971 + 81 + 9 + 71 + Min Energy Charging Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3072 + Min Energy Discharging Week + 80 + true + + + 972 + 81 + 9 + 71 + Min Energy Charging Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3073 + Min Energy Discharging Month + 80 + true + + + 973 + 81 + 9 + 71 + Min Energy Charging Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3074 + Min Energy Discharging Year + 80 + true + + + 974 + 81 + 9 + 72 + Max Energy Charging Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3075 + Max Energy Discharging Penalty + 80 + true + + + 975 + 81 + 9 + 73 + Min Energy Charging Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3076 + Min Energy Discharging Penalty + 80 + true + + + 976 + 81 + 11 + 74 + Non-anticipativity + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 977 + 81 + 11 + 75 + Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1858 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 978 + 81 + 4 + 76 + Offer Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for incr/decr style offer + 400000 + true + + + 979 + 81 + 4 + 77 + Offer No Load Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 568 + Fixed dispatch cost component of generator offer. + 400000 + true + + + 980 + 81 + 4 + 78 + Offer Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band + 400001 + true + + + 981 + 81 + 4 + 79 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400001 + true + + + 982 + 81 + 4 + 80 + Offer Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1368 + Scalar applied to the [Offer Quantity] property + 400000 + true + + + 983 + 81 + 4 + 81 + Offer Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1386 + Adder applied to the [Offer Price] property + 400000 + true + + + 984 + 81 + 4 + 82 + Offer Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1365 + Scalar applied to the [Offer Price] property + 400000 + true + + + 985 + 81 + 4 + 83 + Mark-up + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 408 + Mark-up above marginal cost + 400040 + true + + + 986 + 81 + 4 + 84 + Bid-Cost Mark-up + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + 400040 + true + + + 987 + 81 + 4 + 85 + Mark-up Point + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1091 + Load point for use with multi-point [Mark-up] or [Bid-Cost Mark-up]. + 400040 + true + + + 988 + 81 + 4 + 86 + Bid Base + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2547 + Base load for balancing bid + 400400000 + true + + + 989 + 81 + 4 + 87 + Bid Quantity + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 34 + load bid quantity in band + 400400000 + true + + + 990 + 81 + 4 + 88 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 33 + Bid price of load in band + 400400000 + true + + + 991 + 81 + 4 + 89 + Bid Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2548 + Scalar applied to the [Bid Quantity] property + 400400000 + true + + + 992 + 81 + 4 + 90 + Bid Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2549 + Adder applied to the [Bid Price] property + 400400000 + true + + + 993 + 81 + 4 + 91 + Bid Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2550 + Scalar applied to the [Bid Price] property + 400400000 + true + + + 994 + 81 + 4 + 92 + Simultaneous Increment and Decrement + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2868 + Degenerate increment and decrement offers and bids can be cleared simultaneously + 400000 + true + + + 995 + 81 + 4 + 93 + Strategic Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1009 + Generating unit rating for application in RSI capacity calculations + 40 + true + + + 996 + 81 + 4 + 94 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Pumping unit rating for application in RSI capacity calculations. + 40 + true + + + 997 + 81 + 6 + 95 + Initial Age + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Age of the battery in number of cycles at the start of the simulation horizon + 80000 + true + + + 998 + 81 + 6 + 96 + Power Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1830 + Degradation of battery power with cycles + 4 + true + + + 999 + 81 + 6 + 97 + Capacity Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1960 + Degradation in capacity with age in number of cycles + 4 + true + + + 1000 + 81 + 6 + 98 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the battery to capacity reserves + C + true + + + 1001 + 81 + 6 + 99 + Firm Capacity Unit Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2664 + The total number of units installed in band corresponding to the same band of [Firm Capacity] + C + true + + + 1002 + 81 + 7 + 100 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 1003 + 81 + 7 + 101 + Effective Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2672 + Effective forced outage rate for use in calculation of reliability indices + true + + + 1004 + 81 + 7 + 102 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 1005 + 81 + 7 + 103 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 1006 + 81 + 7 + 104 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 1007 + 81 + 7 + 105 + Min Total Maintenance Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2543 + Minimum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 1008 + 81 + 7 + 106 + Max Total Maintenance Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2544 + Maximum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 1009 + 81 + 7 + 107 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Unit rating during outage + 1000000 + true + + + 1010 + 81 + 7 + 108 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Battery outage rating based on max power + 1000000 + true + + + 1011 + 81 + 7 + 109 + Outage Pump Load + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1402 + Load drawn by a unit in pumping mode + 1000000 + true + + + 1012 + 81 + 7 + 110 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 1013 + 81 + 7 + 111 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 1014 + 81 + 7 + 112 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 1015 + 81 + 7 + 113 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 1016 + 81 + 7 + 114 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 1017 + 81 + 8 + 115 + Max Units Built + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of BESS units that can be built + 89 + true + + + 1018 + 81 + 8 + 116 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 1019 + 81 + 8 + 117 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + First date at which a BESS unit can be built + 8 + true + + + 1020 + 81 + 8 + 118 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of a BESS unit + 8 + true + + + 1021 + 81 + 8 + 119 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a BESS unit + 8009 + true + + + 1022 + 81 + 8 + 120 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 1023 + 81 + 8 + 121 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of a BESS unit (period over which fixed costs are recovered) + 9 + true + + + 1024 + 81 + 8 + 122 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 1025 + 81 + 8 + 123 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of BESS units that can be built in a year + 88 + true + + + 1026 + 81 + 8 + 124 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units allowed to be constructed in any single year of the planning horizon + 88 + true + + + 1027 + 81 + 8 + 125 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units allowed to be retired in aggregate over the planning horizon + 88 + true + + + 1028 + 81 + 8 + 126 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a BESS unit + 8 + true + + + 1029 + 81 + 8 + 127 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 1030 + 81 + 8 + 128 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 1031 + 81 + 8 + 129 + Min Units Retired in Year + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 1032 + 81 + 8 + 130 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 1033 + 81 + 8 + 131 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 1034 + 81 + 8 + 132 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 1035 + 81 + 8 + 133 + Expansion Economy Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 2959 + Cost of building a unit at economy of scale (band) + 8008 + true + + + 1036 + 81 + 8 + 134 + Expansion Economy Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 999 + 2960 + Minimum number of units required for the expansion economy (band) + 88 + true + + + 1037 + 81 + 8 + 135 + Capacity Build Option + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 1505405474 + Potential per unit energy storage capacity for new expansions + D + true + + + 1038 + 81 + 8 + 136 + Capacity Build Option Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 1693153088 + Cost of the Capacity Build Option (matching band) + D + true + + + 1039 + 81 + 8 + 137 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 1040 + 81 + 8 + 138 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the battery for capacity + 4000008 + true + + + 1041 + 81 + 11 + 139 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1042 + 81 + 11 + 140 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1043 + 81 + 12 + 141 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1044 + 81 + 12 + 142 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1045 + 81 + 12 + 143 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1046 + 85 + 1 + 1 + Distribution Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2713 + Proportion of battery charge and discharge at the node + true + + + 1047 + 86 + 1 + 1 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of installed units at the Node + 800000 + true + + + 1048 + 87 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 1049 + 88 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity consumed per unit of generation + true + + + 1050 + 88 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Amount of the Commodity consumed per unit of load + true + + + 1051 + 88 + 8 + 3 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Amount of the Commodity consumed per unit of capacity built + true + + + 1052 + 88 + 8 + 4 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Amount of the Commodity consumed per unit of capacity retired + true + + + 1053 + 89 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity produced per unit of generation + true + + + 1054 + 89 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Amount of the Commodity produced per unit of load + true + + + 1055 + 90 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of generation + true + + + 1056 + 90 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 80 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of load + true + + + 1057 + 91 + 4 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for capacity market + true + + + 1058 + 91 + 4 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band for capacity market + true + + + 1059 + 92 + 3 + 1 + Energy Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1859 + Coefficient of energy stored in the BESS + true + + + 1060 + 92 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 1061 + 92 + 3 + 3 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load consumption (charging) in the constraint + true + + + 1062 + 92 + 3 + 4 + Discharging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2938 + Coefficient of hours discharging + 1000000000 + true + + + 1063 + 92 + 3 + 5 + Charging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2939 + Coefficient of hours charging + 1000000000 + true + + + 1064 + 92 + 3 + 6 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 1065 + 92 + 3 + 7 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 1066 + 92 + 3 + 8 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 1067 + 92 + 3 + 9 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 1068 + 92 + 3 + 10 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 1069 + 92 + 3 + 11 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 1070 + 92 + 3 + 12 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + 2 + true + + + 1071 + 92 + 3 + 13 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + 2 + true + + + 1072 + 92 + 3 + 14 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 1073 + 92 + 3 + 15 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 1074 + 92 + 3 + 16 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 1075 + 92 + 3 + 17 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 1076 + 92 + 3 + 18 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 1077 + 92 + 3 + 19 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 1078 + 92 + 3 + 20 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + 2 + true + + + 1079 + 92 + 3 + 21 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + 2 + true + + + 1080 + 92 + 3 + 22 + Reserve Provision Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2893 + Generation coefficient of reserve provision + 2 + true + + + 1081 + 92 + 3 + 23 + Reserve Provision Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2894 + Load coefficient of reserve provision + 2 + true + + + 1082 + 92 + 6 + 24 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 1083 + 92 + 6 + 25 + Installed Capacity Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 1084 + 92 + 6 + 26 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of generation capacity (power) + true + + + 1085 + 92 + 6 + 27 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 1086 + 92 + 6 + 28 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of battery contribution to capacity reserves + C + true + + + 1087 + 92 + 6 + 29 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 1088 + 92 + 6 + 30 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + 8 + true + + + 1089 + 92 + 5 + 31 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 1090 + 92 + 5 + 32 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 1091 + 92 + 5 + 33 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 1092 + 92 + 5 + 34 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 1093 + 92 + 5 + 35 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 1094 + 92 + 7 + 36 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 1095 + 92 + 7 + 37 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 1096 + 92 + 8 + 38 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 1097 + 92 + 8 + 39 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 1098 + 92 + 8 + 40 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 1099 + 92 + 8 + 41 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 1100 + 92 + 8 + 42 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 1101 + 92 + 8 + 43 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 1102 + 92 + 8 + 44 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 1103 + 92 + 8 + 45 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 1104 + 92 + 8 + 46 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 1105 + 93 + 3 + 1 + Energy Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1859 + Coefficient of energy stored in the BESS + true + + + 1106 + 93 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 1107 + 93 + 3 + 3 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load obligation + true + + + 1108 + 93 + 3 + 4 + Discharging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2938 + Coefficient of hours discharging + 1000000000 + true + + + 1109 + 93 + 3 + 5 + Charging Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2939 + Coefficient of hours charging + 1000000000 + true + + + 1110 + 93 + 3 + 6 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 1111 + 93 + 3 + 7 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 1112 + 93 + 3 + 8 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 1113 + 93 + 3 + 9 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 1114 + 93 + 3 + 10 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 1115 + 93 + 3 + 11 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + true + + + 1116 + 93 + 3 + 12 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + true + + + 1117 + 93 + 3 + 13 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + true + + + 1118 + 93 + 3 + 14 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + true + + + 1119 + 93 + 3 + 15 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + true + + + 1120 + 93 + 3 + 16 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + true + + + 1121 + 93 + 3 + 17 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + true + + + 1122 + 93 + 3 + 18 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + true + + + 1123 + 93 + 3 + 19 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 1124 + 93 + 3 + 20 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + true + + + 1125 + 93 + 3 + 21 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + true + + + 1126 + 93 + 6 + 22 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 1127 + 93 + 6 + 23 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 1128 + 93 + 6 + 24 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 1129 + 93 + 6 + 25 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of battery contribution to capacity reserves + C + true + + + 1130 + 93 + 6 + 26 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 2 + 1838 + Coefficient of cycles + true + + + 1131 + 93 + 6 + 27 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + true + + + 1132 + 93 + 5 + 28 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 1133 + 93 + 5 + 29 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 1134 + 93 + 5 + 30 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 1135 + 93 + 5 + 31 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 1136 + 93 + 5 + 32 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 1137 + 93 + 7 + 33 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 1138 + 93 + 7 + 34 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 1139 + 93 + 8 + 35 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 1140 + 93 + 8 + 36 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 1141 + 93 + 8 + 37 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 1142 + 93 + 8 + 38 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 1143 + 93 + 8 + 39 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 1144 + 93 + 8 + 40 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 1145 + 93 + 8 + 41 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 1146 + 93 + 8 + 42 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + true + + + 1147 + 93 + 8 + 43 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + true + + + 1148 + 94 + 3 + 1 + Energy Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1859 + Coefficient of energy stored in the BESS + true + + + 1149 + 94 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 1150 + 94 + 3 + 3 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load consumption (charging) in the constraint + true + + + 1151 + 94 + 6 + 4 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 1152 + 94 + 6 + 5 + Installed Capacity Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 1153 + 94 + 6 + 6 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + true + + + 1154 + 94 + 6 + 7 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 1155 + 94 + 7 + 8 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 1156 + 94 + 7 + 9 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 1157 + 94 + 8 + 10 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + true + + + 1158 + 94 + 8 + 11 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + true + + + 1159 + 94 + 8 + 12 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 1160 + 94 + 8 + 13 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 1161 + 94 + 8 + 14 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 1162 + 94 + 8 + 15 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 1163 + 94 + 8 + 16 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 1164 + 94 + 8 + 17 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 1165 + 95 + 1 + 1 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + false + false + false + 1 + 335 + Flag if the Battery Station is enabled + 800000 + true + + + 1166 + 98 + 1 + 1 + Distribution Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2713 + Proportion of battery charge and discharge at the node + true + + + 1167 + 99 + 2 + 1 + Model + 0 + 0 + In (0,1,2,3) + 0;"Auto";1;"Energy";3;"Volume";2;"Level" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1079 + Model used to define and model storage volumes (used to override the file-level Hydro Model setting). + 40000 + true + + + 1168 + 99 + 2 + 2 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 1169 + 99 + 2 + 3 + Internal Volume Scalar + 0 + 1000 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 1170 + 99 + 2 + 4 + End Effects Method + 0 + 0 + In (0,1,2) + 0;"Auto";1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 168 + Method used to handle end-of-period storage. + 4000 + true + + + 1171 + 99 + 2 + 5 + Recycle Ignore Look Ahead + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2129793778 + If storage should ignore the Look Ahead when Storage End Effects Method is recycle + 80 + true + + + 1172 + 99 + 2 + 6 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 1173 + 99 + 2 + 7 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 1174 + 99 + 2 + 8 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 1175 + 99 + 2 + 9 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 1176 + 99 + 2 + 10 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 1177 + 99 + 2 + 11 + Decomposition Bound Penalty + 46 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 1178 + 99 + 2 + 12 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 1179 + 99 + 2 + 13 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 40080 + true + + + 1180 + 99 + 2 + 14 + Spill Penalty + 135 + 0.0001 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1238 + Penalty applied to spill from the storage to "the sea" in the last period of each simulation step. + 40000 + true + + + 1181 + 99 + 2 + 15 + Non-physical Inflow Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1130 + Penalty applied to non-physical inflow to the storage. A value of -1 means none are allowed. + 40000 + true + + + 1182 + 99 + 2 + 16 + Non-physical Spill Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1131 + Penalty applied to non-physical spill from the storage. A value of -1 means none are allowed. + 40000 + true + + + 1183 + 99 + 3 + 17 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Number of units of the storage + 840000 + true + + + 1184 + 99 + 3 + 18 + Max Volume + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 466 + Maximum volume + 40001 + true + + + 1185 + 99 + 3 + 19 + Max Volume Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2716 + Penalty for violating the Max Volume constraint + 40000 + true + + + 1186 + 99 + 3 + 20 + Initial Volume + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Storage volume at the start of the period + C0001 + true + + + 1187 + 99 + 3 + 21 + Min Volume + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 510 + Minimum volume + 40000 + true + + + 1188 + 99 + 3 + 22 + Min Volume Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2717 + Penalty for violating the Min Volume constraint + 40000 + true + + + 1189 + 99 + 3 + 23 + Max Level + 23 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 435 + Maximum level + 40000 + true + + + 1190 + 99 + 3 + 24 + Initial Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 316 + Initial level + 40000 + true + + + 1191 + 99 + 3 + 25 + Min Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 485 + Minimum level + 40000 + true + + + 1192 + 99 + 3 + 26 + Low Ref Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 389 + Low reference level for volume calculation + 40000 + true + + + 1193 + 99 + 3 + 27 + Low Ref Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 388 + Area of surface at low reference level + 40000 + true + + + 1194 + 99 + 3 + 28 + High Ref Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 269 + High reference level for volume calculation + 40000 + true + + + 1195 + 99 + 3 + 29 + High Ref Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 268 + Area of surface at high reference level + 40000 + true + + + 1196 + 99 + 3 + 30 + Natural Inflow + 25 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 530 + Rate of natural inflow + 40001 + true + + + 1197 + 99 + 3 + 31 + Natural Inflow Incr + 25 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1396 + Increment to [Natural Inflow] + 40000 + true + + + 1198 + 99 + 3 + 32 + Natural Inflow Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1397 + Multiplier on [Natural Inflow] + 40000 + true + + + 1199 + 99 + 3 + 33 + Water Value + 46 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 855 + Incremental price of water released from storage + 40000 + true + + + 1200 + 99 + 3 + 34 + Water Value Point + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 856 + Volume associated with [Water Value] in multiple bands + 40000 + true + + + 1201 + 99 + 3 + 35 + Energy Value + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 176 + Incremental price of energy generated from storage + 40000 + true + + + 1202 + 99 + 3 + 36 + Energy Value Point + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2538 + Energy associated with [Energy Value] in multiple bands + 40000 + true + + + 1203 + 99 + 3 + 37 + Downstream Efficiency + 120 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 153 + Aggregate efficiency of generation down the river chain + 40000 + true + + + 1204 + 99 + 3 + 38 + Loss Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to evaporation, leakage, etc + 240000 + true + + + 1205 + 99 + 3 + 39 + Recycle Penalty + 46 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 1206 + 99 + 3 + 40 + Rolling Planning Bonus + 46 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2519 + Bonus for storage contents at the end of the look-ahead + true + + + 1207 + 99 + 9 + 41 + Min Release + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 497 + Minimum rate of release from the storage + 40080 + true + + + 1208 + 99 + 9 + 42 + Max Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 451 + Maximum rate of release from the storage + 40080 + true + + + 1209 + 99 + 9 + 43 + Max Generator Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1210 + Maximum rate of release for generation from the storage + 40080 + true + + + 1210 + 99 + 9 + 44 + Min Release Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1947 + Penalty for violation of minimum rate of release constraints + 40080 + true + + + 1211 + 99 + 9 + 45 + Max Release Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1948 + Penalty for violation of maximum rate of release constraints + 40080 + true + + + 1212 + 99 + 9 + 46 + Max Spill + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 457 + Maximum allowable spill from the storage to "the sea" + 40080 + true + + + 1213 + 99 + 9 + 47 + Max Ramp + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in storage + 40080 + true + + + 1214 + 99 + 9 + 47 + Max Ramp Hour + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum change in storage across each hour. + 40080 + true + + + 1215 + 99 + 9 + 47 + Max Ramp Day + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum of change in storage across each day. + 40080 + true + + + 1216 + 99 + 9 + 47 + Max Ramp Week + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum of change in storage across each week. + 40080 + true + + + 1217 + 99 + 9 + 47 + Max Ramp Month + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum of change in storage across each month. + 40080 + true + + + 1218 + 99 + 9 + 47 + Max Ramp Year + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum of change in storage across each year. + 40080 + true + + + 1219 + 99 + 9 + 48 + Max Ramp Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 285 + Penalty for violating the [Max Ramp Day/Week/Month/Year] constraint. + 40080 + true + + + 1220 + 99 + 9 + 49 + Target + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 40080 + true + + + 1221 + 99 + 9 + 49 + Target Hour + 24 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 40080 + true + + + 1222 + 99 + 9 + 49 + Target Day + 24 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 40080 + true + + + 1223 + 99 + 9 + 49 + Target Week + 24 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of weekly storage target + 40080 + true + + + 1224 + 99 + 9 + 49 + Target Month + 24 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 40080 + true + + + 1225 + 99 + 9 + 49 + Target Year + 24 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 40080 + true + + + 1226 + 99 + 9 + 49 + Target Custom + 24 + 0 + >=0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2542 + end of horizon storage target + 40080 + true + + + 1227 + 99 + 9 + 50 + Target Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1703 + storage target + 40080 + true + + + 1228 + 99 + 9 + 50 + Target Level Hour + 23 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1704 + end of hour storage target + 40080 + true + + + 1229 + 99 + 9 + 50 + Target Level Day + 23 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1705 + end of day storage target + 40080 + true + + + 1230 + 99 + 9 + 50 + Target Level Week + 23 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1706 + end of week storage target + 40080 + true + + + 1231 + 99 + 9 + 50 + Target Level Month + 23 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1707 + end of month storage target + 40080 + true + + + 1232 + 99 + 9 + 50 + Target Level Year + 23 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1708 + end of year storage target + 40080 + true + + + 1233 + 99 + 9 + 51 + Target Penalty + 46 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 40080 + true + + + 1234 + 99 + 9 + 52 + SoC Target + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 194048949 + Storage State of Charge target + 80 + false + + + 1235 + 99 + 9 + 52 + SoC Target Hour + 12 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1075856882 + end of hour storage state of charge target + 80 + false + + + 1236 + 99 + 9 + 52 + SoC Target Day + 12 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 626749896 + end of day storage state of charge target + 80 + false + + + 1237 + 99 + 9 + 52 + SoC Target Week + 12 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1693285067 + end of week storage state of charge target + 80 + false + + + 1238 + 99 + 9 + 52 + SoC Target Month + 12 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 2123227489 + end of month storage state of charge target + 80 + false + + + 1239 + 99 + 9 + 52 + SoC Target Year + 12 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1682677665 + end of year storage state of charge target + 80 + false + + + 1240 + 99 + 8 + 53 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 1241 + 99 + 8 + 54 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 1242 + 99 + 8 + 55 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 1243 + 99 + 8 + 56 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 1244 + 99 + 8 + 57 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 1245 + 99 + 8 + 58 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of a Storage + 9 + true + + + 1246 + 99 + 8 + 59 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 1247 + 99 + 8 + 60 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 1248 + 99 + 8 + 61 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 1249 + 99 + 8 + 62 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 1250 + 99 + 8 + 63 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 1251 + 99 + 8 + 64 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 1252 + 99 + 8 + 65 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 1253 + 99 + 8 + 66 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 1254 + 99 + 8 + 67 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 1255 + 99 + 8 + 68 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 1256 + 99 + 11 + 69 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 1257 + 99 + 11 + 70 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 1258 + 99 + 11 + 71 + Trajectory Non-anticipativity + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100040000 + true + + + 1259 + 99 + 11 + 72 + Trajectory Non-anticipativity Volume + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100040000 + true + + + 1260 + 99 + 11 + 73 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100040000 + true + + + 1261 + 99 + 11 + 74 + Trajectory Lower Bound Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2504 + Price for running the storage below the stochastic optimal storage trajectory + 100040000 + true + + + 1262 + 99 + 11 + 75 + Trajectory Upper Bound Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2505 + Price for running the storage above the stochastic optimal storage trajectory + 100040000 + true + + + 1263 + 99 + 8 + 76 + Volume Build Option + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + -1 + 1560103942 + Potential maximum volume when expanding + 40005 + false + + + 1264 + 99 + 12 + 77 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + 40000 + true + + + 1265 + 99 + 12 + 78 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + 40000 + true + + + 1266 + 99 + 12 + 79 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + 40000 + true + + + 1267 + 103 + 1 + 1 + Initial Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2566 + Coefficient of storage initial volume. + 40000 + true + + + 1268 + 103 + 1 + 2 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + 40000 + true + + + 1269 + 103 + 1 + 3 + End Level Coefficient + 23 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1720 + Coefficient of storage end level. + 40000 + true + + + 1270 + 103 + 1 + 4 + Capacity Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2942 + Coefficient of energy storage capacity. + 40000 + true + + + 1271 + 103 + 1 + 5 + Ramp Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in storage end volume. + 40000 + true + + + 1272 + 103 + 1 + 6 + Natural Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + 40000 + true + + + 1273 + 103 + 1 + 7 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow. + 40000 + true + + + 1274 + 103 + 1 + 8 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release. + 40000 + true + + + 1275 + 103 + 1 + 9 + Generator Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1124 + Coefficient of generator release. + 40000 + true + + + 1276 + 103 + 1 + 10 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill. + 40000 + true + + + 1277 + 103 + 1 + 11 + Hours Full Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1712 + Coefficient of the number of hours the storage is full. + 40000 + true + + + 1278 + 103 + 1 + 12 + Loss Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1942 + Coefficient of the loss from the storage. + 40000 + true + + + 1279 + 104 + 1 + 1 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 1280 + 104 + 1 + 2 + End Level Coefficient + 23 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1720 + Coefficient of storage end level + true + + + 1281 + 104 + 1 + 3 + Ramp Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in storage end volume + true + + + 1282 + 104 + 1 + 4 + Natural Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + true + + + 1283 + 104 + 1 + 5 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow + true + + + 1284 + 104 + 1 + 6 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release + true + + + 1285 + 104 + 1 + 7 + Generator Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1124 + Coefficient of generator release + true + + + 1286 + 104 + 1 + 8 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill + true + + + 1287 + 104 + 1 + 9 + Hours Full Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1712 + Coefficient of the number of hours the storage is full + true + + + 1288 + 104 + 1 + 10 + Loss Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1942 + Coefficient of the loss from the storage + true + + + 1289 + 105 + 1 + 1 + Initial Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2566 + Coefficient of the initial volume in storage in the condition equation + true + + + 1290 + 105 + 1 + 2 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of the end volume in storage in the condition equation + true + + + 1291 + 105 + 1 + 3 + Initial Potential Energy Coefficient + 2 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2612 + Coefficient of the initial potential energy in storage in the condition equation + true + + + 1292 + 105 + 1 + 4 + End Potential Energy Coefficient + 2 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2613 + Coefficient of the end potential energy in storage in the condition equation + true + + + 1293 + 105 + 1 + 5 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow in the condition equation + true + + + 1294 + 105 + 1 + 6 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release in the condition equation + true + + + 1295 + 105 + 1 + 7 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill in the condition equation + true + + + 1296 + 106 + 1 + 1 + FCF Shadow Price + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1486 + Shadow price of water in storage in Future Cost Function + true + + + 1297 + 107 + 2 + 1 + Traversal Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 801 + Time taken for flows to traverse the waterway + 40000 + true + + + 1298 + 107 + 2 + 2 + Flow Control + 0 + 0 + In (0,1) + 0;"Economic";1;"Spill Only" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 899 + Waterway flow optimization method (0=economic, 1=flow when spilling only) + 40000 + true + + + 1299 + 107 + 3 + 3 + Max Flow + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow limit + 40001 + true + + + 1300 + 107 + 3 + 4 + Min Flow + 25 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 481 + Minimum flow limit + 40000 + true + + + 1301 + 107 + 3 + 5 + Initial Flow + 25 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1174 + Initial flow on the waterway for use in enforcing first period ramp constraint. + 40000 + true + + + 1302 + 107 + 3 + 6 + Max Ramp + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 446 + Maximum change in flow (MW or cumecs per hour) + 40000 + true + + + 1303 + 107 + 3 + 7 + Max Flow Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1164 + Penalty for violating the [Max Flow] constraint. + 40000 + true + + + 1304 + 107 + 3 + 8 + Min Flow Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 286 + Penalty for violating the [Min Flow] constraint. + 40000 + true + + + 1305 + 107 + 3 + 9 + Max Ramp Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 285 + Penalty for violating the [Max Ramp] constraint. + 40000 + true + + + 1306 + 107 + 3 + 10 + Input Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 319 + Input flow scalar + 40000 + true + + + 1307 + 107 + 3 + 11 + Output Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 592 + Output flow scalar + 40000 + true + + + 1308 + 107 + 12 + 12 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + 40000 + true + + + 1309 + 107 + 12 + 13 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + 40000 + true + + + 1310 + 107 + 12 + 14 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + 40000 + true + + + 1311 + 112 + 1 + 1 + Flow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of waterway flow. + 40000 + true + + + 1312 + 112 + 1 + 2 + Ramp Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in waterway flow. + 40000 + true + + + 1313 + 112 + 1 + 3 + Hours Flowing Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1713 + Coefficient of the number of hours the waterway is flowing + 40000 + true + + + 1314 + 113 + 1 + 1 + Flow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of waterway flow + true + + + 1315 + 113 + 1 + 2 + Ramp Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in waterway flow + true + + + 1316 + 113 + 1 + 3 + Hours Flowing Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1713 + Coefficient of the number of hours the waterway is flowing + true + + + 1317 + 114 + 2 + 1 + Model Virtual Network + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 2998 + Flag to indicate if the emission virtual network is modeled + 800000 + true + + + 1318 + 114 + 3 + 2 + Price + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 612 + Price charged per unit of emission (accounting only) + 2000002000 + true + + + 1319 + 114 + 3 + 3 + Shadow Price + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 742 + Shadow price (marginal cost) of emissions + 2000002000 + true + + + 1320 + 114 + 9 + 4 + Max Production + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum emission production per interval + 2080 + true + + + 1321 + 114 + 9 + 4 + Max Production Hour + 19 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum emission production in hour + 2080 + true + + + 1322 + 114 + 9 + 4 + Max Production Day + 20 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum emission production in day + 2080 + true + + + 1323 + 114 + 9 + 4 + Max Production Week + 20 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum emission production in week + 2080 + true + + + 1324 + 114 + 9 + 4 + Max Production Month + 20 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum emission production in month + 2080 + true + + + 1325 + 114 + 9 + 4 + Max Production Year + 20 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum emission production in year + 2080 + true + + + 1326 + 114 + 9 + 5 + Max Production Penalty + 30 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1361 + Penalty for violation of [Max Production] constraints. + 2080 + true + + + 1327 + 114 + 12 + 6 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1328 + 114 + 12 + 7 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1329 + 114 + 12 + 8 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1330 + 117 + 1 + 1 + Production Rate + 40 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 627 + Emissions produced per MWh of generation + 2001 + true + + + 1331 + 117 + 1 + 2 + Removal Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 677 + Proportion of emissions removed (scrubbed) + 2000 + true + + + 1332 + 117 + 1 + 3 + Removal Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 911 + Incremental cost of emissions abatement + 2000 + true + + + 1333 + 117 + 1 + 4 + Production at Start + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 625 + Emissions produced at each unit start up + 80002000 + true + + + 1334 + 117 + 1 + 5 + Shadow Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 896 + Scalar on the incremental cost of generation for this emission + 2000002000 + true + + + 1335 + 117 + 1 + 6 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Scalar on the accounting cost of generation for this emission + 2000002000 + true + + + 1336 + 117 + 1 + 7 + Allocation + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3 + Emission rights allocation + 2080 + true + + + 1337 + 117 + 1 + 7 + Allocation Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1581 + Emission rights allocation + 2080 + true + + + 1338 + 117 + 1 + 7 + Allocation Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 4 + Emission rights allocation + 2080 + true + + + 1339 + 117 + 1 + 7 + Allocation Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 6 + Emission rights allocation + 2080 + true + + + 1340 + 117 + 1 + 7 + Allocation Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 5 + Emission rights allocation + 2080 + true + + + 1341 + 117 + 1 + 7 + Allocation Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 7 + Emission rights allocation + 2080 + true + + + 1342 + 117 + 1 + 8 + Fuel Production Rate + 39 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2036 + Emissions produced per unit of fuel usage + 2001 + true + + + 1343 + 118 + 1 + 1 + Production Rate + 39 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of energy + 2001 + true + + + 1344 + 119 + 1 + 1 + Production Rate + 63 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the Power2X object + 2000 + true + + + 1345 + 120 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the gas field + 2000 + true + + + 1346 + 121 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of gas + 2000 + true + + + 1347 + 122 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of fuel processed + 2000 + true + + + 1348 + 123 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the gas demand + 2000 + true + + + 1349 + 124 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas procured from the gas contract + 2000 + true + + + 1350 + 125 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of gas + 2000 + true + + + 1351 + 126 + 1 + 1 + Production Rate + 71 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of water + 2000 + true + + + 1352 + 127 + 1 + 1 + Distance Coefficient + 91 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2458 + Emissions produced per unit distance travelled + 2000 + true + + + 1353 + 127 + 1 + 2 + Charging Coefficient + 92 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2459 + Emissions produced per unit of charging + 2000 + true + + + 1354 + 128 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 626 + Amount of the Commodity produced (positive value) or consumed (negative value) per unit of the emission produced + 2000 + true + + + 1355 + 128 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Amount of the Commodity consumed (positive value) or produced (negative value) per unit of the emission abated + 2000 + true + + + 1356 + 129 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of the Primary Output of the Facility + 2001 + true + + + 1357 + 129 + 1 + 2 + Removal Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 677 + Proportion of emissions removed (scrubbed) + 2000 + true + + + 1358 + 130 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Emissions produced for each unit sold to the market + 2000 + true + + + 1359 + 130 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Emissions produced for each unit purchased from the market + 2000 + true + + + 1360 + 131 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of emission production + 2000 + true + + + 1361 + 131 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1362 + 132 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of emissions produced + 2000 + true + + + 1363 + 132 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1364 + 133 + 3 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Flag if emission abatement technology is installed + 802000 + true + + + 1365 + 133 + 3 + 2 + Abatement Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1426 + Cost per unit of emission removed + 2000002000 + true + + + 1366 + 133 + 3 + 3 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running emission abatement when generators are on-line + 20002000 + true + + + 1367 + 133 + 3 + 4 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 849 + Cost per unit of generation + 2000002000 + true + + + 1368 + 133 + 3 + 5 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1209 + Efficiency of emission abatement + 3000 + true + + + 1369 + 133 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed charge for emission abatement technology + A000 + true + + + 1370 + 133 + 7 + 7 + Units Out + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 818 + Flag if emission abatement technology is out-of-service + 1002000 + true + + + 1371 + 133 + 9 + 8 + Max Abatement + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1427 + Maximum emission abatement rate + 2080 + true + + + 1372 + 133 + 9 + 8 + Max Abatement Hour + 19 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2746 + Maximum abatement in an hour + 2080 + true + + + 1373 + 133 + 9 + 8 + Max Abatement Day + 20 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2747 + Maximum abatement in a day + 2080 + true + + + 1374 + 133 + 9 + 8 + Max Abatement Week + 20 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2748 + Maximum abatement in a week + 2080 + true + + + 1375 + 133 + 9 + 8 + Max Abatement Month + 20 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2749 + Maximum abatement in a month + 2080 + true + + + 1376 + 133 + 9 + 8 + Max Abatement Year + 20 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2750 + Maximum abatement in a year + 2080 + true + + + 1377 + 133 + 12 + 9 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1378 + 133 + 12 + 10 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1379 + 133 + 12 + 11 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1380 + 136 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator emissions that feed into the abatement technology + 2000 + true + + + 1381 + 137 + 1 + 1 + Consumption Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1428 + Consumption at notional zero generation level + 2000 + true + + + 1382 + 137 + 1 + 2 + Consumption Incr + 36 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1429 + Incremental consumption as a function of generation + 2000 + true + + + 1383 + 138 + 1 + 1 + Abatement Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1426 + Cost per unit of emission removed for this emission + 2000 + true + + + 1384 + 138 + 1 + 2 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Efficiency of emission abatement for this emission + 2000 + true + + + 1385 + 138 + 1 + 3 + Max Abatement + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1427 + Maximum emission abatement rate for this emission + 2000 + true + + + 1386 + 139 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas field emissions that feed into the abatement technology + 2000 + true + + + 1387 + 140 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas plant emissions that feed into the abatement technology + 2000 + true + + + 1388 + 141 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas node emissions that feed into the abatement technology + 2000 + true + + + 1389 + 142 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas demand emissions that feed into the abatement technology + 2000 + true + + + 1390 + 143 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas contracts emissions that feed into the abatement technology + 2000 + true + + + 1391 + 144 + 1 + 1 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1392 + 144 + 1 + 2 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours the emission abatement technology is running + 2000 + true + + + 1393 + 145 + 1 + 1 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + true + + + 1394 + 145 + 1 + 2 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours the emission abatement technology is running + true + + + 1395 + 146 + 2 + 1 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer/Bid Quantity] and [Offer/Bid Price] + 100 + true + + + 1396 + 146 + 2 + 2 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Physical Contract can set price + 4000000 + true + + + 1397 + 146 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Physical Contract is in service + 800000 + true + + + 1398 + 146 + 3 + 4 + Max Generation + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 431 + Maximum generation cleared on physical contract + 5 + true + + + 1399 + 146 + 3 + 5 + Max Load + 1 + 1E+30 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 436 + Maximum load cleared on physical contract + 5 + true + + + 1400 + 146 + 3 + 6 + Min Generation + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 483 + Minimum generation cleared on physical contract + 80 + true + + + 1401 + 146 + 3 + 7 + Min Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 486 + Minimum load cleared on physical contract + 80 + true + + + 1402 + 146 + 4 + 8 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 572 + MW offer in band + 400000 + true + + + 1403 + 146 + 4 + 9 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 569 + Price of energy in band + 400000 + true + + + 1404 + 146 + 4 + 10 + Bid Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 34 + MW bid in band + 400000 + true + + + 1405 + 146 + 4 + 11 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 33 + Value of energy in band + 400000 + true + + + 1406 + 146 + 6 + 12 + Firm Capacity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the generation to capacity reserves. + C + true + + + 1407 + 146 + 6 + 13 + Load Obligation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Load obligation for capacity reserves. + C + true + + + 1408 + 146 + 8 + 14 + Capacity Charge + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 199 + Hourly fixed charge for contract capacity + 8008 + true + + + 1409 + 146 + 8 + 14 + Capacity Charge Hour + 52 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1564 + Hourly fixed charge for contract capacity + 8008 + true + + + 1410 + 146 + 8 + 14 + Capacity Charge Day + 51 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 201 + Daily fixed charge for contract capacity + 8008 + true + + + 1411 + 146 + 8 + 14 + Capacity Charge Week + 50 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 871 + Weekly fixed charge for contract capacity + 8008 + true + + + 1412 + 146 + 8 + 14 + Capacity Charge Month + 49 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 872 + Monthly fixed charge for contract capacity + 8008 + true + + + 1413 + 146 + 8 + 14 + Capacity Charge Year + 31 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 873 + Annual fixed charge for contract capacity + 8008 + true + + + 1414 + 146 + 8 + 15 + Max Generation Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 874 + Maximum generation capacity that can be contracted (LT Plan) + 8 + true + + + 1415 + 146 + 8 + 16 + Max Load Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 875 + Maximum load capacity that can be contracted (LT Plan) + 8 + true + + + 1416 + 146 + 8 + 17 + Min Generation Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 973 + Minimum generation capacity contracted (LT Plan) + 8 + true + + + 1417 + 146 + 8 + 18 + Min Load Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 974 + Minimum load capacity contracted (LT Plan) + 8 + true + + + 1418 + 146 + 11 + 19 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1419 + 146 + 12 + 20 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1420 + 146 + 12 + 21 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1421 + 146 + 12 + 22 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1422 + 151 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of physical contract + 40 + true + + + 1423 + 152 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of cleared load bids + 400000 + true + + + 1424 + 152 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of cleared generation offers + 400000 + true + + + 1425 + 152 + 3 + 3 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient of 0,1 value indicating if the physical contracting is generating. + 1000000000 + true + + + 1426 + 152 + 3 + 4 + Units Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1118 + Coefficient of 0,1 value indicating if the physical contracting is a load. + 1000000000 + true + + + 1427 + 152 + 6 + 5 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity contracted (LT Plan) + 4 + true + + + 1428 + 152 + 6 + 6 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of total load obligation contracted (LT Plan) + 4 + true + + + 1429 + 152 + 8 + 7 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 1430 + 153 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of cleared load bids + true + + + 1431 + 153 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of cleared generation offers + true + + + 1432 + 153 + 3 + 3 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient of 0,1 value indicating if the physical contracting is generating + true + + + 1433 + 153 + 3 + 4 + Units Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1118 + Coefficient of 0,1 value indicating if the physical contracting is a load + true + + + 1434 + 153 + 6 + 5 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity contracted + true + + + 1435 + 153 + 6 + 6 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of total load obligation contracted + true + + + 1436 + 153 + 8 + 7 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 1437 + 154 + 6 + 1 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 1438 + 155 + 2 + 1 + Benefit Function Shape + 0 + 1 + In (0,1) + 0;"Linear";1;"Quadratic" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 29 + Shape of the benefit function. + 100 + true + + + 1439 + 155 + 2 + 2 + Max Benefit Function Tranches + 0 + 10 + >=1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 412 + Maximum number of tranches in the piecewise linear benefit function. + 100 + true + + + 1440 + 155 + 2 + 3 + Interruptible Load Logic + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 13 + If the interruptible load supplied by the Purchaser is limited by the amount of cleared load bids. + 2 + true + + + 1441 + 155 + 2 + 4 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Purchaser can set price + 4000000 + true + + + 1442 + 155 + 2 + 5 + Load Settlement Source + 0 + 0 + In (0,1) + 0;"Node";1;"Region"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2728 + Source used to determine price paid by loads. + 4000000 + true + + + 1443 + 155 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Purchaser is in service + 800000 + true + + + 1444 + 155 + 3 + 7 + Min Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 486 + Minimum load if any load is cleared. + 100480 + true + + + 1445 + 155 + 3 + 8 + Max Load + 1 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 436 + Maximum load (sum of cleared demand bids) + 100480 + true + + + 1446 + 155 + 3 + 9 + Fixed Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load + 100480 + true + + + 1447 + 155 + 3 + 10 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 480 + true + + + 1448 + 155 + 3 + 11 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 480 + true + + + 1449 + 155 + 9 + 12 + Max Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 423 + Maximum energy + 480 + true + + + 1450 + 155 + 9 + 12 + Max Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1548 + Maximum energy in hour + 480 + true + + + 1451 + 155 + 9 + 12 + Max Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 424 + Maximum energy in day + 480 + true + + + 1452 + 155 + 9 + 12 + Max Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 426 + Maximum energy in week + 480 + true + + + 1453 + 155 + 9 + 12 + Max Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 425 + Maximum energy in month + 480 + true + + + 1454 + 155 + 9 + 12 + Max Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 427 + Maximum energy in year + 480 + true + + + 1455 + 155 + 9 + 13 + Min Energy + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1110 + Minimum energy + 480 + true + + + 1456 + 155 + 9 + 13 + Min Energy Hour + 1 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1549 + Minimum energy in hour + 480 + true + + + 1457 + 155 + 9 + 13 + Min Energy Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1111 + Minimum energy in day + 480 + true + + + 1458 + 155 + 9 + 13 + Min Energy Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1112 + Minimum energy in week + 480 + true + + + 1459 + 155 + 9 + 13 + Min Energy Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1113 + Minimum energy in month + 480 + true + + + 1460 + 155 + 9 + 13 + Min Energy Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1114 + Minimum energy in year + 480 + true + + + 1461 + 155 + 9 + 14 + Max Load Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1100 + Maximum load factor + 480 + true + + + 1462 + 155 + 9 + 14 + Max Load Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1567 + Maximum load factor in hour + 480 + true + + + 1463 + 155 + 9 + 14 + Max Load Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1101 + Maximum load factor in day + 480 + true + + + 1464 + 155 + 9 + 14 + Max Load Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1102 + Maximum load factor in week + 480 + true + + + 1465 + 155 + 9 + 14 + Max Load Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1103 + Maximum load factor in month + 480 + true + + + 1466 + 155 + 9 + 14 + Max Load Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1104 + Maximum load factor in year + 480 + true + + + 1467 + 155 + 9 + 15 + Min Load Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1105 + Minimum load factor + 480 + true + + + 1468 + 155 + 9 + 15 + Min Load Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1568 + Minimum load factor in hour + 480 + true + + + 1469 + 155 + 9 + 15 + Min Load Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1106 + Minimum load factor in day + 480 + true + + + 1470 + 155 + 9 + 15 + Min Load Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1107 + Minimum load factor in week + 480 + true + + + 1471 + 155 + 9 + 15 + Min Load Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1108 + Minimum load factor in month + 480 + true + + + 1472 + 155 + 9 + 15 + Min Load Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1109 + Minimum load factor in year + 480 + true + + + 1473 + 155 + 9 + 16 + Max Energy Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1190 + Penalty applied to violations of [Max Energy] and [Max Load Factor] constraints. + 480 + true + + + 1474 + 155 + 9 + 17 + Min Energy Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1191 + Penalty applied to violations of [Min Energy] and [Min Load Factor] constraints. + 480 + true + + + 1475 + 155 + 3 + 18 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) + 600000 + true + + + 1476 + 155 + 4 + 19 + Bid Quantity + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 34 + Quantity bid in band + 401 + true + + + 1477 + 155 + 4 + 20 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 33 + Value of energy in band + 401 + true + + + 1478 + 155 + 4 + 21 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Purchaser Load rating for application in RSI capacity calculations. + 40 + true + + + 1479 + 155 + 3 + 22 + Tariff + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 784 + Price paid by customers for load bid cleared + 2000000000 + true + + + 1480 + 155 + 3 + 23 + Demand Fn Slope + 33 + 0 + <=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 138 + Demand function slope + 400 + true + + + 1481 + 155 + 3 + 24 + Demand Fn Intercept + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 137 + Demand function vertical intercept + 400 + true + + + 1482 + 155 + 6 + 25 + Load Obligation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Load obligation for capacity reserves. + 404 + true + + + 1483 + 155 + 12 + 26 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1484 + 155 + 12 + 27 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1485 + 155 + 12 + 28 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1486 + 158 + 1 + 1 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of purchaser load taken at the node + 40 + true + + + 1487 + 159 + 1 + 1 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of installed units at the Node + 800000 + true + + + 1488 + 160 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 1489 + 161 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of purchaser demand + 400 + true + + + 1490 + 161 + 1 + 2 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of load obligation in the constraint + 404 + true + + + 1491 + 161 + 1 + 3 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of reserve provision + 2 + true + + + 1492 + 162 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of purchaser demand + true + + + 1493 + 162 + 1 + 2 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of load obligation + true + + + 1494 + 162 + 1 + 3 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of interruptible load provision + true + + + 1495 + 163 + 2 + 1 + Type + 0 + 1 + In (1,2,3,4,5,6,7,8) + 1;"Raise";2;"Lower";7;"Regulation";3;"Regulation Raise";4;"Regulation Lower";5;"Replacement";6;"Operational";8;"Inertia" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 927 + Reserve type + 3 + true + + + 1496 + 163 + 2 + 2 + Mutually Exclusive + 0 + 0 + In (0,1,2) + 0;"Auto";1;"Yes";2;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 998 + If generation capacity providing this reserve is mutually exclusive to other reserves + 82 + true + + + 1497 + 163 + 2 + 3 + Dynamic Risk + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 12 + If elements in the Generator Contingencies and Line Contingencies collections are considered for dynamic risk calculations + 2 + true + + + 1498 + 163 + 2 + 4 + Cost Allocation Model + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Runway";2;"Probabilistic Runway";3;"Prorata" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 11 + Reserve cost allocation method. + 2 + true + + + 1499 + 163 + 2 + 5 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 335 + Flag if the reserve is enabled + 800002 + true + + + 1500 + 163 + 2 + 6 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 301 + If the reserve is modelled in the LT Plan phase. + 800002 + true + + + 1501 + 163 + 2 + 7 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 302 + If the reserve is modelled in the MT Schedule phase. + 800002 + true + + + 1502 + 163 + 2 + 8 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 305 + If the reserve is modelled in the ST Schedule phase. + 800002 + true + + + 1503 + 163 + 2 + 9 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 810 + If the set of Generators providing the Reserve is optimized or always includes all members of the Reserve Generators collection. + 1000000002 + true + + + 1504 + 163 + 2 + 10 + Sharing Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1384 + If sharing of reserve across the transmission network is enabled. + 800000002 + true + + + 1505 + 163 + 2 + 11 + Sharing Losses Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1385 + If sharing of reserve accounts for transmission losses. + 800000002 + true + + + 1506 + 163 + 2 + 12 + Energy Usage For Replacement + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2145 + If Reserve energy usage is used for replacement reserve. + 40002 + true + + + 1507 + 163 + 2 + 13 + Prevent Replacement during MDT + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3051 + Whether to provide Replacement Reserves during a generator's Min Down Time. + 2 + true + + + 1508 + 163 + 3 + 14 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 489 + Minimum required reserve + 82 + true + + + 1509 + 163 + 3 + 15 + Static Risk + 1 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 1004 + Additional static risk over and above dynamic risk + 82 + true + + + 1510 + 163 + 3 + 16 + Timeframe + 5 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 788 + Timeframe in which the reserve is required + 2 + true + + + 1511 + 163 + 3 + 17 + Duration + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1476 + Time over which the required response must be maintained + 2 + true + + + 1512 + 163 + 3 + 18 + Max Provision + 1 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 443 + Maximum provision allowed for reserve class + 82 + true + + + 1513 + 163 + 3 + 19 + Max Sharing + 1 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2881 + Maximum reserve contribution from other regions/zones + 82 + true + + + 1514 + 163 + 3 + 20 + Risk Adjustment Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 707 + Proportion of contingency size (MW reserve/MW contingency) + 2 + true + + + 1515 + 163 + 3 + 21 + Energy Usage + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Percentage of reserve dispatched in energy market + 40002 + true + + + 1516 + 163 + 3 + 22 + VoRS + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 851 + Value of reserve shortage (-1 sets hard constraint) + 40000002 + true + + + 1517 + 163 + 3 + 23 + Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on Reserve Price for settlement + 4000002 + true + + + 1518 + 163 + 3 + 24 + Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on Reserve Price for settlement + 4000002 + true + + + 1519 + 163 + 3 + 25 + Cut-off Size + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 124 + The size below which a generator will not be considered for a share in reserve costs + 2 + true + + + 1520 + 163 + 3 + 26 + Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 612 + Price + 4000002 + true + + + 1521 + 163 + 12 + 27 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1522 + 163 + 12 + 28 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1523 + 163 + 12 + 29 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1524 + 166 + 1 + 1 + Initial Pump Load Raise Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1934 + Pump load raise reserve provision at time zero + 82 + true + + + 1525 + 166 + 1 + 2 + Initial Raise Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1935 + Generator raise reserve provision at time zero + 82 + true + + + 1526 + 166 + 1 + 3 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum spinning reserve response from generation adjustments + 82 + true + + + 1527 + 166 + 1 + 4 + Max Sync Cond Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 458 + Maximum synchronous condenser reserve response + 82 + true + + + 1528 + 166 + 1 + 5 + Max Pump Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 444 + Maximum dispatchable pump load reserve response + 82 + true + + + 1529 + 166 + 1 + 6 + Total Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2782 + Maximum reserve response from generation, pumped load and synchronous condenser adjustments + 82 + true + + + 1530 + 166 + 1 + 7 + Max Replacement + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 452 + Maximum replacement (non-spinning) reserve capability + 82 + true + + + 1531 + 166 + 1 + 8 + Max Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1318 + Maximum spinning reserve response as a proportion of generation capacity + 82 + true + + + 1532 + 166 + 1 + 9 + Max Sync Cond Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1319 + Maximum synchronous condenser reserve response as a proportion of generation capacity + 82 + true + + + 1533 + 166 + 1 + 10 + Max Pump Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1320 + Maximum dispatchable pump load reserve response as a proportion of pump load + 82 + true + + + 1534 + 166 + 1 + 11 + Max Replacement Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1321 + Maximum replacement (non-spinning) reserve capability as a proportion of generation capacity + 82 + true + + + 1535 + 166 + 1 + 12 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 489 + Minimum reserve provision when generator is available + 82 + true + + + 1536 + 166 + 1 + 13 + Min Spinning Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1376 + Minimum spinning reserve provision when units are generating + 82 + true + + + 1537 + 166 + 1 + 14 + Min Regulation Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1377 + Minimum regulation reserve provision when units are in the regulation range + 82 + true + + + 1538 + 166 + 1 + 15 + Min Replacement Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1742 + Minimum replacement reserve provision when units are off-line + 82 + true + + + 1539 + 166 + 1 + 16 + Effectiveness + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 162 + Estimated reserve effectiveness (MW/MW) + 82 + true + + + 1540 + 166 + 1 + 17 + Response Ratio + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 694 + Ratio that converts energy ramping to units comparable to reserve ramping units + 82 + true + + + 1541 + 166 + 1 + 18 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Reserve offer quantity in offer band + 400002 + true + + + 1542 + 166 + 1 + 19 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Reserve offer price in offer band + 400002 + true + + + 1543 + 166 + 1 + 20 + Sync Cond Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 773 + Synchronous condenser reserve offer price + 440002 + true + + + 1544 + 166 + 1 + 21 + Pump Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 644 + Dispatchable pump load reserve offer price + 8440002 + true + + + 1545 + 166 + 1 + 22 + Replacement Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1731 + Replacement reserve offer quantity in offer band + 400002 + true + + + 1546 + 166 + 1 + 23 + Replacement Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1732 + Replacement reserve offer price in offer band + 400002 + true + + + 1547 + 169 + 1 + 1 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum reserve response + 82 + true + + + 1548 + 170 + 1 + 1 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum reserve response from discharging generation adjustment + 82 + true + + + 1549 + 170 + 1 + 2 + Max Charge Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2385 + Maximum reserve response from charging load adjustment + 82 + true + + + 1550 + 170 + 1 + 3 + Max Replacement + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 452 + Maximum replacement (non-spinning) reserve capability + 82 + true + + + 1551 + 170 + 1 + 4 + Max Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1318 + Maximum reserve response as a proportion of generation capacity + 82 + true + + + 1552 + 170 + 1 + 5 + Max Charge Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2386 + Maximum dispatchable charging load reserve response as a proportion of charge load + 82 + true + + + 1553 + 170 + 1 + 6 + Max Replacement Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1321 + Maximum replacement (non-spinning) reserve capability as a proportion of generation capacity + 82 + true + + + 1554 + 170 + 1 + 7 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 489 + Minimum reserve provision when generator is available + 82 + true + + + 1555 + 170 + 1 + 8 + Min Spinning Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1376 + Minimum spinning reserve provision when units are generating + 82 + true + + + 1556 + 170 + 1 + 9 + Min Regulation Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1377 + Minimum regulation reserve provision when units are in the regulation range + 82 + true + + + 1557 + 170 + 1 + 10 + Min Replacement Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1742 + Minimum replacement reserve provision when units are off-line + 82 + true + + + 1558 + 170 + 1 + 11 + Effectiveness + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 162 + Estimated reserve effectiveness (MW/MW) + 82 + true + + + 1559 + 170 + 1 + 12 + Response Ratio + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 694 + Ratio that converts energy ramping to units comparable to reserve ramping units + 82 + true + + + 1560 + 170 + 1 + 13 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Reserve offer quantity in offer band + 400002 + true + + + 1561 + 170 + 1 + 14 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Reserve offer price in offer band + 400002 + true + + + 1562 + 170 + 1 + 15 + Charge Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2226 + Charging reserve offer price + 400002 + true + + + 1563 + 170 + 1 + 16 + Total Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2782 + Maximum reserve response from charge and discharge adjustments + 82 + true + + + 1564 + 172 + 1 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Interruptible load offer price + 400002 + true + + + 1565 + 172 + 1 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Interruptible load offer quantity + 400002 + true + + + 1566 + 173 + 1 + 1 + Cascading + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2229 + If the relationship between the reserves is cascading or not + 2 + true + + + 1567 + 174 + 1 + 1 + Load Risk + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 140 + Percentage of region's load at risk + 2 + true + + + 1568 + 174 + 1 + 2 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this region + 82 + true + + + 1569 + 175 + 1 + 1 + Load Risk + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 140 + Percentage of zone's load at risk + 2 + true + + + 1570 + 175 + 1 + 2 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this zone + 82 + false + + + 1571 + 176 + 1 + 1 + Max Sharing + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2881 + Maximum amount of reserve shared on the line + 82 + true + + + 1572 + 177 + 1 + 1 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Multiplier on line flow in the reference direction in setting the contingency size (Risk >= Coefficient * Flow Forward) + 2 + true + + + 1573 + 177 + 1 + 2 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Multiplier on line flow in the counter reference direction in setting the contingency size (Risk >= Coefficient * Flow Back) + 2 + true + + + 1574 + 179 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + 2 + true + + + 1575 + 179 + 1 + 2 + Sharing Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2883 + Coefficient of reserve shared from other regions/zones + 2 + true + + + 1576 + 179 + 1 + 3 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + 2 + true + + + 1577 + 179 + 1 + 4 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + 40000002 + true + + + 1578 + 180 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + true + + + 1579 + 180 + 1 + 2 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + true + + + 1580 + 180 + 1 + 3 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + true + + + 1581 + 181 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + true + + + 1582 + 181 + 1 + 2 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + true + + + 1583 + 181 + 1 + 3 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + true + + + 1584 + 182 + 2 + 1 + Perform EFC Evaluation + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2218 + Flag indicating if the EFC should be evaluated for the Reliability object. + true + + + 1585 + 182 + 2 + 2 + EFC Risk Metric + 0 + 0 + In (0,1) + 0;"LOLE Hours";1;"EENS" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2160 + Risk Metric for EFC evaluation. + true + + + 1586 + 182 + 2 + 3 + Max EFC Iterations + 0 + 20 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2216 + Maximum number of ST Schedule iterations for EFC evaluation. + true + + + 1587 + 182 + 2 + 4 + EFC Convergence Threshold + 12 + 1 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2217 + Convergence criteria for Reliability evaluation. + true + + + 1588 + 182 + 2 + 5 + EFC Initial Estimate + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2215 + Initial Firm Capacity Estimate for the set of generators associated with the Reliability object. + true + + + 1589 + 182 + 3 + 6 + Simplify Generator Properties + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2219 + Flag indicating if Generator properties should be ignored for the model. + true + + + 1590 + 182 + 3 + 7 + Skip Steps + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2220 + Indicates steps that should be skipped. + true + + + 1591 + 182 + 12 + 8 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to a solution. + true + + + 1592 + 182 + 12 + 9 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to a solution + true + + + 1593 + 182 + 12 + 10 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to a solution + true + + + 1594 + 188 + 2 + 1 + Is Physical + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1295 + If the contract quantity must be matched by physical generation/load. + 4000000 + true + + + 1595 + 188 + 3 + 2 + Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 650 + Contract quantity + 5 + true + + + 1596 + 188 + 3 + 3 + Floor Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 204 + Contract floor price + 4000001 + true + + + 1597 + 188 + 3 + 4 + Cap Price + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 53 + Contract cap price + 4000001 + true + + + 1598 + 191 + 1 + 1 + Generation Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator load that is settled in the contract + 40 + true + + + 1599 + 192 + 1 + 1 + Load Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of region load that is settled in the contract + 40 + true + + + 1600 + 194 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of contract + 40 + true + + + 1601 + 195 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of contract + 40 + true + + + 1602 + 197 + 1 + 1 + Demand Intercept + 33 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 139 + Demand function vertical intercept + 40 + true + + + 1603 + 197 + 1 + 2 + Demand Slope + 56 + 0 + <0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 142 + Long-run demand function slope + 40 + true + + + 1604 + 201 + 2 + 1 + Allow Negative Mark-ups + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 980 + Flag if negative calculated markups are allowed or truncated at zero + 4000040 + true + + + 1605 + 201 + 1 + 2 + RSI + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 712 + Residual Supply Index + 4000040 + true + + + 1606 + 201 + 1 + 3 + Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 344 + Lerner Index (P-C)/P + 4000040 + true + + + 1607 + 201 + 1 + 4 + Bounded Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 43 + Lerner Index (P-C)/P + 4000040 + true + + + 1608 + 201 + 1 + 5 + Intercept + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 323 + Intercept in LI equation + 4000040 + true + + + 1609 + 201 + 1 + 6 + RSI Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 714 + RSI Coefficient in LI equation + 4000040 + true + + + 1610 + 201 + 1 + 7 + RSI-squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 717 + RSI-squared Coefficient in LI equation + 4000040 + true + + + 1611 + 201 + 1 + 8 + Load Unhedged Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 361 + Load Unhedged Coefficient in LI equation + 4000040 + true + + + 1612 + 201 + 1 + 9 + RSI Inverse Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 716 + RSI Inverse Coefficient + 4000040 + true + + + 1613 + 201 + 1 + 10 + Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Load Coefficient in LI equation + 4000040 + true + + + 1614 + 201 + 1 + 11 + Load Capacity Ratio Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 351 + Load Capacity Ratio Coefficient in LI equation + 4000040 + true + + + 1615 + 201 + 1 + 12 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Capacity Factor Coefficient in LI equation + 4000040 + true + + + 1616 + 201 + 1 + 13 + Load Variation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 363 + Load Variation Coefficient in LI equation + 4000040 + true + + + 1617 + 201 + 1 + 14 + Summer Period Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 769 + Summer Period Coefficient in LI equation + 4000040 + true + + + 1618 + 201 + 1 + 15 + Peak Period Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 601 + Peak Period Coefficient + 4000040 + true + + + 1619 + 201 + 1 + 16 + Average Load + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 26 + Average Load used in computation of Load Variation + 4000040 + true + + + 1620 + 201 + 1 + 17 + Lerner Index t-statistic + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 347 + T-statistic applied in low/high LI scenarios. + 4000040 + true + + + 1621 + 201 + 1 + 18 + Lerner Index Std Dev + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 346 + Standard deviation applied in low/high LI scenarios. + 4000040 + true + + + 1622 + 201 + 1 + 19 + Lerner Index Calibration Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 345 + Calibration factor added to Lerner Index + 4000040 + true + + + 1623 + 201 + 1 + 20 + Min Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 484 + Lower bound on Lerner Index + 40000C0 + true + + + 1624 + 201 + 1 + 21 + Max Lerner Index + 0 + 0.9 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 434 + Upper bound on Lerner Index + 40000C0 + true + + + 1625 + 208 + 1 + 1 + Max Tranches + 0 + 10 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2162 + Number of tranches to be used for piece-wise linear approximation + true + + + 1626 + 208 + 1 + 2 + Tranche Points + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 3077 + Input tranche points used in the piece-wise linear approximation + true + + + 1627 + 211 + 1 + 1 + Capacity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3078 + Capacity scalar for the Generator in the firm capacity approximation + true + + + 1628 + 212 + 1 + 1 + Capacity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3078 + Capacity scalar for the Power2X object in the firm capacity approximation + true + + + 1629 + 213 + 1 + 1 + Capacity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3078 + Capacity scalar for the Battery in the firm capacity approximation + true + + + 1630 + 214 + 2 + 1 + Generator Settlement Model + 0 + 0 + In (0,1,2,3,4,5,6,7) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average";3;"Pay-as-Bid";4;"Uniform";5;"None";6;"Custom";7;"Most Expensive Dispatched" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 252 + Model used to determine price paid to generators. + 4000000 + true + + + 1631 + 214 + 2 + 2 + Load Settlement Model + 0 + 2 + In (0,1,2,3,4,5,6,7) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average";3;"Pay-as-Bid";4;"Uniform";5;"None";6;"Custom";7;"Most Expensive Dispatched" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 359 + Model used to determine price paid by loads. + 4000000 + true + + + 1632 + 214 + 2 + 3 + Uniform Pricing Pumped Storage Price Setting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 805 + If pumped storage can set the SMP + 4000000 + true + + + 1633 + 214 + 2 + 4 + Uniform Pricing Relax Transmission Limits + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 809 + If transmission limits are relaxed in calculating SMP + 4000000 + true + + + 1634 + 214 + 2 + 5 + Uniform Pricing Relax Generic Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 808 + If other generic constraints are relaxed in calculating SMP + 4000000 + true + + + 1635 + 214 + 2 + 6 + Uniform Pricing Relax Generator Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 807 + If generator non-technical constraints are relaxed in calculating SMP + 4000000 + true + + + 1636 + 214 + 2 + 7 + Uniform Pricing Relax Ancillary Services + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 806 + If ancillary service requirements are relaxed in calculating SMP + 4000000 + true + + + 1637 + 214 + 2 + 8 + Uplift Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 833 + If uplift is added to market prices + 4000000 + true + + + 1638 + 214 + 2 + 9 + Uplift Cost Basis + 0 + 1 + In (1,2) + 1;"Cost-based";2;"Bid-based" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 830 + Basis for calculating generation cost for uplift calculations (cost-based or bid-base) + 4000000 + true + + + 1639 + 214 + 2 + 10 + Uplift Compatibility + 0 + 1 + In (1,2,3) + 1;"CBP";2;"SEM";3;"Custom" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 829 + Uplift calculation compatibility (match to market being modelled) + 4000000 + true + + + 1640 + 214 + 2 + 11 + Uplift Alpha + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 827 + Alpha parameter for SEM-style uplift payment (weight on total generation revenues) + 4000000 + true + + + 1641 + 214 + 2 + 12 + Uplift Beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 828 + Beta parameter for SEM-style uplift payment (weight on squared deviations from shadow price) + 4000000 + true + + + 1642 + 214 + 2 + 13 + Uplift Delta + 0 + 5 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1080 + Delta parameter for SEM-style uplift payment (proportion of shadow total system revenues after uplift) + 4000000 + true + + + 1643 + 214 + 2 + 14 + Uplift Include Start Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 835 + If the uplift calculation should include recovery of start costs + 4000000 + true + + + 1644 + 214 + 2 + 15 + Uplift Include No-Load Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 834 + If the uplift calculation should include recovery of no-load costs + 4000000 + true + + + 1645 + 214 + 2 + 16 + Uplift Detect Active Min Stable Level Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 831 + If the uplift calculation should exclude units running at min stable level + 4000000 + true + + + 1646 + 214 + 2 + 17 + Uplift Detect Active Ramp Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 832 + If the uplift calculation should exclude generators on ramp limits + 4000000 + true + + + 1647 + 214 + 2 + 18 + Include in Marginal Unit + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1446 + Flag if the region is included in the Region Marginal Unit Diagnostic + 800 + true + + + 1648 + 214 + 2 + 19 + Include in Uplift + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1362 + If uplift is allowed in the period + 4000000 + true + + + 1649 + 214 + 2 + 20 + Include in Kron Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2699 + A flag indicating if the selected region should be included in the Kron-reduction algorithm + true + + + 1650 + 214 + 2 + 21 + Constraint Payments Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 97 + Constraint payments compatibility (match to market being modelled) + 4000000 + true + + + 1651 + 214 + 2 + 22 + Constraint Payments Compatibility + 0 + 1 + In (1,2) + 1;"CBP";2;"SEM" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 96 + Constraint payments compatibility (match to market being modeled) + 4000000 + true + + + 1652 + 214 + 2 + 23 + Load Metering Point + 0 + 0 + In (0,1) + 0;"Generator Terminal";1;"Sent Out" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 930 + Metering point for input loads in the region + 200000 + true + + + 1653 + 214 + 2 + 24 + Load Includes Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 353 + Flag if input load includes transmission losses + 200000 + true + + + 1654 + 214 + 2 + 25 + Aggregate Transmission + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2 + If transmission should be aggregated to the region level + 2000000 + true + + + 1655 + 214 + 2 + 26 + Pool Type + 0 + 0 + In (0,1) + 0;"Gross Pool";1;"Net Pool" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 610 + Gross or Net Pool for settlement of Financial Contracts in the Region. + 4000000 + true + + + 1656 + 214 + 2 + 27 + MLF Adjusts Offer Price + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1196 + If Generator [Marginal Loss Factor] adjusts [Offer Price]. + 600000 + true + + + 1657 + 214 + 2 + 28 + MLF Adjusts Bid Price + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1197 + If Purchaser [Marginal Loss Factor] adjusts [Bid Price]. + 200000 + true + + + 1658 + 214 + 2 + 29 + MLF Adjusts No Load Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1198 + If Generator [Marginal Loss Factor] adjusts [Offer No Load Cost]. + 200000 + true + + + 1659 + 214 + 2 + 30 + MLF Adjusts Start Cost + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1199 + If Generator [Marginal Loss Factor] adjusts [Start Cost]. + 200000 + true + + + 1660 + 214 + 2 + 31 + Include in Region Supply + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 304 + Flag if the region is included in the Region Supply Diagnostic + 800 + true + + + 1661 + 214 + 2 + 32 + Transmission Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1673 + If transmission line constraints are enabled in this region. + 80 + true + + + 1662 + 214 + 2 + 33 + Transmission Constraint Voltage Threshold + 4 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1674 + Voltage level at which thermal limits are modeled in this region. + 80 + true + + + 1663 + 214 + 2 + 34 + Transmission Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1675 + If interface constraints are enabled in this region. + 80 + true + + + 1664 + 214 + 2 + 35 + Enforce Transmission Limits On Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1676 + If lines in interfaces should have their limits enforced regardless of voltage in this region. + 80 + true + + + 1665 + 214 + 2 + 36 + Transmission Report Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1677 + If transmission reporting is enabled in this region. + true + + + 1666 + 214 + 2 + 37 + Transmission Report Voltage Threshold + 4 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1678 + Voltage level at which transmission reporting begins in this region. + true + + + 1667 + 214 + 2 + 38 + Transmission Report Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1679 + If all flows on lines selected interfaces are reported in this region. + true + + + 1668 + 214 + 2 + 39 + Transmission Report Injection and Load Nodes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1680 + If all injection and load buses (nodes) are reported on (regardless of voltage) in this region. + true + + + 1669 + 214 + 2 + 40 + Transmission Clustering Level + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2026 + Cluster nodes until this number of equivalent nodes remain (-1 means no clustering) + true + + + 1670 + 214 + 2 + 41 + Transmission Clustering Tolerance + 12 + 100 + Between 0 and 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2027 + Cluster nodes until this level of accuracy is reached (100% means no clustering) + true + + + 1671 + 214 + 2 + 42 + Report Objects in Region + 0 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1807 + If objects in the Region such as Nodes, Lines, Generators, etc should be reported. + true + + + 1672 + 214 + 2 + 43 + Wheeling Method + 0 + 1 + In (1,2) + 1;"Net";2;"Gross" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1777 + Export wheeling charge method + 800000000 + true + + + 1673 + 214 + 2 + 44 + Decomposition Group + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1972 + The decomposition group that the region belongs to. + true + + + 1674 + 214 + 2 + 45 + Capacity Expansion Group + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2676 + The capacity expansion group that the region belongs to for LT decomposition. + true + + + 1675 + 214 + 2 + 46 + Solution Detail + 0 + 1 + In (1,2,3) + 1;"SCUC";2;"SCED";3;"Static" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2066 + Solution detail to be used for the region + true + + + 1676 + 214 + 2 + 47 + Unserved Energy Method + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Greedy Response";2;"Min LOLE";3;"Min Residual Shortfall" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2136 + Unserved Energy Method to be used for the region + true + + + 1677 + 214 + 2 + 48 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1678 + 214 + 2 + 49 + Report Marginal Resources + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2623 + If marginal resources are reported for the region in the solution + true + + + 1679 + 214 + 3 + 50 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Region is included in the simulation. + 800000 + true + + + 1680 + 214 + 3 + 51 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + true + true + true + 1 + 349 + Load + 100001 + true + + + 1681 + 214 + 3 + 52 + Load Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 358 + Scale factor for raw load figures (to convert as required to nodal load) + 100000 + true + + + 1682 + 214 + 3 + 53 + Fixed Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load + 100000 + true + + + 1683 + 214 + 3 + 54 + Fixed Generation + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 198 + Fixed (or embedded) generation + 100000 + true + + + 1684 + 214 + 3 + 55 + VoLL + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 847 + Value of lost load (VoLL) + 40000001 + true + + + 1685 + 214 + 3 + 56 + Price of Dump Energy + 33 + -1000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 616 + Price of dump energy per MWh (1=hard constraint) + 40000001 + true + + + 1686 + 214 + 3 + 57 + Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on generator offer prices + 4000000 + true + + + 1687 + 214 + 3 + 58 + Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on generator offer prices + 4000000 + true + + + 1688 + 214 + 3 + 59 + Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 612 + Price + 4000000 + true + + + 1689 + 214 + 3 + 60 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge on exports from the region + 2000000000 + true + + + 1690 + 214 + 3 + 61 + Fixed Cost Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 195 + This parameter is a percentage to represent the amount of fixed cost considered in the recovery algorithm (but PLEXOS will still report the full amount of fixed costs on each generator/line) + 8040 + true + + + 1691 + 214 + 3 + 62 + Elasticity + 56 + -0.2 + <0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1273 + Price elasticity of demand + 40 + true + + + 1692 + 214 + 3 + 63 + Reference Load + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 670 + Reference load for distributed load slack model + 800000000 + true + + + 1693 + 214 + 3 + 64 + Historical Peak Demand + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3092 + Historical demand data to be used as part of the Interruption Sharing process. + 800000000 + true + + + 1694 + 214 + 3 + 65 + Internal VoLL + 33 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 325 + Region specific value of lost load + 40000001 + true + + + 1695 + 214 + 3 + 66 + Internal VoLL Level + 3 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2077 + Level of unserved energy VoLL applies to + 40000001 + true + + + 1696 + 214 + 3 + 67 + Unmapped Resource Injection + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3060 + Regional unmapped resource injection calculated from MT phase that would be passed onto ST phase + 800000000 + false + + + 1697 + 214 + 9 + 68 + Max Unserved Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2014 + Maximum unserved energy + 80 + true + + + 1698 + 214 + 9 + 68 + Max Unserved Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2898 + Maximum unserved energy in hour + 80 + true + + + 1699 + 214 + 9 + 68 + Max Unserved Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2899 + Maximum unserved energy in day + 80 + true + + + 1700 + 214 + 9 + 68 + Max Unserved Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2900 + Maximum unserved energy in week + 80 + true + + + 1701 + 214 + 9 + 68 + Max Unserved Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2901 + Maximum unserved energy in month + 80 + true + + + 1702 + 214 + 9 + 68 + Max Unserved Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2902 + Maximum unserved energy in year + 80 + true + + + 1703 + 214 + 9 + 69 + Max Unserved Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2903 + Maximum proportion of energy unserved + 80 + true + + + 1704 + 214 + 9 + 69 + Max Unserved Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2904 + Maximum proportion of energy unserved in hour + 80 + true + + + 1705 + 214 + 9 + 69 + Max Unserved Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2905 + Maximum proportion of energy unserved in day + 80 + true + + + 1706 + 214 + 9 + 69 + Max Unserved Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2906 + Maximum proportion of energy unserved in week + 80 + true + + + 1707 + 214 + 9 + 69 + Max Unserved Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2907 + Maximum proportion of energy unserved in month + 80 + true + + + 1708 + 214 + 9 + 69 + Max Unserved Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2908 + Maximum proportion of energy unserved in year + 80 + true + + + 1709 + 214 + 9 + 70 + Max Dump Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2909 + Maximum dump energy + 80 + true + + + 1710 + 214 + 9 + 70 + Max Dump Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2910 + Maximum dump energy in hour + 80 + true + + + 1711 + 214 + 9 + 70 + Max Dump Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2911 + Maximum dump energy in day + 80 + true + + + 1712 + 214 + 9 + 70 + Max Dump Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2912 + Maximum dump energy in week + 80 + true + + + 1713 + 214 + 9 + 70 + Max Dump Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2913 + Maximum dump energy in month + 80 + true + + + 1714 + 214 + 9 + 70 + Max Dump Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2914 + Maximum dump energy in year + 80 + true + + + 1715 + 214 + 9 + 71 + Max Dump Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2915 + Maximum proportion of energy dumped + 80 + true + + + 1716 + 214 + 9 + 71 + Max Dump Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2916 + Maximum proportion of energy dumped in hour + 80 + true + + + 1717 + 214 + 9 + 71 + Max Dump Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2917 + Maximum proportion of energy dumped in day + 80 + true + + + 1718 + 214 + 9 + 71 + Max Dump Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2918 + Maximum proportion of energy dumped in week + 80 + true + + + 1719 + 214 + 9 + 71 + Max Dump Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2919 + Maximum proportion of energy dumped in month + 80 + true + + + 1720 + 214 + 9 + 71 + Max Dump Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2920 + Maximum proportion of energy dumped in year + 80 + true + + + 1721 + 214 + 9 + 72 + Max Generation Curtailed + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2922 + Maximum generation curtailed + 80 + true + + + 1722 + 214 + 9 + 72 + Max Generation Curtailed Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2923 + Maximum generation curtailed in hour + 80 + true + + + 1723 + 214 + 9 + 72 + Max Generation Curtailed Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2924 + Maximum generation curtailed in day + 80 + true + + + 1724 + 214 + 9 + 72 + Max Generation Curtailed Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2925 + Maximum generation curtailed in week + 80 + true + + + 1725 + 214 + 9 + 72 + Max Generation Curtailed Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2926 + Maximum generation curtailed in month + 80 + true + + + 1726 + 214 + 9 + 72 + Max Generation Curtailed Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2927 + Maximum generation curtailed in year + 80 + true + + + 1727 + 214 + 9 + 73 + Max Generation Curtailment Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2928 + Maximum proportion of generation curtailed + 80 + true + + + 1728 + 214 + 9 + 73 + Max Generation Curtailment Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2929 + Maximum proportion of generation curtailed in hour + 80 + true + + + 1729 + 214 + 9 + 73 + Max Generation Curtailment Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2930 + Maximum proportion of generation curtailed in day + 80 + true + + + 1730 + 214 + 9 + 73 + Max Generation Curtailment Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2931 + Maximum proportion of generation curtailed in week + 80 + true + + + 1731 + 214 + 9 + 73 + Max Generation Curtailment Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2932 + Maximum proportion of generation curtailed in month + 80 + true + + + 1732 + 214 + 9 + 73 + Max Generation Curtailment Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2933 + Maximum proportion of generation curtailed in year + 80 + true + + + 1733 + 214 + 4 + 74 + DSP Bid Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 156 + Bid quantity for demand-side participation + 400400 + true + + + 1734 + 214 + 4 + 75 + DSP Bid Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 155 + Bid price for demand-side participation + 400400 + true + + + 1735 + 214 + 4 + 76 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the Region's Generators are included in Competition modelling. + 40 + true + + + 1736 + 214 + 7 + 77 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1737 + 214 + 7 + 78 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance factor + 1000000 + true + + + 1738 + 214 + 6 + 79 + Peak Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 600 + Indicates periods that include the peak load + 100008 + true + + + 1739 + 214 + 6 + 80 + Firm Capacity Incr + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1959 + Firm Capacity not explicitly modeled that should be included in reserve margin calculations + 1000000 + true + + + 1740 + 214 + 6 + 81 + Firm Capacity Values + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2968 + Firm capacity values corresponding to the Capacity Points of connected Firm Capacity Groups + true + + + 1741 + 214 + 8 + 82 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 479 + Minimum capacity reserves allowed + 8C + true + + + 1742 + 214 + 8 + 83 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 421 + Maximum capacity reserves allowed + 8C + true + + + 1743 + 214 + 8 + 84 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 1744 + 214 + 8 + 85 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 1745 + 214 + 8 + 86 + Min Native Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1293 + Minimum capacity reserves supplied only by sources in the Region + 88 + true + + + 1746 + 214 + 8 + 87 + Min Native Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1294 + Minimum capacity reserve margin supplied only by sources in the Region + 88 + true + + + 1747 + 214 + 8 + 88 + Seasonal Reserve Constraint Active + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2984 + Specifies when a seasonal capacity reserve is active + 8C + true + + + 1748 + 214 + 8 + 89 + Capacity Shortage Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 69 + Penalty for a shortage of capacity reserves + 40000008 + true + + + 1749 + 214 + 8 + 90 + Capacity Excess Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 57 + Penalty for an excess of capacity reserves + 40000008 + true + + + 1750 + 214 + 8 + 91 + Capacity Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1752 + Cap on the capacity price + 4000008 + true + + + 1751 + 214 + 8 + 92 + Capacity Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1753 + Floor on the capacity price + 4000008 + true + + + 1752 + 214 + 8 + 93 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this region + 88 + true + + + 1753 + 214 + 12 + 94 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1754 + 214 + 12 + 95 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1755 + 214 + 12 + 96 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1756 + 220 + 1 + 1 + Max Production + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 949 + Maximum total emission production by emission producers in the region + 2000 + true + + + 1757 + 220 + 1 + 1 + Max Production Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum total emission production by emission producers in the region per hour + 2000 + true + + + 1758 + 220 + 1 + 1 + Max Production Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum total emission production by emission producers in the region per day + 2000 + true + + + 1759 + 220 + 1 + 1 + Max Production Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum total emission production by emission producers in the region per week + 2000 + true + + + 1760 + 220 + 1 + 1 + Max Production Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum total emission production by emission producers in the region per month + 2000 + true + + + 1761 + 220 + 1 + 1 + Max Production Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum total emission production by emission producers in the region per year + 2000 + true + + + 1762 + 224 + 1 + 1 + Capacity Points + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2967 + Capacity points used for approximating the firm capacity surface + true + + + 1763 + 225 + 1 + 1 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for exports to the region + 2000000000 + true + + + 1764 + 225 + 1 + 2 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the region + true + + + 1765 + 225 + 1 + 3 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports + true + + + 1766 + 225 + 1 + 4 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 429 + Maximum flow allowed between the regions + 4 + true + + + 1767 + 225 + 1 + 5 + Firm Exports + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2700 + The firm exports from the parent region to the child regions for Capacity Expansion Decomposition + 4 + true + + + 1768 + 243 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of region load + 100000 + true + + + 1769 + 243 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of region load + 100000 + true + + + 1770 + 243 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of region generation + true + + + 1771 + 243 + 3 + 4 + Imports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2944 + Coefficient of region imports + true + + + 1772 + 243 + 3 + 5 + Exports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2945 + Coefficient of region exports + true + + + 1773 + 243 + 3 + 6 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the region + 1000000004 + true + + + 1774 + 243 + 3 + 7 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1775 + 243 + 3 + 8 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1776 + 243 + 3 + 9 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1777 + 243 + 3 + 10 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 1778 + 243 + 6 + 11 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + 4 + true + + + 1779 + 243 + 6 + 12 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + 4 + true + + + 1780 + 243 + 6 + 13 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + 100004 + true + + + 1781 + 243 + 6 + 14 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + C + true + + + 1782 + 243 + 6 + 15 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 1783 + 243 + 6 + 16 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 1784 + 243 + 8 + 17 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + C + true + + + 1785 + 243 + 8 + 18 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + C + true + + + 1786 + 243 + 8 + 19 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + 8008 + true + + + 1787 + 243 + 8 + 20 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 1788 + 243 + 8 + 21 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 1789 + 243 + 8 + 22 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 1790 + 243 + 8 + 23 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 1791 + 244 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of region load + true + + + 1792 + 244 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of region load + true + + + 1793 + 244 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of region generation + true + + + 1794 + 244 + 3 + 4 + Imports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2944 + Coefficient of region imports + true + + + 1795 + 244 + 3 + 5 + Exports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2945 + Coefficient of region exports + true + + + 1796 + 244 + 3 + 6 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the region + true + + + 1797 + 244 + 3 + 7 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 1798 + 244 + 3 + 8 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1799 + 244 + 3 + 9 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1800 + 244 + 3 + 10 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 1801 + 244 + 6 + 11 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + true + + + 1802 + 244 + 6 + 12 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + true + + + 1803 + 244 + 6 + 13 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + true + + + 1804 + 244 + 6 + 14 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + true + + + 1805 + 244 + 6 + 15 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 1806 + 244 + 6 + 16 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 1807 + 244 + 8 + 17 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + true + + + 1808 + 244 + 8 + 18 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + true + + + 1809 + 244 + 8 + 19 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + true + + + 1810 + 244 + 8 + 20 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 1811 + 244 + 8 + 21 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 1812 + 244 + 8 + 22 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 1813 + 244 + 8 + 23 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 1814 + 245 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of region demand in condition + true + + + 1815 + 245 + 1 + 2 + Available Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2738 + Coefficient of region available capacity reserves in condition + true + + + 1816 + 245 + 1 + 3 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of region capacity reserves in condition + true + + + 1817 + 245 + 1 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 1818 + 245 + 1 + 5 + Price Coefficient + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1380 + Coefficient of region price in condition + true + + + 1819 + 246 + 3 + 1 + ORDC VOLL + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2678 + Value of Lost Load for ORDC calculations + true + + + 1820 + 246 + 3 + 2 + ORDC MCL + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2679 + Minimum Contingency Level for ORDC calculations + true + + + 1821 + 246 + 3 + 3 + ORDC Schedule Mu + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2680 + Average of the forecasted hourly reserve value for ORDC calculations + true + + + 1822 + 246 + 3 + 4 + ORDC Schedule Sigma + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2681 + Standard deviation of the forecasted hourly reserve value for ORDC calculations + true + + + 1823 + 246 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1824 + 246 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1825 + 246 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1826 + 250 + 1 + 1 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the regions in the pool + true + + + 1827 + 250 + 1 + 2 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports for regions in the Pool + true + + + 1828 + 253 + 2 + 1 + Load Settlement Model + 0 + 0 + In (0,1,2) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 359 + Model used to determine energy prices reported in the zone. + 4000000 + true + + + 1829 + 253 + 2 + 2 + Wheeling Method + 0 + 1 + In (1,2) + 1;"Net";2;"Gross" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1777 + Export wheeling charge method + 800000000 + true + + + 1830 + 253 + 2 + 3 + Transmission Clustering Level + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2026 + Cluster nodes until this number of equivalent nodes remain (-1 means no clustering) + true + + + 1831 + 253 + 2 + 4 + Transmission Clustering Tolerance + 12 + 100 + Between 0 and 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2027 + Cluster nodes until this level of accuracy is reached (100% means no clustering) + true + + + 1832 + 253 + 2 + 5 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1833 + 253 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Zone is in service + 800000 + true + + + 1834 + 253 + 3 + 7 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + true + true + true + 1 + 349 + Load + 100000 + true + + + 1835 + 253 + 3 + 8 + Load Participation Factor + 0 + 0 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of region load that occurs in the zone + 100000 + true + + + 1836 + 253 + 3 + 9 + Load Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 358 + Scale factor for input [Load] + 100000 + true + + + 1837 + 253 + 3 + 10 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge on exports from the zone + 2000000000 + true + + + 1838 + 253 + 9 + 11 + Max Unserved Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2014 + Maximum unserved energy + 80 + true + + + 1839 + 253 + 9 + 11 + Max Unserved Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2898 + Maximum unserved energy in hour + 80 + true + + + 1840 + 253 + 9 + 11 + Max Unserved Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2899 + Maximum unserved energy in day + 80 + true + + + 1841 + 253 + 9 + 11 + Max Unserved Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2900 + Maximum unserved energy in week + 80 + true + + + 1842 + 253 + 9 + 11 + Max Unserved Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2901 + Maximum unserved energy in month + 80 + true + + + 1843 + 253 + 9 + 11 + Max Unserved Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2902 + Maximum unserved energy in year + 80 + true + + + 1844 + 253 + 9 + 12 + Max Unserved Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2903 + Maximum proportion of energy unserved + 80 + true + + + 1845 + 253 + 9 + 12 + Max Unserved Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2904 + Maximum proportion of energy unserved in hour + 80 + true + + + 1846 + 253 + 9 + 12 + Max Unserved Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2905 + Maximum proportion of energy unserved in day + 80 + true + + + 1847 + 253 + 9 + 12 + Max Unserved Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2906 + Maximum proportion of energy unserved in week + 80 + true + + + 1848 + 253 + 9 + 12 + Max Unserved Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2907 + Maximum proportion of energy unserved in month + 80 + true + + + 1849 + 253 + 9 + 12 + Max Unserved Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2908 + Maximum proportion of energy unserved in year + 80 + true + + + 1850 + 253 + 9 + 13 + Max Dump Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2909 + Maximum dump energy + 80 + true + + + 1851 + 253 + 9 + 13 + Max Dump Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2910 + Maximum dump energy in hour + 80 + true + + + 1852 + 253 + 9 + 13 + Max Dump Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2911 + Maximum dump energy in day + 80 + true + + + 1853 + 253 + 9 + 13 + Max Dump Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2912 + Maximum dump energy in week + 80 + true + + + 1854 + 253 + 9 + 13 + Max Dump Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2913 + Maximum dump energy in month + 80 + true + + + 1855 + 253 + 9 + 13 + Max Dump Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2914 + Maximum dump energy in year + 80 + true + + + 1856 + 253 + 9 + 14 + Max Dump Energy Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2915 + Maximum proportion of energy dumped + 80 + true + + + 1857 + 253 + 9 + 14 + Max Dump Energy Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2916 + Maximum proportion of energy dumped in hour + 80 + true + + + 1858 + 253 + 9 + 14 + Max Dump Energy Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2917 + Maximum proportion of energy dumped in day + 80 + true + + + 1859 + 253 + 9 + 14 + Max Dump Energy Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2918 + Maximum proportion of energy dumped in week + 80 + true + + + 1860 + 253 + 9 + 14 + Max Dump Energy Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2919 + Maximum proportion of energy dumped in month + 80 + true + + + 1861 + 253 + 9 + 14 + Max Dump Energy Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2920 + Maximum proportion of energy dumped in year + 80 + true + + + 1862 + 253 + 9 + 15 + Max Generation Curtailed + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2922 + Maximum generation curtailed + 80 + true + + + 1863 + 253 + 9 + 15 + Max Generation Curtailed Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2923 + Maximum generation curtailed in hour + 80 + true + + + 1864 + 253 + 9 + 15 + Max Generation Curtailed Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2924 + Maximum generation curtailed in day + 80 + true + + + 1865 + 253 + 9 + 15 + Max Generation Curtailed Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2925 + Maximum generation curtailed in week + 80 + true + + + 1866 + 253 + 9 + 15 + Max Generation Curtailed Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2926 + Maximum generation curtailed in month + 80 + true + + + 1867 + 253 + 9 + 15 + Max Generation Curtailed Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2927 + Maximum generation curtailed in year + 80 + true + + + 1868 + 253 + 9 + 16 + Max Generation Curtailment Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2928 + Maximum proportion of generation curtailed + 80 + true + + + 1869 + 253 + 9 + 16 + Max Generation Curtailment Factor Hour + 12 + 100 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2929 + Maximum proportion of generation curtailed in hour + 80 + true + + + 1870 + 253 + 9 + 16 + Max Generation Curtailment Factor Day + 12 + 100 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2930 + Maximum proportion of generation curtailed in day + 80 + true + + + 1871 + 253 + 9 + 16 + Max Generation Curtailment Factor Week + 12 + 100 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2931 + Maximum proportion of generation curtailed in week + 80 + true + + + 1872 + 253 + 9 + 16 + Max Generation Curtailment Factor Month + 12 + 100 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2932 + Maximum proportion of generation curtailed in month + 80 + true + + + 1873 + 253 + 9 + 16 + Max Generation Curtailment Factor Year + 12 + 100 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2933 + Maximum proportion of generation curtailed in year + 80 + true + + + 1874 + 253 + 7 + 17 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1875 + 253 + 7 + 18 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance factor + 1000000 + true + + + 1876 + 253 + 6 + 19 + Peak Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 600 + Indicates periods that include the peak load + 100008 + true + + + 1877 + 253 + 6 + 20 + Firm Capacity Incr + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1959 + Firm Capacity not explicitly modeled that should be included in reserve margin calculations + 1000000 + true + + + 1878 + 253 + 6 + 21 + Firm Capacity Values + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2968 + Firm capacity values corresponding to the Capacity Points of connected Firm Capacity Groups + true + + + 1879 + 253 + 8 + 22 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 479 + Minimum capacity reserves allowed + 8C + true + + + 1880 + 253 + 8 + 23 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 421 + Maximum capacity reserves allowed + 8C + true + + + 1881 + 253 + 8 + 24 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 1882 + 253 + 8 + 25 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 1883 + 253 + 8 + 26 + Min Native Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1293 + Minimum capacity reserves supplied only by sources in the Zone + 88 + true + + + 1884 + 253 + 8 + 27 + Min Native Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1294 + Minimum capacity reserve margin supplied only by sources in the Zone + 88 + true + + + 1885 + 253 + 8 + 28 + Seasonal Reserve Constraint Active + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2984 + Specifies when a seasonal capacity reserve is active + 8C + true + + + 1886 + 253 + 8 + 29 + Capacity Shortage Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 69 + Penalty for a shortage of capacity reserves + 40000008 + true + + + 1887 + 253 + 8 + 30 + Capacity Excess Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 57 + Penalty for an excess of capacity reserves + 40000008 + true + + + 1888 + 253 + 8 + 31 + Capacity Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1752 + Cap on the capacity price + 4000008 + true + + + 1889 + 253 + 8 + 32 + Capacity Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1753 + Floor on the capacity price + 4000008 + true + + + 1890 + 253 + 8 + 33 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this zone + 88 + true + + + 1891 + 253 + 12 + 34 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1892 + 253 + 12 + 35 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1893 + 253 + 12 + 36 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1894 + 267 + 1 + 1 + Capacity Points + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2967 + Capacity points used for approximating the firm capacity surface + true + + + 1895 + 269 + 1 + 1 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for exports to the zone + 2000000000 + true + + + 1896 + 269 + 1 + 2 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the parent zone to child zone. + true + + + 1897 + 269 + 1 + 3 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports from parent zone to child zone. + true + + + 1898 + 269 + 1 + 4 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 429 + Maximum flow allowed between the zones + 4 + true + + + 1899 + 295 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of zone load + 100000 + true + + + 1900 + 295 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of zone load + 100000 + true + + + 1901 + 295 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of zone generation + true + + + 1902 + 295 + 3 + 4 + Imports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2944 + Coefficient of zone imports + true + + + 1903 + 295 + 3 + 5 + Exports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2945 + Coefficient of zone exports + true + + + 1904 + 295 + 3 + 6 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the zone + 1000000004 + true + + + 1905 + 295 + 3 + 7 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1906 + 295 + 3 + 8 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 1907 + 295 + 3 + 9 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1908 + 295 + 3 + 10 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 1909 + 295 + 6 + 11 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + 4 + true + + + 1910 + 295 + 6 + 12 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + C + true + + + 1911 + 295 + 6 + 13 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + C + true + + + 1912 + 295 + 6 + 14 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + C + true + + + 1913 + 295 + 6 + 15 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 1914 + 295 + 6 + 16 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 1915 + 295 + 8 + 17 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + C + true + + + 1916 + 295 + 8 + 18 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + C + true + + + 1917 + 295 + 8 + 19 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + 8008 + true + + + 1918 + 295 + 8 + 20 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity was built + 8 + true + + + 1919 + 295 + 8 + 21 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 1920 + 295 + 8 + 22 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 1921 + 295 + 8 + 23 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 1922 + 296 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of zone load + true + + + 1923 + 296 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of zone load + true + + + 1924 + 296 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of zone generation + true + + + 1925 + 296 + 3 + 4 + Imports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2944 + Coefficient of zone imports + true + + + 1926 + 296 + 3 + 5 + Exports Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2945 + Coefficient of zone exports + true + + + 1927 + 296 + 3 + 6 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the zone + true + + + 1928 + 296 + 3 + 7 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 1929 + 296 + 3 + 8 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1930 + 296 + 3 + 9 + Generation Curtailed Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2935 + Coefficient of generation curtailed + true + + + 1931 + 296 + 3 + 10 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 1932 + 296 + 6 + 11 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + true + + + 1933 + 296 + 6 + 12 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + true + + + 1934 + 296 + 6 + 13 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + true + + + 1935 + 296 + 6 + 14 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + true + + + 1936 + 296 + 6 + 15 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 1937 + 296 + 6 + 16 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 1938 + 296 + 8 + 17 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + true + + + 1939 + 296 + 8 + 18 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + true + + + 1940 + 296 + 8 + 19 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + true + + + 1941 + 296 + 8 + 20 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 1942 + 296 + 8 + 21 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 1943 + 296 + 8 + 22 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 1944 + 296 + 8 + 23 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 1945 + 297 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of zone demand in condition + true + + + 1946 + 297 + 1 + 2 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of zone capacity reserves in condition + true + + + 1947 + 297 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 1948 + 298 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the node must be reported regardless of voltage + 800000 + true + + + 1949 + 298 + 2 + 2 + Is Slack Bus + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 339 + Set if this is the slack bus + 800000000 + true + + + 1950 + 298 + 2 + 3 + Is Unmapped Resource Bus + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3037 + Set if this is the unmapped resource bus + 800000000 + true + + + 1951 + 298 + 2 + 4 + Allow Dump Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 9 + Model Node [Dump Energy] in the mathematical program. + 40000000 + true + + + 1952 + 298 + 2 + 5 + Allow Unserved Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 10 + Model Node [Unserved Energy] in the mathematical program. + 40000000 + true + + + 1953 + 298 + 2 + 6 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1954 + 298 + 2 + 7 + Always Calculate PTDF + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2836 + Flag if the PTDFs associated with the node and transmission constraints will be calculated + 800000 + true + + + 1955 + 298 + 2 + 8 + Enable ATC Calculation + 13 + 0 + In (0,1,2,3) + 0;"None";1;"Generation ATC";2;"Load ATC";3;"Both" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3010 + Flag if ATC calculation should be enabled for the node. + 800000 + true + + + 1956 + 298 + 3 + 9 + Max Unserved Energy + 1 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2014 + Maximum allowed Unserved Energy at the node. + 40000000 + true + + + 1957 + 298 + 3 + 10 + Reference Load + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 670 + Reference load for distributed load slack model + 800000000 + true + + + 1958 + 298 + 3 + 11 + Reference Generation + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 669 + Reference generation from the network case file + 800000000 + true + + + 1959 + 298 + 3 + 12 + External Nodal Injection + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2708 + External nodal injection calculated from MT phase for Kron-reduction algorithm in ST phase + 800000000 + false + + + 1960 + 298 + 3 + 13 + External Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2715 + Regional price of the node calculated from MT phase for Kron-reduction algorithm in ST phase + 4000000 + false + + + 1961 + 298 + 3 + 14 + Voltage + 4 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 848 + Voltage + 800000000 + true + + + 1962 + 298 + 3 + 15 + AC Voltage Magnitude + 10 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2812 + The per-unit voltage magnitude of a node, as determined by an AC power flow solution + 800000000 + true + + + 1963 + 298 + 3 + 16 + AC Voltage Magnitude Target + 10 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2955 + The per-unit voltage magnitude target for the node, or the one being remotely regulated + 800000000 + false + + + 1964 + 298 + 3 + 17 + AC Reactive Power + 122 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2813 + The reactive power injected or withdrawn from a node, as determined by an AC power flow solution + 800000000 + true + + + 1965 + 298 + 3 + 18 + AC Reactive Load + 122 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2956 + The reactive load + 800000000 + false + + + 1966 + 298 + 3 + 19 + AC Shunt Reactive Power Minimum + 122 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2957 + The minimum reactive power available from all shunt devices located at the node + 800000000 + false + + + 1967 + 298 + 3 + 20 + AC Shunt Reactive Power Maximum + 122 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2958 + The maximum reactive power available from all shunt devices located at the node + 800000000 + false + + + 1968 + 298 + 3 + 21 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if bus is in service + 800000 + true + + + 1969 + 298 + 3 + 22 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of region load that occurs at the node + 100000 + true + + + 1970 + 298 + 3 + 23 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + true + 1 + 349 + Load + 100000 + true + + + 1971 + 298 + 3 + 24 + Fixed Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed load at the node + 100000 + true + + + 1972 + 298 + 3 + 25 + Fixed Generation + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 198 + Fixed (or embedded) generation at the node + 100000 + true + + + 1973 + 298 + 3 + 26 + Max Net Injection + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 440 + Maximum net injection + 80 + true + + + 1974 + 298 + 3 + 27 + Max Net Offtake + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 441 + Maximum net offtake + 80 + true + + + 1975 + 298 + 3 + 28 + Rating + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 665 + Maximum power flow through the Node + 80 + true + + + 1976 + 298 + 4 + 29 + DSP Bid Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 156 + Demand-side participation bid quantity + 400400 + true + + + 1977 + 298 + 4 + 30 + DSP Bid Ratio + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 157 + Demand-side participation quantity as a percentage of nodal load + 400400 + true + + + 1978 + 298 + 4 + 31 + DSP Bid Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 155 + Demand-side participation bid price + 400400 + true + + + 1979 + 298 + 3 + 32 + Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 612 + Locational marginal price + 4000000 + true + + + 1980 + 298 + 7 + 33 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1981 + 298 + 7 + 34 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance biasing factor + 1000000 + true + + + 1982 + 298 + 6 + 35 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves + 1000000 + true + + + 1983 + 298 + 6 + 36 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin + 1000000 + true + + + 1984 + 298 + 12 + 37 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1985 + 298 + 12 + 38 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1986 + 298 + 12 + 39 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1987 + 301 + 3 + 1 + Emission Charge + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2999 + Emission charge for emissions consumed at the node in a virtual emission network + true + + + 1988 + 301 + 3 + 2 + Max Emissions + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3000 + Maximum amount of emissions consumed at the node in a virtual emission network + true + + + 1989 + 306 + 1 + 1 + Pricing Weight + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1651 + Wheeling charge for exports to the zone + 2000000000 + true + + + 1990 + 307 + 1 + 1 + Load Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2004 + Percentage share of load ownership + 40 + true + + + 1991 + 308 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 1992 + 308 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Electric Load for each unit of consumption + true + + + 1993 + 308 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Electric Generation for each unit of production + true + + + 1994 + 308 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Electric Load for each unit operating + 1000000000 + true + + + 1995 + 308 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Electric Load for each installed unit + 4 + true + + + 1996 + 312 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node load + 100000 + true + + + 1997 + 312 + 1 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of node generation + true + + + 1998 + 312 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1999 + 312 + 1 + 4 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 2000 + 312 + 1 + 5 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 2001 + 312 + 1 + 6 + Net Injection Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 912 + Coefficient of node net injection + true + + + 2002 + 312 + 1 + 7 + Phase Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 913 + Coefficient of node phase angle + 800000000 + true + + + 2003 + 312 + 1 + 8 + MLF Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 517 + Coefficient of marginal loss factor + 200000 + true + + + 2004 + 313 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node load + true + + + 2005 + 313 + 1 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of node generation + true + + + 2006 + 313 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 2007 + 313 + 1 + 4 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 2008 + 313 + 1 + 5 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 2009 + 313 + 1 + 6 + Net Injection Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 912 + Coefficient of node net injection + true + + + 2010 + 313 + 1 + 7 + Phase Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 913 + Coefficient of node phase angle + true + + + 2011 + 313 + 1 + 8 + MLF Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 517 + Coefficient of marginal loss factor + true + + + 2012 + 314 + 1 + 1 + Net Injection Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1547 + Coefficient of Decision Variable in Node net injection definition equation + true + + + 2013 + 315 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node demand in condition + true + + + 2014 + 315 + 1 + 2 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 2015 + 317 + 2 + 1 + Is Scalable + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2270 + Indicates if the load is scalable or flat load. + true + + + 2016 + 317 + 3 + 2 + Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 349 + Load at a node + 100000 + true + + + 2017 + 317 + 3 + 3 + Load Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of company load that occurs at a node + 100000 + true + + + 2018 + 317 + 12 + 4 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2019 + 317 + 12 + 5 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2020 + 317 + 12 + 6 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2021 + 322 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the Line must be reported regardless of Transmission [Report Voltage Threshold]. + 800000 + true + + + 2022 + 322 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Line for the generation of outages + 101000000 + true + + + 2023 + 322 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2024 + 322 + 2 + 4 + Enforce Limits + 0 + 1 + In (0,1,2,3) + 0;"Never";1;"Voltage";2;"Always";3;"Contingency" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 177 + Controls when flow limits are enforced with regard to Transmission [Constraint Voltage Threshold]. + 80 + true + + + 2025 + 322 + 2 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 2026 + 322 + 2 + 6 + Formulate NPL Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1207 + If integer conditions that control non-physical losses should be formulated upfront rather than checked iteratively + 2200000 + true + + + 2027 + 322 + 2 + 7 + Max Loss Tranches + 0 + 2 + >=2 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 438 + Maximum number of tranches in piecewise linear loss function. + 2200000 + true + + + 2028 + 322 + 2 + 8 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Line can transfer price across the network + 4000000 + true + + + 2029 + 322 + 2 + 9 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 100 + true + + + 2030 + 322 + 2 + 10 + Fixed Flow Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1794 + Method of interpreting zero values of the [Fixed Flow] property. + 80 + true + + + 2031 + 322 + 2 + 11 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2032 + 322 + 2 + 12 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2033 + 322 + 2 + 13 + Screening Mode + 0 + 1 + In (0,1,2) + 0;"Never";1;"Default";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2859 + The set of lines that should be screened for post-contingency flow under screen contingencies + true + + + 2034 + 322 + 3 + 14 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the line is in service (0,1) + 800000 + true + + + 2035 + 322 + 3 + 15 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 429 + Maximum flow + 5 + true + + + 2036 + 322 + 3 + 16 + Min Flow + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 481 + Minimum flow + 5 + true + + + 2037 + 322 + 3 + 17 + Max Rating + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 449 + Rated maximum (overrides Max Flow) + 80 + true + + + 2038 + 322 + 3 + 18 + Min Rating + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 493 + Rated minimum (overrides Min Flow) + 80 + true + + + 2039 + 322 + 3 + 19 + Overload Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 596 + Emergency line rating in the reference direction + 80 + true + + + 2040 + 322 + 3 + 20 + Overload Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 597 + Emergency line rating in the counter-reference direction + 80 + true + + + 2041 + 322 + 3 + 21 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for exceeding the flow limits on the line + 80 + true + + + 2042 + 322 + 3 + 22 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 2043 + 322 + 3 + 23 + Resistance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 693 + A measure of the line's opposition to the flow of electric charge + 800000000 + true + + + 2044 + 322 + 3 + 24 + Reactance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 667 + Together with any resistance this makes up the lines impedance + 800000000 + true + + + 2045 + 322 + 3 + 25 + Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 771 + The reciprocal of the reactance of a circuit and thus the imaginary part of its admittance + 800000000 + true + + + 2046 + 322 + 3 + 26 + AC Line Charging Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2814 + The line-charging susceptance of a transmission line + 800000000 + true + + + 2047 + 322 + 3 + 27 + Ramp Up Point + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Flow for use with multi-band Max Ramp Up constraints + 80 + true + + + 2048 + 322 + 3 + 28 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate + 80 + true + + + 2049 + 322 + 3 + 29 + Ramp Down Point + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Flow for use with multi-band Max Ramp Down constraints + 80 + true + + + 2050 + 322 + 3 + 30 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate + 80 + true + + + 2051 + 322 + 3 + 31 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty for changes in flow on the line + 80 + true + + + 2052 + 322 + 3 + 32 + Loss Base + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 375 + Interconnector loss function constant parameter for reference direction flows + 200000 + true + + + 2053 + 322 + 3 + 33 + Loss Incr + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 380 + Interconnector loss function linear parameter for reference direction flows + 200000 + true + + + 2054 + 322 + 3 + 34 + Loss Incr2 + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 382 + Interconnector loss function quadratic parameter for reference direction flows + 200000 + true + + + 2055 + 322 + 3 + 35 + Loss Base Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 376 + Interconnector loss function constant parameter for counter-reference direction flows + 200000 + true + + + 2056 + 322 + 3 + 36 + Loss Incr Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 381 + Interconnector loss function linear parameter for counter-reference direction flows + 200000 + true + + + 2057 + 322 + 3 + 37 + Loss Incr2 Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 383 + Interconnector loss function quadratic parameter for counter-reference direction flows + 200000 + true + + + 2058 + 322 + 3 + 38 + Loss Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 373 + Proportion of line losses allocated to the receiving node + 200000 + true + + + 2059 + 322 + 3 + 39 + Fixed Flow + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 197 + Fixed flow on line + 80 + true + + + 2060 + 322 + 3 + 40 + Fixed Flow Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1324 + Penalty for violation of [Fixed Flow]. + 80 + true + + + 2061 + 322 + 3 + 41 + Fixed Loss + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 203 + Fixed loss on line + 200000 + true + + + 2062 + 322 + 3 + 42 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for reference direction flows + 2000000000 + true + + + 2063 + 322 + 3 + 43 + Wheeling Charge Back + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 859 + Wheeling charge for counter-reference direction flows + 2000000000 + true + + + 2064 + 322 + 3 + 44 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2065 + 322 + 3 + 45 + Marginal Loss Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) for exports + 600000 + true + + + 2066 + 322 + 3 + 46 + Marginal Loss Factor Back + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 378 + Transmission marginal loss factor (MLF or TLF) for imports + 600000 + true + + + 2067 + 322 + 4 + 47 + Offer Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for balancing offer + 400000 + true + + + 2068 + 322 + 4 + 48 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for reference direction flows + 400000 + true + + + 2069 + 322 + 4 + 49 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price offered in band for reference direction flows + 400000 + true + + + 2070 + 322 + 4 + 50 + Offer Quantity Back + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 573 + Quantity offered in band for counter-reference direction flows + 400000 + true + + + 2071 + 322 + 4 + 51 + Offer Price Back + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 570 + Price offered in band for counter-reference direction flows + 400000 + true + + + 2072 + 322 + 6 + 52 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum amount of capacity reserves supplied to the receiving Region/Zone. + 8 + true + + + 2073 + 322 + 6 + 53 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum amount of capacity reserves supplied to the receiving Region/Zone. + 8 + true + + + 2074 + 322 + 6 + 54 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Net capacity reserves exported + C + true + + + 2075 + 322 + 6 + 55 + Fixed Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1338 + Generic annual fixed charge + 8000 + true + + + 2076 + 322 + 6 + 56 + Equity Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 180 + Annual required return on equity + 8000 + true + + + 2077 + 322 + 6 + 57 + Debt Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 127 + Annual debt charge + 8000 + true + + + 2078 + 322 + 7 + 58 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2079 + 322 + 7 + 59 + Circuits + 0 + 1 + >=1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 909 + Number of circuits in the notional interconnector for the purposes of outage modelling + 1000000 + true + + + 2080 + 322 + 7 + 60 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units (circuits) out of service + 1000000 + true + + + 2081 + 322 + 7 + 61 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2082 + 322 + 7 + 62 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual timeframe + 1000000 + true + + + 2083 + 322 + 7 + 63 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Line rating in the reference direction during outage + 1000000 + true + + + 2084 + 322 + 7 + 64 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Line rating in the counter-reference direction during outage + 1000000 + true + + + 2085 + 322 + 7 + 65 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2086 + 322 + 7 + 66 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair (hr) + 1000000 + true + + + 2087 + 322 + 7 + 67 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair (hr) + 1000000 + true + + + 2088 + 322 + 7 + 68 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 2089 + 322 + 7 + 69 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 2090 + 322 + 7 + 70 + Min Total Maintenance Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2543 + Minimum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 2091 + 322 + 7 + 71 + Max Total Maintenance Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2544 + Maximum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 2092 + 322 + 8 + 72 + Type + 0 + 0 + In (0,1) + 0;"AC";1;"DC" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Line expansion type + 800000008 + true + + + 2093 + 322 + 8 + 73 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the line + 8009 + true + + + 2094 + 322 + 8 + 74 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the line + 8 + true + + + 2095 + 322 + 8 + 75 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2096 + 322 + 8 + 76 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of transmission project, for expansion planning. + 8 + true + + + 2097 + 322 + 8 + 77 + Commission Date + 0 + 1 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the line was commissioned for use with [Technical Life] + 8 + true + + + 2098 + 322 + 8 + 78 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the line + 8 + true + + + 2099 + 322 + 8 + 79 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2100 + 322 + 8 + 80 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the line (period over which fixed costs are recovered). + 8 + true + + + 2101 + 322 + 8 + 81 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2102 + 322 + 8 + 82 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 8 + true + + + 2103 + 322 + 8 + 83 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of lines automatically constructed + 8 + true + + + 2104 + 322 + 8 + 84 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of lines automatically retired + 8 + true + + + 2105 + 322 + 8 + 85 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 2106 + 322 + 8 + 86 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 8 + true + + + 2107 + 322 + 8 + 87 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 2108 + 322 + 8 + 88 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 8 + true + + + 2109 + 322 + 8 + 89 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 2110 + 322 + 8 + 90 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 2111 + 322 + 11 + 91 + Flow Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1115 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 2112 + 322 + 11 + 92 + Flow Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1116 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 2113 + 322 + 11 + 93 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2114 + 322 + 11 + 94 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2115 + 322 + 12 + 95 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2116 + 322 + 12 + 96 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2117 + 322 + 12 + 97 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2118 + 328 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 2119 + 329 + 1 + 1 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 583 + Line rating in the reference direction during outage + 4 + true + + + 2120 + 329 + 1 + 2 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 584 + Line rating in the counter-reference direction during outage + 4 + true + + + 2121 + 330 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + 800000000 + true + + + 2122 + 330 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + 800000000 + true + + + 2123 + 330 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + 800000000 + true + + + 2124 + 330 + 3 + 4 + Flow Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 212 + Coefficient of square of line flow + 800000000 + true + + + 2125 + 330 + 3 + 5 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 2126 + 330 + 3 + 6 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 2127 + 330 + 3 + 7 + Spare Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 866 + Coefficient on spare line capacity in the reference direction + 4 + true + + + 2128 + 330 + 3 + 8 + Spare Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 867 + Coefficient on spare line capacity in the counter-reference direction + 4 + true + + + 2129 + 330 + 3 + 9 + Sharing Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2883 + Coefficient of reserve shared on the line + 2 + true + + + 2130 + 330 + 7 + 10 + In Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2940 + Coefficient of 0,1 flag indicating if the Line is installed and in service + true + + + 2131 + 330 + 7 + 11 + Out of Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2941 + Coefficient of 0,1 flag indicating if the Line is either not installed or out of service + true + + + 2132 + 330 + 7 + 12 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + 1000000 + true + + + 2133 + 330 + 8 + 13 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 2134 + 330 + 8 + 14 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 2135 + 330 + 8 + 15 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + C + true + + + 2136 + 330 + 8 + 16 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + C + true + + + 2137 + 330 + 8 + 17 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of lines built in the year + C + true + + + 2138 + 330 + 8 + 18 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of lines retired in the year + C + true + + + 2139 + 330 + 8 + 19 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 2140 + 330 + 8 + 20 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 2141 + 330 + 8 + 21 + Export Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 191 + Coefficient of export capacity retired + C + true + + + 2142 + 330 + 8 + 22 + Import Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 293 + Coefficient of import capacity retired + C + true + + + 2143 + 330 + 8 + 23 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2144 + 331 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + true + + + 2145 + 331 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + true + + + 2146 + 331 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + true + + + 2147 + 331 + 3 + 4 + Flow Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 212 + Coefficient of square of line flow + false + + + 2148 + 331 + 3 + 5 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 2149 + 331 + 3 + 6 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 2150 + 331 + 3 + 7 + Spare Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 866 + Coefficient on spare line capacity in the reference direction + true + + + 2151 + 331 + 3 + 8 + Spare Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 867 + Coefficient on spare line capacity in the counter-reference direction + true + + + 2152 + 331 + 3 + 9 + Sharing Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2883 + Coefficient of reserve shared on the line + 2 + true + + + 2153 + 331 + 7 + 10 + In Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2940 + Coefficient of 0,1 flag indicating if the Line is installed and in service + true + + + 2154 + 331 + 7 + 11 + Out of Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2941 + Coefficient of 0,1 flag indicating if the Line is either not installed or out of service + true + + + 2155 + 331 + 7 + 12 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + true + + + 2156 + 331 + 8 + 13 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 2157 + 331 + 8 + 14 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 2158 + 331 + 8 + 15 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2159 + 331 + 8 + 16 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2160 + 331 + 8 + 17 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of lines built in the year + true + + + 2161 + 331 + 8 + 18 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of lines retired in the year + true + + + 2162 + 331 + 8 + 19 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 2163 + 331 + 8 + 20 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 2164 + 331 + 8 + 21 + Export Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 191 + Coefficient of export capacity retired + true + + + 2165 + 331 + 8 + 22 + Import Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 293 + Coefficient of import capacity retired + true + + + 2166 + 331 + 8 + 23 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2167 + 332 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of line flow in condition + true + + + 2168 + 332 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow in condition + true + + + 2169 + 332 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow in condition + true + + + 2170 + 332 + 3 + 4 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 2171 + 332 + 3 + 5 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 2172 + 332 + 7 + 6 + In Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2940 + Coefficient of 0,1 flag indicating if the Line is installed and in service + true + + + 2173 + 332 + 7 + 7 + Out of Service Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2941 + Coefficient of 0,1 flag indicating if the Line is either not installed or out of service + true + + + 2174 + 332 + 7 + 8 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + true + + + 2175 + 333 + 1 + 1 + Intercept + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 323 + Intercept of the MLF equation + 200000 + true + + + 2176 + 333 + 1 + 2 + Flow Coefficient + 1 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient on line flow + 200000 + true + + + 2177 + 336 + 1 + 1 + Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 80 + Coefficient of region demand in the MLF equation + 300000 + true + + + 2178 + 339 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the Transformer must be reported regardless of Transmission [Report Voltage Threshold]. + 800000 + true + + + 2179 + 339 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Line for the generation of outages + 101000000 + true + + + 2180 + 339 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2181 + 339 + 2 + 4 + Enforce Limits + 0 + 1 + In (0,1,2,3) + 0;"Never";1;"Voltage";2;"Always";3;"Contingency" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 177 + If flow limits are enforced regardless of Transmission [Constraint Voltage Threshold]. + 80 + true + + + 2182 + 339 + 2 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 2183 + 339 + 2 + 6 + Formulate NPL Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1207 + If integer conditions that control non-physical losses should be formulated upfront rather than checked iteratively + 2200000 + true + + + 2184 + 339 + 2 + 7 + Max Loss Tranches + 0 + 2 + >=2 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 438 + Maximum number of tranches in piecewise linear loss function. + 2200000 + true + + + 2185 + 339 + 2 + 8 + Screening Mode + 0 + 1 + In (0,1,2) + 0;"Never";1;"Default";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2859 + The set of transformers that should be screened for post-contingency flow under screen contingencies + true + + + 2186 + 339 + 3 + 9 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if transformer is in service + 800000 + true + + + 2187 + 339 + 3 + 10 + Rating + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 665 + Maximum MW rating + 5 + true + + + 2188 + 339 + 3 + 11 + Overload Rating + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1028 + Emergency rating in the reference direction + 80 + true + + + 2189 + 339 + 3 + 12 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for exceeding the flow limits on the Transformer. + 80 + true + + + 2190 + 339 + 3 + 13 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 2191 + 339 + 3 + 14 + Resistance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 693 + A measure of the transformer's opposition to the flow of electric charge + 800000000 + true + + + 2192 + 339 + 3 + 15 + Reactance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 667 + Together with any resistance this makes up the lines impedance + 800000000 + true + + + 2193 + 339 + 3 + 16 + Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 771 + The reciprocal of the reactance of a circuit and thus the imaginary part of its admittance + 800000000 + true + + + 2194 + 339 + 3 + 17 + AC Line Charging Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2814 + The line-charging susceptance of a transformer + 800000000 + true + + + 2195 + 339 + 3 + 18 + AC Tap Ratio + 0 + 1 + >0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2815 + The turns ratio of the primary winding of a transformer + 800000 + true + + + 2196 + 339 + 3 + 19 + AC Fixed Shift Angle + 11 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2816 + The fixed phase shift angle between the two windings of a single-phase transformer + 800000000 + true + + + 2197 + 339 + 3 + 20 + Loss Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 373 + Proportion of transformer losses allocated to the receiving node + 200000 + true + + + 2198 + 339 + 3 + 21 + Fixed Loss + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 203 + Fixed loss on transformer + 200000 + true + + + 2199 + 339 + 7 + 22 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2200 + 339 + 7 + 23 + Units Out + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 818 + Number of [Units] out of service + 1000000 + true + + + 2201 + 339 + 7 + 24 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2202 + 339 + 7 + 25 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual timeframe + 1000000 + true + + + 2203 + 339 + 7 + 26 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Transformer rating in the reference direction during outage + 1000000 + true + + + 2204 + 339 + 7 + 27 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Transformer rating in the counter-reference direction during outage + 1000000 + true + + + 2205 + 339 + 7 + 28 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair (hr) + 1000000 + true + + + 2206 + 339 + 7 + 29 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair (hr) + 1000000 + true + + + 2207 + 339 + 7 + 30 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair (hr) + 1000000 + true + + + 2208 + 339 + 7 + 31 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 2209 + 339 + 7 + 32 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 2210 + 339 + 12 + 33 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2211 + 339 + 12 + 34 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2212 + 339 + 12 + 35 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2213 + 344 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of transformer flow equation + 800000000 + true + + + 2214 + 345 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of transformer flow equation + true + + + 2215 + 346 + 2 + 1 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the flow control can transfer price across the network + 4000000 + true + + + 2216 + 346 + 2 + 2 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2217 + 346 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2218 + 346 + 2 + 4 + Type + 0 + 0 + In (0,1,2,3,4,5) + 0;"PST";1;"DSR";2;"DSSC";3;"MSSR";4;"TCSC";5;"SSSC" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Flow control type + true + + + 2219 + 346 + 3 + 5 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of installed units + 800000 + true + + + 2220 + 346 + 3 + 6 + Min Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 472 + Min angle set on the flow control + 5 + true + + + 2221 + 346 + 3 + 7 + Max Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 411 + Max angle set on the flow control + 5 + true + + + 2222 + 346 + 3 + 8 + Min Impedance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1778 + Min Impedance + 5 + true + + + 2223 + 346 + 3 + 9 + Max Impedance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1779 + Max Impedance + 5 + true + + + 2224 + 346 + 3 + 10 + Min Voltage + 4 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1780 + Min Voltage + 5 + true + + + 2225 + 346 + 3 + 11 + Max Voltage + 4 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1781 + Max Voltage + 5 + true + + + 2226 + 346 + 3 + 12 + Penalty + 43 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 602 + Penalty incurred for shifting the angle + 80 + true + + + 2227 + 346 + 3 + 13 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty price per MW change in flow on the device + 80 + true + + + 2228 + 346 + 3 + 14 + Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 14 + Angle (initial angle when used as input) + 80 + true + + + 2229 + 346 + 3 + 15 + Angle Points + 11 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1762 + Flow control angle points + true + + + 2230 + 346 + 3 + 16 + Flow Loading Points + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1763 + Flow control line flow points + true + + + 2231 + 346 + 3 + 17 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2232 + 346 + 8 + 18 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the flow control + 8009 + true + + + 2233 + 346 + 8 + 19 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2234 + 346 + 8 + 20 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of the project, for expansion planning. + 8 + true + + + 2235 + 346 + 8 + 21 + Commission Date + 0 + 1 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the flow control was commissioned for use with [Technical Life] + 8 + true + + + 2236 + 346 + 8 + 22 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the flow control + 8 + true + + + 2237 + 346 + 8 + 23 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2238 + 346 + 8 + 24 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the flow control (period over which fixed costs are recovered). + 8 + true + + + 2239 + 346 + 8 + 25 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2240 + 346 + 8 + 26 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2241 + 346 + 8 + 27 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 2242 + 346 + 8 + 28 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 2243 + 346 + 11 + 29 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2244 + 346 + 12 + 30 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2245 + 346 + 12 + 31 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2246 + 346 + 12 + 32 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2247 + 351 + 3 + 1 + Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1761 + Coefficient of flow control angle + 800000000 + true + + + 2248 + 351 + 3 + 2 + Positive Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1759 + Boolean value (1 if the flow control angle is positive, 0 otherwise) + 800000000 + true + + + 2249 + 351 + 3 + 3 + Negative Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1760 + Boolean value (1 if the flow control angle is negative, 0 otherwise) + 800000000 + true + + + 2250 + 351 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 2251 + 351 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 2252 + 351 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 2253 + 351 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 2254 + 351 + 8 + 8 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 2255 + 351 + 8 + 9 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 2256 + 351 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2257 + 351 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 2258 + 351 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 2259 + 352 + 3 + 1 + Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1761 + Coefficient of flow control angle + true + + + 2260 + 352 + 3 + 2 + Positive Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1759 + Boolean value (1 if the flow control angle is positive, 0 otherwise) + true + + + 2261 + 352 + 3 + 3 + Negative Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1760 + Boolean value (1 if the flow control angle is negative, 0 otherwise) + true + + + 2262 + 352 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2263 + 353 + 2 + 1 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 2264 + 353 + 2 + 2 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 100 + true + + + 2265 + 353 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if interface is in service + 800000 + true + + + 2266 + 353 + 3 + 4 + Min Flow + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 481 + Minimum flow on interface + 5 + true + + + 2267 + 353 + 3 + 5 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow on interface + 5 + true + + + 2268 + 353 + 3 + 6 + Overload Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 596 + Emergency rating in the reference direction + 80 + true + + + 2269 + 353 + 3 + 7 + Overload Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 597 + Emergency rating in the counter-reference direction + 80 + true + + + 2270 + 353 + 3 + 8 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for violation of limits + 80 + true + + + 2271 + 353 + 3 + 9 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 2272 + 353 + 3 + 10 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 2273 + 353 + 3 + 11 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 2274 + 353 + 3 + 12 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty for changes in flow on the line + 80 + true + + + 2275 + 353 + 3 + 13 + Fixed Flow + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 197 + Fixed flow on interface + 80 + true + + + 2276 + 353 + 3 + 14 + Fixed Flow Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1324 + Penalty for violation of [Fixed Flow]. + 80 + true + + + 2277 + 353 + 4 + 15 + Offer Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for balancing offer + 400000 + true + + + 2278 + 353 + 4 + 16 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for reference direction flows + 400000 + true + + + 2279 + 353 + 4 + 17 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price offered in band for reference direction flows + 400000 + true + + + 2280 + 353 + 4 + 18 + Offer Quantity Back + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 573 + Quantity offered in band for counter-reference direction flows + 400000 + true + + + 2281 + 353 + 4 + 19 + Offer Price Back + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 570 + Price offered in band for counter-reference direction flows + 400000 + true + + + 2282 + 353 + 11 + 20 + Flow Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1115 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 2283 + 353 + 11 + 21 + Flow Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1116 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 2284 + 353 + 6 + 22 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the interface to region capacity reserves + C + true + + + 2285 + 353 + 8 + 23 + Expansion Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 184 + Cost of expanding the interface by one megawatt + 8008 + true + + + 2286 + 353 + 8 + 24 + Max Expansion + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 428 + Maximum interface expansion + 8 + true + + + 2287 + 353 + 8 + 25 + Min Expansion + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2745 + Minimum interface expansion + 8 + true + + + 2288 + 353 + 8 + 26 + Max Expansion In Year + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2754 + Maximum interface expansion allowed in the year + 8 + true + + + 2289 + 353 + 8 + 27 + Min Expansion In Year + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2755 + Minimum interface expansion allowed in the year + 8 + true + + + 2290 + 353 + 8 + 28 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2291 + 353 + 8 + 29 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the interface (period over which expansion costs are recovered). + 8 + true + + + 2292 + 353 + 11 + 30 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2293 + 353 + 12 + 31 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2294 + 353 + 12 + 32 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2295 + 353 + 12 + 33 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2296 + 356 + 1 + 1 + Flow Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient of flow in interface + 800000000 + true + + + 2297 + 356 + 1 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow in interface + 800000000 + true + + + 2298 + 356 + 1 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow in interface + 800000000 + true + + + 2299 + 357 + 1 + 1 + Flow Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient of transformer flow in interface + 800000000 + true + + + 2300 + 358 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + 800000000 + true + + + 2301 + 358 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + 800000000 + true + + + 2302 + 358 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + 800000000 + true + + + 2303 + 358 + 8 + 4 + Expansion Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1220 + Coefficient of total build cost + 8008 + true + + + 2304 + 358 + 8 + 5 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 2305 + 358 + 8 + 6 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 2306 + 358 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 2307 + 358 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 2308 + 358 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 2309 + 358 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 2310 + 358 + 8 + 11 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 2311 + 358 + 8 + 12 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 2312 + 359 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + true + + + 2313 + 359 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + true + + + 2314 + 359 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + true + + + 2315 + 359 + 8 + 4 + Expansion Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1220 + Coefficient of total expansion cost + true + + + 2316 + 360 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow in condition + true + + + 2317 + 361 + 2 + 1 + Is Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 335 + If the contingency is enabled + 800000 + true + + + 2318 + 361 + 2 + 2 + Monitoring Threshold + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1628 + Monitor only this percentage of most affected Line/Transformer/Interface flows. + true + + + 2319 + 361 + 2 + 3 + Screening Elements + 0 + 0 + In (0,1,2) + 0;"None";1;"Monitored Memberships";2;"Network Selections" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2866 + Determines which lines/transformers would be screened for post-contingency flow under this contingency + true + + + 2320 + 361 + 12 + 4 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2321 + 361 + 12 + 5 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2322 + 361 + 12 + 6 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2323 + 367 + 1 + 1 + Max Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2950 + Post-contingency flow limit in the reference direction + 800000000 + true + + + 2324 + 367 + 1 + 2 + Min Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2951 + Post-contingency flow limit in the counter-reference direction + 800000000 + true + + + 2325 + 369 + 1 + 1 + Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2952 + Post-contingency flow limit + 800000000 + true + + + 2326 + 372 + 1 + 1 + Max Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2950 + Post-contingency flow limit in the reference direction + 800000000 + true + + + 2327 + 372 + 1 + 2 + Min Flow Limit + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2951 + Post-contingency flow limit in the counter-reference direction + 800000000 + true + + + 2328 + 373 + 2 + 1 + Pricing Method + 0 + 0 + In (0,1,2) + 0;"Load Weighted Average";1;"Generation Weighted Average";2;"Weighted Average" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 620 + Method used to calculate the hub price + 4000000 + true + + + 2329 + 373 + 3 + 2 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Hub is in service + 800000 + true + + + 2330 + 373 + 12 + 3 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2331 + 373 + 12 + 4 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2332 + 373 + 12 + 5 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2333 + 376 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of hub load + true + + + 2334 + 376 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of hub generation + true + + + 2335 + 377 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of hub load + true + + + 2336 + 377 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of hub generation + true + + + 2337 + 378 + 2 + 1 + Type + 0 + 0 + In (0,1,2) + 0;"TCC";1;"TCR";2;"CRR"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Type of transmission right + 4000000 + false + + + 2338 + 378 + 2 + 2 + Hedge Type + 0 + 0 + In (0,1) + 0;"Obligation";1;"Option"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2803 + Type of transmission right + 4000000 + true + + + 2339 + 378 + 2 + 3 + Settlement Model + 0 + 0 + In (0,1) + 0;"Buy";1;"Sell" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 1653 + Direction of settlement + 4000000 + true + + + 2340 + 378 + 2 + 4 + Pricing Method + 0 + 0 + In (0,1) + 0;"LMP";1;"Congestion Charge" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 620 + Pricing method + 4000000 + true + + + 2341 + 378 + 3 + 5 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Transmission Right is in service + 800000 + true + + + 2342 + 378 + 3 + 6 + Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 650 + Contract quantity + 5 + true + + + 2343 + 378 + 3 + 7 + Rental Share + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 682 + Percent of rent in the reference direction included in the contract + 4 + true + + + 2344 + 378 + 3 + 8 + Rental Back Share + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 680 + Percent of rent in the counter-reference direction included in the contract + 4 + true + + + 2345 + 378 + 3 + 9 + Price + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Scheduled price + true + + + 2346 + 388 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of the transmission right + 40 + true + + + 2347 + 389 + 2 + 1 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the Heat Plant. + 1000000000 + true + + + 2348 + 389 + 2 + 2 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2349 + 389 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2350 + 389 + 3 + 4 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of Heat Plant units in service + 800000 + true + + + 2351 + 389 + 3 + 5 + Max Capacity + 35 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 414 + Maximum heat production + 20000 + true + + + 2352 + 389 + 3 + 6 + Efficiency Base + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 887 + Heat production no-load efficiency + 21000 + true + + + 2353 + 389 + 3 + 7 + Efficiency Incr + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Heat production efficiency + 21000 + true + + + 2354 + 389 + 3 + 8 + VO&M Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 2355 + 389 + 3 + 9 + Load Point + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate. + 1000 + true + + + 2356 + 389 + 3 + 10 + Heat Rate + 37 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 260 + Average heat rate (total fuel divided by total heat production) + 1001 + true + + + 2357 + 389 + 3 + 11 + Heat Rate Base + 35 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 2358 + 389 + 3 + 12 + Heat Rate Incr + 37 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 2359 + 389 + 3 + 13 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 2360 + 389 + 3 + 14 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 2361 + 389 + 3 + 15 + Run Up Rate + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while running the unit up from zero to [Min Stable Level]. + 80000000 + true + + + 2362 + 389 + 3 + 16 + Start Profile + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for running the unit up from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 2363 + 389 + 3 + 17 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 2364 + 389 + 3 + 18 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 2365 + 389 + 3 + 19 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 2366 + 389 + 3 + 20 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 2367 + 389 + 3 + 21 + Max Ramp Up + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 2368 + 389 + 3 + 22 + Max Ramp Down + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 2369 + 389 + 3 + 23 + Min Stable Level + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 501 + Minimum stable Heat Production level + 1000000081 + true + + + 2370 + 389 + 3 + 24 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 2371 + 389 + 9 + 25 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 2372 + 389 + 9 + 25 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 2373 + 389 + 9 + 25 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 2374 + 389 + 9 + 25 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 2375 + 389 + 9 + 25 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 2376 + 389 + 9 + 25 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 2377 + 389 + 9 + 26 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints. + 1080000080 + true + + + 2378 + 389 + 8 + 27 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 2379 + 389 + 8 + 28 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2380 + 389 + 8 + 29 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2381 + 389 + 8 + 30 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Heat Plant + 8 + true + + + 2382 + 389 + 8 + 31 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 2383 + 389 + 8 + 32 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 2384 + 389 + 8 + 33 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Heat Plant (period over which fixed costs are recovered). + 9 + true + + + 2385 + 389 + 8 + 34 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2386 + 389 + 8 + 35 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2387 + 389 + 8 + 36 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2388 + 389 + 8 + 37 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2389 + 389 + 8 + 38 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Heat Plant + 8 + true + + + 2390 + 389 + 8 + 39 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2391 + 389 + 8 + 40 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2392 + 389 + 8 + 41 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2393 + 389 + 11 + 42 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2394 + 389 + 11 + 43 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2395 + 389 + 12 + 44 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2396 + 389 + 12 + 45 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2397 + 389 + 12 + 46 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2398 + 392 + 1 + 1 + Mutually Exclusive + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 998 + If the Fuel cannot be mixed with other Fuels associated with this heat plant. + 80 + true + + + 2399 + 392 + 1 + 2 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Fixed fuel mix ratio + 80 + true + + + 2400 + 392 + 1 + 3 + Min Ratio + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 494 + Minimum fuel mix ratio + 80 + true + + + 2401 + 392 + 1 + 4 + Max Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 450 + Maximum fuel mix ratio + 80 + true + + + 2402 + 392 + 1 + 5 + Max Input + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 433 + Maximum amount of fuel input to heat plant + 80 + true + + + 2403 + 392 + 1 + 6 + Is Available + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 332 + If the fuel is available for use by the generator + 800000 + true + + + 2404 + 392 + 1 + 7 + Heat Rate Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 266 + Scalar on base heat plant heat rate function + 1000 + true + + + 2405 + 392 + 1 + 8 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 2406 + 392 + 1 + 9 + Heat Rate + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Heat-rate at load point (used with Load Point) or 'b' in the heat input function + 1000 + true + + + 2407 + 392 + 1 + 10 + Heat Rate Incr + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + Average marginal heat-rate in band + 1000 + true + + + 2408 + 393 + 1 + 1 + Offtake at Start + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 578 + Fuel required to start a unit + 1080000000 + true + + + 2409 + 396 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 2410 + 398 + 3 + 1 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + 1000000000 + true + + + 2411 + 398 + 3 + 2 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + 1000 + true + + + 2412 + 398 + 3 + 3 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + 1000 + true + + + 2413 + 398 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 2414 + 398 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 2415 + 398 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 2416 + 398 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 2417 + 398 + 8 + 8 + Capacity Built Coefficient + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 2418 + 398 + 8 + 9 + Capacity Retired Coefficient + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 2419 + 398 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2420 + 398 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 2421 + 398 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 2422 + 399 + 3 + 1 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 2423 + 399 + 3 + 2 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake of the heat plant + true + + + 2424 + 399 + 3 + 3 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + true + + + 2425 + 400 + 1 + 1 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake in condition + true + + + 2426 + 401 + 2 + 1 + Allow Dump Heat + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1927 + Model Heat Node [Dump Heat] in the mathematical program. + 40000000 + true + + + 2427 + 401 + 2 + 2 + Allow Unserved Heat + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2420 + Model Heat Node [Unserved Heat] in the mathematical program. + 40000000 + true + + + 2428 + 401 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of Heat Node units in service + 800000 + true + + + 2429 + 401 + 3 + 4 + Heat Demand + 15 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 1941 + Heat demand at the node + true + + + 2430 + 401 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2431 + 401 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2432 + 401 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2433 + 404 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 2434 + 405 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the water plant + 20000 + false + + + 2435 + 406 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 2436 + 406 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Heat consumption for each unit of consumption + true + + + 2437 + 406 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Heat production for each unit of production + true + + + 2438 + 406 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Heat consumption for each unit operating + 1000000000 + true + + + 2439 + 406 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Heat consumption for each installed unit + 4 + true + + + 2440 + 408 + 3 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node + true + + + 2441 + 409 + 3 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node + true + + + 2442 + 410 + 1 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node in condition + true + + + 2443 + 411 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of balancing the Heat Storage + true + + + 2444 + 411 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period heat volumes + 4000 + true + + + 2445 + 411 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next + 400000000 + true + + + 2446 + 411 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term + 400000000 + true + + + 2447 + 411 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term + 400000000 + true + + + 2448 + 411 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term + 400000000 + true + + + 2449 + 411 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term + 400000000 + true + + + 2450 + 411 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations + 400000000 + true + + + 2451 + 411 + 2 + 9 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2452 + 411 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2453 + 411 + 3 + 11 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of Heat Storage units in service + 800000 + true + + + 2454 + 411 + 3 + 12 + Max Heat + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1514 + Maximum heat allowed in storage + 400020000 + true + + + 2455 + 411 + 3 + 13 + Min Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1515 + Minimum heat allowed in storage + 400020000 + true + + + 2456 + 411 + 3 + 14 + Heat Loss + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1516 + Rate at which heat is lost from storage + 400020000 + true + + + 2457 + 411 + 3 + 15 + Heat Injection Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2222 + Efficiency of heat injection + 400020000 + true + + + 2458 + 411 + 3 + 16 + Heat Withdrawal Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2223 + Efficiency of heat withdrawal + 400020000 + true + + + 2459 + 411 + 3 + 17 + Heat Injection Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1519 + Incremental cost of injecting heat into the storage + 400020000 + true + + + 2460 + 411 + 3 + 18 + Heat Withdrawal Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1518 + Incremental cost of withdrawing heat from the storage + 400020000 + true + + + 2461 + 411 + 3 + 19 + Initial Heat + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2212 + Initial heat in the storage + 400020000 + true + + + 2462 + 411 + 3 + 20 + Dump Heat Penalty + 60 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2224 + Penalty applied to dump heat from the storage. A value of -1 means dump is not allowed. + 400020000 + true + + + 2463 + 411 + 9 + 21 + Max Heat Injection + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1525 + Maximum amount of heat that can be injected into the storage + 400020000 + true + + + 2464 + 411 + 9 + 21 + Max Heat Injection Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1554 + Maximum amount of heat that can be injected into the storage in a hour + 400020000 + true + + + 2465 + 411 + 9 + 21 + Max Heat Injection Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1526 + Maximum amount of heat that can be injected into the storage in a day + 400020000 + true + + + 2466 + 411 + 9 + 21 + Max Heat Injection Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1527 + Maximum amount of heat that can be injected into the storage in a week + 400020000 + true + + + 2467 + 411 + 9 + 21 + Max Heat Injection Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1528 + Maximum amount of heat that can be injected into the storage in a month + 400020000 + true + + + 2468 + 411 + 9 + 21 + Max Heat Injection Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1529 + Maximum amount of heat that can be injected into the storage in a year + 400020000 + true + + + 2469 + 411 + 9 + 22 + Min Heat Injection + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1535 + Amount of heat that must be injected into the storage + 400020000 + true + + + 2470 + 411 + 9 + 22 + Min Heat Injection Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1556 + Amount of heat that must be injected into the storage each hour + 400020000 + true + + + 2471 + 411 + 9 + 22 + Min Heat Injection Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1536 + Amount of heat that must be injected into the storage each day + 400020000 + true + + + 2472 + 411 + 9 + 22 + Min Heat Injection Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1537 + Amount of heat that must be injected into the storage each week + 400020000 + true + + + 2473 + 411 + 9 + 22 + Min Heat Injection Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1538 + Amount of heat that must be injected into the storage each month + 400020000 + true + + + 2474 + 411 + 9 + 22 + Min Heat Injection Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1539 + Amount of heat that must be injected into the storage each year + 400020000 + true + + + 2475 + 411 + 9 + 23 + Max Heat Withdrawal + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1520 + Maximum amount of heat that can be withdrawn from the storage + 400020000 + true + + + 2476 + 411 + 9 + 23 + Max Heat Withdrawal Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1553 + Maximum amount of heat that can be withdrawn from the storage in a hour + 400020000 + true + + + 2477 + 411 + 9 + 23 + Max Heat Withdrawal Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1521 + Maximum amount of heat that can be withdrawn from the storage in a day + 400020000 + true + + + 2478 + 411 + 9 + 23 + Max Heat Withdrawal Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1522 + Maximum amount of heat that can be withdrawn from the storage in a week + 400020000 + true + + + 2479 + 411 + 9 + 23 + Max Heat Withdrawal Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1523 + Maximum amount of heat that can be withdrawn from the storage in a month + 400020000 + true + + + 2480 + 411 + 9 + 23 + Max Heat Withdrawal Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1524 + Maximum amount of heat that can be withdrawn from the storage in a year + 400020000 + true + + + 2481 + 411 + 9 + 24 + Min Heat Withdrawal + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1530 + Amount of heat that must be withdrawn from storage + 400020000 + true + + + 2482 + 411 + 9 + 24 + Min Heat Withdrawal Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1555 + Amount of heat that must be withdrawn from storage each hour + 400020000 + true + + + 2483 + 411 + 9 + 24 + Min Heat Withdrawal Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1531 + Amount of heat that must be withdrawn from storage each day + 400020000 + true + + + 2484 + 411 + 9 + 24 + Min Heat Withdrawal Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1532 + Amount of heat that must be withdrawn from storage each week + 400020000 + true + + + 2485 + 411 + 9 + 24 + Min Heat Withdrawal Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1533 + Amount of heat that must be withdrawn from storage each month + 400020000 + true + + + 2486 + 411 + 9 + 24 + Min Heat Withdrawal Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1534 + Amount of heat that must be withdrawn from storage each year + 400020000 + true + + + 2487 + 411 + 9 + 25 + Target + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Storage target per interval + 80 + true + + + 2488 + 411 + 9 + 25 + Target Hour + 15 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + End of hour storage target + 80 + true + + + 2489 + 411 + 9 + 25 + Target Day + 15 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + End of day storage target + 80 + true + + + 2490 + 411 + 9 + 25 + Target Week + 15 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 2491 + 411 + 9 + 25 + Target Month + 15 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + End of month storage target + 80 + true + + + 2492 + 411 + 9 + 25 + Target Year + 15 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + End of year storage target + 80 + true + + + 2493 + 411 + 9 + 26 + Target Penalty + 60 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target + 80 + true + + + 2494 + 411 + 8 + 27 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2495 + 411 + 8 + 28 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of heat storage project, for expansion planning. + 8 + true + + + 2496 + 411 + 8 + 29 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the heat storage + 8 + true + + + 2497 + 411 + 8 + 30 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the heat storage + 8009 + true + + + 2498 + 411 + 8 + 31 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2499 + 411 + 8 + 32 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the heat storage (period over which fixed costs are recovered). + 8 + true + + + 2500 + 411 + 8 + 33 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2030 + Indicates if the heat storage is eligible for retirement planning + 8 + true + + + 2501 + 411 + 8 + 34 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the heat storage + 88 + true + + + 2502 + 411 + 8 + 35 + Max Units Built + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 2503 + 411 + 8 + 36 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2504 + 411 + 8 + 37 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2505 + 411 + 8 + 38 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2506 + 411 + 8 + 39 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2507 + 411 + 8 + 40 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2508 + 411 + 8 + 41 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2509 + 411 + 8 + 42 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2510 + 411 + 11 + 43 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 2511 + 411 + 11 + 44 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 2512 + 415 + 3 + 1 + End Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2214 + Coefficient of storage end heat. + true + + + 2513 + 415 + 3 + 2 + Injection Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of heat storage injection + true + + + 2514 + 415 + 3 + 3 + Withdrawal Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of heat storage withdrawal + true + + + 2515 + 415 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2516 + 415 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2517 + 415 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2518 + 415 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2519 + 415 + 8 + 8 + Capacity Built Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 2520 + 415 + 8 + 9 + Capacity Retired Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 2521 + 415 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2522 + 415 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 2523 + 415 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 2524 + 416 + 3 + 1 + End Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2214 + Coefficient of storage end heat + true + + + 2525 + 416 + 3 + 2 + Injection Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of heat storage injection + true + + + 2526 + 416 + 3 + 3 + Withdrawal Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of heat storage withdrawal + true + + + 2527 + 416 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2528 + 416 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2529 + 416 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2530 + 416 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2531 + 417 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 2532 + 417 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 2533 + 417 + 2 + 3 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 2534 + 417 + 2 + 4 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 2535 + 417 + 2 + 5 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 2536 + 417 + 2 + 6 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 2537 + 417 + 2 + 7 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 2538 + 417 + 2 + 8 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 2539 + 417 + 2 + 9 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 2540 + 417 + 2 + 10 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 2541 + 417 + 2 + 11 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 2542 + 417 + 2 + 12 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 2543 + 417 + 2 + 13 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2544 + 417 + 2 + 14 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2545 + 417 + 2 + 15 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2546 + 417 + 2 + 16 + Use Additive Ratchet + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2210 + If additive ratchet use is enforced. + 80 + true + + + 2547 + 417 + 2 + 17 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2548 + 417 + 3 + 18 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Field is in service + 800000 + true + + + 2549 + 417 + 3 + 19 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of gas in the field + 80001 + true + + + 2550 + 417 + 3 + 20 + Production Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1274 + Incremental cost of extracting gas from the field + 2000000000 + true + + + 2551 + 417 + 3 + 21 + Dispatch Production Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2142 + Incremental dispatch cost of extracting gas from the field + 2000000000 + true + + + 2552 + 417 + 3 + 22 + Production Volume + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 1743 + Volume of gas in Production Cost band + 2000000000 + true + + + 2553 + 417 + 3 + 23 + Production Tranches + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2521 + Number of production tranches to generate (must be > 1 to auto-generate) + 400000 + true + + + 2554 + 417 + 3 + 24 + Reset Production Volumes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2236 + If the production volumes should be reset in the current period. + 80 + true + + + 2555 + 417 + 3 + 25 + Withdrawal Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1937 + Maximum amount of gas that can be withdrawn from the field in any interval when defining a gas field ratchet. + true + + + 2556 + 417 + 3 + 26 + Withdrawal Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1744 + Maximum amount of gas that can be withdrawn from the field. + true + + + 2557 + 417 + 3 + 27 + Withdrawal Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1977 + Gas withdrawal factor for gas field. + true + + + 2558 + 417 + 3 + 28 + External Injection + 100 + 0 + 1 + 0 + 2 + 0 + false + false + false + false + 1 + 1460 + External injection into the gas field + true + + + 2559 + 417 + 3 + 29 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2560 + 417 + 3 + 30 + Loss Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to leakage, etc + 200000 + true + + + 2561 + 417 + 3 + 31 + Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1968 + Carrying rate for gas field per year + true + + + 2562 + 417 + 3 + 32 + Initial Inventory Price + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2074 + Price linked to initial inventory + true + + + 2563 + 417 + 3 + 33 + Inventory Charge + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Charge per unit of inventory each day + true + + + 2564 + 417 + 3 + 34 + Ratchet Type + 0 + 0 + In (0,1,2) + 2;"Linear Convex";1;"Linear";0;"Step" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2037 + Indicates how the gas field ratchets are represented + true + + + 2565 + 417 + 3 + 35 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Field + 100 + true + + + 2566 + 417 + 3 + 36 + Production Fuel Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3126 + Fuel rate per unit of production + true + + + 2567 + 417 + 9 + 37 + Max Ramp + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in gas field per interval + 80 + true + + + 2568 + 417 + 9 + 37 + Max Ramp Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum rate of change in gas field in an hour + 80 + true + + + 2569 + 417 + 9 + 37 + Max Ramp Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum rate of change in gas field in a day + 80 + true + + + 2570 + 417 + 9 + 37 + Max Ramp Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum rate of change in gas field in a week + 80 + true + + + 2571 + 417 + 9 + 37 + Max Ramp Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum rate of change in gas field in a month + 80 + true + + + 2572 + 417 + 9 + 37 + Max Ramp Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum rate of change in gas field in a year + 80 + true + + + 2573 + 417 + 9 + 38 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas from the field + 80 + true + + + 2574 + 417 + 9 + 38 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1561 + Maximum hourly production of gas from the field + 80 + true + + + 2575 + 417 + 9 + 38 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 1 + false + false + false + false + 1 + 950 + Maximum production of gas from the field in any day + 80 + true + + + 2576 + 417 + 9 + 38 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production of gas from the field in any week + 80 + true + + + 2577 + 417 + 9 + 38 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production of gas from the field in any month + 80 + true + + + 2578 + 417 + 9 + 38 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production of gas from the field in any year + 80 + true + + + 2579 + 417 + 9 + 39 + Min Production + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas from the field + 80 + true + + + 2580 + 417 + 9 + 39 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1572 + Minimum hourly production of gas from the field + 80 + true + + + 2581 + 417 + 9 + 39 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 1 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas from the field + 80 + true + + + 2582 + 417 + 9 + 39 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas from the field + 80 + true + + + 2583 + 417 + 9 + 39 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas from the field + 80 + true + + + 2584 + 417 + 9 + 39 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas from the field + 80 + true + + + 2585 + 417 + 9 + 40 + Target + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Gas Field Target + 80 + true + + + 2586 + 417 + 9 + 40 + Target Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + End of hour gas field target + 80 + true + + + 2587 + 417 + 9 + 40 + Target Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + End of day gas field target + 80 + true + + + 2588 + 417 + 9 + 40 + Target Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + End of week gas field target + 80 + true + + + 2589 + 417 + 9 + 40 + Target Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + End of month gas field target + 80 + true + + + 2590 + 417 + 9 + 40 + Target Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + End of year gas field target + 80 + true + + + 2591 + 417 + 9 + 41 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1187 + Penalty for violating the target + 80 + true + + + 2592 + 417 + 9 + 42 + Min Production Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2428 + Min Production Target Percent for gas fields + 80 + true + + + 2593 + 417 + 9 + 43 + Max Production Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2429 + Max Production Target Percent for gas fields + 80 + true + + + 2594 + 417 + 7 + 44 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2595 + 417 + 7 + 45 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2596 + 417 + 7 + 46 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2597 + 417 + 7 + 47 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Field Max Production during the outage + 1000000 + true + + + 2598 + 417 + 7 + 48 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2599 + 417 + 7 + 49 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2600 + 417 + 7 + 50 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2601 + 417 + 7 + 51 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 2602 + 417 + 7 + 52 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 2603 + 417 + 8 + 53 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 2604 + 417 + 8 + 54 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2605 + 417 + 8 + 55 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas field project, for expansion planning. + 8 + true + + + 2606 + 417 + 8 + 56 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas field + 8 + true + + + 2607 + 417 + 8 + 57 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of developing the gas field + 8009 + true + + + 2608 + 417 + 8 + 58 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2609 + 417 + 8 + 59 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas field (period over which fixed costs are recovered). + 8 + true + + + 2610 + 417 + 8 + 60 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Binary indicating if this is a required build candidate + 88 + true + + + 2611 + 417 + 8 + 61 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 2612 + 417 + 8 + 62 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Binary indicating if build is required in this year + 88 + true + + + 2613 + 417 + 8 + 63 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2614 + 417 + 8 + 64 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Field production + 8009 + false + + + 2615 + 417 + 12 + 65 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2616 + 417 + 12 + 66 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2617 + 417 + 12 + 67 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2618 + 420 + 1 + 1 + Min Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Field in the blend + 100 + true + + + 2619 + 420 + 1 + 2 + Max Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Field in the blend + 100 + true + + + 2620 + 420 + 1 + 3 + Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of gas field contributing to a gas node + true + + + 2621 + 421 + 1 + 1 + Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of gas field contributing to a gas basin + true + + + 2622 + 422 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of gas field + true + + + 2623 + 423 + 1 + 1 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 2624 + 424 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas field end volume + true + + + 2625 + 424 + 3 + 2 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas field production in the constraint + true + + + 2626 + 424 + 3 + 3 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas field end volume in the constraint + true + + + 2627 + 424 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2628 + 424 + 8 + 5 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2629 + 424 + 8 + 6 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 2630 + 424 + 8 + 7 + Initial Volume Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3080 + Coefficient of initial volume built + C + true + + + 2631 + 424 + 8 + 8 + Initial Volume Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3081 + Coefficient of initial volume retired + C + true + + + 2632 + 424 + 8 + 9 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2633 + 424 + 8 + 10 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 2634 + 424 + 8 + 11 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 2635 + 424 + 8 + 12 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 2636 + 425 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas field end volume + true + + + 2637 + 425 + 3 + 2 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas field production + true + + + 2638 + 425 + 3 + 3 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas field end volume + true + + + 2639 + 425 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2640 + 425 + 8 + 5 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2641 + 426 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Plant for the generation of outages + 101000000 + true + + + 2642 + 426 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2643 + 426 + 2 + 3 + Max Efficiency Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2443 + Maximum number of tranches in the efficiency piecewise linear approximation + 1000 + true + + + 2644 + 426 + 2 + 4 + Formulate Non-convex + 0 + 2 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order + 1000 + true + + + 2645 + 426 + 2 + 5 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2646 + 426 + 2 + 6 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2647 + 426 + 2 + 7 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2648 + 426 + 2 + 8 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this gas plant receives capacity payments. + 8 + false + + + 2649 + 426 + 9 + 9 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas + 80 + true + + + 2650 + 426 + 9 + 9 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1561 + Maximum hourly production of gas + 80 + true + + + 2651 + 426 + 9 + 9 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 1 + false + false + false + false + 1 + 950 + Maximum daily production of gas + 80 + true + + + 2652 + 426 + 9 + 9 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum weekly production of gas + 80 + true + + + 2653 + 426 + 9 + 9 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum monthly production of gas + 80 + true + + + 2654 + 426 + 9 + 9 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum annual production of gas + 80 + true + + + 2655 + 426 + 9 + 10 + Min Production + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas + 80 + true + + + 2656 + 426 + 9 + 10 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1572 + Minimum hourly production of gas + 80 + true + + + 2657 + 426 + 9 + 10 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 1 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas + 80 + true + + + 2658 + 426 + 9 + 10 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas + 80 + true + + + 2659 + 426 + 9 + 10 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas + 80 + true + + + 2660 + 426 + 9 + 10 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas + 80 + true + + + 2661 + 426 + 9 + 11 + Max Starts + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 80 + true + + + 2662 + 426 + 9 + 11 + Max Starts Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 80 + true + + + 2663 + 426 + 9 + 11 + Max Starts Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 80 + true + + + 2664 + 426 + 9 + 11 + Max Starts Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 80 + true + + + 2665 + 426 + 9 + 11 + Max Starts Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 80 + true + + + 2666 + 426 + 9 + 11 + Max Starts Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 80 + true + + + 2667 + 426 + 9 + 12 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints. + 80 + true + + + 2668 + 426 + 9 + 13 + Max Production Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3023 + Maximum production factor (production constraint) + 80 + true + + + 2669 + 426 + 9 + 13 + Max Production Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3024 + Maximum production factor in hour + 80 + true + + + 2670 + 426 + 9 + 13 + Max Production Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3025 + Maximum production factor in day + 80 + true + + + 2671 + 426 + 9 + 13 + Max Production Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3026 + Maximum production factor in week + 80 + true + + + 2672 + 426 + 9 + 13 + Max Production Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3027 + Maximum production factor in month + 80 + true + + + 2673 + 426 + 9 + 13 + Max Production Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3028 + Maximum production factor in year + 80 + true + + + 2674 + 426 + 9 + 14 + Max Production Factor Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3029 + Penalty applied to violations of [Max Production Factor] constraints. + 80 + true + + + 2675 + 426 + 9 + 15 + Min Production Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3030 + Minimum production factor (production constraint) + 80 + true + + + 2676 + 426 + 9 + 15 + Min Production Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3031 + Minimum production factor in hour + 80 + true + + + 2677 + 426 + 9 + 15 + Min Production Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3032 + Minimum production factor in day + 80 + true + + + 2678 + 426 + 9 + 15 + Min Production Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3033 + Minimum production factor in week + 80 + true + + + 2679 + 426 + 9 + 15 + Min Production Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3034 + Minimum production factor in month + 80 + true + + + 2680 + 426 + 9 + 15 + Min Production Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3035 + Minimum production factor in year + 80 + true + + + 2681 + 426 + 9 + 16 + Min Production Factor Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3036 + Penalty applied to violations of [Min Production Factor] constraints. + 80 + true + + + 2682 + 426 + 9 + 17 + Max Ramp + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in gas production per interval + 80 + false + + + 2683 + 426 + 9 + 17 + Max Ramp Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum rate of change in gas production in an hour + 80 + false + + + 2684 + 426 + 9 + 17 + Max Ramp Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum rate of change in gas production in a day + 80 + false + + + 2685 + 426 + 9 + 17 + Max Ramp Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum rate of change in gas production in a week + 80 + false + + + 2686 + 426 + 9 + 17 + Max Ramp Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum rate of change in gas production in a month + 80 + false + + + 2687 + 426 + 9 + 17 + Max Ramp Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum rate of change in gas production in a year + 80 + false + + + 2688 + 426 + 9 + 17 + Max Ramp Up Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2822 + Sets a limit on the rate at which the gas plant can increase production from one hour to the next + 80 + false + + + 2689 + 426 + 9 + 17 + Max Ramp Up Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2823 + Sets a limit on the rate at which the gas plant can increase production from one day to the next + 80 + false + + + 2690 + 426 + 9 + 17 + Max Ramp Up Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2824 + Sets a limit on the rate at which the gas plant can increase production from one week to the next + 80 + false + + + 2691 + 426 + 9 + 17 + Max Ramp Up Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2825 + Sets a limit on the rate at which the gas plant can increase production from one month to the next + 80 + false + + + 2692 + 426 + 9 + 17 + Max Ramp Up Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2826 + Sets a limit on the rate at which the gas plant can increase production from one year to the next + 80 + false + + + 2693 + 426 + 9 + 17 + Max Ramp Down Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2827 + Sets a limit on the rate at which the gas plant can decrease production from one hour to the next + 80 + false + + + 2694 + 426 + 9 + 17 + Max Ramp Down Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2828 + Sets a limit on the rate at which the gas plant can decrease production from one day to the next + 80 + false + + + 2695 + 426 + 9 + 17 + Max Ramp Down Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2829 + Sets a limit on the rate at which the gas plant can decrease production from one week to the next + 80 + false + + + 2696 + 426 + 9 + 17 + Max Ramp Down Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2830 + Sets a limit on the rate at which the gas plant can decrease production from one month to the next + 80 + false + + + 2697 + 426 + 9 + 17 + Max Ramp Down Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2831 + Sets a limit on the rate at which the gas plant can decrease production from one year to the next + 80 + false + + + 2698 + 426 + 3 + 18 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of Gas Plant units in service + 800000 + true + + + 2699 + 426 + 3 + 19 + Min Stable Level + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 501 + Minimum allowed gas production when operating + 1000000081 + true + + + 2700 + 426 + 3 + 20 + Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 665 + Rated capacity of units + 81 + false + + + 2701 + 426 + 3 + 21 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + false + + + 2702 + 426 + 3 + 22 + Heat Rate + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Average heat rate (total fuel divided by total generation) + 1001 + false + + + 2703 + 426 + 3 + 23 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + false + + + 2704 + 426 + 3 + 24 + Heat Rate Incr + 72 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + false + + + 2705 + 426 + 3 + 25 + Min Stable Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1372 + Minimum stable production level as a proportion of [Max Production] + 1000000080 + true + + + 2706 + 426 + 3 + 26 + Fuel Usage Rate + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 3099 + Level of the raw gas consumption associated with [Gas Plant Max Production]. + 1000 + true + + + 2707 + 426 + 3 + 27 + Processing Rate + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1737 + Processing ratio to convert raw natural gas to pipeline quality + true + + + 2708 + 426 + 3 + 28 + Processing Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1738 + Incremental cost of processing gas + true + + + 2709 + 426 + 3 + 29 + Dispatch Processing Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2380 + This replaces the processing charge for the optimization, but on the output side the Processing Charge is used in the cost calculations. + true + + + 2710 + 426 + 3 + 30 + Production Volume + 100 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1743 + Production Volume are used in defining multi-point Gas Plant Production and Processing Charge + true + + + 2711 + 426 + 3 + 31 + Consumption + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1437 + The amount of pipeline quality gas consumed in processing + true + + + 2712 + 426 + 3 + 32 + Energy Usage + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption of Gas Plant + true + + + 2713 + 426 + 3 + 33 + Energy Usage Rate + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 3100 + Level of the electric energy consumption associated with [Gas Plant Max Production] + true + + + 2714 + 426 + 3 + 34 + Energy Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 3101 + Efficiency of energy conversion process + 1000 + true + + + 2715 + 426 + 3 + 35 + Retail Electric Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2515 + Retail price of electric power used by the gas plant + true + + + 2716 + 426 + 3 + 36 + VO&M Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000000 + true + + + 2717 + 426 + 3 + 37 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2718 + 426 + 3 + 38 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Plant + 100 + true + + + 2719 + 426 + 3 + 39 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 2720 + 426 + 3 + 40 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 2721 + 426 + 3 + 41 + Run Up Rate + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while increasing gas production from zero to [Min Stable Level]. + 80000000 + true + + + 2722 + 426 + 3 + 42 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started for gas plants + 1000000080 + true + + + 2723 + 426 + 3 + 43 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started for gas plants + 1000000080 + true + + + 2724 + 426 + 3 + 44 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down for gas plants + 1000000080 + true + + + 2725 + 426 + 3 + 45 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down for gas plants + 1000000080 + true + + + 2726 + 426 + 3 + 46 + Start Profile + 100 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for increasing gas production from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 2727 + 426 + 3 + 47 + Start Profile Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2639 + Penalty for violation of [Start Profile]. + 80 + true + + + 2728 + 426 + 3 + 48 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 2729 + 426 + 3 + 49 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 2730 + 426 + 3 + 50 + Run Down Rate + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1020 + Ramp rate that applies while running the unit down from [Min Stable Level] to zero + 200000000 + true + + + 2731 + 426 + 3 + 51 + Shutdown Profile + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 933 + Detailed regime for running the unit down from [Min Stable Level] when [Run Down Rate] is non-constant. + 200000000 + true + + + 2732 + 426 + 3 + 52 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 2733 + 426 + 3 + 53 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units for gas plants + 1000000080 + true + + + 2734 + 426 + 3 + 54 + Max Ramp Up + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Sets a limit on the rate at which the gas plant can increase production from one interval to the next + 80 + true + + + 2735 + 426 + 3 + 55 + Ramp Up Point + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Gas production point for use with multi-band Max Ramp Up constraints + 80 + true + + + 2736 + 426 + 3 + 56 + Ramp Up Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 2737 + 426 + 3 + 57 + Max Ramp Up Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 2738 + 426 + 3 + 58 + Max Ramp Down + 115 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Sets a limit on the rate at which the gas plant can decrease production from one interval to the next + 80 + true + + + 2739 + 426 + 3 + 59 + Ramp Down Point + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Gas production point for use with multi-band Max Ramp Down constraints + 80 + true + + + 2740 + 426 + 3 + 60 + Ramp Down Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 2741 + 426 + 3 + 61 + Max Ramp Down Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 2742 + 426 + 7 + 62 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2743 + 426 + 7 + 63 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + false + + + 2744 + 426 + 7 + 64 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2745 + 426 + 7 + 65 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2746 + 426 + 7 + 66 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Plant Max Production during the outage + 1000000 + true + + + 2747 + 426 + 7 + 67 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2748 + 426 + 7 + 68 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2749 + 426 + 7 + 69 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2750 + 426 + 7 + 70 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 2751 + 426 + 7 + 71 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 2752 + 426 + 8 + 72 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2753 + 426 + 8 + 73 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2754 + 426 + 8 + 74 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2755 + 426 + 8 + 75 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Gas Plant + 8 + true + + + 2756 + 426 + 8 + 76 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the Gas Plant + 8009 + true + + + 2757 + 426 + 8 + 77 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2758 + 426 + 8 + 78 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Gas Plant (period over which fixed costs are recovered). + 8 + true + + + 2759 + 426 + 8 + 79 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2760 + 426 + 8 + 80 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2761 + 426 + 8 + 81 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2762 + 426 + 8 + 82 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2763 + 426 + 8 + 83 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the Gas Plant + 88 + true + + + 2764 + 426 + 8 + 84 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2765 + 426 + 8 + 85 + Max Units Retired in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2766 + 426 + 8 + 86 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2767 + 426 + 8 + 87 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2768 + 426 + 8 + 88 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Plant production + 8009 + false + + + 2769 + 426 + 8 + 89 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the plant for capacity + 4000008 + false + + + 2770 + 426 + 11 + 90 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2771 + 426 + 11 + 91 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2772 + 426 + 12 + 92 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2773 + 426 + 12 + 93 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2774 + 426 + 12 + 94 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2775 + 431 + 1 + 1 + Min Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Plant in the blend + 100 + true + + + 2776 + 431 + 1 + 2 + Max Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Plant in the blend + 100 + true + + + 2777 + 431 + 1 + 3 + Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of gas plant contributing to a gas output node + true + + + 2778 + 432 + 1 + 1 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 2779 + 433 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas node production + true + + + 2780 + 433 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Gas Plant capacity factor + true + + + 2781 + 433 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + false + + + 2782 + 433 + 3 + 4 + Energy Usage Coefficient + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Gas Plant + true + + + 2783 + 433 + 3 + 5 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas production in the constraint + true + + + 2784 + 433 + 3 + 6 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit starts + true + + + 2785 + 433 + 3 + 7 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 2786 + 433 + 6 + 8 + Installed Capacity Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 2787 + 433 + 8 + 9 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2788 + 433 + 8 + 10 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2789 + 433 + 8 + 11 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2790 + 433 + 8 + 12 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2791 + 433 + 8 + 13 + Capacity Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 2792 + 433 + 8 + 14 + Capacity Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 2793 + 433 + 8 + 15 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2794 + 433 + 8 + 16 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 2795 + 433 + 8 + 17 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 2796 + 434 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas node production + true + + + 2797 + 434 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Gas Plant capacity factor + true + + + 2798 + 434 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + true + + + 2799 + 434 + 3 + 4 + Energy Usage Coefficient + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Gas Plant + true + + + 2800 + 434 + 6 + 5 + Installed Capacity Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 2801 + 434 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2802 + 434 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2803 + 434 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2804 + 434 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2805 + 434 + 8 + 10 + Capacity Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 2806 + 434 + 8 + 11 + Capacity Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 2807 + 434 + 8 + 12 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2808 + 434 + 8 + 13 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 2809 + 434 + 8 + 14 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 2810 + 435 + 1 + 1 + Energy Usage Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1886 + Coefficient of the Decision Variable in the Gas Plant Energy Usage definition equation + true + + + 2811 + 436 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 2812 + 436 + 2 + 2 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 2813 + 436 + 2 + 3 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 2814 + 436 + 2 + 4 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 2815 + 436 + 2 + 5 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 2816 + 436 + 2 + 6 + Decomposition Method + 0 + 0 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 2817 + 436 + 2 + 7 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 2818 + 436 + 2 + 8 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 2819 + 436 + 2 + 9 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 2820 + 436 + 2 + 10 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 2821 + 436 + 2 + 11 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 2822 + 436 + 2 + 12 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 2823 + 436 + 2 + 13 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2824 + 436 + 2 + 14 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2825 + 436 + 2 + 15 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2826 + 436 + 2 + 16 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2827 + 436 + 3 + 17 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Pipeline is in service + false + + + 2828 + 436 + 3 + 18 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Pipeline is available for flow. + true + + + 2829 + 436 + 3 + 19 + Max Daily Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2031 + Max daily total gas release for the pipeline + false + + + 2830 + 436 + 3 + 20 + Max Daily Flow Back + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2702 + Max daily total gas release back for the pipeline + false + + + 2831 + 436 + 3 + 21 + Is Bidirectional + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2033 + Indicates if the pipeline allows flow in both directions + 800000 + true + + + 2832 + 436 + 3 + 22 + Diameter + 23 + 0.762 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1796 + Gas pipeline diameter + false + + + 2833 + 436 + 3 + 23 + Roughness + 0 + 150 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1797 + Gas pipeline roughness constant + false + + + 2834 + 436 + 3 + 24 + Length + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1798 + Length of the Gas Pipeline + false + + + 2835 + 436 + 3 + 25 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 639 + Efficiency of Gas Pipeline pump + false + + + 2836 + 436 + 3 + 26 + Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1268 + Incremental cost of extracting gas from the pipeline + 2000000000 + true + + + 2837 + 436 + 3 + 27 + Dispatch Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2349 + Dispatch cost of extracting gas at the pipeline receiving node + 2000000000 + true + + + 2838 + 436 + 3 + 28 + Flow Charge Level + 100 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2376 + Level corresponding to Flow Charge + 2000000000 + true + + + 2839 + 436 + 3 + 29 + Flow Charge Level Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2788 + Level factor corresponding to Flow Charge + 2000000000 + true + + + 2840 + 436 + 3 + 30 + Flow Charge Back + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1639 + Incremental cost of extracting gas at the pipeline sending node + 2000000000 + true + + + 2841 + 436 + 3 + 31 + Dispatch Flow Charge Back + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2350 + Dispatch cost of extracting gas at the pipeline sending node + 2000000000 + true + + + 2842 + 436 + 3 + 32 + Flow Charge Back Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2377 + Level corresponding to Flow Charge Back + 2000000000 + true + + + 2843 + 436 + 3 + 33 + Flow Charge Back Level Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2789 + Level factor corresponding to Flow Charge Back + 2000000000 + true + + + 2844 + 436 + 3 + 34 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Volume of gas stored in the pipeline at the beginning of the horizon + 80000 + true + + + 2845 + 436 + 3 + 35 + Max Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 466 + Maximum volume of gas stored in the pipeline + 4 + true + + + 2846 + 436 + 3 + 36 + Min Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 510 + Minimum volume of gas stored in the pipeline + 4 + true + + + 2847 + 436 + 3 + 37 + Imbalance Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1655 + The charge applicable to the volume imbalance + 2000000000 + true + + + 2848 + 436 + 3 + 38 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2849 + 436 + 3 + 39 + Consumption Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1814 + Proportion of the electricity consumption allocated to the receiving gas node + false + + + 2850 + 436 + 3 + 40 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1602 + Reservation charge for gas pipeline + true + + + 2851 + 436 + 3 + 41 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1965 + Reservation volume for gas pipeline + true + + + 2852 + 436 + 3 + 42 + Loss Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Loss rate for gas pipeline flow + 200000 + true + + + 2853 + 436 + 3 + 43 + Initial Pressure + 89 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2421 + Pressure of gas stored in the pipeline at the beginning of the horizon + 80000 + true + + + 2854 + 436 + 3 + 44 + Min Volume Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2422 + Minimum percentage of max volume that must be stored in the Gas Pipeline to maintain pressure + true + + + 2855 + 436 + 3 + 45 + Min Pressure Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2423 + Minimum percentage of max pressure that must be stored in the Gas Pipeline to maintain pressure + true + + + 2856 + 436 + 3 + 46 + Max Pressure + 89 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2424 + Maximum pressure of gas stored in the pipeline + true + + + 2857 + 436 + 3 + 47 + Entitlement Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2503 + Indicates whether maximum flow entitlement is at the input node (gross) or at the output node (net). + true + + + 2858 + 436 + 3 + 48 + Fuel Loss Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3128 + Indicates whether fuel loss is applied at the input node (gross) or at the output node (net). + true + + + 2859 + 436 + 3 + 49 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the gas pipeline energy consumption curve. + false + + + 2860 + 436 + 3 + 50 + Energy Consumed Flow Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2122 + Flow level defining the gas pipeline energy consumption curve. + false + + + 2861 + 436 + 9 + 51 + Max Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 429 + Maximum quantity of gas that can be extracted from the pipeline + 5 + true + + + 2862 + 436 + 9 + 51 + Max Flow Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1584 + Maximum quantity of gas that can be extracted from the pipeline each hour + 4 + true + + + 2863 + 436 + 9 + 51 + Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum quantity of gas that can be extracted from the pipeline each day + 4 + true + + + 2864 + 436 + 9 + 51 + Max Flow Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1586 + Maximum quantity of gas that can be extracted from the pipeline each week + 4 + true + + + 2865 + 436 + 9 + 51 + Max Flow Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1587 + Maximum quantity of gas that can be extracted from the pipeline each month + 4 + true + + + 2866 + 436 + 9 + 51 + Max Flow Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1588 + Maximum quantity of gas that can be extracted from the pipeline each year + 4 + true + + + 2867 + 436 + 9 + 52 + Min Flow + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 481 + Minimum quantity of gas that can be extracted at the pipeline receiving node + 5 + true + + + 2868 + 436 + 9 + 52 + Min Flow Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2355 + Minimum quantity of gas that can be extracted at the pipeline receiving node each hour + 4 + true + + + 2869 + 436 + 9 + 52 + Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum quantity of gas that can be extracted at the pipeline receiving node each day + 4 + true + + + 2870 + 436 + 9 + 52 + Min Flow Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2357 + Minimum quantity of gas that can be extracted at the pipeline receiving node each week + 4 + true + + + 2871 + 436 + 9 + 52 + Min Flow Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2358 + Minimum quantity of gas that can be extracted at the pipeline receiving node each month + 4 + true + + + 2872 + 436 + 9 + 52 + Min Flow Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2359 + Minimum quantity of gas that can be extracted at the pipeline receiving node each year + 4 + true + + + 2873 + 436 + 9 + 53 + Max Flow Back + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1633 + Maximum quantity of gas that can be extracted from the pipeline sending node + 4 + true + + + 2874 + 436 + 9 + 53 + Max Flow Back Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1634 + Maximum quantity of gas that can be extracted at the pipeline sending node each hour + 4 + true + + + 2875 + 436 + 9 + 53 + Max Flow Back Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1635 + Maximum quantity of gas that can be extracted at the pipeline sending node each day + 4 + true + + + 2876 + 436 + 9 + 53 + Max Flow Back Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1636 + Maximum quantity of gas that can be extracted at the pipeline sending node each week + 4 + true + + + 2877 + 436 + 9 + 53 + Max Flow Back Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1637 + Maximum quantity of gas that can be extracted at the pipeline sending node each month + 4 + true + + + 2878 + 436 + 9 + 53 + Max Flow Back Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1638 + Minimum quantity of gas that can be extracted at the pipeline sending node each year + 4 + true + + + 2879 + 436 + 9 + 54 + Min Flow Back + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2360 + Minimum quantity of gas that can be extracted from the pipeline sending node + 4 + true + + + 2880 + 436 + 9 + 54 + Min Flow Back Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2361 + Minimum quantity of gas that can be extracted at the pipeline sending node each hour + 4 + true + + + 2881 + 436 + 9 + 54 + Min Flow Back Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2362 + Minimum quantity of gas that can be extracted at the pipeline sending node each day + 4 + true + + + 2882 + 436 + 9 + 54 + Min Flow Back Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2363 + Minimum quantity of gas that can be extracted at the pipeline sending node each week + 4 + true + + + 2883 + 436 + 9 + 54 + Min Flow Back Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2364 + Minimum quantity of gas that can be extracted at the pipeline sending node each month + 4 + true + + + 2884 + 436 + 9 + 54 + Min Flow Back Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2365 + Minimum quantity of gas that can be extracted at the pipeline sending node each year + 4 + true + + + 2885 + 436 + 9 + 55 + Max Flow Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1164 + Penalty for violating the [Max Flow] constraints. + 80 + true + + + 2886 + 436 + 9 + 56 + Min Flow Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 286 + Penalty for violating the [Min Flow] constraints. + 80 + true + + + 2887 + 436 + 9 + 57 + Max Flow Back Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2661 + Penalty for violating the [Max Flow Back] constraints. + 80 + true + + + 2888 + 436 + 9 + 58 + Min Flow Back Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2660 + Penalty for violating the [Min Flow Back] constraints. + 80 + true + + + 2889 + 436 + 7 + 59 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2890 + 436 + 7 + 60 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2891 + 436 + 7 + 61 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2892 + 436 + 7 + 62 + Outage Max Flow + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1640 + Pipeline Max Flow during the outage + 1000000 + true + + + 2893 + 436 + 7 + 63 + Outage Max Flow Back + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1641 + Pipeline Max Flow Back during the outage + 1000000 + true + + + 2894 + 436 + 7 + 64 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2895 + 436 + 7 + 65 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2896 + 436 + 7 + 66 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2897 + 436 + 7 + 67 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 2898 + 436 + 7 + 68 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 2899 + 436 + 8 + 69 + Expansion Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2034 + Indicates if the gas pipeline is eligible for expansion planning + 8 + true + + + 2900 + 436 + 8 + 70 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2901 + 436 + 8 + 71 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas pipeline project, for expansion planning. + 8 + true + + + 2902 + 436 + 8 + 72 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas pipeline + 8 + true + + + 2903 + 436 + 8 + 73 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the gas pipeline + 8009 + true + + + 2904 + 436 + 8 + 74 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2905 + 436 + 8 + 75 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas pipeline (period over which fixed costs are recovered). + 8 + true + + + 2906 + 436 + 8 + 76 + Retirement Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2035 + Indicates if the gas pipeline is eligible for retirement planning + 88 + true + + + 2907 + 436 + 8 + 77 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas pipeline + 88 + true + + + 2908 + 436 + 8 + 78 + Retirement Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3102 + Retirement Max Flow Daily is the total maximum gas retired for the pipeline + 8 + true + + + 2909 + 436 + 8 + 79 + Retirement Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3103 + Retirement Min Flow Daily is the minimum gas retired for the pipeline + 8 + true + + + 2910 + 436 + 8 + 80 + Annual Retirement Max Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3104 + Annual Retirement Max Flow Daily is the total maximum annual gas retired for the pipeline + 8 + true + + + 2911 + 436 + 8 + 81 + Annual Retirement Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3105 + Annual Retirement Min Flow Daily is the total minimum annual gas retired for the pipeline + 8 + true + + + 2912 + 436 + 8 + 82 + Expansion Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2032 + Expansion Max Flow Daily total maximum gas release for the pipeline + 8 + true + + + 2913 + 436 + 8 + 83 + Expansion Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3106 + Expansion Min Flow Daily is the minimum gas release for the pipeline + 8 + true + + + 2914 + 436 + 8 + 84 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 2915 + 436 + 8 + 85 + Annual Expansion Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2667 + Annual Expansion Max Flow Daily total maximum annual gas release for the pipeline + 8 + true + + + 2916 + 436 + 8 + 86 + Annual Expansion Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3107 + Annual Expansion Min Flow Daily is the total minimum annual gas release for the pipeline + 8 + true + + + 2917 + 436 + 8 + 87 + Monthly Expansion Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2976 + Monthly Expansion Max Flow Daily total maximum monthly gas release for the pipeline + 8 + true + + + 2918 + 436 + 8 + 88 + Term Expansion Max Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2981 + Expansion Max Flow Daily total gas release for the term based Gas Pipeline + 8 + true + + + 2919 + 436 + 8 + 89 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2920 + 436 + 8 + 90 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Pipeline operation + 8009 + false + + + 2921 + 436 + 11 + 91 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2922 + 436 + 11 + 92 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2923 + 436 + 12 + 93 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2924 + 436 + 12 + 94 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2925 + 436 + 12 + 95 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2926 + 444 + 1 + 1 + Outage Max Flow + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1640 + Pipeline Max Flow during the outage + 4 + true + + + 2927 + 444 + 1 + 2 + Outage Max Flow Back + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1641 + Pipeline Max Flow Back during the outage + 4 + true + + + 2928 + 445 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas in storage. + true + + + 2929 + 445 + 3 + 2 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas pipeline flow in the constraint + true + + + 2930 + 445 + 3 + 3 + Flow Forward Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of gas pipeline flow at the receiving node + true + + + 2931 + 445 + 3 + 4 + Flow Back Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of gas pipeline flow at the sending node + true + + + 2932 + 445 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2933 + 445 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2934 + 445 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2935 + 445 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2936 + 445 + 8 + 9 + Expansion Flow Day Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3082 + Coefficient of expansion flow day built + C + true + + + 2937 + 445 + 8 + 10 + Expansion Flow Day Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3083 + Coefficient of expansion flow day retired + C + true + + + 2938 + 445 + 8 + 11 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2939 + 445 + 8 + 12 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 2940 + 445 + 8 + 13 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 2941 + 446 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas in storage + true + + + 2942 + 446 + 3 + 2 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas pipeline flow + true + + + 2943 + 446 + 3 + 3 + Flow Forward Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of gas pipeline flow at the receiving node + true + + + 2944 + 446 + 3 + 4 + Flow Back Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of gas pipeline flow at the sending node + true + + + 2945 + 446 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2946 + 446 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2947 + 446 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2948 + 446 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2949 + 447 + 1 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient on gas pipeline flow + true + + + 2950 + 447 + 1 + 2 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of the end volume in Gas Pipeline in the condition equation + true + + + 2951 + 448 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2952 + 448 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2953 + 448 + 2 + 3 + Report Marginal Resources + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2623 + If marginal resources are reported for the gas node in the solution + true + + + 2954 + 448 + 3 + 4 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Node is in service + 800000 + true + + + 2955 + 448 + 3 + 5 + Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1268 + Incremental cost of flowing gas through the node + 2000000000 + true + + + 2956 + 448 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2957 + 448 + 9 + 7 + Max Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 429 + Maximum flow through the gas node + 5 + true + + + 2958 + 448 + 9 + 7 + Max Flow Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1584 + Maximum flow through the gas node each hour + 80 + true + + + 2959 + 448 + 9 + 7 + Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow through the gas node each day + 80 + true + + + 2960 + 448 + 9 + 7 + Max Flow Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1586 + Maximum flow through the gas node each week + 80 + true + + + 2961 + 448 + 9 + 7 + Max Flow Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1587 + Maximum flow through the gas node each month + 80 + true + + + 2962 + 448 + 9 + 7 + Max Flow Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1588 + Maximum flow through the gas node each year + 80 + true + + + 2963 + 448 + 3 + 8 + Gas Security + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1811 + Proportion of local Gas Demand that must be covered by Gas Storage at the Gas Node + false + + + 2964 + 448 + 9 + 9 + Min Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2394 + Minimum heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2965 + 448 + 9 + 9 + Min Heat Value Hour + 0 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2395 + Minimum hourly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2966 + 448 + 9 + 9 + Min Heat Value Day + 0 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2396 + Minimum daily heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2967 + 448 + 9 + 9 + Min Heat Value Week + 0 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2397 + Minimum weekly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2968 + 448 + 9 + 9 + Min Heat Value Month + 0 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2398 + Minimum monthly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2969 + 448 + 9 + 9 + Min Heat Value Year + 0 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2399 + Minimum annual heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2970 + 448 + 9 + 10 + Max Heat Value + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2400 + Maximum heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2971 + 448 + 9 + 10 + Max Heat Value Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2401 + Maximum hourly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2972 + 448 + 9 + 10 + Max Heat Value Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2402 + Maximum daily heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2973 + 448 + 9 + 10 + Max Heat Value Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2403 + Maximum weekly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2974 + 448 + 9 + 10 + Max Heat Value Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2404 + Maximum monthly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2975 + 448 + 9 + 10 + Max Heat Value Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2405 + Maximum annual heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2976 + 448 + 9 + 11 + Max Terminal Limit + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2757 + Maximum number of Gas Transports delivering to a Gas Node. + 80 + true + + + 2977 + 448 + 8 + 12 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 2978 + 448 + 8 + 13 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2979 + 448 + 8 + 14 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2980 + 448 + 8 + 15 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas node + 8 + true + + + 2981 + 448 + 8 + 16 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the gas node + 8009 + true + + + 2982 + 448 + 8 + 17 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2983 + 448 + 8 + 18 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas node (period over which fixed costs are recovered). + 8 + true + + + 2984 + 448 + 8 + 19 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2985 + 448 + 8 + 20 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 2986 + 448 + 8 + 21 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2987 + 448 + 8 + 22 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2988 + 448 + 8 + 23 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas node + 88 + true + + + 2989 + 448 + 8 + 24 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2990 + 448 + 8 + 25 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2991 + 448 + 8 + 26 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2992 + 448 + 12 + 27 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2993 + 448 + 12 + 28 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2994 + 448 + 12 + 29 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2995 + 451 + 3 + 1 + Emission Charge + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2999 + Emission charge for emissions consumed at the Gas Node in a virtual emission network + 2000 + true + + + 2996 + 451 + 3 + 2 + Max Emissions + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3000 + Maximum amount of emissions consumed at the Gas Node in a virtual emission network + 2000 + true + + + 2997 + 454 + 1 + 1 + Sequence + 0 + 0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 2709 + Sequence number of the Gas node in the Gas path + true + + + 2998 + 454 + 1 + 2 + Voyage Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + true + true + true + false + 1 + 1841 + Time taken for the voyage from one Gas Node on the Gas path to the next Gas Node + true + + + 2999 + 455 + 3 + 1 + Max Energy Content + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1914345960 + Maximum amount of Energy Content at the Gas Node in a virtual energy network + true + + + 3000 + 455 + 3 + 2 + Min Energy Content + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 792259238 + Minimum amount of Energy Content at the Gas Node in a virtual energy network + true + + + 3001 + 456 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 3002 + 456 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Gas consumption for each unit of consumption + true + + + 3003 + 456 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Gas production for each unit of production + true + + + 3004 + 456 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Gas consumption for each unit operating + 1000000000 + true + + + 3005 + 456 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Gas consumption for each installed unit + 4 + true + + + 3006 + 458 + 3 + 1 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas Node flow in the constraint + true + + + 3007 + 458 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3008 + 458 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3009 + 458 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 3010 + 458 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 3011 + 458 + 8 + 6 + Flow Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3084 + Coefficient of flow built + C + true + + + 3012 + 458 + 8 + 7 + Flow Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3085 + Coefficient of flow retired + C + true + + + 3013 + 458 + 8 + 8 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3014 + 458 + 8 + 9 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3015 + 458 + 8 + 10 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3016 + 458 + 3 + 11 + Heat Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2413 + Coefficient of gas node heat value + true + + + 3017 + 459 + 3 + 1 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas node flow + true + + + 3018 + 459 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3019 + 459 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3020 + 459 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3021 + 459 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3022 + 460 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 3023 + 460 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 3024 + 460 + 2 + 3 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 3025 + 460 + 2 + 4 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 3026 + 460 + 2 + 5 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 3027 + 460 + 2 + 6 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 3028 + 460 + 2 + 7 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 3029 + 460 + 2 + 8 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 3030 + 460 + 2 + 9 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 3031 + 460 + 2 + 10 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 3032 + 460 + 2 + 11 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 3033 + 460 + 2 + 12 + Initial Value Inclusion + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2271 + If initial value in the gas storage is included in optimization. + 80 + true + + + 3034 + 460 + 2 + 13 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Storage for the generation of outages + 101000000 + true + + + 3035 + 460 + 2 + 14 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3036 + 460 + 2 + 15 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3037 + 460 + 2 + 16 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3038 + 460 + 2 + 17 + Use Additive Ratchet + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2210 + If additive ratchet use is enforced. + 80 + true + + + 3039 + 460 + 2 + 18 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 3040 + 460 + 3 + 19 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Storage is in service + false + + + 3041 + 460 + 3 + 20 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Storage is available + true + + + 3042 + 460 + 3 + 21 + Max Volume + 100 + 1E+30 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 466 + Maximum volume of gas allowed in storage + 5 + true + + + 3043 + 460 + 3 + 22 + Min Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 510 + Minimum volume of gas allowed in storage + 4 + true + + + 3044 + 460 + 3 + 23 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of gas in the storage + 80001 + true + + + 3045 + 460 + 3 + 24 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1246 + Incremental cost of withdrawing gas from the storage + 2000000000 + true + + + 3046 + 460 + 3 + 25 + Dispatch Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2381 + Incremental dispatch cost of withdrawing gas from the storage + 2000000000 + true + + + 3047 + 460 + 3 + 26 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1252 + Incremental cost of injecting gas into the storage + 2000000000 + true + + + 3048 + 460 + 3 + 27 + Dispatch Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2695 + Incremental dispatch cost of injecting gas into the storage + 2000000000 + true + + + 3049 + 460 + 3 + 28 + Injection Withdrawal Charge Level + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2744 + Percentage of volume that correspond to bands of Injection Withdrawal Charge or Dispatch Injection Withdrawal Charge + true + + + 3050 + 460 + 3 + 29 + Injection Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1936 + Maximum amount of gas that can be injected into the storage in any interval when defining a gas storage ratchet. + 80 + true + + + 3051 + 460 + 3 + 30 + Withdrawal Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1937 + Maximum amount of gas that can be withdrawn from the storage in any interval when defining a gas storage ratchet. + 80 + true + + + 3052 + 460 + 3 + 31 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1602 + Reservation charge for gas storage + true + + + 3053 + 460 + 3 + 32 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1965 + Reservation volume for gas storage + true + + + 3054 + 460 + 3 + 33 + Injection Fuel Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1966 + Fuel injection rate for gas storage + true + + + 3055 + 460 + 3 + 34 + Withdrawal Fuel Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1967 + Fuel withdrawal rate for gas storage + true + + + 3056 + 460 + 3 + 35 + Loss Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to leakage, etc + 200000 + true + + + 3057 + 460 + 3 + 36 + Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1968 + Carrying rate for gas storage per year + true + + + 3058 + 460 + 3 + 37 + Ratchet Type + 0 + 0 + In (0,1,2) + 2;"Linear Convex";1;"Linear";0;"Step" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2037 + Indicates how the gas storage ratchets are represented + true + + + 3059 + 460 + 3 + 38 + Initial Inventory Price + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2074 + Price linked to initial inventory + true + + + 3060 + 460 + 3 + 39 + Inventory Charge + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Charge per unit of inventory each day + true + + + 3061 + 460 + 3 + 40 + External Injection + 100 + 0 + 1 + 0 + 2 + 0 + false + false + false + false + 1 + 1460 + External injection into the gas storage + true + + + 3062 + 460 + 3 + 41 + External Injection Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3125 + Incremental cost of injecting gas from outside of the network into the storage + 2000000000 + true + + + 3063 + 460 + 3 + 42 + Min Temperature Withdrawal + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2244 + Minimum temperature at which the gas storage is allowed to withdraw gas + true + + + 3064 + 460 + 3 + 43 + Max Temperature Withdrawal + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2245 + Maximum temperature at which the gas storage is allowed to withdraw gas + true + + + 3065 + 460 + 3 + 44 + Min Temperature Injection + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2246 + Minimum temperature at which the gas storage is allowed to inject gas + true + + + 3066 + 460 + 3 + 45 + Max Temperature Injection + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2247 + Maximum temperature at which the gas storage is allowed to inject gas + true + + + 3067 + 460 + 3 + 46 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3068 + 460 + 3 + 47 + Initial Heat Value + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2433 + Initial heat value of the gas stored in the gas storage + true + + + 3069 + 460 + 3 + 48 + Initial Carbon Content + 102 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2407 + Initial carbon content of the gas stored in the gas storage + true + + + 3070 + 460 + 3 + 49 + Entitlement Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2503 + Indicates whether maximum injection or withdrawal entitlement does not include loss (gross) or includes loss (net). + true + + + 3071 + 460 + 3 + 50 + Power Consumption + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2784 + power consumption of Gas Storage + true + + + 3072 + 460 + 3 + 51 + Volume Power Consumption + 116 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2785 + constant of proportionality for power consumption of Gas Storage current volume + true + + + 3073 + 460 + 3 + 52 + Max Storage Power Consumption + 116 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2786 + constant of proportionality for power consumption of Gas Storage max volume + true + + + 3074 + 460 + 3 + 53 + Injection Energy Consumption + 117 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2787 + constant of proportionality for energy consumption of Gas Storage injection + true + + + 3075 + 460 + 3 + 54 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the gas storage energy consumption curve. + false + + + 3076 + 460 + 3 + 55 + Energy Consumed Withdrawal Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2131 + Withdrawal level defining the gas storage energy consumption curve. + false + + + 3077 + 460 + 3 + 56 + Initial Energy Value + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 221557121 + Initial energy value of the gas stored in the gas storage in a virtual energy network + true + + + 3078 + 460 + 9 + 57 + Max Withdrawal + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of gas that can be withdrawn from the storage + 80 + true + + + 3079 + 460 + 9 + 57 + Max Withdrawal Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of gas that can be withdrawn from the storage in a hour + 80 + true + + + 3080 + 460 + 9 + 57 + Max Withdrawal Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1247 + Maximum amount of gas that can be withdrawn from the storage in day + 80 + true + + + 3081 + 460 + 9 + 57 + Max Withdrawal Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of gas that can be withdrawn from the storage in a week + 80 + true + + + 3082 + 460 + 9 + 57 + Max Withdrawal Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of gas that can be withdrawn from the storage in a month + 80 + true + + + 3083 + 460 + 9 + 57 + Max Withdrawal Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of gas that can be withdrawn from the storage in a year + 80 + true + + + 3084 + 460 + 9 + 58 + Max Injection + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of gas that can be injected into the storage + 80 + true + + + 3085 + 460 + 9 + 58 + Max Injection Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of gas that can be injected into the storage in a hour + 80 + true + + + 3086 + 460 + 9 + 58 + Max Injection Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of gas that can be injected into the storage in a day + 80 + true + + + 3087 + 460 + 9 + 58 + Max Injection Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of gas that can be injected into the storage in a week + 80 + true + + + 3088 + 460 + 9 + 58 + Max Injection Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of gas that can be injected into the storage in a month + 80 + true + + + 3089 + 460 + 9 + 58 + Max Injection Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of gas that can be injected into the storage in a year + 80 + true + + + 3090 + 460 + 9 + 59 + Min Withdrawal + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1258 + Amount of gas that must be withdrawn from storage + 80 + true + + + 3091 + 460 + 9 + 59 + Min Withdrawal Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of gas that must be withdrawn from storage each hour + 80 + true + + + 3092 + 460 + 9 + 59 + Min Withdrawal Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of gas that must be withdrawn from storage in a day + 80 + true + + + 3093 + 460 + 9 + 59 + Min Withdrawal Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of gas that must be withdrawn from storage in a week + 80 + true + + + 3094 + 460 + 9 + 59 + Min Withdrawal Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of gas that must be withdrawn from storage in a month + 80 + true + + + 3095 + 460 + 9 + 59 + Min Withdrawal Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of gas that must be withdrawn from storage in a year + 80 + true + + + 3096 + 460 + 9 + 60 + Min Injection + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1263 + Amount of gas that must be injected into the storage + 80 + true + + + 3097 + 460 + 9 + 60 + Min Injection Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of gas that must be injected into the storage each hour + 80 + true + + + 3098 + 460 + 9 + 60 + Min Injection Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of gas that must be injected into the storage in a day + 80 + true + + + 3099 + 460 + 9 + 60 + Min Injection Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of gas that must be injected into the storage in a week + 80 + true + + + 3100 + 460 + 9 + 60 + Min Injection Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of gas that must be injected into the storage in a month + 80 + true + + + 3101 + 460 + 9 + 60 + Min Injection Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of gas that must be injected into the storage in a year + 80 + true + + + 3102 + 460 + 9 + 61 + Max Ramp + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in storage per interval + 80 + true + + + 3103 + 460 + 9 + 61 + Max Ramp Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum rate of change in storage in an hour + 80 + true + + + 3104 + 460 + 9 + 61 + Max Ramp Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum rate of change in storage in a day + 80 + true + + + 3105 + 460 + 9 + 61 + Max Ramp Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum rate of change in storage in a week + 80 + true + + + 3106 + 460 + 9 + 61 + Max Ramp Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum rate of change in storage in a month + 80 + true + + + 3107 + 460 + 9 + 61 + Max Ramp Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum rate of change in storage in a year + 80 + true + + + 3108 + 460 + 9 + 62 + Target + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 80 + true + + + 3109 + 460 + 9 + 62 + Target Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 80 + true + + + 3110 + 460 + 9 + 62 + Target Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 80 + true + + + 3111 + 460 + 9 + 62 + Target Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 3112 + 460 + 9 + 62 + Target Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 80 + true + + + 3113 + 460 + 9 + 62 + Target Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 80 + true + + + 3114 + 460 + 9 + 63 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 80 + true + + + 3115 + 460 + 9 + 64 + Target Penalty Under + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2378 + Penalty for violating the Min Storage Target. + 80 + true + + + 3116 + 460 + 3 + 65 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption associated with releases from the Gas Storage + false + + + 3117 + 460 + 9 + 66 + Min Storage Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2075 + Minimum Storage Target Percent for gas storage + 80 + true + + + 3118 + 460 + 9 + 67 + Max Storage Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2076 + Max Storage Target Percent for gas storage + 80 + true + + + 3119 + 460 + 9 + 68 + Withdrawal Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1744 + Scalar to set the maximum amount of gas that can be withdrawn from the storage + 80 + true + + + 3120 + 460 + 9 + 69 + Withdrawal Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 1745 + Storage volume for which withdrawal is allowed + 80 + true + + + 3121 + 460 + 9 + 70 + Withdrawal Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1977 + Fuel withdrawal factor for gas storage + true + + + 3122 + 460 + 9 + 71 + Injection Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1746 + Scalar to set the maximum amount of gas that can be injected into the storage + 80 + true + + + 3123 + 460 + 9 + 72 + Injection Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 1747 + Storage volume for which injection is allowed + 80 + true + + + 3124 + 460 + 9 + 73 + Injection Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1976 + Fuel injection factor for gas storage + true + + + 3125 + 460 + 9 + 74 + Min Withdrawal Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3008 + Minimum quantity of gas, expressed as a percentage of Gas Storage inventory, that must be withdrawn during a given interval + true + + + 3126 + 460 + 7 + 75 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3127 + 460 + 7 + 76 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3128 + 460 + 7 + 77 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3129 + 460 + 7 + 78 + Outage Max Withdrawal + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2353 + Storage Max Withdrawal during the outage + 1000000 + true + + + 3130 + 460 + 7 + 79 + Outage Max Injection + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2354 + Storage Max Injection during the outage + 1000000 + true + + + 3131 + 460 + 7 + 80 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3132 + 460 + 7 + 81 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3133 + 460 + 7 + 82 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3134 + 460 + 7 + 83 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 3135 + 460 + 7 + 84 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 3136 + 460 + 8 + 85 + Expansion Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2029 + Indicates if the gas storage is eligible for expansion planning + 8 + true + + + 3137 + 460 + 8 + 86 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3138 + 460 + 8 + 87 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas storage project, for expansion planning. + 8 + true + + + 3139 + 460 + 8 + 88 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas storage + 8 + true + + + 3140 + 460 + 8 + 89 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 44 + Cost of building the gas storage + 8009 + true + + + 3141 + 460 + 8 + 90 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3142 + 460 + 8 + 91 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas storage (period over which fixed costs are recovered). + 8 + true + + + 3143 + 460 + 8 + 92 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2030 + Indicates if the gas storage is eligible for retirement planning + 8 + true + + + 3144 + 460 + 8 + 93 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas storage + 88 + true + + + 3145 + 460 + 8 + 94 + Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2028 + Expansion max volume associated with the Gas Storage + 8 + true + + + 3146 + 460 + 8 + 95 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 3147 + 460 + 8 + 96 + Annual Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2668 + Annual Expansion max volume associated with the Gas Storage + 8 + true + + + 3148 + 460 + 8 + 97 + Monthly Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2977 + Monthly Expansion max volume associated with the Gas Storage + 8 + true + + + 3149 + 460 + 8 + 98 + Term Expansion Max Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2982 + Expansion max volume associated with the term based Gas Storage + 8 + true + + + 3150 + 460 + 8 + 99 + Expansion Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3108 + Expansion min volume associated with the Gas Storage + 8 + true + + + 3151 + 460 + 8 + 100 + Annual Expansion Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3109 + Annual Expansion min volume associated with the Gas Storage + 8 + true + + + 3152 + 460 + 8 + 101 + Retirement Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3110 + Retirement max volume associated with the Gas Storage + 8 + true + + + 3153 + 460 + 8 + 102 + Retirement Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3111 + Retirement min volume associated with the Gas Storage + 8 + true + + + 3154 + 460 + 8 + 103 + Annual Retirement Max Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3112 + Annual retirement max volume associated with the Gas Storage + 8 + true + + + 3155 + 460 + 8 + 104 + Annual Retirement Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 3113 + Annual retirement min volume associated with the Gas Storage + 8 + true + + + 3156 + 460 + 8 + 105 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 3157 + 460 + 8 + 106 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost in the gas storage operation + 8009 + false + + + 3158 + 460 + 11 + 107 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 3159 + 460 + 11 + 108 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 3160 + 460 + 11 + 109 + Trajectory Non-anticipativity + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 3161 + 460 + 11 + 110 + Trajectory Non-anticipativity Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100000000 + true + + + 3162 + 460 + 11 + 111 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 3163 + 460 + 12 + 112 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3164 + 460 + 12 + 113 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3165 + 460 + 12 + 114 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3166 + 467 + 1 + 1 + Node Type + 0 + 0 + In (0,1,2) + 0;"Both";1;"Injection Only";2;"Withdrawal Only" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2085 + Using this input property, a Gas Node defined in the Gas Node collection of a Gas Storage can act as injection only, withdrawal only or both. + 800000 + true + + + 3167 + 472 + 1 + 1 + Outage Max Withdrawal + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2353 + Gas Storage Max Withdrawal during the outage + 4 + true + + + 3168 + 472 + 1 + 2 + Outage Max Injection + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2354 + Gas Storage Max Injection during the outage + 4 + true + + + 3169 + 473 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + true + + + 3170 + 473 + 3 + 2 + Withdrawal Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of gas storage withdrawal in the constraint + true + + + 3171 + 473 + 3 + 3 + Injection Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of gas storage injection in the constraint + true + + + 3172 + 473 + 3 + 4 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas storage end volume in the constraint + true + + + 3173 + 473 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3174 + 473 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3175 + 473 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 3176 + 473 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 3177 + 473 + 8 + 9 + Expansion Volume Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3086 + Coefficient of expansion volume built + C + true + + + 3178 + 473 + 8 + 10 + Expansion Volume Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3087 + Coefficient of expansion volume retired + C + true + + + 3179 + 473 + 8 + 11 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3180 + 473 + 8 + 12 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3181 + 473 + 8 + 13 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3182 + 474 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 3183 + 474 + 3 + 2 + Withdrawal Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of gas storage withdrawal + true + + + 3184 + 474 + 3 + 3 + Injection Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of gas storage injection + true + + + 3185 + 474 + 3 + 4 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas storage end volume + true + + + 3186 + 474 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3187 + 474 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3188 + 474 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3189 + 474 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3190 + 475 + 1 + 1 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of the end volume in Gas Storage in the condition equation + true + + + 3191 + 476 + 2 + 1 + Demand Type + 0 + 0 + In (0,1,2) + 0;"Input";1;"Temperature";2;"Heating Degree Days" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2000 + Function structure for demand type inputs + true + + + 3192 + 476 + 3 + 2 + Demand + 100 + 0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 133 + Demand for gas + 400 + true + + + 3193 + 476 + 3 + 3 + Shortage Price + 88 + 1000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1270 + Notional price of gas shortage + 40000000 + true + + + 3194 + 476 + 3 + 4 + Shortage Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2230 + Level corresponding to the Shortage Price + true + + + 3195 + 476 + 3 + 5 + Excess Price + 88 + -100 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1271 + Notional price of gas oversupply + 40000000 + true + + + 3196 + 476 + 3 + 6 + Excess Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2231 + Level corresponding to the Excess Price + true + + + 3197 + 476 + 3 + 7 + Usage Factor Base + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2001 + Scalar demand value regardless of heat + true + + + 3198 + 476 + 3 + 8 + Usage Factor Heat + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2002 + Scalar heat value regardless of demand + true + + + 3199 + 476 + 3 + 9 + Customer Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2003 + Number of customers (that have demand values) + true + + + 3200 + 476 + 3 + 10 + Usage Factor Heat Point + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2005 + Scalar temperature or HDD levels for piecewise linear function + true + + + 3201 + 476 + 3 + 11 + Weather Data Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2012 + Weather data factor for gas demand function + true + + + 3202 + 476 + 3 + 12 + Weather Data Variable + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2013 + Weather data variable for gas demand function + true + + + 3203 + 476 + 3 + 13 + Unaccounted Demand + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2351 + Percentage of unaccounted gas demand + 400 + true + + + 3204 + 476 + 4 + 14 + Bid Quantity + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + 400000 + true + + + 3205 + 476 + 4 + 15 + Bid Price + 88 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Value of gas in band + 400000 + true + + + 3206 + 476 + 4 + 16 + Bid Slope + 0 + 0 + <0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2522 + Demand bid slope for modeling elasticity. Must be entered to auto-generate steps. + 400000 + true + + + 3207 + 476 + 4 + 17 + Bid Tranches + 0 + 5 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2523 + Number of bid points to generate when auto-generating tranches + 400000 + true + + + 3208 + 476 + 4 + 18 + Max Bid Quantity + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2524 + Maximum bid quantity when auto-generating steps + 400000 + true + + + 3209 + 476 + 12 + 19 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3210 + 476 + 12 + 20 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3211 + 476 + 12 + 21 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3212 + 483 + 1 + 1 + Demand Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1448 + Proportion of gas demand that occurs at the gas node + 400 + true + + + 3213 + 488 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of the gas demand + true + + + 3214 + 488 + 1 + 2 + Customer Count + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2003 + Customer count used to calculate company's share of gas demand + true + + + 3215 + 488 + 1 + 3 + Direct Demand + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2132 + Company's amount of direct gas demand + true + + + 3216 + 489 + 2 + 1 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3217 + 489 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3218 + 489 + 2 + 3 + Reduction Type + 0 + 0 + In (0,2) + 0;"Input";2;"Usage Factor" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2051 + Function structure for gas dsm program type inputs + true + + + 3219 + 489 + 3 + 4 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Share of demand reduction available + false + + + 3220 + 489 + 3 + 5 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas DSM Program is available + true + + + 3221 + 489 + 3 + 6 + Reduction Amount + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2025 + Demand reduction caused by gas dsm program + true + + + 3222 + 489 + 3 + 7 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3223 + 489 + 3 + 8 + Variable Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2017 + Variable cost of gas dsm program + 2000000000 + true + + + 3224 + 489 + 3 + 9 + Usage Factor Base + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2001 + Scalar demand value regardless of heat + true + + + 3225 + 489 + 3 + 10 + Usage Factor Heat + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2002 + Scalar heat value regardless of demand + true + + + 3226 + 489 + 3 + 11 + Customer Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2003 + Number of customers (that have demand values) + true + + + 3227 + 489 + 3 + 12 + Usage Factor Heat Point + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2005 + Scalar temperature or HDD levels for piecewise linear function + true + + + 3228 + 489 + 3 + 13 + Weather Data Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2012 + Weather data factor for gas demand function + true + + + 3229 + 489 + 3 + 14 + Weather Data Variable + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2013 + Weather data variable for gas demand function + true + + + 3230 + 489 + 8 + 15 + Capital Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2018 + Capital cost of gas dsm program + 8000 + true + + + 3231 + 489 + 8 + 16 + Expansion Max Reduction + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2019 + Expansion max reduction offtake associated with the gas dsm program + true + + + 3232 + 489 + 8 + 17 + Expansion Program + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2020 + Indicates if Gas DSM program is eligible + true + + + 3233 + 489 + 8 + 18 + Eligibility Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2021 + Start date of Gas dsm program planning. + true + + + 3234 + 489 + 8 + 19 + Program Length + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2022 + Technical Life of Gas dsm program + true + + + 3235 + 489 + 8 + 20 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Gas dsm program (period over which fixed costs are recovered). + true + + + 3236 + 489 + 8 + 21 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + true + + + 3237 + 489 + 8 + 22 + Annual Expansion Max Reduction + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2669 + Annual Expansion max reduction offtake associated with the gas dsm program + true + + + 3238 + 489 + 8 + 23 + Monthly Expansion Max Reduction + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2978 + Monthly Expansion max reduction offtake associated with the gas dsm program + true + + + 3239 + 489 + 12 + 24 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3240 + 489 + 12 + 25 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3241 + 489 + 12 + 26 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3242 + 492 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + DSM Program's share of the gas demand + true + + + 3243 + 493 + 8 + 1 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3244 + 493 + 8 + 2 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3245 + 493 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 3246 + 493 + 8 + 4 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 3247 + 493 + 8 + 5 + Expansion Reduction Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3088 + Coefficient of expansion reduction built + C + true + + + 3248 + 493 + 8 + 6 + Expansion Reduction Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3089 + Coefficient of expansion reduction retired + C + true + + + 3249 + 493 + 8 + 7 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3250 + 493 + 8 + 8 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3251 + 493 + 8 + 9 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3252 + 494 + 8 + 1 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3253 + 494 + 8 + 2 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3254 + 495 + 9 + 1 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas from the basin + 80 + true + + + 3255 + 495 + 9 + 1 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1561 + Maximum daily production of gas from the basin + 80 + true + + + 3256 + 495 + 9 + 1 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 1 + 1 + false + false + false + false + 1 + 950 + Maximum daily production of gas from the basin + 80 + true + + + 3257 + 495 + 9 + 1 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum weekly production of gas from the basin + 80 + true + + + 3258 + 495 + 9 + 1 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum monthly production of gas from the basin + 80 + true + + + 3259 + 495 + 9 + 1 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum annual production of gas from the basin + 80 + true + + + 3260 + 495 + 9 + 2 + Min Production + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas from the basin + 80 + true + + + 3261 + 495 + 9 + 2 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1572 + Minimum daily production of gas from the basin + 80 + true + + + 3262 + 495 + 9 + 2 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 1 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas from the basin + 80 + true + + + 3263 + 495 + 9 + 2 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas from the basin + 80 + true + + + 3264 + 495 + 9 + 2 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas from the basin + 80 + true + + + 3265 + 495 + 9 + 2 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas from the basin + 80 + true + + + 3266 + 495 + 12 + 3 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3267 + 495 + 12 + 4 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3268 + 495 + 12 + 5 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3269 + 498 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas basin production + true + + + 3270 + 498 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of gas field units built + true + + + 3271 + 498 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of gas field units built in the year + true + + + 3272 + 499 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas basin production + true + + + 3273 + 499 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of gas field units built + true + + + 3274 + 499 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of gas field units built in the year + true + + + 3275 + 500 + 8 + 1 + Max Capacity Reserves + 75 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + false + + + 3276 + 500 + 8 + 2 + Min Capacity Reserves + 75 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + false + + + 3277 + 500 + 8 + 3 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + false + + + 3278 + 500 + 8 + 4 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + false + + + 3279 + 500 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3280 + 500 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3281 + 500 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3282 + 517 + 2 + 1 + Price Setting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the gas contract can set price at the Gas Node + 4000000 + true + + + 3283 + 517 + 2 + 2 + Contract Type + 0 + 0 + In (0,1,2) + 0;"Swing";1;"Base";2;"Take-or-Pay" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1969 + Type of gas contract + true + + + 3284 + 517 + 2 + 3 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3285 + 517 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3286 + 517 + 2 + 5 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 3287 + 517 + 9 + 6 + Quantity + 100 + 0 + 1 + 0 + 1 + 0 + true + false + false + false + 1 + 650 + Gas contract quantity + true + + + 3288 + 517 + 9 + 6 + Quantity Hour + 100 + 0 + 1 + 0 + 1 + 6 + true + false + true + false + 1 + 1559 + Total gas contract quantity in hour + true + + + 3289 + 517 + 9 + 6 + Quantity Day + 100 + 0 + 1 + 0 + 1 + 1 + true + true + true + false + 1 + 651 + Total gas contract quantity in day + true + + + 3290 + 517 + 9 + 6 + Quantity Week + 100 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 653 + Total gas contract quantity in week + true + + + 3291 + 517 + 9 + 6 + Quantity Month + 100 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 652 + Total gas contract quantity in month + true + + + 3292 + 517 + 9 + 6 + Quantity Year + 100 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 654 + Total gas contract quantity in year + true + + + 3293 + 517 + 9 + 7 + Min Quantity + 100 + 0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 2414 + Minimum total gas contract quantity in interval + true + + + 3294 + 517 + 9 + 7 + Min Quantity Hour + 100 + 0 + 1 + 0 + 0 + 6 + true + false + true + false + 1 + 2415 + Minimum total gas contract quantity in hour + true + + + 3295 + 517 + 9 + 7 + Min Quantity Day + 100 + 0 + 1 + 0 + 0 + 1 + true + false + true + false + 1 + 2416 + Minimum total gas contract quantity in day + true + + + 3296 + 517 + 9 + 7 + Min Quantity Week + 100 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 2417 + Minimum total gas contract quantity in week + true + + + 3297 + 517 + 9 + 7 + Min Quantity Month + 100 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 2418 + Minimum total gas contract quantity in month + true + + + 3298 + 517 + 9 + 7 + Min Quantity Year + 100 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 2419 + Minimum total gas contract quantity in year + true + + + 3299 + 517 + 3 + 8 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Share of total Gas Contract available + false + + + 3300 + 517 + 3 + 9 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Contract is available for production + true + + + 3301 + 517 + 3 + 10 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 612 + Price of gas contract + true + + + 3302 + 517 + 3 + 11 + Price Collar Min + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2242 + Minimum price allowed for the gas contract + true + + + 3303 + 517 + 3 + 12 + Price Collar Max + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2243 + Maximum price allowed for the gas contract + true + + + 3304 + 517 + 3 + 13 + Dispatch Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2141 + Dispatch Price of Gas Contract + true + + + 3305 + 517 + 3 + 14 + Take-or-Pay Swing Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2740 + Price to charge for swing portion of Take or Pay contract + true + + + 3306 + 517 + 3 + 15 + Take-or-Pay Penalty Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2781 + Penalty price on the take violation for a Take or Pay contract + true + + + 3307 + 517 + 3 + 16 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1602 + Reservation charge for gas contract + true + + + 3308 + 517 + 3 + 17 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1965 + Reservation volume for gas contract + true + + + 3309 + 517 + 3 + 18 + Min Daily Take + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2239 + Min daily gas offtake associated with the contract + false + + + 3310 + 517 + 3 + 19 + Max Daily Take + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1985 + Max daily gas offtake associated with the contract + false + + + 3311 + 517 + 3 + 20 + Min Temperature + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2248 + Minimum temperature at which the gas contract is allowed to produce + true + + + 3312 + 517 + 3 + 21 + Max Temperature + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2249 + Maximum temperature at which the gas contract is allowed to produce + true + + + 3313 + 517 + 3 + 22 + Max Renomination + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1990 + Maximum number of renominations allowed per renomination window for Base Gas Contracts + true + + + 3314 + 517 + 3 + 23 + Min Days Between Renomination + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1991 + Minimum number of days between renominations of Base Gas Contracts + true + + + 3315 + 517 + 3 + 24 + Renomination Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2010 + User defined renomination windows for Base Gas Contracts + true + + + 3316 + 517 + 3 + 25 + Renomination Type + 0 + 0 + In (0,1,2) + 0;"Auto";1;"RenominateUpOnly";"2";"RenominateDownOnly" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2031543829 + User defined renomination type for Base Gas Contracts + true + + + 3317 + 517 + 3 + 26 + Percentage of Demand + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2086 + Percentage that maximum daily take value (supply) will be adjusted according to + 400 + true + + + 3318 + 517 + 3 + 27 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Contract + 100 + true + + + 3319 + 517 + 8 + 28 + Expansion Contract + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1980 + Indicates if Gas Contract is eligible for expansion planning + 8 + true + + + 3320 + 517 + 8 + 29 + Retirement Contract + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2087 + Indicates if Gas Contract is eligible for retirement planning + 8 + true + + + 3321 + 517 + 8 + 30 + Contract Eligibility Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1982 + Start date of Gas Contract expansion planning. + 8 + true + + + 3322 + 517 + 8 + 31 + Contract Length + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1984 + Technical Life of Gas Contract + 8 + true + + + 3323 + 517 + 8 + 32 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas contract (period over which fixed costs are recovered). + 8 + true + + + 3324 + 517 + 8 + 33 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3325 + 517 + 8 + 34 + Build Cost + 34 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of Gas Contract expansion + 8009 + true + + + 3326 + 517 + 8 + 35 + Expansion Quantity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1986 + LT Max daily gas offtake associated with the contract + true + + + 3327 + 517 + 8 + 36 + Term Expansion Quantity Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2892 + LT Max daily gas offtake for the term based contract + true + + + 3328 + 517 + 8 + 37 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 3329 + 517 + 8 + 38 + Annual Expansion Quantity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2670 + LT Annual Max daily gas offtake associated with the contract + true + + + 3330 + 517 + 8 + 39 + Monthly Expansion Quantity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2975 + Maximum monthly LT expansion for the contract + true + + + 3331 + 517 + 8 + 40 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 3332 + 517 + 8 + 41 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost in the gas contract production + 8009 + false + + + 3333 + 517 + 8 + 42 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Gas Contract + 88 + true + + + 3334 + 517 + 8 + 43 + Min Expansion Quantity Day + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2973 + LT Min daily gas offtake associated with the contract being built + true + + + 3335 + 517 + 8 + 44 + Max Quantity Day Retired + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2971 + Maximum amount the contract can be retired in aggregate over the planning horizon + true + + + 3336 + 517 + 8 + 45 + Min Quantity Day Retired + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2972 + Minimum amount the contract must be retired in aggregate over the planning horizon + true + + + 3337 + 517 + 12 + 46 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Pass-through value (summed in summary) + true + + + 3338 + 517 + 12 + 47 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Pass-through value (summed in summary) + true + + + 3339 + 517 + 12 + 48 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Pass-through value (summed in summary) + true + + + 3340 + 522 + 1 + 1 + Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2084 + Price adder to gas nodes in contract + true + + + 3341 + 522 + 1 + 2 + Min Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Contract in the blend + 100 + true + + + 3342 + 522 + 1 + 3 + Max Blend Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Contract in the blend + 100 + true + + + 3343 + 525 + 1 + 1 + Demand Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2133 + Supply provided to the company based on the company gas demand + true + + + 3344 + 525 + 1 + 2 + Averaging Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2134 + Indicates if the period is a start period for Demand Share + true + + + 3345 + 525 + 1 + 3 + Direct Supply + 100 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2135 + Supply provided to the company + true + + + 3346 + 526 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas contract production + true + + + 3347 + 526 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of units built in Custom Constraint + true + + + 3348 + 526 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3349 + 526 + 8 + 4 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3350 + 526 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of the number of units retired in the year + true + + + 3351 + 526 + 8 + 6 + Expansion Quantity Day Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3090 + Coefficient of expansion quantity day built + C + true + + + 3352 + 526 + 8 + 7 + Expansion Quantity Day Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3091 + Coefficient of expansion quantity day retired + C + true + + + 3353 + 526 + 8 + 8 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3354 + 526 + 8 + 9 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3355 + 526 + 8 + 10 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3356 + 527 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas contract production + true + + + 3357 + 527 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3358 + 527 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3359 + 528 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Gas transport for the generation of outages + 101000000 + true + + + 3360 + 528 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3361 + 528 + 2 + 3 + Formulate Round Trip + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2758 + If the Gas Transport should return to the Export node before setting out on the next voyage + false + + + 3362 + 528 + 2 + 4 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3363 + 528 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3364 + 528 + 2 + 6 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + false + + + 3365 + 528 + 3 + 7 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Transports is in service + false + + + 3366 + 528 + 3 + 8 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Transport is available for flow. + true + + + 3367 + 528 + 3 + 9 + Voyage Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1841 + Time taken for the voyage from Export Node to Import Node + true + + + 3368 + 528 + 3 + 10 + Loading Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1842 + Time taken to load gas into the transport + true + + + 3369 + 528 + 3 + 11 + Discharge Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1843 + Time taken to unload gas from the transport + true + + + 3370 + 528 + 3 + 12 + Min Volume + 100 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 510 + Minimum volume of gas the transport can carry + true + + + 3371 + 528 + 3 + 13 + Max Volume + 100 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 466 + Maximum volume of gas the transport can carry + true + + + 3372 + 528 + 3 + 14 + Shipping Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1844 + The per unit cost of shipping the gas on the transport + 2000000000 + true + + + 3373 + 528 + 3 + 15 + Charter Rate + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2790 + The charter cost of gas transport per delivery + 2000000000 + true + + + 3374 + 528 + 3 + 16 + Charter Rate Day + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2791 + The charter cost of gas transport per day + 2000000000 + true + + + 3375 + 528 + 3 + 17 + Boil off Rate + 70 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1845 + Rate of boil off of gas during the voyage + true + + + 3376 + 528 + 3 + 18 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas shipped by the Gas Transport + 100 + true + + + 3377 + 528 + 3 + 19 + Idle Boil off Rate + 70 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2966 + Rate of boil off of gas during the harbouring at the export and import gas nodes + true + + + 3378 + 528 + 3 + 20 + Imports + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 294 + false + + + 3379 + 528 + 3 + 21 + Exports + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 192 + false + + + 3380 + 528 + 9 + 22 + Max Shipments + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1846 + Maximum number of voyages in each step in the simulation horizon + 80 + true + + + 3381 + 528 + 9 + 22 + Max Shipments Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1847 + Maximum hourly number of voyages + 80 + true + + + 3382 + 528 + 9 + 22 + Max Shipments Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + true + false + false + 1 + 1848 + Maximum daily number of voyages + 80 + true + + + 3383 + 528 + 9 + 22 + Max Shipments Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1849 + Maximum weekly number of voyages + 80 + true + + + 3384 + 528 + 9 + 22 + Max Shipments Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1850 + Maximum monthly number of voyages + 80 + true + + + 3385 + 528 + 9 + 22 + Max Shipments Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1851 + Maximum annual number of voyages + 80 + true + + + 3386 + 528 + 7 + 23 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the Gas Transport is unavailable due to forced outage + 1000000 + true + + + 3387 + 528 + 7 + 24 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the Gas Transport is unavailable due to maintenance + 1000000 + true + + + 3388 + 528 + 7 + 25 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3389 + 528 + 7 + 26 + Outage Max Volume + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2847 + Gas Transport Max Volume during the outage + 1000000 + false + + + 3390 + 528 + 7 + 27 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3391 + 528 + 7 + 28 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3392 + 528 + 7 + 29 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3393 + 528 + 7 + 30 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 3394 + 528 + 7 + 31 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 3395 + 528 + 8 + 32 + Expansion Transport + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2848 + Indicates if the gas Transport is eligible for expansion planning + 8 + true + + + 3396 + 528 + 8 + 33 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3397 + 528 + 8 + 34 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Gas Transport project, for expansion planning. + 8 + true + + + 3398 + 528 + 8 + 35 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Gas Transport + 8 + true + + + 3399 + 528 + 8 + 36 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the Gas Transport + 8009 + true + + + 3400 + 528 + 8 + 37 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3401 + 528 + 8 + 38 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas transport (period over which fixed costs are recovered). + 8 + true + + + 3402 + 528 + 8 + 39 + Retirement Transport + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2849 + Indicates if the gas transport is eligible for retirement planning + 88 + true + + + 3403 + 528 + 8 + 40 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas transport + 88 + true + + + 3404 + 528 + 8 + 41 + Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2028 + Expansion Max Volume is the volume up to which the capacity of the transport can be expanded + 8 + true + + + 3405 + 528 + 8 + 42 + Expansion Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 3108 + Expansion Min Volume is the volume up to which the capacity of the gas transport can be expanded + 8 + true + + + 3406 + 528 + 8 + 43 + Retirement Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 3110 + Retirement max volume associated with the Gas Transport + 8 + true + + + 3407 + 528 + 8 + 44 + Retirement Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 3111 + Retirement min volume associated with the Gas Transport + 8 + true + + + 3408 + 528 + 8 + 45 + Max Build Events + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 3409 + 528 + 8 + 46 + Annual Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2668 + Annual Expansion Max Volume for the Transports + 8 + true + + + 3410 + 528 + 8 + 47 + Annual Expansion Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3109 + Annual Expansion Min Volume associated with the Gas Transport + 8 + true + + + 3411 + 528 + 8 + 48 + Annual Retirement Max Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 3112 + Annual retirement max volume associated with the Gas Transport + 8 + true + + + 3412 + 528 + 8 + 49 + Annual Retirement Min Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 3113 + Annual retirement min volume associated with the Gas Transport + 8 + true + + + 3413 + 528 + 12 + 50 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Pass-through value (summed in summary) + true + + + 3414 + 528 + 12 + 51 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Pass-through value (summed in summary) + true + + + 3415 + 528 + 12 + 52 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Pass-through value (averaged in summary) + true + + + 3416 + 534 + 1 + 1 + Port Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2792 + Cost of using Gas Node by gas transport per day + 2000000000 + true + + + 3417 + 535 + 1 + 1 + Port Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2792 + Cost of using gas node by gas transport per day + 2000000000 + true + + + 3418 + 535 + 1 + 2 + Initial Gas Delivered + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2890 + The amount of gas to be delivered to a gas node on the initial gas path + true + + + 3419 + 539 + 1 + 1 + Canal Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2793 + Cost of using all canals in gas path by gas transport + 2000000000 + true + + + 3420 + 540 + 1 + 1 + Voyage Progress + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 2891 + Percentage of voyage already completed + true + + + 3421 + 540 + 1 + 2 + Initial Volume + 100 + 1E+30 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 318 + Initial volume of gas being carried by the gas transport + true + + + 3422 + 541 + 1 + 1 + Outage Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1892 + Proportion of capacity during outage + 4 + true + + + 3423 + 542 + 3 + 1 + Shipments Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1873 + Coefficient of gas transport voyage count + true + + + 3424 + 542 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3425 + 542 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3426 + 542 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 3427 + 542 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 3428 + 542 + 8 + 6 + Expansion Volume Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3086 + Coefficient of expansion volume built + C + true + + + 3429 + 542 + 8 + 7 + Expansion Volume Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3087 + Coefficient of expansion volume retired + C + true + + + 3430 + 542 + 8 + 8 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3431 + 542 + 8 + 9 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3432 + 542 + 8 + 10 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3433 + 543 + 3 + 1 + Shipments Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1873 + Coefficient of gas transport voyage count + true + + + 3434 + 547 + 2 + 1 + Release Type + 0 + 0 + In (0,1,2) + 0;"Swing";1;"Base";2;"Deal" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2040 + Function structure for capacity release type inputs + true + + + 3435 + 547 + 9 + 2 + Max Released Capacity + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2571 + Maximum capacity that can be released + 80 + true + + + 3436 + 547 + 9 + 2 + Max Released Capacity Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2572 + Maximum capacity that can be released in a hour + 80 + true + + + 3437 + 547 + 9 + 2 + Max Released Capacity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2573 + Maximum capacity that can be released in a day + 80 + true + + + 3438 + 547 + 9 + 2 + Max Released Capacity Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2574 + Maximum capacity that can be released in a week + 80 + true + + + 3439 + 547 + 9 + 2 + Max Released Capacity Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2575 + Maximum capacity that can be released in a month + 80 + true + + + 3440 + 547 + 9 + 2 + Max Released Capacity Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2576 + Maximum capacity that can be released in a year + 80 + true + + + 3441 + 547 + 9 + 3 + Min Released Capacity + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2577 + Minimum capacity that can be released + 80 + true + + + 3442 + 547 + 9 + 3 + Min Released Capacity Hour + 100 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2578 + Minimum capacity that can be released in hour + 80 + true + + + 3443 + 547 + 9 + 3 + Min Released Capacity Day + 100 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2579 + Minimum capacity that can be released in day + 80 + true + + + 3444 + 547 + 9 + 3 + Min Released Capacity Week + 100 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2580 + Minimum capacity that can be released in week + 80 + true + + + 3445 + 547 + 9 + 3 + Min Released Capacity Month + 100 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2581 + Minimum capacity that can be released in month + 80 + true + + + 3446 + 547 + 9 + 3 + Min Released Capacity Year + 100 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2582 + Minimum capacity that can be released in year + 80 + true + + + 3447 + 547 + 3 + 4 + Term Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2041 + Flag to indicate start of the capacity release term + true + + + 3448 + 547 + 3 + 5 + Revenue Basis + 88 + 0 + >=0 + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2042 + Revenue Basis for capacity release offer + true + + + 3449 + 547 + 3 + 6 + Revenue Adder + 88 + 0 + >=0 + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2043 + Revenue Adder for capacity release offer + true + + + 3450 + 547 + 3 + 7 + Entitlement Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2503 + Capacity Release Offer Entitlement type: Gross of pipeline fuel (inflow quantity) or Net of pipeline fuel (outflow quantity). + true + + + 3451 + 547 + 12 + 8 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3452 + 547 + 12 + 9 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3453 + 547 + 12 + 10 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3454 + 552 + 3 + 1 + Release Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of gas capacity release offers + true + + + 3455 + 553 + 3 + 1 + Release Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of gas capacity release offers + true + + + 3456 + 554 + 2 + 1 + Model Virtual Network + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2998 + Flag to indicate if the emission energy network is modeled + 800000 + true + + + 3457 + 557 + 1 + 1 + Energy Value + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 176 + Energy contents produced by Gas Fields + true + + + 3458 + 558 + 1 + 1 + Energy Value + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 176 + Energy contents produced by Gas Plants + true + + + 3459 + 559 + 1 + 1 + Energy Value + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 176 + Energy contents produced by Gas Nodes + true + + + 3460 + 560 + 1 + 1 + Energy Value + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 176 + Energy contents produced by Gas Demands + true + + + 3461 + 561 + 1 + 1 + Energy Value + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 176 + Energy contents produced by the Gas Contracts + true + + + 3462 + 562 + 1 + 1 + Energy Value + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 176 + Energy contents produced by Gas Transports + true + + + 3463 + 563 + 2 + 1 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3464 + 563 + 2 + 2 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3465 + 563 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3466 + 563 + 2 + 4 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this water plant receives capacity payments + 8 + false + + + 3467 + 563 + 9 + 5 + Max Starts + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 80 + true + + + 3468 + 563 + 9 + 5 + Max Starts Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 80 + true + + + 3469 + 563 + 9 + 5 + Max Starts Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 80 + true + + + 3470 + 563 + 9 + 5 + Max Starts Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 80 + true + + + 3471 + 563 + 9 + 5 + Max Starts Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 80 + true + + + 3472 + 563 + 9 + 5 + Max Starts Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 80 + true + + + 3473 + 563 + 9 + 6 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of Water Plant [Max Starts] constraints. + 80 + true + + + 3474 + 563 + 9 + 7 + Max Capacity + 65 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 414 + Maximum production of Water Plant + 5 + true + + + 3475 + 563 + 9 + 7 + Max Capacity Hour + 130 + 1E+30 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 3156 + Maximum hourly capacity of water plants + 80 + true + + + 3476 + 563 + 9 + 7 + Max Capacity Day + 65 + 1E+30 + >=0 + 1 + 0 + 1 + 1 + false + false + false + false + 1 + 3157 + Maximum daily capacity of water plants + 80 + true + + + 3477 + 563 + 9 + 7 + Max Capacity Week + 131 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3158 + Maximum weekly capacity of water plants + 80 + true + + + 3478 + 563 + 9 + 7 + Max Capacity Month + 132 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3159 + Maximum monthly capacity of water plants + 80 + true + + + 3479 + 563 + 9 + 7 + Max Capacity Year + 133 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3160 + Maximum annual capacity of water plants + 80 + true + + + 3480 + 563 + 9 + 8 + Min Production + 65 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production of water plants + 80 + true + + + 3481 + 563 + 9 + 8 + Min Production Hour + 130 + 0 + >=0 + 1 + 0 + 1 + 6 + false + false + true + false + 1 + 1572 + Minimum hourly production of water plants + 80 + true + + + 3482 + 563 + 9 + 8 + Min Production Day + 65 + 0 + >=0 + 1 + 0 + 1 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of water plants + 80 + true + + + 3483 + 563 + 9 + 8 + Min Production Week + 131 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of water plants + 80 + true + + + 3484 + 563 + 9 + 8 + Min Production Month + 132 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of water plants + 80 + true + + + 3485 + 563 + 9 + 8 + Min Production Year + 133 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of water plants + 80 + true + + + 3486 + 563 + 3 + 9 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of Water Plant units in service + 800000 + true + + + 3487 + 563 + 3 + 10 + Min Stable Production + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1928 + Minimum production level + 1000000000 + true + + + 3488 + 563 + 3 + 11 + Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 665 + Rated capacity of units + 81 + true + + + 3489 + 563 + 3 + 12 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + true + + + 3490 + 563 + 3 + 13 + Aux Fixed + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 3491 + 563 + 3 + 14 + Aux Base + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 3492 + 563 + 3 + 15 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of generation + 200000 + true + + + 3493 + 563 + 3 + 16 + Load Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate + 1000 + true + + + 3494 + 563 + 3 + 17 + Heat Usage + 72 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1926 + Heat consumption of Water Plant + 2000000000 + true + + + 3495 + 563 + 3 + 18 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + false + + + 3496 + 563 + 3 + 19 + Heat Usage Incr + 72 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2525 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 3497 + 563 + 3 + 20 + Water Yield + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1795 + Yield rate of water for the Water Plant + 2000000000 + true + + + 3498 + 563 + 3 + 21 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 175 + Energy consumption of Water Plant + 2000000000 + true + + + 3499 + 563 + 3 + 22 + Max Up Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started for water plants + true + + + 3500 + 563 + 3 + 23 + Min Up Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must run after being started for water plants + true + + + 3501 + 563 + 3 + 24 + Max Down Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down for water plants + true + + + 3502 + 563 + 3 + 25 + Min Down Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down for water plants + true + + + 3503 + 563 + 3 + 26 + Retail Electric Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2515 + Retail price of electric power used by the water plant + true + + + 3504 + 563 + 3 + 27 + VO&M Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 849 + Variable operations and maintenance costs of the Water Plant + 2000000000 + true + + + 3505 + 563 + 3 + 28 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3506 + 563 + 3 + 29 + Max Ramp Up + 129 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Sets a limit on the rate at which the water plant can increase production from one interval to the next + 80 + true + + + 3507 + 563 + 3 + 30 + Max Ramp Down + 129 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Sets a limit on the rate at which the water plant can decrease production from one interval to the next + 80 + true + + + 3508 + 563 + 3 + 31 + Max Ramp Up Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 3509 + 563 + 3 + 32 + Max Ramp Down Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 3510 + 563 + 7 + 33 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3511 + 563 + 7 + 34 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 3512 + 563 + 7 + 35 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3513 + 563 + 7 + 36 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3514 + 563 + 7 + 37 + Outage Max Production + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Plant Max Production during the outage + 1000000 + true + + + 3515 + 563 + 7 + 38 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3516 + 563 + 7 + 39 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3517 + 563 + 7 + 40 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3518 + 563 + 7 + 41 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 3519 + 563 + 7 + 42 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 3520 + 563 + 8 + 43 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 3521 + 563 + 8 + 44 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3522 + 563 + 8 + 45 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water Plant project, for expansion planning. + 8 + true + + + 3523 + 563 + 8 + 46 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water Plant + 8 + true + + + 3524 + 563 + 8 + 47 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of developing the Water Plant + 8009 + true + + + 3525 + 563 + 8 + 48 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3526 + 563 + 8 + 49 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water Plant (period over which fixed costs are recovered). + 8 + true + + + 3527 + 563 + 8 + 50 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3528 + 563 + 8 + 51 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3529 + 563 + 8 + 52 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3530 + 563 + 8 + 53 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3531 + 563 + 8 + 54 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water Plant + 88 + true + + + 3532 + 563 + 8 + 55 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3533 + 563 + 8 + 56 + Max Units Retired in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3534 + 563 + 8 + 57 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3535 + 563 + 8 + 58 + Capacity Price + 99 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the plant for capacity + 4000008 + true + + + 3536 + 563 + 11 + 59 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 3537 + 563 + 11 + 60 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 3538 + 563 + 12 + 61 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3539 + 563 + 12 + 62 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3540 + 563 + 12 + 63 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3541 + 569 + 1 + 1 + Outage Max Production + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 3542 + 570 + 3 + 1 + Production Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Water Plant Production + true + + + 3543 + 570 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Water Plant capacity factor + true + + + 3544 + 570 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + false + + + 3545 + 570 + 3 + 4 + Energy Usage Coefficient + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Water Plant + true + + + 3546 + 570 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 3547 + 570 + 6 + 6 + Installed Capacity Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 3548 + 570 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3549 + 570 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3550 + 570 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3551 + 570 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3552 + 570 + 8 + 11 + Capacity Built Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3553 + 570 + 8 + 12 + Capacity Retired Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3554 + 570 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3555 + 570 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3556 + 570 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3557 + 571 + 3 + 1 + Production Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Water Plant Production + true + + + 3558 + 571 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Water Plant capacity factor + true + + + 3559 + 571 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + true + + + 3560 + 571 + 3 + 4 + Energy Usage Coefficient + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Water Plant + true + + + 3561 + 571 + 6 + 5 + Installed Capacity Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 3562 + 571 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3563 + 571 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3564 + 571 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3565 + 571 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3566 + 571 + 8 + 10 + Capacity Built Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 3567 + 571 + 8 + 11 + Capacity Retired Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 3568 + 571 + 8 + 12 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 3569 + 571 + 8 + 13 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 3570 + 571 + 8 + 14 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 3571 + 572 + 1 + 1 + Energy Usage Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1886 + Coefficient of the Decision Variable in the Water Plant Energy Usage definition equation + true + + + 3572 + 573 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 3573 + 573 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3574 + 573 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3575 + 573 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3576 + 573 + 3 + 5 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Flag if the Water Pipeline is in service + 800000 + false + + + 3577 + 573 + 3 + 6 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Water Pipeline is available for flow. + true + + + 3578 + 573 + 3 + 7 + Is Bidirectional + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2033 + Indicates if the pipeline allows flow in both directions + 800000 + true + + + 3579 + 573 + 3 + 8 + Max Capacity + 65 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 414 + Maximum flow rate on the water pipeline + 5 + true + + + 3580 + 573 + 3 + 9 + Diameter + 23 + 0.762 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1796 + Water Pipeline diameter + true + + + 3581 + 573 + 3 + 10 + Roughness + 0 + 150 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1797 + Water Pipeline roughness constant + true + + + 3582 + 573 + 3 + 11 + Length + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1798 + Length of the Water Pipeline + true + + + 3583 + 573 + 3 + 12 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 639 + Efficiency of Water Pipeline pump + true + + + 3584 + 573 + 3 + 13 + VO&M Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 849 + Variable operations and maintenance costs of the Water Pipeline + 2000000000 + true + + + 3585 + 573 + 3 + 14 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3586 + 573 + 3 + 15 + Consumption Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1814 + Proportion of the electricity consumption allocated to the receiving water node + true + + + 3587 + 573 + 3 + 16 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the pipeline energy consumption curve. + true + + + 3588 + 573 + 3 + 17 + Energy Consumed Flow Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2122 + Flow level defining the water pipeline energy consumption curve. + true + + + 3589 + 573 + 3 + 18 + System Curve Coefficient A + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2250 + System curve coefficient A for the quadratic term + true + + + 3590 + 573 + 3 + 19 + System Curve Coefficient B + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2251 + System curve coefficient B for the linear term + true + + + 3591 + 573 + 3 + 20 + System Curve Coefficient C + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2252 + System curve coefficient C for the constant term + true + + + 3592 + 573 + 3 + 21 + Flow Rate Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2511 + Flow rate point for the system curve + true + + + 3593 + 573 + 3 + 22 + Head Point + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2512 + Head point for the system curve + true + + + 3594 + 573 + 7 + 23 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3595 + 573 + 7 + 24 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3596 + 573 + 7 + 25 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3597 + 573 + 7 + 26 + Outage Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Water pipeline Max Capacity during the outage + 1000000 + true + + + 3598 + 573 + 7 + 27 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3599 + 573 + 7 + 28 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3600 + 573 + 7 + 29 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3601 + 573 + 7 + 30 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 3602 + 573 + 7 + 31 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 3603 + 573 + 8 + 32 + Expansion Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2034 + Indicates if the water pipeline is eligible for expansion planning + 8 + true + + + 3604 + 573 + 8 + 33 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3605 + 573 + 8 + 34 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water pipeline project, for expansion planning. + 8 + true + + + 3606 + 573 + 8 + 35 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water pipeline + 8 + true + + + 3607 + 573 + 8 + 36 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Water pipeline + 8009 + true + + + 3608 + 573 + 8 + 37 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3609 + 573 + 8 + 38 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water pipeline (period over which fixed costs are recovered). + 8 + true + + + 3610 + 573 + 8 + 39 + Retirement Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2035 + Indicates if the water pipeline is eligible for retirement planning + 88 + true + + + 3611 + 573 + 8 + 40 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water pipeline + 88 + true + + + 3612 + 573 + 8 + 41 + Expansion Max Capacity + 65 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2379 + Expansion max daily total water release for the pipeline + 8 + true + + + 3613 + 573 + 12 + 42 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3614 + 573 + 12 + 43 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3615 + 573 + 12 + 44 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3616 + 578 + 1 + 1 + Outage Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 585 + Max Rating during the outage + 4 + true + + + 3617 + 579 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Water Pipeline flow + true + + + 3618 + 579 + 3 + 2 + Flow Forward Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Water Pipeline flow at the receiving node + true + + + 3619 + 579 + 3 + 3 + Flow Back Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Water Pipeline flow at the sending node + true + + + 3620 + 579 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3621 + 579 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3622 + 579 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3623 + 579 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3624 + 579 + 8 + 8 + Capacity Built Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3625 + 579 + 8 + 9 + Capacity Retired Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3626 + 579 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3627 + 579 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3628 + 579 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3629 + 580 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Water Pipeline flow + true + + + 3630 + 580 + 3 + 2 + Flow Forward Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Water Pipeline flow at the receiving node + true + + + 3631 + 580 + 3 + 3 + Flow Back Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Water Pipeline flow at the sending node + true + + + 3632 + 580 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3633 + 580 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3634 + 580 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3635 + 580 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3636 + 581 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3637 + 581 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3638 + 581 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Water Node is in service + 800000 + true + + + 3639 + 581 + 3 + 4 + Water Security + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1799 + Proportion of local Water Demand that must be covered by Water Storage at the Water Node + false + + + 3640 + 581 + 3 + 5 + Flow Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1268 + Incremental cost of flowing water through the node + 2000000000 + true + + + 3641 + 581 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3642 + 581 + 8 + 7 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 3643 + 581 + 8 + 8 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3644 + 581 + 8 + 9 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of water node project, for expansion planning. + 8 + true + + + 3645 + 581 + 8 + 10 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the water node + 8 + true + + + 3646 + 581 + 8 + 11 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the water node + 8009 + true + + + 3647 + 581 + 8 + 12 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3648 + 581 + 8 + 13 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the water node (period over which fixed costs are recovered). + 8 + true + + + 3649 + 581 + 8 + 14 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3650 + 581 + 8 + 15 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 3651 + 581 + 8 + 16 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3652 + 581 + 8 + 17 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3653 + 581 + 8 + 18 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the water node + 88 + true + + + 3654 + 581 + 8 + 19 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3655 + 581 + 8 + 20 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3656 + 581 + 8 + 21 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3657 + 581 + 8 + 22 + Max Flow + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 429 + Expansion maximum flow through the water node + 8 + true + + + 3658 + 581 + 12 + 23 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3659 + 581 + 12 + 24 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3660 + 581 + 12 + 25 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3661 + 586 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 3662 + 586 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Water consumption for each unit of consumption + true + + + 3663 + 586 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Water production for each unit of production + true + + + 3664 + 586 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Water consumption for each unit operating + 1000000000 + true + + + 3665 + 586 + 6 + 5 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Water consumption for each installed unit + 4 + true + + + 3666 + 588 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of water node flow + true + + + 3667 + 588 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3668 + 588 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3669 + 588 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3670 + 588 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3671 + 588 + 8 + 6 + Flow Built Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3084 + Coefficient of flow built + C + true + + + 3672 + 588 + 8 + 7 + Flow Retired Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3085 + Coefficient of flow retired + C + true + + + 3673 + 588 + 8 + 8 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3674 + 588 + 8 + 9 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3675 + 588 + 8 + 10 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3676 + 589 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of water node flow + true + + + 3677 + 589 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3678 + 589 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3679 + 589 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3680 + 589 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3681 + 590 + 2 + 1 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 3682 + 590 + 2 + 2 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 3683 + 590 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3684 + 590 + 2 + 4 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3685 + 590 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3686 + 590 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Water Storage is in service + 800000 + false + + + 3687 + 590 + 3 + 7 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Water Storage is available. + true + + + 3688 + 590 + 3 + 8 + Max Volume + 64 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 466 + Maximum volume of Water allowed in storage + 5 + true + + + 3689 + 590 + 3 + 9 + Min Volume + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 510 + Minimum volume of Water allowed in storage + 4 + true + + + 3690 + 590 + 3 + 10 + Initial Volume + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of Water in the storage + 80001 + true + + + 3691 + 590 + 3 + 11 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption associated with releases from the water storage + false + + + 3692 + 590 + 3 + 12 + Natural Inflow + 65 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 530 + Rate of inflow + true + + + 3693 + 590 + 3 + 13 + Loss Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to evaporation, leakage, etc + 200000 + true + + + 3694 + 590 + 3 + 14 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3695 + 590 + 3 + 15 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the water storage energy consumption curve. + true + + + 3696 + 590 + 3 + 16 + Energy Consumed Withdrawal Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2131 + Withdrawal level defining the water storage energy consumption curve. + true + + + 3697 + 590 + 3 + 17 + Max Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 435 + Max water storage level + 80001 + true + + + 3698 + 590 + 3 + 18 + System Curve Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2254 + Level for which system curve is specified + 80001 + true + + + 3699 + 590 + 3 + 19 + Cross Section Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2255 + Cross sectional area of the water storage + 80001 + true + + + 3700 + 590 + 3 + 20 + Reference Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2513 + Reference storage level + 80001 + true + + + 3701 + 590 + 3 + 21 + Reference Volume + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2514 + Reference volume of water in the storage + 80001 + true + + + 3702 + 590 + 9 + 22 + Target + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 80 + true + + + 3703 + 590 + 9 + 22 + Target Hour + 64 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 80 + true + + + 3704 + 590 + 9 + 22 + Target Day + 64 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 80 + true + + + 3705 + 590 + 9 + 22 + Target Week + 64 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 3706 + 590 + 9 + 22 + Target Month + 64 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 80 + true + + + 3707 + 590 + 9 + 22 + Target Year + 64 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 80 + true + + + 3708 + 590 + 9 + 23 + Target Penalty + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 80 + true + + + 3709 + 590 + 9 + 24 + Target Penalty Under + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2378 + Penalty for violating the Min Storage Target. + 80 + true + + + 3710 + 590 + 9 + 25 + Max Withdrawal + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of water that can be withdrawn from the storage + 80 + true + + + 3711 + 590 + 9 + 25 + Max Withdrawal Hour + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of water that can be withdrawn from the storage in a hour + 80 + true + + + 3712 + 590 + 9 + 25 + Max Withdrawal Day + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1247 + Maximum amount of water that can be withdrawn from the storage in day + 80 + true + + + 3713 + 590 + 9 + 25 + Max Withdrawal Week + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of water that can be withdrawn from the storage in a week + 80 + true + + + 3714 + 590 + 9 + 25 + Max Withdrawal Month + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of water that can be withdrawn from the storage in a month + 80 + true + + + 3715 + 590 + 9 + 25 + Max Withdrawal Year + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of water that can be withdrawn from the storage in a year + 80 + true + + + 3716 + 590 + 9 + 26 + Min Storage Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2075 + Minimum Storage Target Percent for water storage + 80 + true + + + 3717 + 590 + 9 + 27 + Max Storage Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2076 + Max Storage Target Percent for water storage + 80 + true + + + 3718 + 590 + 7 + 28 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3719 + 590 + 7 + 29 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3720 + 590 + 7 + 30 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3721 + 590 + 7 + 31 + Outage Max Withdrawal + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2353 + Storage Max Withdrawal during the outage + 1000000 + true + + + 3722 + 590 + 7 + 32 + Outage Max Injection + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2354 + Storage Max Injection during the outage + 1000000 + true + + + 3723 + 590 + 7 + 33 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3724 + 590 + 7 + 34 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3725 + 590 + 7 + 35 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3726 + 590 + 7 + 36 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 3727 + 590 + 7 + 37 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 3728 + 590 + 8 + 38 + Expansion Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2029 + Indicates if Water Storage is eligible for expansion planning + 8 + true + + + 3729 + 590 + 8 + 39 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3730 + 590 + 8 + 40 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water storage project, for expansion planning. + 8 + true + + + 3731 + 590 + 8 + 41 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water storage + 8 + true + + + 3732 + 590 + 8 + 42 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Water storage + 8009 + true + + + 3733 + 590 + 8 + 43 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3734 + 590 + 8 + 44 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water storage (period over which fixed costs are recovered). + 8 + true + + + 3735 + 590 + 8 + 45 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2030 + Indicates if Water Storage is eligible for retirement planning + 8 + true + + + 3736 + 590 + 8 + 46 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water storage + 88 + true + + + 3737 + 590 + 8 + 47 + Expansion Max Volume + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2028 + Expansion max volume associated with the Water Storage + 8 + true + + + 3738 + 590 + 11 + 48 + Trajectory Non-anticipativity + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 3739 + 590 + 11 + 49 + Trajectory Non-anticipativity Volume + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100000000 + true + + + 3740 + 590 + 11 + 50 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 3741 + 590 + 12 + 51 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3742 + 590 + 12 + 52 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3743 + 590 + 12 + 53 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3744 + 594 + 1 + 1 + Outage Max Withdrawal + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2353 + Water Storage Max Withdrawal during the outage + 4 + true + + + 3745 + 594 + 1 + 2 + Outage Max Injection + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2354 + Water Storage Max Injection during the outage + 4 + true + + + 3746 + 595 + 3 + 1 + Natural Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + false + + + 3747 + 595 + 3 + 2 + End Volume Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + true + + + 3748 + 595 + 3 + 3 + Release Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of water release + true + + + 3749 + 595 + 3 + 4 + Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of water inflow + true + + + 3750 + 595 + 3 + 5 + Ramp Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in water storage end volume + true + + + 3751 + 595 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3752 + 595 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3753 + 595 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3754 + 595 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3755 + 595 + 8 + 10 + Expansion Volume Built Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3086 + Coefficient of expansion volume built + C + true + + + 3756 + 595 + 8 + 11 + Expansion Volume Retired Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3087 + Coefficient of expansion volume retired + C + true + + + 3757 + 595 + 8 + 12 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3758 + 595 + 8 + 13 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3759 + 595 + 8 + 14 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3760 + 596 + 3 + 1 + Natural Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + true + + + 3761 + 596 + 3 + 2 + End Volume Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 3762 + 596 + 3 + 3 + Release Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of water release + true + + + 3763 + 596 + 3 + 4 + Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of water inflow + true + + + 3764 + 596 + 3 + 5 + Ramp Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in water storage end volume + true + + + 3765 + 596 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3766 + 596 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3767 + 596 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3768 + 596 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3769 + 597 + 3 + 1 + Demand + 65 + 0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 133 + Demand for water + 400 + true + + + 3770 + 597 + 3 + 2 + Shortage Price + 67 + 1000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1270 + Notional price of water shortage + 40000000 + true + + + 3771 + 597 + 3 + 3 + Excess Price + 67 + -100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1271 + Notional price of water oversupply + 40000000 + true + + + 3772 + 597 + 4 + 4 + Bid Quantity + 65 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + 400000 + true + + + 3773 + 597 + 4 + 5 + Bid Price + 67 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Value of water in band + 400000 + true + + + 3774 + 597 + 12 + 6 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3775 + 597 + 12 + 7 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3776 + 597 + 12 + 8 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3777 + 600 + 1 + 1 + Demand Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1448 + Proportion of water demand that occurs at the water node + 400 + true + + + 3778 + 601 + 8 + 1 + Max Capacity Reserves + 65 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + false + + + 3779 + 601 + 8 + 2 + Min Capacity Reserves + 65 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + false + + + 3780 + 601 + 8 + 3 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 3781 + 601 + 8 + 4 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 3782 + 601 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3783 + 601 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3784 + 601 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3785 + 611 + 2 + 1 + Configuration + 0 + 0 + In (0,1) + 0;"Parallel";1;"Series" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2256 + Water Pump configuration (series or parallel) + true + + + 3786 + 611 + 3 + 2 + Max Head + 23 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2261 + Maximum head of pump station + true + + + 3787 + 611 + 3 + 3 + Max Flow Rate + 65 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2260 + Maximum flow rate of pump station + true + + + 3788 + 611 + 3 + 4 + Max Power + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1756 + Maximum power of pump station + true + + + 3789 + 618 + 3 + 1 + Flow Rate Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2257 + Coefficient of Water Pump Station flow rate + true + + + 3790 + 618 + 3 + 2 + Head Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2258 + Coefficient of Water Pump Station head + true + + + 3791 + 618 + 3 + 3 + Power Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2259 + Coefficient of Water Pump Station power + true + + + 3792 + 619 + 3 + 1 + Flow Rate Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2257 + Coefficient of Water Pump Station flow rate + true + + + 3793 + 619 + 3 + 2 + Head Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2258 + Coefficient of Water Pump Station head + true + + + 3794 + 619 + 3 + 3 + Power Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2259 + Coefficient of Water Pump Station power + true + + + 3795 + 620 + 3 + 1 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 3796 + 620 + 3 + 2 + Efficiency + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 1209 + Water Pump efficiency + true + + + 3797 + 620 + 3 + 3 + Max Flow Rate + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2260 + Max Flow Rate + true + + + 3798 + 620 + 3 + 4 + Max Head + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2261 + Max pump head + true + + + 3799 + 620 + 3 + 5 + Pump Curve Coefficient A + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2262 + Pump Curve Coefficient A for the quadratic term + true + + + 3800 + 620 + 3 + 6 + Pump Curve Coefficient B + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2263 + Pump Curve Coefficient B for the linear term + true + + + 3801 + 620 + 3 + 7 + Pump Curve Coefficient C + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2264 + Pump Curve Coefficient C for the constant term + true + + + 3802 + 620 + 3 + 8 + Flow Rate Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2511 + Flow rate point for the pump curve + true + + + 3803 + 620 + 3 + 9 + Head Point + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2512 + Head point for the pump curve + true + + + 3804 + 620 + 3 + 10 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 3805 + 620 + 3 + 11 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 3806 + 620 + 3 + 12 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a pump must be run after being started + 1000000080 + true + + + 3807 + 620 + 3 + 13 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a pump must be off after being shut down + 1000000080 + true + + + 3808 + 620 + 3 + 14 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a pump can be run after being started + 1000000080 + true + + + 3809 + 620 + 3 + 15 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a pump can be off after being shut down + 1000000080 + true + + + 3810 + 620 + 3 + 16 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 3811 + 620 + 3 + 17 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Number of units that should be committed + 1000000080 + true + + + 3812 + 620 + 3 + 18 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the pump has been up for at time zero + 1000080000 + true + + + 3813 + 620 + 3 + 19 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the pump has been down for at time zero + 1000080000 + true + + + 3814 + 620 + 9 + 20 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 3815 + 620 + 9 + 20 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 3816 + 620 + 9 + 20 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 3817 + 620 + 9 + 20 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 3818 + 620 + 9 + 20 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 3819 + 620 + 9 + 20 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 3820 + 620 + 9 + 21 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints + 1080000080 + true + + + 3821 + 620 + 7 + 22 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 818 + Number of units out of service + 1000000 + true + + + 3822 + 623 + 3 + 1 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 3823 + 624 + 9 + 1 + Energy Target + 80 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1861 + Vehicle stored energy target + 80 + true + + + 3824 + 624 + 9 + 1 + Energy Target Hour + 80 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1862 + End of hour vehicle stored energy target + 80 + true + + + 3825 + 624 + 9 + 1 + Energy Target Day + 80 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1863 + End of day vehicle stored energy target + 80 + true + + + 3826 + 624 + 9 + 1 + Energy Target Week + 80 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1864 + End of week vehicle stored energy target + 80 + true + + + 3827 + 624 + 9 + 1 + Energy Target Month + 80 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1865 + End of month vehicle stored energy target + 80 + true + + + 3828 + 624 + 9 + 1 + Energy Target Year + 80 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1866 + End of year vehicle stored energy target + 80 + true + + + 3829 + 624 + 9 + 2 + Energy Target Penalty + 52 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1867 + Penalty for violating the vehicle stored energy target. + 80 + true + + + 3830 + 624 + 2 + 3 + Fixed Load Global + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 1 + 0 + false + false + false + false + 1 + 2465 + If [Fixed Load] applies across all Vehicles or unit-by-unit + true + + + 3831 + 624 + 2 + 4 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3832 + 624 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3833 + 624 + 2 + 6 + End Effects Method + 0 + 2 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period energy. + 4 + true + + + 3834 + 624 + 2 + 7 + Simultaneous Charge and Discharge + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2632 + Vehicle can charge and discharge simultaneously + 80 + true + + + 3835 + 624 + 2 + 8 + Non-physical Charge Penalty + 47 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2870 + Penalty applied to non-physical charging of the vehicle. A value of -1 means none is allowed. + 4 + true + + + 3836 + 624 + 2 + 9 + Non-physical Discharge Penalty + 47 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2871 + Penalty applied to non-physical discharging of the vehicle. A value of -1 means none is allowed. + 4 + true + + + 3837 + 624 + 3 + 10 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of vehicles + 800001 + true + + + 3838 + 624 + 3 + 11 + Capacity + 80 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of the vehicle + 5 + true + + + 3839 + 624 + 3 + 12 + Efficiency + 82 + 200 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Electric vehicle efficiency + 1000 + true + + + 3840 + 624 + 3 + 13 + Demand + 81 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + true + false + 1 + 133 + Travel demand for vehicle + true + + + 3841 + 624 + 3 + 14 + Initial SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1670 + Initial state of charge + 5 + true + + + 3842 + 624 + 3 + 15 + Max SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1666 + Allowable maximum state of charge + 5 + true + + + 3843 + 624 + 3 + 16 + Min SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1667 + Allowable minimum state of charge + 5 + true + + + 3844 + 624 + 3 + 17 + Max Charge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2109 + Maximum charge rate + 5 + true + + + 3845 + 624 + 3 + 18 + Min Charge Rate + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2129793779 + Minimum charge rate + 5 + true + + + 3846 + 624 + 3 + 19 + Max Discharge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2110 + Maximum discharge rate + 5 + true + + + 3847 + 624 + 3 + 20 + Min Discharge Rate + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2129793780 + Minimum discharge rate + 5 + true + + + 3848 + 624 + 3 + 21 + Self Discharge Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2710 + Percentage of stored energy lost per hour due to self-discharge. + 200000 + true + + + 3849 + 624 + 9 + 22 + Max Cycles + 62 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1832 + Number of cycles allowed each interval + 80 + true + + + 3850 + 624 + 9 + 22 + Max Cycles Hour + 62 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1833 + Number of cycles allowed each hour + 80 + true + + + 3851 + 624 + 9 + 22 + Max Cycles Day + 62 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1834 + Number of cycles allowed each day + 80 + true + + + 3852 + 624 + 9 + 22 + Max Cycles Week + 62 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1835 + Number of cycles allowed each week + 80 + true + + + 3853 + 624 + 9 + 22 + Max Cycles Month + 62 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1836 + Number of cycles allowed each month + 80 + true + + + 3854 + 624 + 9 + 22 + Max Cycles Year + 62 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1837 + Number of cycles allowed each year + 80 + true + + + 3855 + 624 + 9 + 23 + Max Energy Discharging + 80 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3045 + Max Energy Discharging + 80 + true + + + 3856 + 624 + 9 + 23 + Max Energy Discharging Hour + 80 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3046 + Max Energy Discharging Hour + 80 + true + + + 3857 + 624 + 9 + 23 + Max Energy Discharging Day + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3047 + Max Energy Discharging Day + 80 + true + + + 3858 + 624 + 9 + 23 + Max Energy Discharging Week + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3048 + Max Energy Discharging Week + 80 + true + + + 3859 + 624 + 9 + 23 + Max Energy Discharging Month + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3049 + Max Energy Discharging Month + 80 + true + + + 3860 + 624 + 9 + 23 + Max Energy Discharging Year + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3050 + Max Energy Discharging Year + 80 + true + + + 3861 + 624 + 9 + 24 + Min Energy Discharging + 80 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3052 + Min Energy Discharging + 80 + true + + + 3862 + 624 + 9 + 24 + Min Energy Discharging Hour + 80 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3053 + Min Energy Discharging Hour + 80 + true + + + 3863 + 624 + 9 + 24 + Min Energy Discharging Day + 3 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3054 + Min Energy Discharging Day + 80 + true + + + 3864 + 624 + 9 + 24 + Min Energy Discharging Week + 3 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3055 + Min Energy Discharging Week + 80 + true + + + 3865 + 624 + 9 + 24 + Min Energy Discharging Month + 3 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3056 + Min Energy Discharging Month + 80 + true + + + 3866 + 624 + 9 + 24 + Min Energy Discharging Year + 3 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3057 + Min Energy Discharging Year + 80 + true + + + 3867 + 624 + 9 + 25 + Max Energy Discharging Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3058 + Max Energy Discharging Penalty + 80 + true + + + 3868 + 624 + 9 + 26 + Min Energy Discharging Penalty + 33 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3059 + Min Energy Discharging Penalty + 80 + true + + + 3869 + 624 + 9 + 27 + Max Energy Charging + 80 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3063 + Max Energy Discharging + 80 + true + + + 3870 + 624 + 9 + 27 + Max Energy Charging Hour + 80 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3064 + Max Energy Discharging Hour + 80 + true + + + 3871 + 624 + 9 + 27 + Max Energy Charging Day + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3065 + Max Energy Discharging Day + 80 + true + + + 3872 + 624 + 9 + 27 + Max Energy Charging Week + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3066 + Max Energy Discharging Week + 80 + true + + + 3873 + 624 + 9 + 27 + Max Energy Charging Month + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3067 + Max Energy Discharging Month + 80 + true + + + 3874 + 624 + 9 + 27 + Max Energy Charging Year + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3068 + Max Energy Discharging Year + 80 + true + + + 3875 + 624 + 9 + 28 + Min Energy Charging + 80 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3069 + Min Energy Discharging + 80 + true + + + 3876 + 624 + 9 + 28 + Min Energy Charging Hour + 80 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3070 + Min Energy Discharging Hour + 80 + true + + + 3877 + 624 + 9 + 28 + Min Energy Charging Day + 3 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3071 + Min Energy Discharging Day + 80 + true + + + 3878 + 624 + 9 + 28 + Min Energy Charging Week + 3 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3072 + Min Energy Discharging Week + 80 + true + + + 3879 + 624 + 9 + 28 + Min Energy Charging Month + 3 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3073 + Min Energy Discharging Month + 80 + true + + + 3880 + 624 + 9 + 28 + Min Energy Charging Year + 3 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3074 + Min Energy Discharging Year + 80 + true + + + 3881 + 624 + 9 + 29 + Max Energy Charging Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3075 + Max Energy Discharging Penalty + 80 + true + + + 3882 + 624 + 9 + 30 + Min Energy Charging Penalty + 33 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3076 + Min Energy Discharging Penalty + 80 + true + + + 3883 + 624 + 9 + 31 + SoC Target + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 194048949 + Vehicle State of Charge target + 80 + true + + + 3884 + 624 + 9 + 31 + SoC Target Hour + 12 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1075856882 + end of hour vehicle state of charge target + 80 + true + + + 3885 + 624 + 9 + 31 + SoC Target Day + 12 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 626749896 + end of day vehicle state of charge target + 80 + true + + + 3886 + 624 + 9 + 31 + SoC Target Week + 12 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1693285067 + end of week vehicle state of charge target + 80 + true + + + 3887 + 624 + 9 + 31 + SoC Target Month + 12 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 2123227489 + end of month vehicle state of charge target + 80 + true + + + 3888 + 624 + 9 + 31 + SoC Target Year + 12 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1682677665 + end of year vehicle state of charge target + 80 + true + + + 3889 + 624 + 3 + 32 + Charge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 3890 + 624 + 3 + 33 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 3891 + 624 + 3 + 34 + Auxiliary Consumption + 79 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + true + false + 1 + 2974 + Auxiliary energy consumption for vehicle + true + + + 3892 + 624 + 3 + 35 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 3893 + 624 + 3 + 36 + VO&M Charge + 90 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 3894 + 624 + 3 + 37 + Fixed Load + 79 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed charging load + true + + + 3895 + 624 + 3 + 38 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3896 + 624 + 3 + 39 + Capacity Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1960 + Degradation in capacity with age in number of cycles + 4 + true + + + 3897 + 624 + 3 + 40 + Charge Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2979 + Degradation in charge efficiency with age in number of cycles + 4 + true + + + 3898 + 624 + 3 + 41 + Discharge Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2980 + Degradation in discharge efficiency with age in number of cycles + 4 + true + + + 3899 + 624 + 3 + 42 + Initial Age + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Age of the vehicle battery in number of cycles at the start of the simulation horizon + 80000 + true + + + 3900 + 624 + 8 + 43 + Purchase Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2451 + Cost of purchasing the vehicle + 8009 + true + + + 3901 + 624 + 8 + 44 + Disposal Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2452 + Cost of disposing of the vehicle + 8 + true + + + 3902 + 624 + 8 + 45 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the vehicle + 8 + true + + + 3903 + 624 + 8 + 46 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3904 + 624 + 8 + 47 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the vehicle (period over which fixed costs are recovered) + 9 + true + + + 3905 + 624 + 8 + 48 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3906 + 624 + 8 + 49 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3907 + 624 + 8 + 50 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3908 + 624 + 8 + 51 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3909 + 624 + 8 + 52 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3910 + 624 + 8 + 53 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3911 + 624 + 8 + 54 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3912 + 624 + 8 + 55 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3913 + 624 + 12 + 56 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3914 + 624 + 12 + 57 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3915 + 624 + 12 + 58 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3916 + 627 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 744 + Time the vehicle is at the charging station + true + + + 3917 + 627 + 1 + 2 + Max Charge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2109 + Maximum charge rate + 5 + true + + + 3918 + 628 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Fleet share of Vehicle + true + + + 3919 + 629 + 1 + 1 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Proportion of energy provided by the Commodity + true + + + 3920 + 630 + 1 + 1 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 3921 + 630 + 1 + 2 + Distance Coefficient + 81 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2458 + Coefficient of distance travelled by the vehicle + true + + + 3922 + 630 + 1 + 3 + Load Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load drawn by vehicle charging + true + + + 3923 + 630 + 1 + 4 + Generation Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation from vehicle to grid + true + + + 3924 + 630 + 1 + 5 + Energy Coefficient + 80 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1859 + Coefficient of energy stored in the vehicle + true + + + 3925 + 630 + 1 + 6 + Capacity Coefficient + 80 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2942 + Coefficient of the vehicle capacity + true + + + 3926 + 630 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3927 + 630 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3928 + 630 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 3929 + 630 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 3930 + 630 + 8 + 11 + Capacity Built Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built (Discharging) + C + true + + + 3931 + 630 + 8 + 12 + Capacity Retired Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired (Discharging) + C + true + + + 3932 + 630 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3933 + 630 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 3934 + 630 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 3935 + 631 + 1 + 1 + Distance Coefficient + 81 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2458 + Coefficient of distance travelled by the vehicle + true + + + 3936 + 632 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3937 + 632 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3938 + 632 + 3 + 3 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of chargers + 800001 + true + + + 3939 + 632 + 3 + 4 + Max Charge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2109 + Maximum charge rate + 5 + true + + + 3940 + 632 + 3 + 5 + Deferrable Load + 12 + 0 + >=0 + 1 + 0 + 1 + 0 + false + true + false + true + 1 + 2125 + Proportion of charging load that can be deferred + true + + + 3941 + 632 + 3 + 6 + Deferment Period + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2128 + Length of time load is deferred where zero means one interval + true + + + 3942 + 632 + 3 + 7 + Max Discharge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2110 + Maximum discharge rate + 5 + true + + + 3943 + 632 + 3 + 8 + Charge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 3944 + 632 + 3 + 9 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 3945 + 632 + 3 + 10 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge + 2000000000 + true + + + 3946 + 632 + 3 + 11 + Max Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 436 + Maximum charging load across all units + true + + + 3947 + 632 + 3 + 12 + Min Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 486 + Minimum charging load across all units + true + + + 3948 + 632 + 3 + 13 + Fixed Load + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 200 + Fixed charging load across all units + true + + + 3949 + 632 + 3 + 14 + Max Generation + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 431 + Maximum generation across all units + true + + + 3950 + 632 + 3 + 15 + Min Generation + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 483 + Minimum generation across all units + true + + + 3951 + 632 + 3 + 16 + Fixed Generation + 1 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 198 + Fixed generation across all units + true + + + 3952 + 632 + 3 + 17 + Aux Fixed + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 3953 + 632 + 3 + 18 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3954 + 632 + 8 + 19 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 3955 + 632 + 8 + 20 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 3956 + 632 + 8 + 21 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning + 8 + true + + + 3957 + 632 + 8 + 22 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 3958 + 632 + 8 + 23 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3959 + 632 + 8 + 24 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 3960 + 632 + 8 + 25 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3961 + 632 + 8 + 26 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3962 + 632 + 8 + 27 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3963 + 632 + 8 + 28 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3964 + 632 + 8 + 29 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3965 + 632 + 8 + 30 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3966 + 632 + 8 + 31 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3967 + 632 + 8 + 32 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3968 + 632 + 9 + 33 + Max Energy Discharging + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3045 + Max Energy Discharging + 80 + true + + + 3969 + 632 + 9 + 33 + Max Energy Discharging Hour + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3046 + Max Energy Discharging Hour + 80 + true + + + 3970 + 632 + 9 + 33 + Max Energy Discharging Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3047 + Max Energy Discharging Day + 80 + true + + + 3971 + 632 + 9 + 33 + Max Energy Discharging Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3048 + Max Energy Discharging Week + 80 + true + + + 3972 + 632 + 9 + 33 + Max Energy Discharging Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3049 + Max Energy Discharging Month + 80 + true + + + 3973 + 632 + 9 + 33 + Max Energy Discharging Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3050 + Max Energy Discharging Year + 80 + true + + + 3974 + 632 + 9 + 34 + Min Energy Discharging + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3052 + Min Energy Discharging + 80 + true + + + 3975 + 632 + 9 + 34 + Min Energy Discharging Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3053 + Min Energy Discharging Hour + 80 + true + + + 3976 + 632 + 9 + 34 + Min Energy Discharging Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3054 + Min Energy Discharging Day + 80 + true + + + 3977 + 632 + 9 + 34 + Min Energy Discharging Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3055 + Min Energy Discharging Week + 80 + true + + + 3978 + 632 + 9 + 34 + Min Energy Discharging Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3056 + Min Energy Discharging Month + 80 + true + + + 3979 + 632 + 9 + 34 + Min Energy Discharging Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3057 + Min Energy Discharging Year + 80 + true + + + 3980 + 632 + 9 + 35 + Max Energy Discharging Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3058 + Max Energy Discharging Penalty + 80 + true + + + 3981 + 632 + 9 + 36 + Min Energy Discharging Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3059 + Min Energy Discharging Penalty + 80 + true + + + 3982 + 632 + 9 + 37 + Max Energy Charging + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3063 + Max Energy Discharging + 80 + true + + + 3983 + 632 + 9 + 37 + Max Energy Charging Hour + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3064 + Max Energy Discharging Hour + 80 + true + + + 3984 + 632 + 9 + 37 + Max Energy Charging Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3065 + Max Energy Discharging Day + 80 + true + + + 3985 + 632 + 9 + 37 + Max Energy Charging Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3066 + Max Energy Discharging Week + 80 + true + + + 3986 + 632 + 9 + 37 + Max Energy Charging Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3067 + Max Energy Discharging Month + 80 + true + + + 3987 + 632 + 9 + 37 + Max Energy Charging Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3068 + Max Energy Discharging Year + 80 + true + + + 3988 + 632 + 9 + 38 + Min Energy Charging + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3069 + Min Energy Discharging + 80 + true + + + 3989 + 632 + 9 + 38 + Min Energy Charging Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 3070 + Min Energy Discharging Hour + 80 + true + + + 3990 + 632 + 9 + 38 + Min Energy Charging Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 3071 + Min Energy Discharging Day + 80 + true + + + 3991 + 632 + 9 + 38 + Min Energy Charging Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 3072 + Min Energy Discharging Week + 80 + true + + + 3992 + 632 + 9 + 38 + Min Energy Charging Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 3073 + Min Energy Discharging Month + 80 + true + + + 3993 + 632 + 9 + 38 + Min Energy Charging Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 3074 + Min Energy Discharging Year + 80 + true + + + 3994 + 632 + 9 + 39 + Max Energy Charging Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3075 + Max Energy Discharging Penalty + 80 + true + + + 3995 + 632 + 9 + 40 + Min Energy Charging Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3076 + Min Energy Discharging Penalty + 80 + true + + + 3996 + 632 + 12 + 41 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3997 + 632 + 12 + 42 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3998 + 632 + 12 + 43 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3999 + 638 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Load Coefficient + true + + + 4000 + 638 + 1 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Generation Coefficient + true + + + 4001 + 638 + 8 + 3 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4002 + 638 + 8 + 4 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4003 + 638 + 8 + 5 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 4004 + 638 + 8 + 6 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 4005 + 638 + 8 + 7 + Capacity Built Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built (Max Charge Rate x Units Built) + C + true + + + 4006 + 638 + 8 + 8 + Capacity Retired Coefficient + 79 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired (Max Charge Rate x Units Retired) + C + true + + + 4007 + 638 + 8 + 9 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4008 + 638 + 8 + 10 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 4009 + 638 + 8 + 11 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 4010 + 639 + 12 + 1 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4011 + 639 + 12 + 2 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4012 + 639 + 12 + 3 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4013 + 642 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company ownership share of the Fleet + true + + + 4014 + 643 + 2 + 1 + Load Includes Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 353 + Flag if input load includes transmission losses + 200000 + true + + + 4015 + 643 + 3 + 2 + Load + 1 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 349 + Own load + load contracts + 100000 + true + + + 4016 + 643 + 3 + 3 + Firm Capacity Incr + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1959 + Firm Capacity not explicitly modeled that should be included in output calculations + C + true + + + 4017 + 643 + 5 + 4 + Strategic + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 766 + Percentage of company generation that acts strategically + 40 + true + + + 4018 + 643 + 5 + 5 + Mark-up Bias + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 409 + Bias given towards high revenue periods in mark-ups (cost recovery algorithm) + 40 + true + + + 4019 + 643 + 5 + 6 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound company net profit risk + 4000000000 + true + + + 4020 + 643 + 5 + 7 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 4021 + 643 + 5 + 8 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 4022 + 643 + 7 + 9 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 4023 + 643 + 7 + 10 + Min Maintenance + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1452 + Generation capacity that must be scheduled on maintenance + 1000000 + true + + + 4024 + 643 + 7 + 11 + Max Maintenance Factor + 12 + 100 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1456 + Maximum generation capacity allowed to be scheduled on maintenance as a proportion of installed capacity + 1000000 + true + + + 4025 + 643 + 7 + 12 + Min Maintenance Factor + 12 + 0 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1457 + Generation capacity that must be scheduled on maintenance as a proportion of installed capacity + 1000000 + true + + + 4026 + 643 + 12 + 13 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4027 + 643 + 12 + 14 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4028 + 643 + 12 + 15 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4029 + 647 + 1 + 1 + Allocation + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3 + Emission rights allocation + 2000 + true + + + 4030 + 647 + 1 + 1 + Allocation Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1581 + Emission rights allocation + 2000 + true + + + 4031 + 647 + 1 + 1 + Allocation Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 4 + Emission rights allocation + 2000 + true + + + 4032 + 647 + 1 + 1 + Allocation Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 6 + Emission rights allocation + 2000 + true + + + 4033 + 647 + 1 + 1 + Allocation Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 5 + Emission rights allocation + 2000 + true + + + 4034 + 647 + 1 + 1 + Allocation Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 7 + Emission rights allocation + 2000 + true + + + 4035 + 649 + 1 + 1 + Load Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of region load the company is responsible for + 100000 + true + + + 4036 + 651 + 1 + 1 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the company + true + + + 4037 + 651 + 1 + 2 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports + true + + + 4038 + 653 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's ownership share of Facility + 40 + true + + + 4039 + 654 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of market trades + 40 + true + + + 4040 + 655 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of company generation + true + + + 4041 + 655 + 3 + 2 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of company committed generation capacity + 1000000004 + true + + + 4042 + 655 + 3 + 3 + Contract Volume Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 110 + Coefficient of company contract volume + 40 + true + + + 4043 + 655 + 3 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 4044 + 655 + 3 + 5 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 4045 + 655 + 5 + 6 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4046 + 655 + 5 + 7 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4047 + 655 + 5 + 8 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4048 + 656 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of company generation + true + + + 4049 + 656 + 3 + 2 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of company committed generation capacity + true + + + 4050 + 656 + 3 + 3 + Contract Volume Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 110 + Coefficient of company contract volume + true + + + 4051 + 656 + 3 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 4052 + 656 + 3 + 5 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 4053 + 656 + 5 + 6 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4054 + 656 + 5 + 7 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4055 + 656 + 5 + 8 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4056 + 657 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of inventory balance + true + + + 4057 + 657 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period inventory + 400000000 + true + + + 4058 + 657 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal inventory trajectory from one simulation phase to the next + 400000000 + true + + + 4059 + 657 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition inventory target penalty function 'a' term + 400000000 + true + + + 4060 + 657 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition inventory target penalty function 'b' term + 400000000 + true + + + 4061 + 657 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition inventory target penalty function 'c' term + 400000000 + true + + + 4062 + 657 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition inventory target penalty function 'x' term + 400000000 + true + + + 4063 + 657 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of inventory bounds when the decomposition implies possible violations + 400000000 + true + + + 4064 + 657 + 2 + 9 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 4065 + 657 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4066 + 657 + 2 + 11 + Build Cost Multiplier + 0 + 0 + In (0,2) + 0;"None";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 4067 + 657 + 3 + 12 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of Commodity 'units' where zero switches the Commodity out of the simulation + 800001 + true + + + 4068 + 657 + 3 + 13 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Price of the Commodity for the given level of Net Consumption + 1 + true + + + 4069 + 657 + 9 + 14 + Max Consumption + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2273 + Maximum consumption per interval + true + + + 4070 + 657 + 9 + 14 + Max Consumption Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2274 + Maximum consumption per hour + true + + + 4071 + 657 + 9 + 14 + Max Consumption Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2275 + Maximum consumption per day + true + + + 4072 + 657 + 9 + 14 + Max Consumption Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2276 + Maximum consumption per week + true + + + 4073 + 657 + 9 + 14 + Max Consumption Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2277 + Maximum consumption per month + true + + + 4074 + 657 + 9 + 14 + Max Consumption Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2278 + Maximum consumption per year + true + + + 4075 + 657 + 9 + 14 + Max Consumption Custom + 86 + 1E+30 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2279 + Maximum consumption over custom timeframe + true + + + 4076 + 657 + 9 + 15 + Max Consumption Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2280 + Penalty for violation of [Max Consumption] constraints + true + + + 4077 + 657 + 9 + 16 + Min Consumption + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2283 + Minimum consumption per interval + true + + + 4078 + 657 + 9 + 16 + Min Consumption Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2284 + Minimum consumption per hour + true + + + 4079 + 657 + 9 + 16 + Min Consumption Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2285 + Minimum consumption per day + true + + + 4080 + 657 + 9 + 16 + Min Consumption Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2286 + Minimum consumption per week + true + + + 4081 + 657 + 9 + 16 + Min Consumption Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2287 + Minimum consumption per month + true + + + 4082 + 657 + 9 + 16 + Min Consumption Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2288 + Minimum consumption per year + true + + + 4083 + 657 + 9 + 16 + Min Consumption Custom + 86 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2289 + Minimum consumption over custom timeframe + true + + + 4084 + 657 + 9 + 17 + Min Consumption Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2290 + Penalty for violation of [Min Consumption] constraints + true + + + 4085 + 657 + 9 + 18 + Max Production + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production per interval + true + + + 4086 + 657 + 9 + 18 + Max Production Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production per hour + true + + + 4087 + 657 + 9 + 18 + Max Production Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production per day + true + + + 4088 + 657 + 9 + 18 + Max Production Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production per week + true + + + 4089 + 657 + 9 + 18 + Max Production Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production per month + true + + + 4090 + 657 + 9 + 18 + Max Production Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production per year + true + + + 4091 + 657 + 9 + 18 + Max Production Custom + 86 + 1E+30 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2281 + Maximum production over custom timeframe + true + + + 4092 + 657 + 9 + 19 + Max Production Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1361 + Penalty for violation of [Max Production] constraints + true + + + 4093 + 657 + 9 + 20 + Min Production + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production per interval + true + + + 4094 + 657 + 9 + 20 + Min Production Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production per hour + true + + + 4095 + 657 + 9 + 20 + Min Production Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production per day + true + + + 4096 + 657 + 9 + 20 + Min Production Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production per week + true + + + 4097 + 657 + 9 + 20 + Min Production Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production per month + true + + + 4098 + 657 + 9 + 20 + Min Production Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production per year + true + + + 4099 + 657 + 9 + 20 + Min Production Custom + 86 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2291 + Minimum production over custom timeframe + true + + + 4100 + 657 + 9 + 21 + Min Production Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2292 + Penalty for violation of [Min Production] constraints + true + + + 4101 + 657 + 10 + 22 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 4102 + 657 + 10 + 23 + Max Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 4103 + 657 + 10 + 24 + Min Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 4104 + 657 + 10 + 25 + Opening Inventory + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1591 + Initial amount of the Commodity in inventory + true + + + 4105 + 657 + 10 + 26 + Delivery + 86 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Amount of the Commodity added to inventory + true + + + 4106 + 657 + 10 + 27 + Injection Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2507 + Proportion of injected commodity reaching storage net of losses + true + + + 4107 + 657 + 10 + 28 + Withdrawal Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2508 + Proportion of commodity withdrawn from storage net of losses + true + + + 4108 + 657 + 10 + 29 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of deliveries of the Commodity to inventory + true + + + 4109 + 657 + 10 + 30 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost of keeping the Commodity in inventory + true + + + 4110 + 657 + 10 + 31 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity + true + + + 4111 + 657 + 10 + 32 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1252 + Cost of adding the Commodity to inventory + true + + + 4112 + 657 + 10 + 33 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Cost of taking the Commodity out of inventory + true + + + 4113 + 657 + 10 + 34 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of the Commodity that can be taken from inventory in any interval + 400000000 + true + + + 4114 + 657 + 10 + 34 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of the Commodity that can be taken from inventory in a hour + 400000000 + true + + + 4115 + 657 + 10 + 34 + Max Withdrawal Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of the Commodity that can be taken from inventory in a day + 400000000 + true + + + 4116 + 657 + 10 + 34 + Max Withdrawal Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of the Commodity that can be taken from inventory in a week + 400000000 + true + + + 4117 + 657 + 10 + 34 + Max Withdrawal Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of the Commodity that can be taken from inventory in a month + 400000000 + true + + + 4118 + 657 + 10 + 34 + Max Withdrawal Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of the Commodity that can be taken from inventory in a year + 400000000 + true + + + 4119 + 657 + 10 + 35 + Max Injection + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of the Commodity that can be put into inventory in any interval + 400000000 + true + + + 4120 + 657 + 10 + 35 + Max Injection Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of the Commodity that can be put into inventory in any hour + 400000000 + true + + + 4121 + 657 + 10 + 35 + Max Injection Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of the Commodity that can be put into inventory in any day + 400000000 + true + + + 4122 + 657 + 10 + 35 + Max Injection Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of the Commodity that can be put into inventory in any week + 400000000 + true + + + 4123 + 657 + 10 + 35 + Max Injection Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of the Commodity that can be put into inventory in any month + 400000000 + true + + + 4124 + 657 + 10 + 35 + Max Injection Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of the Commodity that can be put into inventory in any year + 400000000 + true + + + 4125 + 657 + 10 + 36 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1258 + Amount of the Commodity that must be taken from inventory each interval + 400000000 + true + + + 4126 + 657 + 10 + 36 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of the Commodity that must be taken from inventory each hour + 400000000 + true + + + 4127 + 657 + 10 + 36 + Min Withdrawal Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of the Commodity that must be taken from inventory each day + 400000000 + true + + + 4128 + 657 + 10 + 36 + Min Withdrawal Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of the Commodity that must be taken from inventory each week + 400000000 + true + + + 4129 + 657 + 10 + 36 + Min Withdrawal Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of the Commodity that must be taken from inventory each month + 400000000 + true + + + 4130 + 657 + 10 + 36 + Min Withdrawal Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of the Commodity that must be taken from inventory each year + 400000000 + true + + + 4131 + 657 + 10 + 37 + Min Injection + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1263 + Amount of the Commodity that must be added to inventory in any interval + 400000000 + true + + + 4132 + 657 + 10 + 37 + Min Injection Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of the Commodity that must be added to inventory in any hour + 400000000 + true + + + 4133 + 657 + 10 + 37 + Min Injection Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of the Commodity that must be added to inventory in any day + 400000000 + true + + + 4134 + 657 + 10 + 37 + Min Injection Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of the Commodity that must be added to inventory in any week + 400000000 + true + + + 4135 + 657 + 10 + 37 + Min Injection Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of the Commodity that must be added to inventory in any month + 400000000 + true + + + 4136 + 657 + 10 + 37 + Min Injection Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of the Commodity that must be added to inventory in any year + 400000000 + true + + + 4137 + 657 + 10 + 38 + Max Inventory Change + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2333 + Maximum rate of change in inventory in any interval + 400000000 + true + + + 4138 + 657 + 10 + 38 + Max Inventory Change Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2334 + Maximum rate of change in inventory in any hour + 400000000 + true + + + 4139 + 657 + 10 + 38 + Max Inventory Change Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2335 + Maximum rate of change in inventory in any day + 400000000 + true + + + 4140 + 657 + 10 + 38 + Max Inventory Change Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2336 + Maximum rate of change in inventory in any week + 400000000 + true + + + 4141 + 657 + 10 + 38 + Max Inventory Change Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2337 + Maximum rate of change in inventory in any month + 400000000 + true + + + 4142 + 657 + 10 + 38 + Max Inventory Change Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2338 + Maximum rate of change in inventory in any year + 400000000 + true + + + 4143 + 657 + 10 + 39 + Max Inventory Change Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2339 + Penalty for violating the [Max Ramp] constraints + 400000000 + true + + + 4144 + 657 + 10 + 40 + Target + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Target level of inventory at the end of the interval + 400000000 + true + + + 4145 + 657 + 10 + 40 + Target Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + Target level of inventory at the end of the hour + 400000000 + true + + + 4146 + 657 + 10 + 40 + Target Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + Target level of inventory at the end of the day + 400000000 + true + + + 4147 + 657 + 10 + 40 + Target Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + Target level of inventory at the end of the week + 400000000 + true + + + 4148 + 657 + 10 + 40 + Target Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + Target level of inventory at the end of the month + 400000000 + true + + + 4149 + 657 + 10 + 40 + Target Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + Target level of inventory at the end of the year + 400000000 + true + + + 4150 + 657 + 10 + 40 + Target Custom + 86 + 0 + >=0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2542 + Target level of inventory at the end of the horizon + 400000000 + true + + + 4151 + 657 + 10 + 41 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target inventory + 400000000 + true + + + 4152 + 657 + 5 + 42 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 4153 + 657 + 5 + 43 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 4154 + 657 + 5 + 44 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 4155 + 657 + 8 + 45 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 4156 + 657 + 8 + 46 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 4157 + 657 + 8 + 47 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 4158 + 657 + 8 + 48 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 4159 + 657 + 8 + 49 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 4160 + 657 + 8 + 50 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 4161 + 657 + 8 + 51 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 4162 + 657 + 8 + 52 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4163 + 657 + 8 + 53 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4164 + 657 + 8 + 54 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4165 + 657 + 8 + 55 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4166 + 657 + 8 + 56 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4167 + 657 + 8 + 57 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4168 + 657 + 8 + 58 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4169 + 657 + 8 + 59 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4170 + 657 + 8 + 60 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4171 + 657 + 11 + 61 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 4172 + 657 + 11 + 62 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 4173 + 657 + 12 + 63 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4174 + 657 + 12 + 64 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4175 + 657 + 12 + 65 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4176 + 662 + 3 + 1 + Consumption Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption in the Constraint + true + + + 4177 + 662 + 3 + 2 + Production Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production in the Constraint + true + + + 4178 + 662 + 10 + 3 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 4179 + 662 + 10 + 4 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 4180 + 662 + 10 + 5 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 4181 + 662 + 10 + 6 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 4182 + 662 + 10 + 7 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 4183 + 662 + 5 + 8 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4184 + 662 + 5 + 9 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4185 + 662 + 5 + 10 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4186 + 662 + 8 + 11 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4187 + 662 + 8 + 12 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4188 + 662 + 8 + 13 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4189 + 662 + 8 + 14 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4190 + 662 + 8 + 15 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4191 + 662 + 8 + 16 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4192 + 662 + 8 + 17 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4193 + 662 + 8 + 18 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4194 + 662 + 8 + 19 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4195 + 663 + 3 + 1 + Consumption Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption in the Objective + true + + + 4196 + 663 + 3 + 2 + Production Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production + true + + + 4197 + 663 + 10 + 3 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 4198 + 663 + 10 + 4 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 4199 + 663 + 10 + 5 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 4200 + 663 + 10 + 6 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 4201 + 663 + 10 + 7 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 4202 + 663 + 5 + 8 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4203 + 663 + 5 + 9 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4204 + 663 + 5 + 10 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4205 + 663 + 8 + 11 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4206 + 663 + 8 + 12 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4207 + 663 + 8 + 13 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4208 + 663 + 8 + 14 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4209 + 663 + 8 + 15 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4210 + 663 + 8 + 16 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4211 + 663 + 8 + 17 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4212 + 663 + 8 + 18 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4213 + 663 + 8 + 19 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4214 + 664 + 1 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Process is modeled + 800001 + true + + + 4215 + 664 + 1 + 2 + Capacity + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of production measured in units of the primary output + true + + + 4216 + 664 + 1 + 3 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Ratio of primary output production to primary input consumption + true + + + 4217 + 664 + 1 + 4 + Processing Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1738 + Unit cost of production charged per unit of the primary output + true + + + 4218 + 664 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4219 + 664 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4220 + 664 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4221 + 667 + 1 + 1 + Conversion Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2366 + Primary Input units per unit of Primary Output + true + + + 4222 + 668 + 1 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient in production definition of the number of units operating at the Facility + true + + + 4223 + 668 + 1 + 2 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient in production definition of the capacity of operating units at the Facility + true + + + 4224 + 668 + 1 + 3 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient in production definition of the available capacity at the Facility + true + + + 4225 + 668 + 1 + 4 + Operating Minimum Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2347 + Coefficient in production definition of the minimum operating level at the Facility + true + + + 4226 + 668 + 1 + 5 + Unit Maximum + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2348 + Maximum production as proportion of primary output + true + + + 4227 + 669 + 1 + 1 + Denominator + 0 + 0 + In (0,1) + 0;"Input";1;"Output" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2464 + The denominator for the Ratio property where "Input" refers to the Primary Input and "Output" refers to the Primary Output + true + + + 4228 + 669 + 1 + 2 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Secondary input consumption as a proportion of primary input consumption + true + + + 4229 + 670 + 1 + 1 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Secondary output production as a proportion of primary output production + true + + + 4230 + 670 + 1 + 2 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient in production definition of the number of units operating at the Facility + true + + + 4231 + 670 + 1 + 3 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient in production definition of the capacity of operating units at the Facility + true + + + 4232 + 670 + 1 + 4 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient in production definition of the available capacity at the Facility + true + + + 4233 + 670 + 1 + 5 + Operating Minimum Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2347 + Coefficient in production definition of the minimum operating level at the Facility + true + + + 4234 + 670 + 1 + 6 + Unit Maximum + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2348 + Maximum production as proportion of primary output + true + + + 4235 + 671 + 1 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Process production in the Constraint + true + + + 4236 + 671 + 1 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Process production in the Constraint + true + + + 4237 + 672 + 1 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Process consumption + true + + + 4238 + 672 + 1 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Process production + true + + + 4239 + 673 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the facility for the generation of outages + 101000000 + true + + + 4240 + 673 + 2 + 2 + Dispatchable + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2895 + A dispatchable facility operates anywhere within its technical limits whereas a non-dispatchable facility operates at its maximum available rating at all times + 800000 + true + + + 4241 + 673 + 2 + 3 + Min Operating Level Global + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2502 + If [Min Operating Level/Factor] applies across all units at the Facility or unit-by-unit + true + + + 4242 + 673 + 2 + 4 + Fixed Production Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2461 + Method of interpreting zero values of the [Fixed Production] property. + 80 + true + + + 4243 + 673 + 2 + 5 + Fixed Production Global + 0 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2466 + If [Fixed Production] applies across all units at the Facility or unit-by-unit + true + + + 4244 + 673 + 2 + 6 + Max Efficiency Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2443 + Maximum number of tranches in the efficiency piecewise linear approximation + 1000 + true + + + 4245 + 673 + 2 + 7 + Formulate Non-convex + 0 + 2 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order + 1000 + true + + + 4246 + 673 + 2 + 8 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 4247 + 673 + 2 + 9 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4248 + 673 + 2 + 10 + Build Cost Multiplier + 0 + 0 + In (0,1) + 0;"None";1;"Production Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 4249 + 673 + 3 + 11 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of existing units + 800001 + true + + + 4250 + 673 + 3 + 12 + Max Operating Level + 94 + 0 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 2293 + Maximum unit operating capacity + 5 + true + + + 4251 + 673 + 3 + 13 + Min Operating Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2295 + Minimum unit level required when operating as a proportion of the maximum + 1000000080 + true + + + 4252 + 673 + 3 + 14 + Min Operating Level + 94 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 2470 + Minimum unit production level required when operating + 1000000080 + true + + + 4253 + 673 + 3 + 15 + Consumption Base + 93 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1428 + Primary Process consumption at notional zero production + 1000 + true + + + 4254 + 673 + 3 + 16 + Consumption Incr + 123 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1429 + Primary Process consumption function first-order term + 1000 + true + + + 4255 + 673 + 3 + 17 + Consumption Incr2 + 124 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2837 + Primary Process consumption function second-order term + 1000 + true + + + 4256 + 673 + 3 + 18 + Consumption Incr3 + 125 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2838 + Primary Process consumption function third-order term + 1000 + true + + + 4257 + 673 + 3 + 19 + Efficiency Point + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1340 + Operating level associated with [Efficiency Incr] + 1000 + true + + + 4258 + 673 + 3 + 20 + Efficiency Incr + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Primary Process marginal efficiency at the given [Efficiency Point] + 1000 + true + + + 4259 + 673 + 3 + 21 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1209 + Primary Process average efficiency at the given [Efficiency Point] + 1000 + true + + + 4260 + 673 + 3 + 22 + VO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 4261 + 673 + 3 + 23 + FO&M Charge + 108 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 4262 + 673 + 3 + 24 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running a unit when operating + 20000000 + true + + + 4263 + 673 + 3 + 25 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 4264 + 673 + 3 + 26 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 4265 + 673 + 3 + 27 + Start Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1749 + Flag if start is allowed in the given time period + 1000000080 + true + + + 4266 + 673 + 3 + 28 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 4267 + 673 + 3 + 29 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 4268 + 673 + 3 + 30 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 4269 + 673 + 3 + 31 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 4270 + 673 + 3 + 32 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 4271 + 673 + 3 + 33 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 4272 + 673 + 3 + 34 + Warm Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2496 + Number of hours required to warm up the Facility + 1000000080 + true + + + 4273 + 673 + 3 + 35 + Warm Up Operating Level + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2498 + Unit operating level when in the warm up period + 1000000080 + true + + + 4274 + 673 + 3 + 36 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 4275 + 673 + 3 + 37 + Fixed Production + 0 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2304 + Fixed (exact) production + 80 + true + + + 4276 + 673 + 3 + 38 + Fixed Production Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2462 + Penalty for violation of [Fixed Production] + 80 + true + + + 4277 + 673 + 3 + 39 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Fixed (exact) number of units operating + 1000000080 + true + + + 4278 + 673 + 3 + 40 + Ramp Up Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 4279 + 673 + 3 + 41 + Ramp Down Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 4280 + 673 + 3 + 42 + Max Ramp Up + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 4281 + 673 + 3 + 43 + Max Ramp Up Factor + 12 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2468 + Maximum ramp up rate expressed as a proportion of the maximum operating level + 80 + true + + + 4282 + 673 + 3 + 44 + Max Ramp Up Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 660 + Penalty for violating [Max Ramp Up] constraint + 80 + true + + + 4283 + 673 + 3 + 45 + Max Ramp Down + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 4284 + 673 + 3 + 46 + Max Ramp Down Factor + 12 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2469 + Maximum ramp down rate expressed as a proportion of the maximum operating level + 80 + true + + + 4285 + 673 + 3 + 47 + Max Ramp Down Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 656 + Penalty for violating [Max Ramp Down] constraint + 80 + true + + + 4286 + 673 + 3 + 48 + Rough Running Point + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 709 + Start point of rough running range + 80 + true + + + 4287 + 673 + 3 + 49 + Rough Running Range + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 710 + Length of rough running range (must be paired with Rough Running Point) + 80 + true + + + 4288 + 673 + 3 + 50 + Initial Production + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2460 + Production at time zero + 80000 + true + + + 4289 + 673 + 3 + 51 + Initial Units Operating + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2300 + Number of units operating at time zero + 1000080000 + true + + + 4290 + 673 + 3 + 52 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the unit has been up for at time zero + 1000080000 + true + + + 4291 + 673 + 3 + 53 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the unit has been down for at time zero + 1000080000 + true + + + 4292 + 673 + 9 + 54 + Max Production + 94 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 949 + Maximum production + 80 + true + + + 4293 + 673 + 9 + 54 + Max Production Hour + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production in hour + 80 + true + + + 4294 + 673 + 9 + 54 + Max Production Day + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production in day + 80 + true + + + 4295 + 673 + 9 + 54 + Max Production Week + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production in week + 80 + true + + + 4296 + 673 + 9 + 54 + Max Production Month + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production in month + 80 + true + + + 4297 + 673 + 9 + 54 + Max Production Year + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production in year + 80 + true + + + 4298 + 673 + 9 + 55 + Min Production + 94 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1275 + Minimum production + 80 + true + + + 4299 + 673 + 9 + 55 + Min Production Hour + 94 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production in hour + 80 + true + + + 4300 + 673 + 9 + 55 + Min Production Day + 94 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production in day + 80 + true + + + 4301 + 673 + 9 + 55 + Min Production Week + 94 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production in week + 80 + true + + + 4302 + 673 + 9 + 55 + Min Production Month + 94 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production in month + 80 + true + + + 4303 + 673 + 9 + 55 + Min Production Year + 94 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production in year + 80 + true + + + 4304 + 673 + 9 + 56 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor in the interval + 80 + true + + + 4305 + 673 + 9 + 56 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 4306 + 673 + 9 + 56 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 4307 + 673 + 9 + 56 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 4308 + 673 + 9 + 56 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 4309 + 673 + 9 + 56 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 4310 + 673 + 9 + 57 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor in the interval + 80 + true + + + 4311 + 673 + 9 + 57 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 4312 + 673 + 9 + 57 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 4313 + 673 + 9 + 57 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 4314 + 673 + 9 + 57 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 4315 + 673 + 9 + 57 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 4316 + 673 + 9 + 58 + Max Production Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1361 + Penalty applied to violations of [Max Production] and [Max Capacity Factor] constraints + 80 + true + + + 4317 + 673 + 9 + 59 + Min Production Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2292 + Penalty applied to violations of [Min Production] and [Min Capacity Factor] constraints + 80 + true + + + 4318 + 673 + 9 + 60 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 4319 + 673 + 9 + 60 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 4320 + 673 + 9 + 60 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 4321 + 673 + 9 + 60 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 4322 + 673 + 9 + 60 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 4323 + 673 + 9 + 60 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 4324 + 673 + 9 + 61 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints + 1080000080 + true + + + 4325 + 673 + 5 + 62 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 4326 + 673 + 5 + 63 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 4327 + 673 + 5 + 64 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 4328 + 673 + 7 + 65 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 4329 + 673 + 7 + 66 + Forced Outage + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 4330 + 673 + 7 + 67 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 4331 + 673 + 7 + 68 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 4332 + 673 + 7 + 69 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 4333 + 673 + 7 + 70 + Maintenance + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 392 + Capacity lost to maintenance + 1000000 + false + + + 4334 + 673 + 7 + 71 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 4335 + 673 + 7 + 72 + Outage Operating Level + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2301 + Unit rating during outage + 1000000 + true + + + 4336 + 673 + 7 + 73 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 4337 + 673 + 7 + 74 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 4338 + 673 + 7 + 75 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 4339 + 673 + 7 + 76 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 4340 + 673 + 7 + 77 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 4341 + 673 + 7 + 78 + Min Total Maintenance Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2543 + Minimum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 4342 + 673 + 7 + 79 + Max Total Maintenance Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2544 + Maximum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 4343 + 673 + 8 + 80 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 4344 + 673 + 8 + 81 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 4345 + 673 + 8 + 82 + One-time Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1958 + One-time cost associated with the project + 8 + true + + + 4346 + 673 + 8 + 83 + Establishment Cost + 34 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1160069392 + Establishment cost associated with the project + 8 + true + + + 4347 + 673 + 8 + 84 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 4348 + 673 + 8 + 85 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 4349 + 673 + 8 + 86 + Commission Date + 0 + 1 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the facility was commissioned for use with [Technical Life] + 8 + true + + + 4350 + 673 + 8 + 87 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 4351 + 673 + 8 + 88 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 4352 + 673 + 8 + 89 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 4353 + 673 + 8 + 90 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 4354 + 673 + 8 + 91 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4355 + 673 + 8 + 92 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4356 + 673 + 8 + 93 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4357 + 673 + 8 + 94 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4358 + 673 + 8 + 95 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4359 + 673 + 8 + 96 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4360 + 673 + 8 + 97 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4361 + 673 + 8 + 98 + Build Set Size + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1453 + Expansion must occur in sets of this many units where zero indicates any set size + 88 + true + + + 4362 + 673 + 8 + 99 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4363 + 673 + 8 + 100 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4364 + 673 + 8 + 101 + Expansion Economy Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 999 + 2959 + Cost of building a unit at economy of scale (band) + 8008 + true + + + 4365 + 673 + 8 + 102 + Expansion Economy Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 999 + 2960 + Minimum number of units required for the expansion economy (band) + 88 + true + + + 4366 + 673 + 11 + 103 + Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 968 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 4367 + 673 + 11 + 104 + Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 969 + Window of time over which to enforce unit commitment non-anticipativity constraints + 1100000000 + true + + + 4368 + 673 + 11 + 105 + Production Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2302 + Price for violating production non-anticipativity constraints + 100000000 + true + + + 4369 + 673 + 11 + 106 + Production Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2303 + Window of time over which to enforce production non-anticipativity constraints + 100000000 + true + + + 4370 + 673 + 11 + 107 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 4371 + 673 + 11 + 108 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 4372 + 673 + 12 + 109 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4373 + 673 + 12 + 110 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4374 + 673 + 12 + 111 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4375 + 684 + 3 + 1 + Facility Node Type + 0 + 0 + In (0, 1, 2) + 0;"Auto";1;"Input";2;"Output" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2949 + Specifies whether Node is an input or an output for the Facility + true + + + 4376 + 684 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Consumption for each unit of production + true + + + 4377 + 684 + 3 + 3 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Consumption for each unit operating + 1000000000 + true + + + 4378 + 684 + 6 + 4 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Consumption for each installed unit + 4 + true + + + 4379 + 685 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Facility + true + + + 4380 + 686 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption in the Constraint + true + + + 4381 + 686 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production in the Constraint + true + + + 4382 + 686 + 3 + 3 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor + true + + + 4383 + 686 + 3 + 4 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + 1000000000 + true + + + 4384 + 686 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 4385 + 686 + 3 + 6 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + 80000000 + true + + + 4386 + 686 + 3 + 7 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 4387 + 686 + 3 + 8 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the unit has been off + 1000000000 + true + + + 4388 + 686 + 3 + 9 + Ramp Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 4389 + 686 + 3 + 10 + Ramp Up Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 4390 + 686 + 3 + 11 + Ramp Down Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 4391 + 686 + 3 + 12 + Ramp Up Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 4392 + 686 + 3 + 13 + Ramp Down Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 4393 + 686 + 5 + 14 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4394 + 686 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4395 + 686 + 5 + 16 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4396 + 686 + 6 + 17 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 4397 + 686 + 6 + 18 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 4398 + 686 + 6 + 19 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 4399 + 686 + 6 + 20 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient of capacity of operating units + 1000000004 + true + + + 4400 + 686 + 7 + 21 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 4401 + 686 + 7 + 22 + Maintenance Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 4402 + 686 + 8 + 23 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4403 + 686 + 8 + 24 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4404 + 686 + 8 + 25 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4405 + 686 + 8 + 26 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4406 + 686 + 8 + 27 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4407 + 686 + 8 + 28 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4408 + 686 + 8 + 29 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4409 + 686 + 8 + 30 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4410 + 686 + 8 + 31 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4411 + 687 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption in the Objective + true + + + 4412 + 687 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production + true + + + 4413 + 687 + 3 + 3 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor + true + + + 4414 + 687 + 3 + 4 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + 1000000000 + true + + + 4415 + 687 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 4416 + 687 + 3 + 6 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + 80000000 + true + + + 4417 + 687 + 3 + 7 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 4418 + 687 + 3 + 8 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the unit has been off + 1000000000 + true + + + 4419 + 687 + 3 + 9 + Ramp Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 4420 + 687 + 3 + 10 + Ramp Up Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 4421 + 687 + 3 + 11 + Ramp Down Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 4422 + 687 + 3 + 12 + Ramp Up Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 4423 + 687 + 3 + 13 + Ramp Down Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 4424 + 687 + 5 + 14 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4425 + 687 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4426 + 687 + 5 + 16 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4427 + 687 + 6 + 17 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 4428 + 687 + 6 + 18 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 4429 + 687 + 6 + 19 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 4430 + 687 + 6 + 20 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient of capacity of operating units + 1000000004 + true + + + 4431 + 687 + 7 + 21 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 4432 + 687 + 7 + 22 + Maintenance Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 4433 + 687 + 8 + 23 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4434 + 687 + 8 + 24 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4435 + 687 + 8 + 25 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4436 + 687 + 8 + 26 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4437 + 687 + 8 + 27 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4438 + 687 + 8 + 28 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4439 + 687 + 8 + 29 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4440 + 687 + 8 + 30 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4441 + 687 + 8 + 31 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4442 + 688 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption + true + + + 4443 + 688 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production + true + + + 4444 + 688 + 3 + 3 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor + true + + + 4445 + 688 + 3 + 4 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient of the number of units operating + true + + + 4446 + 688 + 3 + 5 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient of the number of unit started + true + + + 4447 + 688 + 3 + 6 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient of number of units shutdown + true + + + 4448 + 688 + 3 + 7 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + true + + + 4449 + 688 + 6 + 8 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 4450 + 688 + 6 + 9 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 4451 + 688 + 7 + 10 + Outage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2563 + Coefficient of capacity on outage + 4 + true + + + 4452 + 688 + 7 + 11 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 4 + true + + + 4453 + 688 + 8 + 12 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 4454 + 688 + 8 + 13 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 4455 + 688 + 8 + 14 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 4456 + 688 + 8 + 15 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 4457 + 688 + 8 + 16 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 4458 + 688 + 8 + 17 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 4459 + 688 + 8 + 18 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 4460 + 688 + 8 + 19 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 4461 + 689 + 2 + 1 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 335 + Flag if the maintenance is enabled + 800000 + true + + + 4462 + 689 + 2 + 2 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the Maintenance is enabled in the LT Plan phase. + 800000 + true + + + 4463 + 689 + 2 + 3 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the Maintenance is enabled in the MT Schedule phase. + 800000 + true + + + 4464 + 689 + 2 + 4 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the Maintenance is enabled in the ST Schedule phase. + 800000 + true + + + 4465 + 689 + 6 + 5 + Duration + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 1476 + Duration of the maintenance event. + 4 + true + + + 4466 + 689 + 6 + 6 + Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + true + false + 1 + 1687 + Window of time over which the maintenance is allowed. + 80 + true + + + 4467 + 689 + 6 + 7 + Start Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1749 + Flag if the maintenance event is allowed to start in the period. + 80 + true + + + 4468 + 689 + 6 + 8 + End Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1750 + Flag if the maintenance event is allowed to end in the period. + 80 + true + + + 4469 + 689 + 6 + 9 + Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 117 + Cost of the maintenance event. + 2000000000 + true + + + 4470 + 689 + 6 + 10 + Crew + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1688 + Maintenance event crew requirements. + 2000000000 + true + + + 4471 + 689 + 6 + 11 + Equipment + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1689 + Maintenance event equipment requirements. + 2000000000 + true + + + 4472 + 689 + 6 + 12 + Lead Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1751 + Minimum number of hours lead time between the start of this event and the end of any Prerequisites. + 80 + true + + + 4473 + 689 + 6 + 13 + Mutually Exclusive + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 998 + If this maintenance event must occur independently of others. + 80 + false + + + 4474 + 689 + 6 + 14 + Penalty Cost + 14 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 603 + Cost of not scheduling this maintenance event. + 2000000000 + true + + + 4475 + 689 + 6 + 15 + Min Occurrence + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1696 + Number of times this event must occurs in the Horizon. + 80 + true + + + 4476 + 689 + 6 + 15 + Min Occurrence Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1697 + Number of times this event must occur each hour. + 80 + true + + + 4477 + 689 + 6 + 15 + Min Occurrence Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1698 + Number of times this event must occur each day. + 80 + true + + + 4478 + 689 + 6 + 15 + Min Occurrence Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1699 + Number of times this event must occur each week. + 80 + true + + + 4479 + 689 + 6 + 15 + Min Occurrence Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1700 + Number of times this event must occur each month. + 80 + true + + + 4480 + 689 + 6 + 15 + Min Occurrence Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1701 + Number of times this event must occur each year. + 80 + true + + + 4481 + 689 + 6 + 16 + Max Occurrence + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3119 + Maximum number of times this event can occur in the Horizon. + 80 + true + + + 4482 + 689 + 6 + 16 + Max Occurrence Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 3120 + Maximum number of times this event can occur each hour. + 80 + true + + + 4483 + 689 + 6 + 16 + Max Occurrence Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 3121 + Maximum number of times this event can occur each day. + 80 + true + + + 4484 + 689 + 6 + 16 + Max Occurrence Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 3122 + Maximum number of times this event can occur each week. + 80 + true + + + 4485 + 689 + 6 + 16 + Max Occurrence Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 3123 + Maximum number of times this event can occur each month. + 80 + true + + + 4486 + 689 + 6 + 16 + Max Occurrence Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 3124 + Maximum number of times this event can occur each year. + 80 + true + + + 4487 + 689 + 6 + 17 + Start Commitment Period + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3143 + Time between maintenance start decisions (on/off) + 4 + true + + + 4488 + 689 + 6 + 18 + Max Operating Hour Limit + 6 + 1000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3131 + Maximum number of cumulative operating hours between maintenance events. + 4 + true + + + 4489 + 689 + 6 + 19 + Max Operating Hour Limit Penalty Quantity + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1543773859 + Maximum allowable violation of the Max Operating Hour Limit. + 80 + true + + + 4490 + 689 + 6 + 20 + Max Operating Hour Limit Penalty Price + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 79613611 + Price for violating the Max Operating Hour Limit where the special value of -1 indicates that no violation is allowed. + 80 + true + + + 4491 + 689 + 6 + 21 + Min Operating Hour Limit + 6 + 1000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3147 + Minimum number of cumulative operating hours between maintenance events. + 4 + true + + + 4492 + 689 + 6 + 22 + Min Operating Hour Limit Penalty Quantity + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1759614263 + Maximum allowable violation of the Min Operating Hour Limit. + 80 + true + + + 4493 + 689 + 6 + 23 + Min Operating Hour Limit Penalty Price + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1481556362 + Price for violating the Min Operating Hour Limit where the special value of -1 indicates that no violation is allowed. + 80 + true + + + 4494 + 689 + 6 + 24 + Initial Operating Hours + 6 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1820 + Initial number of cumulative operating hours since the last maintenance occurrence. + 4 + true + + + 4495 + 689 + 6 + 25 + End Max Operating Hours + 6 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3132 + Maximum number of cumulative operating hours since the last maintenance occurrence at end of simulation. + 4 + true + + + 4496 + 689 + 6 + 26 + Max Starts Limit + 0 + 300 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3133 + Maximum number of cumulative starts between maintenance events. + 4 + true + + + 4497 + 689 + 6 + 27 + Max Starts Limit Penalty Quantity + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1693431491 + Maximum allowable violation of the Max Starts Limit. + 80 + true + + + 4498 + 689 + 6 + 28 + Max Starts Limit Penalty Price + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 169549242 + Price for violating the Max Starts Limit where the special value of -1 indicates that no violation is allowed. + 80 + true + + + 4499 + 689 + 6 + 29 + Min Starts Limit + 0 + 300 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3148 + Minimum number of cumulative starts between maintenance events. + 4 + true + + + 4500 + 689 + 6 + 30 + Min Starts Limit Penalty Quantity + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1564621499 + Maximum allowable violation of the Min Starts Limit. + 80 + true + + + 4501 + 689 + 6 + 31 + Min Starts Limit Penalty Price + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1598452929 + Price for violating the Min Starts Limit where the special value of -1 indicates that no violation is allowed. + 80 + true + + + 4502 + 689 + 6 + 32 + Initial Starts + 0 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3134 + Initial number of cumulative starts since the last maintenance occurrence. + 4 + true + + + 4503 + 689 + 6 + 33 + End Max Starts + 0 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3135 + Maximum number of cumulative starts since the last maintenance occurrence at end of simulation. + 4 + true + + + 4504 + 689 + 6 + 34 + Max Time Limit + 6 + 1000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3136 + Maximum time between maintenance events. + 4 + true + + + 4505 + 689 + 6 + 35 + Max Time Limit Penalty Quantity + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 136289806 + Maximum allowable violation of the Max Time Limit. + 80 + true + + + 4506 + 689 + 6 + 36 + Max Time Limit Penalty Price + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1180097539 + Price for violating the Max Time Limit where the special value of -1 indicates that no violation is allowed. + 80 + true + + + 4507 + 689 + 6 + 37 + Min Time Limit + 6 + 1000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3149 + Minimum time between maintenance events. + 4 + true + + + 4508 + 689 + 6 + 38 + Min Time Limit Penalty Quantity + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1514959934 + Maximum allowable violation of the Min Time Limit. + 80 + true + + + 4509 + 689 + 6 + 39 + Min Time Limit Penalty Price + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1931497559 + Price for violating the Min Time Limit where the special value of -1 indicates that no violation is allowed. + 80 + true + + + 4510 + 689 + 6 + 40 + Initial Time + 6 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3137 + Time since the last maintenance occurrence completion (initial condition). + 4 + true + + + 4511 + 689 + 6 + 41 + End Max Time + 6 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3138 + Maximum time since the last maintenance occurrence at end of simulation. + 4 + true + + + 4512 + 689 + 11 + 42 + Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 4513 + 689 + 12 + 43 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4514 + 689 + 12 + 44 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4515 + 689 + 12 + 45 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4516 + 694 + 1 + 1 + Active Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3155 + Coefficient applied when maintenance is active. + true + + + 4517 + 694 + 1 + 2 + Hours Active Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1691 + Coefficient of number of hours the maintenance is active. + true + + + 4518 + 694 + 1 + 3 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1692 + Coefficient of maintenance cost incurred. + true + + + 4519 + 694 + 1 + 4 + Crew Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1693 + Coefficient of maintenance event crew usage. + true + + + 4520 + 694 + 1 + 5 + Equipment Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1694 + Coefficient of maintenance event equipment usage. + true + + + 4521 + 694 + 1 + 6 + Start Hour Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1800 + Coefficient of the hour in the simulation the maintenance event started + false + + + 4522 + 694 + 1 + 7 + Start Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1839 + Coefficient on the number of maintenances started + true + + + 4523 + 695 + 1 + 1 + Active Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3155 + Coefficient applied when maintenance is active. + true + + + 4524 + 695 + 1 + 2 + Hours Active Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1691 + Coefficient of number of hours the maintenance is active + true + + + 4525 + 695 + 1 + 3 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1692 + Coefficient of maintenance cost incurred + true + + + 4526 + 695 + 1 + 4 + Crew Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1693 + Coefficient of maintenance event crew usage + true + + + 4527 + 695 + 1 + 5 + Equipment Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1694 + Coefficient of maintenance event equipment usage + true + + + 4528 + 695 + 1 + 6 + Start Hour Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1800 + Coefficient of the hour in the simulation the maintenance event started + true + + + 4529 + 695 + 1 + 7 + Start Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1839 + Coefficient on the number of maintenances started + true + + + 4530 + 696 + 2 + 1 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 335 + Flag if the Component is enabled + 800000 + true + + + 4531 + 696 + 9 + 2 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 812 + Quantity of the component available + 800001 + true + + + 4532 + 696 + 9 + 3 + Turnaround Time + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 3152 + Minimum time between component usages in maintenance event starts + 800001 + true + + + 4533 + 696 + 9 + 4 + Units Penalty Price + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2129793774 + Penalty price for violating one unit of this component + 80 + true + + + 4534 + 696 + 9 + 5 + Units Penalty Quantity + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2129793775 + Maximum allowable violation of the component Units + 80 + true + + + 4535 + 699 + 3 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Network is in service + 800000 + true + + + 4536 + 699 + 12 + 2 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4537 + 699 + 12 + 3 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4538 + 699 + 12 + 4 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4539 + 708 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 4540 + 708 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4541 + 708 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Node is in service + 800000 + true + + + 4542 + 708 + 3 + 4 + Flow Charge + 96 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1268 + Unit cost of flowing the Commodity through the Flow Node + true + + + 4543 + 708 + 3 + 5 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 4544 + 708 + 9 + 6 + Max Flow + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow through the Flow Node each interval + 5 + true + + + 4545 + 708 + 9 + 6 + Max Flow Hour + 94 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1584 + Maximum flow through the Flow Node each hour + 4 + true + + + 4546 + 708 + 9 + 6 + Max Flow Day + 94 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow through the Flow Node each day + 4 + true + + + 4547 + 708 + 9 + 6 + Max Flow Week + 94 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1586 + Maximum flow through the Flow Node each week + 4 + true + + + 4548 + 708 + 9 + 6 + Max Flow Month + 94 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1587 + Maximum flow through the Flow Node each month + 4 + true + + + 4549 + 708 + 9 + 6 + Max Flow Year + 94 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1588 + Maximum flow through the Flow Node each year + 4 + true + + + 4550 + 708 + 9 + 7 + Min Flow + 94 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 481 + Minimum flow through the Flow Node each interval + 5 + true + + + 4551 + 708 + 9 + 7 + Min Flow Hour + 94 + -1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 2355 + Minimum flow through the Flow Node each hour + 4 + true + + + 4552 + 708 + 9 + 7 + Min Flow Day + 94 + -1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum flow through the Flow Node each day + 4 + true + + + 4553 + 708 + 9 + 7 + Min Flow Week + 94 + -1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 2357 + Minimum flow through the Flow Node each week + 4 + true + + + 4554 + 708 + 9 + 7 + Min Flow Month + 94 + -1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 2358 + Minimum flow through the Flow Node each month + 4 + true + + + 4555 + 708 + 9 + 7 + Min Flow Year + 94 + -1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 2359 + Minimum flow through the Flow Node each year + 4 + true + + + 4556 + 708 + 8 + 8 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Flow Node + 8009 + true + + + 4557 + 708 + 8 + 9 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Flow Node + 88 + true + + + 4558 + 708 + 8 + 10 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 4559 + 708 + 8 + 11 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Flow Node project, for expansion planning. + 8 + true + + + 4560 + 708 + 8 + 12 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Flow Node + 8 + true + + + 4561 + 708 + 8 + 13 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 4562 + 708 + 8 + 14 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Flow Node (period over which fixed costs are recovered). + 8 + true + + + 4563 + 708 + 8 + 15 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 4564 + 708 + 8 + 16 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4565 + 708 + 8 + 17 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 4566 + 708 + 8 + 18 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4567 + 708 + 8 + 19 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4568 + 708 + 8 + 20 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4569 + 708 + 8 + 21 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4570 + 708 + 8 + 22 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4571 + 708 + 8 + 23 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4572 + 708 + 8 + 24 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4573 + 708 + 12 + 25 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4574 + 708 + 12 + 26 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4575 + 708 + 12 + 27 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4576 + 711 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Flow Node + true + + + 4577 + 714 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Node flow + true + + + 4578 + 714 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption at the Flow Node in the Constraint + true + + + 4579 + 714 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production at the Flow Node in the Constraint + true + + + 4580 + 714 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4581 + 714 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4582 + 714 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4583 + 714 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4584 + 714 + 8 + 8 + Capacity Built Coefficient + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4585 + 714 + 8 + 9 + Capacity Retired Coefficient + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4586 + 714 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4587 + 714 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 4588 + 714 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 4589 + 715 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Node flow + true + + + 4590 + 715 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption at the Flow Node + true + + + 4591 + 715 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production at the Flow Node + true + + + 4592 + 715 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 4593 + 715 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 4594 + 715 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 4595 + 715 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 4596 + 716 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the flow path for the generation of outages + 101000000 + true + + + 4597 + 716 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 4598 + 716 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 4599 + 716 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4600 + 716 + 2 + 5 + Traversal Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 801 + Time taken for flows to traverse the Flow Path + true + + + 4601 + 716 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Path is in service + 800000 + true + + + 4602 + 716 + 3 + 7 + Flow Charge + 96 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1268 + Unit cost of flowing the Commodity over the Flow Path + 2000000000 + true + + + 4603 + 716 + 3 + 8 + Bundle Size + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2384 + Size of bundles flowed on the Flow Path + true + + + 4604 + 716 + 3 + 9 + Min Operating Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2295 + Minimum operating level when operating + true + + + 4605 + 716 + 3 + 10 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1209 + Proportion of flow received net of any losses + true + + + 4606 + 716 + 3 + 11 + Initial Flow + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1174 + Initial flow with optional delay time + true + + + 4607 + 716 + 3 + 12 + Initial Flow Delay + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2739 + Delay on the Initial Flow in this band + true + + + 4608 + 716 + 3 + 13 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 4609 + 716 + 9 + 14 + Max Flow + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow on the Flow Path in any interval + 5 + true + + + 4610 + 716 + 9 + 14 + Max Flow Hour + 94 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1584 + Maximum flow on the Flow Path in any hour + 4 + true + + + 4611 + 716 + 9 + 14 + Max Flow Day + 94 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow on the Flow Path in any day + 4 + true + + + 4612 + 716 + 9 + 14 + Max Flow Week + 94 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1586 + Maximum flow on the Flow Path in any week + 4 + true + + + 4613 + 716 + 9 + 14 + Max Flow Month + 94 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1587 + Maximum flow on the Flow Path in any month + 4 + true + + + 4614 + 716 + 9 + 14 + Max Flow Year + 94 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1588 + Maximum flow on the Flow Path in any year + 4 + true + + + 4615 + 716 + 9 + 15 + Min Flow + 94 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 481 + Minimum flow on the Flow Path in any interval + 5 + true + + + 4616 + 716 + 9 + 15 + Min Flow Hour + 94 + -1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 2355 + Minimum flow on the Flow Path in any hour + 4 + true + + + 4617 + 716 + 9 + 15 + Min Flow Day + 94 + -1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum flow on the Flow Path in any day + 4 + true + + + 4618 + 716 + 9 + 15 + Min Flow Week + 94 + -1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 2357 + Minimum flow on the Flow Path in any week + 4 + true + + + 4619 + 716 + 9 + 15 + Min Flow Month + 94 + -1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 2358 + Minimum flow on the Flow Path in any month + 4 + true + + + 4620 + 716 + 9 + 15 + Min Flow Year + 94 + -1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 2359 + Minimum flow on the Flow Path in any year + 4 + true + + + 4621 + 716 + 7 + 16 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 4622 + 716 + 7 + 17 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 4623 + 716 + 7 + 18 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 4624 + 716 + 7 + 19 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 4625 + 716 + 7 + 20 + Outage Max Rating + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Flow Path Max Flow during the outage + 1000000 + true + + + 4626 + 716 + 7 + 21 + Outage Min Rating + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Flow Path Min Flow during the outage + 1000000 + true + + + 4627 + 716 + 7 + 22 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 4628 + 716 + 7 + 23 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 4629 + 716 + 7 + 24 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 4630 + 716 + 7 + 25 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 4631 + 716 + 7 + 26 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 4632 + 716 + 8 + 27 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Flow Path + 8009 + true + + + 4633 + 716 + 8 + 28 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Flow Path + 88 + true + + + 4634 + 716 + 8 + 29 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 4635 + 716 + 8 + 30 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Flow Path project, for expansion planning. + 8 + true + + + 4636 + 716 + 8 + 31 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Flow Path + 8 + true + + + 4637 + 716 + 8 + 32 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 4638 + 716 + 8 + 33 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Flow Path (period over which fixed costs are recovered). + 8 + true + + + 4639 + 716 + 8 + 34 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 4640 + 716 + 8 + 35 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4641 + 716 + 8 + 36 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4642 + 716 + 8 + 37 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4643 + 716 + 8 + 38 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4644 + 716 + 8 + 39 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4645 + 716 + 8 + 40 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4646 + 716 + 8 + 41 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4647 + 716 + 8 + 42 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4648 + 716 + 8 + 43 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4649 + 716 + 12 + 44 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4650 + 716 + 12 + 45 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4651 + 716 + 12 + 46 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4652 + 721 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Flow Path + true + + + 4653 + 722 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Path flow + true + + + 4654 + 722 + 3 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Flow Path flow at the receiving node + true + + + 4655 + 722 + 3 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Flow Path flow at the sending node + true + + + 4656 + 722 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 4657 + 722 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 4658 + 722 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 4659 + 722 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 4660 + 722 + 8 + 8 + Capacity Built Coefficient + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4661 + 722 + 8 + 9 + Capacity Retired Coefficient + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4662 + 722 + 8 + 10 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4663 + 722 + 8 + 11 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 4664 + 722 + 8 + 12 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 4665 + 723 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Path flow + true + + + 4666 + 723 + 3 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Flow Path flow at the receiving node + true + + + 4667 + 723 + 3 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Flow Path flow at the sending node + true + + + 4668 + 723 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 4669 + 723 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 4670 + 723 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 4671 + 723 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 4672 + 724 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of inventory balance + true + + + 4673 + 724 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 168 + Method used to value or constrain end-of-period inventory + 400000000 + true + + + 4674 + 724 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal inventory trajectory from one simulation phase to the next + 400000000 + true + + + 4675 + 724 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition inventory target penalty function 'a' term + 400000000 + true + + + 4676 + 724 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition inventory target penalty function 'b' term + 400000000 + true + + + 4677 + 724 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition inventory target penalty function 'c' term + 400000000 + true + + + 4678 + 724 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition inventory target penalty function 'x' term + 400000000 + true + + + 4679 + 724 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of inventory bounds when the decomposition implies possible violations + 400000000 + true + + + 4680 + 724 + 2 + 9 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 4681 + 724 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 4682 + 724 + 2 + 11 + Build Cost Multiplier + 0 + 0 + In (0,2) + 0;"None";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 4683 + 724 + 3 + 12 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Flow Storage is modeled + 800001 + true + + + 4684 + 724 + 3 + 13 + Max Inventory + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 4685 + 724 + 3 + 14 + Min Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 4686 + 724 + 3 + 15 + Opening Inventory + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1591 + Initial amount of the Commodity in inventory + true + + + 4687 + 724 + 3 + 16 + Delivery + 86 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Amount of the Commodity added to inventory + true + + + 4688 + 724 + 3 + 17 + Injection Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2507 + Proportion of injected commodity reaching storage net of losses + true + + + 4689 + 724 + 3 + 18 + Withdrawal Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2508 + Proportion of commodity withdrawn from storage net of losses + true + + + 4690 + 724 + 3 + 19 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of deliveries of the Commodity to inventory + true + + + 4691 + 724 + 3 + 20 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost of keeping the Commodity in inventory + true + + + 4692 + 724 + 3 + 21 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity + true + + + 4693 + 724 + 3 + 22 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1252 + Cost of adding the Commodity to inventory + true + + + 4694 + 724 + 3 + 23 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Cost of taking the Commodity out of inventory + true + + + 4695 + 724 + 3 + 24 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 4696 + 724 + 9 + 25 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of the Commodity that can be taken from inventory in any interval + 400000000 + true + + + 4697 + 724 + 9 + 25 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of the Commodity that can be taken from inventory in a hour + 400000000 + true + + + 4698 + 724 + 9 + 25 + Max Withdrawal Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of the Commodity that can be taken from inventory in a day + 400000000 + true + + + 4699 + 724 + 9 + 25 + Max Withdrawal Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of the Commodity that can be taken from inventory in a week + 400000000 + true + + + 4700 + 724 + 9 + 25 + Max Withdrawal Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of the Commodity that can be taken from inventory in a month + 400000000 + true + + + 4701 + 724 + 9 + 25 + Max Withdrawal Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of the Commodity that can be taken from inventory in a year + 400000000 + true + + + 4702 + 724 + 9 + 26 + Max Injection + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of the Commodity that can be put into inventory in any interval + 400000000 + true + + + 4703 + 724 + 9 + 26 + Max Injection Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of the Commodity that can be put into inventory in any hour + 400000000 + true + + + 4704 + 724 + 9 + 26 + Max Injection Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of the Commodity that can be put into inventory in any day + 400000000 + true + + + 4705 + 724 + 9 + 26 + Max Injection Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of the Commodity that can be put into inventory in any week + 400000000 + true + + + 4706 + 724 + 9 + 26 + Max Injection Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of the Commodity that can be put into inventory in any month + 400000000 + true + + + 4707 + 724 + 9 + 26 + Max Injection Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of the Commodity that can be put into inventory in any year + 400000000 + true + + + 4708 + 724 + 9 + 27 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1258 + Amount of the Commodity that must be taken from inventory each interval + 400000000 + true + + + 4709 + 724 + 9 + 27 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of the Commodity that must be taken from inventory each hour + 400000000 + true + + + 4710 + 724 + 9 + 27 + Min Withdrawal Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of the Commodity that must be taken from inventory each day + 400000000 + true + + + 4711 + 724 + 9 + 27 + Min Withdrawal Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of the Commodity that must be taken from inventory each week + 400000000 + true + + + 4712 + 724 + 9 + 27 + Min Withdrawal Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of the Commodity that must be taken from inventory each month + 400000000 + true + + + 4713 + 724 + 9 + 27 + Min Withdrawal Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of the Commodity that must be taken from inventory each year + 400000000 + true + + + 4714 + 724 + 9 + 28 + Min Injection + 86 + 0 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1263 + Amount of the Commodity that must be added to inventory in any interval + 400000000 + true + + + 4715 + 724 + 9 + 28 + Min Injection Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of the Commodity that must be added to inventory in any hour + 400000000 + true + + + 4716 + 724 + 9 + 28 + Min Injection Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of the Commodity that must be added to inventory in any day + 400000000 + true + + + 4717 + 724 + 9 + 28 + Min Injection Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of the Commodity that must be added to inventory in any week + 400000000 + true + + + 4718 + 724 + 9 + 28 + Min Injection Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of the Commodity that must be added to inventory in any month + 400000000 + true + + + 4719 + 724 + 9 + 28 + Min Injection Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of the Commodity that must be added to inventory in any year + 400000000 + true + + + 4720 + 724 + 9 + 29 + Max Inventory Change + 86 + 1E+30 + >=0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2333 + Maximum rate of change in inventory in any interval + 400000000 + true + + + 4721 + 724 + 9 + 29 + Max Inventory Change Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2334 + Maximum rate of change in inventory in any hour + 400000000 + true + + + 4722 + 724 + 9 + 29 + Max Inventory Change Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2335 + Maximum rate of change in inventory in any day + 400000000 + true + + + 4723 + 724 + 9 + 29 + Max Inventory Change Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2336 + Maximum rate of change in inventory in any week + 400000000 + true + + + 4724 + 724 + 9 + 29 + Max Inventory Change Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2337 + Maximum rate of change in inventory in any month + 400000000 + true + + + 4725 + 724 + 9 + 29 + Max Inventory Change Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2338 + Maximum rate of change in inventory in any year + 400000000 + true + + + 4726 + 724 + 9 + 30 + Max Inventory Change Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2339 + Penalty for violating the [Max Ramp] constraints + 400000000 + true + + + 4727 + 724 + 9 + 31 + Max Cycles + 62 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1832 + Number of cycles allowed each interval + 400000000 + true + + + 4728 + 724 + 9 + 31 + Max Cycles Hour + 62 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1833 + Number of cycles allowed each hour + 400000000 + true + + + 4729 + 724 + 9 + 31 + Max Cycles Day + 62 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1834 + Number of cycles allowed each day + 400000000 + true + + + 4730 + 724 + 9 + 31 + Max Cycles Week + 62 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1835 + Number of cycles allowed each week + 400000000 + true + + + 4731 + 724 + 9 + 31 + Max Cycles Month + 62 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1836 + Number of cycles allowed each month + 400000000 + true + + + 4732 + 724 + 9 + 31 + Max Cycles Year + 62 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1837 + Number of cycles allowed each year + 400000000 + true + + + 4733 + 724 + 9 + 32 + Target + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Target level of inventory at the end of the interval + 400000000 + true + + + 4734 + 724 + 9 + 32 + Target Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + Target level of inventory at the end of the hour + 400000000 + true + + + 4735 + 724 + 9 + 32 + Target Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + Target level of inventory at the end of the day + 400000000 + true + + + 4736 + 724 + 9 + 32 + Target Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + Target level of inventory at the end of the week + 400000000 + true + + + 4737 + 724 + 9 + 32 + Target Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + Target level of inventory at the end of the month + 400000000 + true + + + 4738 + 724 + 9 + 32 + Target Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + Target level of inventory at the end of the year + 400000000 + true + + + 4739 + 724 + 9 + 33 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target inventory + 400000000 + true + + + 4740 + 724 + 8 + 34 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 4741 + 724 + 8 + 35 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 4742 + 724 + 8 + 36 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 4743 + 724 + 8 + 37 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 4744 + 724 + 8 + 38 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 4745 + 724 + 8 + 39 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 4746 + 724 + 8 + 40 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 4747 + 724 + 8 + 41 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4748 + 724 + 8 + 42 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4749 + 724 + 8 + 43 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4750 + 724 + 8 + 44 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4751 + 724 + 8 + 45 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4752 + 724 + 8 + 46 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4753 + 724 + 8 + 47 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4754 + 724 + 8 + 48 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4755 + 724 + 8 + 49 + Hint Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2943 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 4756 + 724 + 11 + 50 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 4757 + 724 + 11 + 51 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 4758 + 724 + 12 + 52 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4759 + 724 + 12 + 53 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4760 + 724 + 12 + 54 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4761 + 728 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Flow Storage + true + + + 4762 + 729 + 3 + 1 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 4763 + 729 + 3 + 2 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 4764 + 729 + 3 + 3 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 4765 + 729 + 3 + 4 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 4766 + 729 + 3 + 5 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 4767 + 729 + 6 + 6 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 4768 + 729 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4769 + 729 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4770 + 729 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4771 + 729 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4772 + 729 + 8 + 11 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4773 + 729 + 8 + 12 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4774 + 729 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4775 + 729 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4776 + 729 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4777 + 730 + 3 + 1 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 4778 + 730 + 3 + 2 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 4779 + 730 + 3 + 3 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 4780 + 730 + 3 + 4 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 4781 + 730 + 3 + 5 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 4782 + 730 + 6 + 6 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 4783 + 730 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 4784 + 730 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 4785 + 730 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 4786 + 730 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 4787 + 730 + 8 + 11 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 4788 + 730 + 8 + 12 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 4789 + 730 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 4790 + 730 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 4791 + 730 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 4792 + 731 + 5 + 1 + Strategic + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 766 + Percentage of entity production that acts strategically + 40 + true + + + 4793 + 731 + 5 + 2 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound entity net profit risk + 4000000000 + true + + + 4794 + 731 + 5 + 3 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 4795 + 731 + 5 + 4 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 4796 + 731 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4797 + 731 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4798 + 731 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4799 + 735 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of consumption from facilities associated with the entity + true + + + 4800 + 735 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of production from facilities associated with the entity + true + + + 4801 + 735 + 5 + 3 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4802 + 735 + 5 + 4 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4803 + 735 + 5 + 5 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4804 + 736 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of consumption from facilities associated with the entity + true + + + 4805 + 736 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of production from facilities associated with the entity + true + + + 4806 + 736 + 5 + 3 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 4807 + 736 + 5 + 4 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 4808 + 736 + 5 + 5 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 4809 + 737 + 2 + 1 + Is Forward + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 337 + Flag if the market is a 'forward' market versus a 'real-time' market. + 4000000 + true + + + 4810 + 737 + 2 + 2 + Is Marginal + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 338 + Flag if the market sets price on a marginal price basis; rather than block-by-block settlement. + 4000000 + true + + + 4811 + 737 + 2 + 3 + Demand Curve + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 136 + Flag if the input multi-band Price/Quantity pairs are points on a demand curve; or incremental demand blocks. + 100 + true + + + 4812 + 737 + 2 + 4 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Market can set price + 4000000 + true + + + 4813 + 737 + 2 + 5 + Supply Settlement Model + 0 + 1 + In (0,1,2) + 0;"Natural";1;"Buy";2;"Sell" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1622 + Model used to determine price paid to suppliers + 4000000 + true + + + 4814 + 737 + 2 + 6 + Demand Settlement Model + 0 + 2 + In (0,1,2) + 0;"Natural";1;"Buy";2;"Sell" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1623 + Model used to determine price paid by purchasers. + 4000000 + true + + + 4815 + 737 + 3 + 7 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Market is in service + 800000 + true + + + 4816 + 737 + 3 + 8 + Demand + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 133 + Fixed demand (exact amount of sales to the Market) + true + + + 4817 + 737 + 3 + 9 + Shortage Price + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1270 + Penalty price for supply shortage + true + + + 4818 + 737 + 3 + 10 + Supply + 86 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 2324 + Fixed supply (exact amount of supply from the Market) + true + + + 4819 + 737 + 3 + 11 + Surplus Price + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2325 + Penalty price for excess supply + true + + + 4820 + 737 + 3 + 12 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 612 + Price point on market demand function + 400001 + true + + + 4821 + 737 + 3 + 13 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 904 + Scalar on market price + 4000000 + true + + + 4822 + 737 + 3 + 14 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 905 + Increment to market price + 4000000 + true + + + 4823 + 737 + 3 + 15 + Price Cap + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on Market Price when using fixed Demand/Supply + 4000000 + true + + + 4824 + 737 + 3 + 16 + Price Floor + 88 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on Market Price when using fixed Demand/Supply + 4000000 + true + + + 4825 + 737 + 3 + 17 + Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + true + 1 + 650 + Quantity point in market demand function + 400000 + true + + + 4826 + 737 + 3 + 18 + Base Quantity + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 28 + Expected clearing point on market demand function + 400000 + true + + + 4827 + 737 + 3 + 19 + Sell Unit + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 734 + Size of block for sales (time independent) + 400000 + true + + + 4828 + 737 + 3 + 20 + Sell Block + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 729 + Size of block for sales + 400000 + true + + + 4829 + 737 + 3 + 20 + Sell Block Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1569 + Size of block for sales across each hour + 400000 + true + + + 4830 + 737 + 3 + 20 + Sell Block Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 730 + Size of block for sales across each day + 400000 + true + + + 4831 + 737 + 3 + 20 + Sell Block Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 732 + Size of block for sales across each week + 400000 + true + + + 4832 + 737 + 3 + 20 + Sell Block Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 731 + Size of block for sales across each month + 400000 + true + + + 4833 + 737 + 3 + 20 + Sell Block Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 733 + Size of block for sales across each year + 400000 + true + + + 4834 + 737 + 3 + 21 + Sell Block Fixed Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1444 + Fixed cost of block sales + 8000 + true + + + 4835 + 737 + 3 + 22 + Buy Unit + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 50 + Size of block for purchases (time independent) + 400000 + true + + + 4836 + 737 + 3 + 23 + Buy Block + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 45 + Size of block for purchases + 400000 + true + + + 4837 + 737 + 3 + 23 + Buy Block Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1570 + Size of block for purchases across each hour + 400000 + true + + + 4838 + 737 + 3 + 23 + Buy Block Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 46 + Size of block for purchases across each day + 400000 + true + + + 4839 + 737 + 3 + 23 + Buy Block Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 48 + Size of block for purchases across each week + 400000 + true + + + 4840 + 737 + 3 + 23 + Buy Block Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 47 + Size of block for purchases across each month + 400000 + true + + + 4841 + 737 + 3 + 23 + Buy Block Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 49 + Size of block for purchases across each year + 400000 + true + + + 4842 + 737 + 3 + 24 + Buy Block Fixed Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1443 + Fixed cost of block purchases + 8000 + true + + + 4843 + 737 + 3 + 25 + Bid-Ask Spread + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 36 + Market bid-ask spread + 400000 + true + + + 4844 + 737 + 3 + 26 + Bid Spread + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 35 + Spread on sales to the market + 400000 + true + + + 4845 + 737 + 3 + 27 + Ask Spread + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 16 + Spread on purchases from the market + 400000 + true + + + 4846 + 737 + 9 + 28 + Max Sales + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 455 + Maximum sales to the market + 80 + true + + + 4847 + 737 + 9 + 28 + Max Sales Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2476 + Maximum sales to the market each hour + 80 + true + + + 4848 + 737 + 9 + 28 + Max Sales Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2477 + Maximum sales to the market each day + 80 + true + + + 4849 + 737 + 9 + 28 + Max Sales Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2478 + Maximum sales to the market each week + 80 + true + + + 4850 + 737 + 9 + 28 + Max Sales Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2479 + Maximum sales to the market each month + 80 + true + + + 4851 + 737 + 9 + 28 + Max Sales Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2480 + Maximum sales to the market each year + 80 + true + + + 4852 + 737 + 9 + 29 + Max Purchases + 86 + 1E+30 + 1 + 0 + 1 + 0 + false + true + false + false + 1 + 445 + Maximum purchase from the market + 80 + true + + + 4853 + 737 + 9 + 29 + Max Purchases Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2481 + Maximum purchase from the market each hour + 80 + true + + + 4854 + 737 + 9 + 29 + Max Purchases Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2482 + Maximum purchase from the market each day + 80 + true + + + 4855 + 737 + 9 + 29 + Max Purchases Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2483 + Maximum purchase from the market each week + 80 + true + + + 4856 + 737 + 9 + 29 + Max Purchases Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2484 + Maximum purchase from the market each month + 80 + true + + + 4857 + 737 + 9 + 29 + Max Purchases Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2485 + Maximum purchase from the market each year + 80 + true + + + 4858 + 737 + 9 + 30 + Min Sales + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 500 + Minimum sales to the market + 80 + true + + + 4859 + 737 + 9 + 30 + Min Sales Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2486 + Minimum sales to the market each hour + 80 + true + + + 4860 + 737 + 9 + 30 + Min Sales Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2487 + Minimum sales to the market each day + 80 + true + + + 4861 + 737 + 9 + 30 + Min Sales Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2488 + Minimum sales to the market each week + 80 + true + + + 4862 + 737 + 9 + 30 + Min Sales Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2489 + Minimum sales to the market each month + 80 + true + + + 4863 + 737 + 9 + 30 + Min Sales Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2490 + Minimum sales to the market each year + 80 + true + + + 4864 + 737 + 9 + 31 + Min Purchases + 86 + 0 + 1 + 0 + 1 + 0 + false + false + false + false + 1 + 491 + Minimum purchase from the market + 80 + true + + + 4865 + 737 + 9 + 31 + Min Purchases Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2491 + Minimum purchase from the market each hour + 80 + true + + + 4866 + 737 + 9 + 31 + Min Purchases Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2492 + Minimum purchase from the market each day + 80 + true + + + 4867 + 737 + 9 + 31 + Min Purchases Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2493 + Minimum purchase from the market each week + 80 + true + + + 4868 + 737 + 9 + 31 + Min Purchases Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2494 + Minimum purchase from the market each month + 80 + true + + + 4869 + 737 + 9 + 31 + Min Purchases Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2495 + Minimum purchase from the market each year + 80 + true + + + 4870 + 737 + 6 + 32 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the market purchases to generation capacity for capacity reserves. + C + true + + + 4871 + 737 + 6 + 33 + Load Obligation + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Contribution of the market sales to the load obligation for capacity reserves. + C + true + + + 4872 + 737 + 12 + 34 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4873 + 737 + 12 + 35 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4874 + 737 + 12 + 36 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4875 + 740 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Entities share of the market trades + 40 + true + + + 4876 + 741 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Coefficient of market sales + true + + + 4877 + 741 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Coefficient of market purchases + true + + + 4878 + 741 + 1 + 3 + Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1733 + Coefficient of market sales revenues + true + + + 4879 + 741 + 1 + 4 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1692 + Coefficient of market purchase costs + true + + + 4880 + 742 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Coefficient of market sales + true + + + 4881 + 742 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Coefficient of market purchases + true + + + 4882 + 742 + 1 + 3 + Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1733 + Coefficient of market sales revenues + true + + + 4883 + 742 + 1 + 4 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1692 + Coefficient of market purchase costs + true + + + 4884 + 743 + 2 + 1 + Model Dwell Time + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 1208621342 + Model Dwell Time + true + + + 4885 + 743 + 2 + 2 + Unit Commitment Aggregation + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 2412 + Flag if the transport is aggregated into an equivalent single unit for the purpose of unit commitment + 1000000000 + true + + + 4886 + 743 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 4887 + 743 + 3 + 4 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of existing units + true + + + 4888 + 743 + 3 + 5 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if the Transport is available for travel. + true + + + 4889 + 743 + 3 + 6 + Speed + 138 + 1 + >=1 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 2129793773 + Speed of transport + true + + + 4890 + 743 + 3 + 7 + Max Capacity + 94 + 1E+30 + 1 + 0 + 1 + 0 + true + true + true + false + 1 + 414 + Maximum amount of primary commodity the transport can carry + true + + + 4891 + 743 + 3 + 8 + Fuel Min Capacity + 94 + 0 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 734020286 + Minimum amount of fuel commodity the transport can carry + true + + + 4892 + 743 + 3 + 9 + Fuel Max Capacity + 94 + 1E+30 + 1 + 0 + 1 + 0 + false + false + true + false + 1 + 1955357196 + Maximum amount of fuel commodity the transport can carry + true + + + 4893 + 743 + 3 + 10 + Loading Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1842 + Time taken to load the primary commodity into the transport + true + + + 4894 + 743 + 3 + 11 + Max Loading Rate Day + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 52183605 + The maximum amount of the primary commodity that can be loaded per day into the transport + true + + + 4895 + 743 + 3 + 12 + Max Fuel Loading Rate Day + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 38981286 + The maximum amount of the fuel commodity that can be loaded per day into the transport + true + + + 4896 + 743 + 3 + 13 + Unloading Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1866458365 + Time taken to unload the primary commodity from the transport + true + + + 4897 + 743 + 3 + 14 + Max Unloading Rate Day + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 717986805 + The maximum amount of the primary commodity that can be unloaded per day from the transport + true + + + 4898 + 743 + 3 + 15 + Transportation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1469020786 + The per unit cost of transporting the primary commodity on the transport + 2000000000 + true + + + 4899 + 743 + 3 + 16 + Charter Rate + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2790 + The rental cost of transport per delivery + 2000000000 + true + + + 4900 + 743 + 3 + 17 + Charter Rate Day + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2791 + The rental cost of transport per day + 2000000000 + true + + + 4901 + 743 + 3 + 18 + FO&M Charge + 108 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 4902 + 743 + 8 + 19 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 44 + Cost of building the Transport + 8009 + true + + + 4903 + 743 + 8 + 20 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the transport + 88 + true + + + 4904 + 743 + 8 + 21 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of the Transport project, for expansion planning. + 8 + true + + + 4905 + 743 + 8 + 22 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Transport + 8 + true + + + 4906 + 743 + 8 + 23 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 4907 + 743 + 8 + 24 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the transport (period over which fixed costs are recovered). + 8 + true + + + 4908 + 743 + 8 + 25 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 4909 + 743 + 8 + 26 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 4910 + 743 + 8 + 27 + Max Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 4911 + 743 + 8 + 28 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 4912 + 743 + 8 + 29 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4913 + 743 + 8 + 30 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 4914 + 743 + 8 + 31 + Max Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4915 + 743 + 8 + 32 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 4916 + 743 + 12 + 33 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Pass-through value (summed in summary) + true + + + 4917 + 743 + 12 + 34 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Pass-through value (summed in summary) + true + + + 4918 + 743 + 12 + 35 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Pass-through value (averaged in summary) + true + + + 4919 + 746 + 1 + 1 + Consumption Rate + 136 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2752 + Rate of consumption of fuel during the travel + true + + + 4920 + 746 + 1 + 2 + Idle Consumption Rate + 136 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 641518158 + Rate of fuel consumption during the dwell time at the export and import transport hubs + true + + + 4921 + 747 + 1 + 1 + Loss Rate + 70 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1583 + Loss of primary commodity per day + 2000000000 + true + + + 4922 + 747 + 1 + 2 + Idle Loss Rate + 70 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 727289907 + Idle loss of primary commodity per day + 2000000000 + true + + + 4923 + 748 + 1 + 1 + Hub Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1534961977 + Cost of using Transport Hub by transport per day + 2000000000 + true + + + 4924 + 749 + 1 + 1 + Hub Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1534961977 + Cost of using Transport Hub by transport per day + 2000000000 + true + + + 4925 + 749 + 1 + 2 + Initial Commodity Delivered + 94 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 393440745 + The amount of commodity to be delivered to a Transport Hub on the initial transport path + true + + + 4926 + 750 + 1 + 1 + Path Fees + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1162226450 + Cost of using the transport path by the transport + 2000000000 + true + + + 4927 + 751 + 1 + 1 + Trip Progress + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 1170075448 + Percentage of trip already completed + true + + + 4928 + 751 + 1 + 2 + Initial Inventory + 94 + 1E+30 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 1212155565 + Initial volume of primary commodity being carried by the transport + true + + + 4929 + 751 + 1 + 3 + Initial Fuel Inventory + 94 + 1E+30 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 1183177258 + Initial volume of fuel commodity being carried by the transport + true + + + 4930 + 752 + 1 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Transport Hub is in service + 800000 + true + + + 4931 + 755 + 1 + 1 + Distance + 137 + 1 + >=1 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 2111 + Distance between the transport hubs + true + + + 4932 + 756 + 1 + 1 + Sequence + 0 + 0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 2709 + Sequence number of the Transport Hub in the Transport path + true + + + 4933 + 756 + 1 + 2 + Distance + 137 + 1 + >=1 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 2111 + Distance between the transport hubs + true + + + 4934 + 760 + 2 + 1 + Sense + 0 + 0 + In (-1,0,1) + -1;"<=";0;"=";1;">=" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Constraint sense (less than or equal to, equal to, greater than or equal to) + 80 + true + + + 4935 + 760 + 2 + 2 + LHS Type + 0 + 0 + In (0,1,2) + 0;"SUM";1;"MAXSUM";2;"MAX" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1455 + Action applied over left-hand side coefficients + 80 + true + + + 4936 + 760 + 2 + 3 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 4937 + 760 + 2 + 4 + Condition Logic + 0 + 0 + In (0,1) + 0;"And";1;"Or" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 89 + Logic used in combining conditions associated with the constraint + 800080 + true + + + 4938 + 760 + 2 + 5 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the constraint is modelled in the LT Plan phase. + 800080 + true + + + 4939 + 760 + 2 + 6 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the constraint is modelled in the PASA phase. + 800080 + true + + + 4940 + 760 + 2 + 7 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the constraint is modelled in the MT Schedule phase. + 800080 + true + + + 4941 + 760 + 2 + 8 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the constraint is modelled in the ST Schedule phase. + 800080 + true + + + 4942 + 760 + 2 + 9 + Include in Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 306 + If the constraint is enforced in the unconstrained phase of uniform pricing. + 800080 + true + + + 4943 + 760 + 2 + 10 + Unit Commitment Mode + 0 + 0 + In (0,1,2) + 0;"Enforced";1;"Relax Before";2;"Relax After" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2656 + Controls how the constraint is handled during unit commitment + 1000000000 + true + + + 4944 + 760 + 2 + 11 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Constraint penalty function can set price + 4000000 + true + + + 4945 + 760 + 2 + 12 + Decomposition Method + 0 + 0 + In (0,1) + 0;"Quantity";1;"Price" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to decompose constraints between LT Plan/MT Schedule and MT Schedule/ST Schedule + 200 + true + + + 4946 + 760 + 2 + 13 + Feasibility Repair Weight + 0 + 0.01 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1117 + Weight applied to relaxing the constraint in feasibility repair. Lower values mean less penalty to relax the constraint. -1 means the constraint cannot be relaxed. + 80 + true + + + 4947 + 760 + 2 + 14 + Wildcard Mode + 0 + 1 + In (0,1,2) + 0;"Do Not Copy";1;"Auto";2;"Always Copy" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1684 + Controls whether or not the Constraint is copied when it is associated with a wildcard membership. + 80 + true + + + 4948 + 760 + 2 + 15 + Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2654 + Scale the constraint by dividing left and right hand sides by this factor + 80 + true + + + 4949 + 760 + 1 + 16 + RHS + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 700 + Constraint RHS constant + 80 + true + + + 4950 + 760 + 1 + 16 + RHS Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1578 + Right hand side each hour + 80 + true + + + 4951 + 760 + 1 + 16 + RHS Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 702 + Right hand side each day (000) + 80 + true + + + 4952 + 760 + 1 + 16 + RHS Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 704 + Right hand side each week (000) + 80 + true + + + 4953 + 760 + 1 + 16 + RHS Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 703 + Right hand side each month (000) + 80 + true + + + 4954 + 760 + 1 + 16 + RHS Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 705 + Right hand side each year (000) + 80 + true + + + 4955 + 760 + 1 + 16 + RHS Custom + 0 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 1077 + Right hand side value over any custom period (000) + 80 + true + + + 4956 + 760 + 2 + 17 + Prorate RHS Custom + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3142 + If RHS Custom constraints longer than step sizes should be prorated rather than applied per step + 80 + true + + + 4957 + 760 + 1 + 18 + RHS Constant + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2316 + Right hand side RPN constant + 80 + true + + + 4958 + 760 + 1 + 19 + Penalty Quantity + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 605 + Penalty quantity + 80 + true + + + 4959 + 760 + 1 + 20 + Penalty Price + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 604 + Price for violating the constraint where the special value of -1 indicates that no violation is allowed. + 80 + true + + + 4960 + 760 + 1 + 21 + Min RHS + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 499 + Minimum allowed value when RHS is calculated dynamically + 80 + true + + + 4961 + 760 + 1 + 22 + Max RHS + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 454 + Maximum allowed value when RHS is calculated dynamically + 80 + true + + + 4962 + 760 + 12 + 23 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4963 + 760 + 12 + 24 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4964 + 760 + 12 + 25 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4965 + 763 + 1 + 1 + RHS Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 701 + RHS coefficient added when the condition is active + true + + + 4966 + 763 + 1 + 2 + Price Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1380 + Coefficient of price in condition + true + + + 4967 + 764 + 2 + 1 + Sense + 0 + 1 + In (1,2) + 1;"Minimize";2;"Maximize" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Objective sense (Minimize, Maximize) + true + + + 4968 + 764 + 2 + 2 + Priority + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2096 + Priority of the objective when doing hierarchical multi-objective optimization + true + + + 4969 + 764 + 2 + 3 + Weight + 0 + 1 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2097 + Weight of the objective when doing blended multi-objective optimization + true + + + 4970 + 764 + 2 + 4 + Relative Tolerance + 0 + 0 + Between 0 And 1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2098 + Allowable relative degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 4971 + 764 + 2 + 5 + Absolute Tolerance + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2099 + Allowable degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 4972 + 764 + 2 + 6 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the objective is modeled in the LT Plan phase. + true + + + 4973 + 764 + 2 + 7 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the objective is modeled in the PASA phase. + true + + + 4974 + 764 + 2 + 8 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the objective is modeled in the MT Schedule phase. + true + + + 4975 + 764 + 2 + 9 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the objective is modeled in the ST Schedule phase. + true + + + 4976 + 764 + 2 + 10 + Include in Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 306 + If the objective is modeled in the unconstrained phase of uniform pricing. + true + + + 4977 + 764 + 1 + 11 + Constant + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2089 + Is the constant term in objective a'x +b + true + + + 4978 + 764 + 1 + 11 + Constant Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2090 + Objective constant each hour + true + + + 4979 + 764 + 1 + 11 + Constant Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2091 + Objective constant each day (000's) + true + + + 4980 + 764 + 1 + 11 + Constant Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2092 + Objective constant each week (000's) + true + + + 4981 + 764 + 1 + 11 + Constant Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2093 + Objective constant each month (000's) + true + + + 4982 + 764 + 1 + 11 + Constant Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2094 + Objective constant each year (000's) + true + + + 4983 + 764 + 1 + 11 + Constant Custom + 0 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2095 + Objective constant value over any custom period (000's) + true + + + 4984 + 764 + 12 + 12 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4985 + 764 + 12 + 13 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4986 + 764 + 12 + 14 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4987 + 767 + 2 + 1 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the generic decision variable is modelled in the LT Plan phase. + 800000 + true + + + 4988 + 767 + 2 + 2 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the generic decision variable is modelled in the PASA phase. + 800000 + true + + + 4989 + 767 + 2 + 3 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the generic decision variable is modelled in the MT Schedule phase. + 800000 + true + + + 4990 + 767 + 2 + 4 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the generic decision variable is modelled in the ST Schedule phase. + 800000 + true + + + 4991 + 767 + 1 + 5 + Objective Function Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 1351 + Objective function value of the generic decision variable + 2000000000 + true + + + 4992 + 767 + 1 + 5 + Objective Function Coefficient Hour + 0 + 0 + 1 + 0 + 0 + 6 + true + false + true + false + 1 + 1726 + Objective function value of the generic decision variable in each hour + 2000000000 + true + + + 4993 + 767 + 1 + 5 + Objective Function Coefficient Day + 0 + 0 + 1 + 0 + 0 + 1 + true + false + true + false + 1 + 1727 + Objective function value of the generic decision variable in each day + 2000000000 + true + + + 4994 + 767 + 1 + 5 + Objective Function Coefficient Week + 0 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 1728 + Objective function value of the generic decision variable in each week + 2000000000 + true + + + 4995 + 767 + 1 + 5 + Objective Function Coefficient Month + 0 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 1729 + Objective function value of the generic decision variable in each month + 2000000000 + true + + + 4996 + 767 + 1 + 5 + Objective Function Coefficient Year + 0 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 1730 + Objective function value of the generic decision variable in each year + 2000000000 + true + + + 4997 + 767 + 1 + 6 + Lower Bound + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1494 + Lower bound of the generic decision variable + 80 + true + + + 4998 + 767 + 1 + 7 + Upper Bound + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1495 + Upper bound of the generic decision variable + 80 + true + + + 4999 + 767 + 11 + 8 + Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 5000 + 767 + 11 + 9 + Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1858 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 5001 + 767 + 12 + 10 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 5002 + 767 + 12 + 11 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 5003 + 767 + 12 + 12 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 5004 + 770 + 1 + 1 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value + true + + + 5005 + 770 + 1 + 2 + Value Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1619 + Coefficient of Decision Variable value squared + true + + + 5006 + 771 + 1 + 1 + Value Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value in definition Constraint + true + + + 5007 + 772 + 1 + 1 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value + true + + + 5008 + 772 + 1 + 2 + Value Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1619 + Coefficient of Decision Variable value squared + true + + + 5009 + 773 + 1 + 1 + Sense + 0 + 0 + In (-1,0,1) + -1;"<=";0;"=";1;">=" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Constraint sense (≤,=,≥) + 80 + true + + + 5010 + 773 + 1 + 2 + Max Tranches + 0 + 10 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2162 + Number of tranches to be used for piece-wise linear approximation + true + + + 5011 + 773 + 1 + 3 + Polynomial Coefficients + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2163 + Coefficients defining the polynomial + true + + + 5012 + 773 + 1 + 4 + Constant Term + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2164 + Constant Term + true + + + 5013 + 773 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 5014 + 773 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 5015 + 773 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 5016 + 778 + 1 + 1 + Filename + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 193 + Data file used in the simulation + true + + + 5017 + 778 + 1 + 2 + Base Profile + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 27 + Base profile for use in creating new profiles + true + + + 5018 + 778 + 1 + 3 + Energy + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 173 + Energy of the created profile + true + + + 5019 + 778 + 1 + 4 + Maximum + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 467 + Maximum value of the created profile + true + + + 5020 + 778 + 1 + 5 + Minimum + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1874 + Minimum value of the created profile + true + + + 5021 + 778 + 1 + 6 + Holiday + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 270 + Flag for holiday period that must be preserved + true + + + 5022 + 778 + 1 + 7 + Min Value + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 508 + Minimum value allowed after application of the growing algorithm. + true + + + 5023 + 778 + 1 + 8 + Max Value + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 464 + Maximum value allowed after application of the growing algorithm. + true + + + 5024 + 778 + 1 + 9 + Monthly Generation Ratio + 0 + 0 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3093 + Monthly Generation Ratio is the ratio of electricity demand in a particular month to electricity demand in the whole year. + true + + + 5025 + 778 + 1 + 10 + Load Adjustment Parameter + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3094 + Flag for including the load adjustment parameter. + true + + + 5026 + 778 + 1 + 11 + Base Total Energy + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3095 + Optional override input for annual total energy for base year and simulation year. + true + + + 5027 + 778 + 1 + 12 + Base Annual Max + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 3096 + Optional input for annual maximum demand for base year and simulation year. + true + + + 5028 + 780 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the variable + 100000000 + true + + + 5029 + 780 + 2 + 2 + Sampling Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Auto";2;"User" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 720 + Sampling method applied to the variable + 100000000 + true + + + 5030 + 780 + 2 + 3 + Sampling Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1127 + Frequency of temporal sampling of period type [Sampling Period Type] where zero means no sampling. + 100000000 + true + + + 5031 + 780 + 2 + 4 + Sampling Period Type + 0 + 0 + In (0,1,2,3,4,6) + 0;"interval";6;"hour";1;"day";2;"week";3;"month";4;"year" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1616 + Period type of temporal sampling where number of periods between samples is [Sampling Frequency]. + 100000000 + true + + + 5032 + 780 + 2 + 5 + Distribution Type + 0 + 0 + In (0,1) + 0;"Normal";1;"Lognormal" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 152 + Distribution type for error terms + 100000000 + true + + + 5033 + 780 + 2 + 6 + Condition + 0 + 4 + In (-2,-1,0,1,2,4) + 4;"None";-2;"<";-1;"<=";0;"=";1;">=";2;">" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1378 + Conditional value type + 800000 + true + + + 5034 + 780 + 2 + 7 + Condition Logic + 0 + 0 + In (0,1) + 0;"And";1;"Or" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 89 + Logic used in combining conditional variables + 800000 + true + + + 5035 + 780 + 2 + 8 + Infeasibility Condition + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1753354267 + If the variable defines properties activated on infeasibility + 800000 + true + + + 5036 + 780 + 2 + 9 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the condition is allowed to be active in the LT Plan phase. + 800000 + true + + + 5037 + 780 + 2 + 10 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the condition is allowed to be active in the PASA phase. + 800000 + true + + + 5038 + 780 + 2 + 11 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the condition is allowed to be active in the MT Schedule phase. + 800000 + true + + + 5039 + 780 + 2 + 12 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the condition is allowed to be active in the ST Schedule phase. + 800000 + true + + + 5040 + 780 + 2 + 13 + Formulate Value + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2318 + Flag if the Value is formulated as a decision variable + 800000 + true + + + 5041 + 780 + 1 + 14 + Profile + 0 + 0 + 1 + 0 + 1 + 0 + false + true + true + true + 1 + 628 + Sample profile of variable values + 100000000 + true + + + 5042 + 780 + 1 + 14 + Profile Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + true + 1 + 1580 + Sample profile of variable values + 100000000 + true + + + 5043 + 780 + 1 + 14 + Profile Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + true + 1 + 629 + Sample profile of variable values + 100000000 + true + + + 5044 + 780 + 1 + 14 + Profile Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + true + 1 + 631 + Sample profile of variable values + 100000000 + true + + + 5045 + 780 + 1 + 14 + Profile Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + true + 1 + 630 + Sample profile of variable values + 100000000 + true + + + 5046 + 780 + 1 + 14 + Profile Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + true + 1 + 632 + Sample profile of variable values + 100000000 + true + + + 5047 + 780 + 1 + 15 + Min Value + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 508 + Minimum allowed sample value + 100000000 + true + + + 5048 + 780 + 1 + 16 + Max Value + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 464 + Maximum allowed sample value + 100000000 + true + + + 5049 + 780 + 1 + 17 + Probability + 12 + 50 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 623 + Probability of exceedance (POE) + 100000000 + true + + + 5050 + 780 + 1 + 18 + Error Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 183 + Percentage standard deviation of errors + 100000000 + true + + + 5051 + 780 + 1 + 19 + Abs Error Std Dev + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 926 + Absolute value of standard deviation of errors + 100000000 + true + + + 5052 + 780 + 1 + 20 + Min Value Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 509 + Percentage standard deviation of minimum value + 100000000 + true + + + 5053 + 780 + 1 + 21 + Max Value Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 465 + Percentage standard deviation of maximum value + 100000000 + true + + + 5054 + 780 + 1 + 22 + Auto Correlation + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 18 + Correlation of error between time intervals + 100000000 + true + + + 5055 + 780 + 1 + 23 + Mean Reversion + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 469 + Mean reversion parameter in differential equation + 100000000 + true + + + 5056 + 780 + 1 + 24 + ARIMA alpha + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 984 + ARIMA autoregressive parameter + 100000000 + true + + + 5057 + 780 + 1 + 25 + ARIMA beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 985 + ARIMA moving-average parameter + 100000000 + true + + + 5058 + 780 + 1 + 26 + ARIMA d + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1008 + ARIMA differencing parameter + 100000000 + true + + + 5059 + 780 + 1 + 27 + Jump Frequency + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1764 + Jump frequency in jump-diffusion model + 100000000 + true + + + 5060 + 780 + 1 + 28 + Jump Magnitude + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1765 + Jump magnitude in jump-diffusion model + 100000000 + true + + + 5061 + 780 + 1 + 29 + Jump Error Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1766 + Percentage standard deviation of jump magnitude errors + 100000000 + true + + + 5062 + 780 + 1 + 30 + GARCH alpha + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1767 + Weight on the square of the return in GARCH(1,1) + 100000000 + true + + + 5063 + 780 + 1 + 31 + GARCH beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1768 + Weight on the variance in GARCH(1,1) + 100000000 + true + + + 5064 + 780 + 1 + 32 + GARCH omega + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1769 + Long-run weighted variance in GARCH(1,1) + 100000000 + true + + + 5065 + 780 + 1 + 33 + Lookup x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1005 + Lookup table for x-axis value + 100 + true + + + 5066 + 780 + 1 + 34 + Lookup y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1006 + Lookup table for y-axis value + 100 + true + + + 5067 + 780 + 1 + 35 + Lookup Unit + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1010 + Unit of the y values in the lookup table + 100 + true + + + 5068 + 780 + 1 + 36 + Sampling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1477 + Flag if random sampling should occur in the period + 100000000 + true + + + 5069 + 780 + 1 + 37 + Step Hour Active From + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1613 + First hour of each step the Condition is allowed to be active + 800000 + true + + + 5070 + 780 + 1 + 38 + Step Hours Active + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1614 + Number of hours the Condition is allowed to be active from the first active hour in the step + 800000 + true + + + 5071 + 780 + 1 + 39 + Compound Index + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 914 + Rate of escalation + true + + + 5072 + 780 + 1 + 39 + Compound Index Hour + 12 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1579 + Rate of escalation per hour + true + + + 5073 + 780 + 1 + 39 + Compound Index Day + 12 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1083 + Rate of escalation per day + true + + + 5074 + 780 + 1 + 39 + Compound Index Week + 12 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1084 + Rate of escalation per week + true + + + 5075 + 780 + 1 + 39 + Compound Index Month + 12 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1085 + Rate of escalation per month + true + + + 5076 + 780 + 1 + 39 + Compound Index Year + 12 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1086 + Rate of escalation per year + true + + + 5077 + 782 + 1 + 1 + Expected Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1499 + Coefficient of the variable expected value in the constraint + true + + + 5078 + 782 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the variable value in the constraint + true + + + 5079 + 782 + 1 + 3 + Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1500 + Coefficient of the variable sample error + true + + + 5080 + 782 + 1 + 4 + Positive Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1501 + Coefficient of the positive sample error + true + + + 5081 + 782 + 1 + 5 + Negative Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1502 + Coefficient of the negative sample error + true + + + 5082 + 783 + 1 + 1 + Expected Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1499 + Coefficient of the variable expected value + true + + + 5083 + 783 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the variable sample value + true + + + 5084 + 783 + 1 + 3 + Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1500 + Coefficient of the variable sample error + true + + + 5085 + 783 + 1 + 4 + Positive Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1501 + Coefficient of the positive sample error + true + + + 5086 + 783 + 1 + 5 + Negative Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1502 + Coefficient of the negative sample error + true + + + 5087 + 784 + 1 + 1 + Correlation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 116 + Cross correlation + 100000000 + true + + + 5088 + 784 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the Variable Value in the definition of this Variable + true + + + 5089 + 785 + 1 + 1 + Activity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2818 + Coefficient of the left-hand-side of the Variable Condition expression + true + + + 5090 + 786 + 1 + 1 + Include + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + true + false + 1 + 296 + If the timeslice includes the period + 800000 + true + + + 5091 + 788 + 2 + 1 + Full Branches Sample Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2797 + Flag if the Full Branches historical year start are automatically selected by sample reduction. + 800000 + true + + + 5092 + 788 + 2 + 2 + Hanging Branches Sample Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1996 + Flag if the Hanging Branches historical year start are automatically selected by sample reduction. + 800000 + true + + + 5093 + 788 + 2 + 3 + Sample Rescaling Range + 0 + 0 + In (0,1) + 0;"All Periods";1;"Sampled Years" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 3013 + Period range the sample rescaling is based on for sampled year feature. + true + + + 5094 + 788 + 1 + 4 + FCF Constant + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1485 + Future Cost Function: objective function constant term + true + + + 5095 + 788 + 1 + 5 + FCF Sample Map + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2798 + Future Cost Function: historical sample to full branch sample map + true + + + 5096 + 788 + 1 + 6 + Sample Weight + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1497 + Sampling: Weight applied to samples + 100000000 + true + + + 5097 + 788 + 1 + 7 + Tree Period Type + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"interval";6;"hour";1;"day";2;"week";3;"month";4;"year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1605 + Scenario Tree: Period type for stage positions + 100000000 + true + + + 5098 + 788 + 1 + 8 + Tree Position Exp Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1489 + Scenario Tree: Controls the end positions of each stage + 100000000 + true + + + 5099 + 788 + 1 + 9 + Tree Leaves Exp Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1490 + Scenario Tree: Controls the number of samples in each stage + 100000000 + true + + + 5100 + 788 + 1 + 10 + Tree Stages Position Incr + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2570 + Scenario Tree: Increment to the position of each stage + 100000000 + true + + + 5101 + 788 + 1 + 11 + Tree Stages Position + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1491 + Scenario Tree: Position of each stage + 100000000 + true + + + 5102 + 788 + 1 + 12 + Tree Stages Leaves + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1492 + Scenario Tree: Number of leaves in each stage + 100000000 + true + + + 5103 + 788 + 1 + 13 + Tree Stages Hanging Branches + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1672 + Scenario Tree: Number of hanging branches in each stage + 100000000 + true + + + 5104 + 788 + 1 + 14 + Deterministic Stages + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1826 + Scenario Tree: Number of deterministic stages + 100000000 + true + + + 5105 + 788 + 1 + 15 + Full Branches Historical Year Start + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2500 + Scenario Tree: First year of historical data for full branches + 100000000 + true + + + 5106 + 788 + 1 + 16 + Hanging Branches Historical Year Start + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1911 + Scenario Tree: First year of historical data for hanging branches + 100000000 + true + + + 5107 + 788 + 1 + 17 + Hanging Branches Weight + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1946 + Scenario Tree: Weights for the hanging branches + 100000000 + true + + + 5108 + 788 + 1 + 18 + Hanging Branches Block Count + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1912 + Number of blocks (time periods) modelled after the hanging branch begins. + 100000000 + true + + + 5109 + 788 + 1 + 19 + Slicing Block + 0 + 0 + In (0,-1) + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 1487 + Defines blocks of time that should be kept together when performing time slicing e.g. for load duration curves + true + + + 5110 + 788 + 1 + 20 + Sampled Period + 0 + 0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2707 + Selects periods for Sampled Chronology in MT Schedule + true + + + 5111 + 788 + 1 + 21 + Sampled Year + 0 + 0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 2228 + Year selection for LT Plan. Sampling will occur only for selected years. + true + + + 5112 + 788 + 1 + 22 + Sampling File + 0 + 0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 2875 + Input file for Sampled Chronology in LT plan and/or MT Schedule + true + + + 5113 + 788 + 1 + 23 + PTDF File + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2800 + Input file for PTDF values + true + + + 5114 + 792 + 3 + 1 + Barometric Pressure + 128 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2986 + Value for barometric pressure + false + + + 5115 + 792 + 3 + 2 + Cloud Cover + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2987 + Value for cloud cover + false + + + 5116 + 792 + 3 + 3 + Cooling Degree Days + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2988 + Value for cooling degree days + false + + + 5117 + 792 + 3 + 4 + Heating Degree Days + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2007 + Value for heating degree days + true + + + 5118 + 792 + 3 + 5 + Precipitation + 126 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2989 + Value for precipitation + false + + + 5119 + 792 + 3 + 6 + Relative Humidity + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2990 + Value for relative humidity + false + + + 5120 + 792 + 3 + 7 + Solar Irradiance + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2991 + Value for solar irradiance + false + + + 5121 + 792 + 3 + 8 + Temperature + 77 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2009 + Temperature value in each level + true + + + 5122 + 792 + 3 + 9 + Wind Direction + 11 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2992 + Value for wind direction + false + + + 5123 + 792 + 3 + 10 + Wind Speed + 127 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2011 + Wind speed value + true + + + 5124 + 792 + 12 + 11 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 5125 + 792 + 12 + 12 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 5126 + 792 + 12 + 13 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 5127 + 798 + 1 + 1 + Read Order + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 907 + Order in which to read scenario data (last read scenario has highest priority) + true + + + 1 + - + 1 + + + 2 + Settings + 5 + + + 3 + Production + 2 + + + 4 + Offers and Bids + 10 + + + 5 + Risk + 7 + + + 6 + Capacity + 3 + + + 7 + Reliability + 12 + + + 8 + Expansion + 4 + + + 9 + Constraints + 9 + + + 10 + Storage + 11 + + + 11 + Stochastic + 8 + + + 12 + Pass-through + 6 + + + 0 + - + - + 0 + + + 1 + MW + MW + MW + MW + MW + MW + MW + unit of load + 26 + + + 2 + GWh + GWh + GWh + GWh + GWh + GWh + GWh + 1000 units of electric energy + 24 + + + 3 + MWh + MWh + MWh + MWh + MWh + MWh + MWh + unit of electric energy + 59 + + + 4 + kV + kV + 37 + + + 5 + s + s + 42 + + + 6 + h + h + 25 + + + 7 + day + day + 58 + + + 8 + yr + yr + 55 + + + 9 + MW/min + MW/min + 27 + + + 10 + pu + pu + 28 + + + 11 + ° + ° + 30 + + + 12 + % + % + 32 + + + 13 + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + logic switches + 46 + + + 14 + $ + $ + $ + $ + $ + $ + $ + unit of currency + 1 + + + 15 + MMBTu + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of energy + 2 + + + 16 + BBTu + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 energy units + 3 + + + 17 + MMBTU + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of fuel + 4 + + + 18 + TJ + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 units of fuel + 5 + + + 19 + kg + kg + lb + kg + lb + kg + lb + unit of emission + 6 + + + 20 + tonne + tonne + ton + tonne + ton + tonne + ton + 1000 units of emission + 7 + + + 21 + MMBTu + GJ + Btu + GJ + Btu + GJ + Btu + unit of heat rate numerator + 45 + + + 22 + MWh + MWh + kWh + MWh + kWh + MWh + kWh + unit of heat rate denominator + 44 + + + 23 + m + m + ft + m + ft + m + ft + unit of distance + 34 + + + 24 + GWh + GWh + GWh + 1000 m³ + 1000 ft³ + CMD + AF + unit of storage + 39 + + + 25 + MW + MW + MW + m³/s + ft³/s. + m³/s + AF/hr + unit of water flow + 40 + + + 26 + GWh + GWh + GWh + 1000 m³ + 1000 ft³ + CMD + AF + unit of hydro release + 52 + + + 27 + MW + MW + =unit of hydro efficiency numerator OLD + 50 + + + 28 + MW + MW + unit of hydro efficiency denominator OLD + 51 + + + 29 + $/MMBTU + $/GJ + =[unit of currency]/[unit of fuel] + 8 + + + 30 + $/kg + $/kg + =[unit of currency]/[unit of emission] + 9 + + + 31 + $/kW/yr + $/kW/yr + =[unit of currency]/kW/yr + 10 + + + 32 + $/MW + $/MW + =[unit of currency]/[unit of load] + 11 + + + 33 + $/MWh + $/MWh + =[unit of currency]/[unit of electric energy] + 12 + + + 34 + $000 + $000 + =[unit of currency]000 + 15 + + + 35 + MMBTU/h + GJ/h + =[unit of fuel]/h + 16 + + + 36 + MMBTu/MWh + GJ/MWh + =[unit of heat rate numerator]/[unit of heat rate denominator] + 17 + + + 37 + MMBTu/MMBTU + GJ/GJ + =[unit of energy]/[unit of fuel] + 18 + + + 38 + MMBTu/MWh² + GJ/MWh² + =[unit of heat rate numerator]/[unit of heat rate denominator]² + 19 + + + 39 + kg/MMBTU + kg/GJ + =[unit of emission]/[unit of fuel] + 21 + + + 40 + kg/MWh + kg/MWh + =[unit of emission]/[unit of electric energy] + 22 + + + 41 + $/GWh + $/GWh + =[unit of currency]/[1000 units of electric energy] + 33 + + + 42 + + + =[unit of distance]² + 35 + + + 43 + $/degree + $/° + =[unit of currency]/° + 38 + + + 44 + MMBTu/MWh³ + GJ/MWh³ + =[unit of heat rate numerator]/[unit of heat rate denominator]³ + 41 + + + 45 + /MW + MW/MW + =[unit of hydro efficiency numerator OLD]/[unit of hydro efficiency denominator OLD] + 49 + + + 46 + $/GWh + $/GWh + =[unit of currency]/[unit of hydro release] + 53 + + + 47 + $/kW + $/kW + =[unit of currency]/kW + 56 + + + 48 + $/hr + $/h + =[unit of currency]/hr + 57 + + + 49 + $/kW/month + $/kW/month + =[unit of currency]/kW/month + 61 + + + 50 + $/kW/week + $/kW/week + =[unit of currency]/kW/week + 62 + + + 51 + $/kW/day + $/kW/day + =[unit of currency]/kW/day + 63 + + + 52 + $/kWh + $/kWh + =[unit of currency]/kWh + 206 + + + 53 + rad + rad + 64 + + + 54 + $/MW + $/MW + =[unit of currency]/[unit of water flow] + 65 + + + 55 + month + month + 66 + + + 56 + $/MWh/MWh + $/MWh2 + =[unit of currency]/[unit of electric energy]/[unit of electric energy] + 67 + + + 57 + min + min + 69 + + + 58 + TJ + TJ + MMBtu + TJ + MMBtu + TJ + MMBtu + unit of gas volume + 75 + + + 59 + GJ + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of gas energy + 74 + + + 60 + $/GJ + $/GJ + =[unit of currency]/[unit of gas energy] + 72 + + + 61 + $/MMBTu + $/GJ + =[unit of currency]/[unit of energy] + 76 + + + 62 + cycles + cycles + 77 + + + 63 + kg/GJ + kg/GJ + =[unit of emission]/[unit of gas energy] + 78 + + + 64 + + + gal. + + gal. + + gal. + unit of water volume + 79 + + + 65 + m³/day + m³/day + =[unit of water volume]/day + 80 + + + 66 + kWh/m³ + kWh/m³ + =kWh/[unit of water volume] + 81 + + + 67 + $/m³ + $/m³ + =[unit of currency]/[unit of water volume] + 82 + + + 68 + m³/MWh + m³/MWh + =[unit of water volume]/[unit of electric energy] + 83 + + + 69 + kWh/TJ + kWh/TJ + =kWh/[unit of gas volume] + 84 + + + 70 + %/day + %/day + 85 + + + 71 + kg/m³ + kg/m³ + =[unit of emission]/[unit of water volume] + 87 + + + 72 + MMBTu/m³ + GJ/m³ + =[unit of energy]/[unit of water volume] + 88 + + + 73 + $/MMBTu/day + $/GJ/day + =[unit of currency]/[unit of energy]/day + 89 + + + 74 + $/MMBTu/day + $/mmBTU/day + =[unit of currency]/[unit of energy]/day + 90 + + + 75 + GJ + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of gas energy output + 202 + + + 76 + TJ + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 units of gas energy output + 203 + + + 77 + °C + °C + °F + °C + °F + °C + °F + unit of temperature + 204 + + + 78 + $/MMBTu/month + $/GJ/month + =[unit of currency]/[unit of energy]/month + 207 + + + 79 + kW + kW + 209 + + + 80 + kWh + kWh + 208 + + + 81 + km + km + m + km + m + km + m + electric vehicle efficiency denominator + 210 + + + 82 + Wh/km + Wh/km + =Wh/[electric vehicle efficiency denominator] + 211 + + + 83 + c + c + c + c + c + c + c + 1/100th unit of currency + 212 + + + 84 + c/kWh + c/kWh + =[1/100th unit of currency]/kWh + 213 + + + 85 + MJ + MJ + 214 + + + 86 + ~ + ~ + 215 + + + 87 + 1000·~ + 1000·~ + 228 + + + 88 + $/~ + $/~ + =[unit of currency]/~ + 216 + + + 89 + pa + pa + psi + pa + psi + pa + psi + unit of pressure + 217 + + + 90 + $/km + $/km + =[unit of currency]/[electric vehicle efficiency denominator] + 218 + + + 91 + kg/km + kg/km + =[unit of emission]/[electric vehicle efficiency denominator] + 219 + + + 92 + kg/kWh + kg/kWh + =[unit of emission]/kWh + 220 + + + 93 + ~ + ~ + 221 + + + 94 + ~ + ~ + 222 + + + 95 + $/~ + $/~ + =[unit of currency]/~ + 223 + + + 96 + $/~ + $/~ + =[unit of currency]/~ + 224 + + + 97 + MW·s + MW·s + 225 + + + 98 + GW·s + GW·s + 226 + + + 99 + $/m³/day/yr + $/m³/day/yr + =[unit of currency]/[unit of water volume]/day/yr + 227 + + + 100 + 1000·~ + 1000·~ + ~ + 1000·~ + ~ + 1000·~ + ~ + custom unit of gas volume + 229 + + + 101 + kWh/1000·~ + kWh/1000·~ + =kWh/[custom unit of gas volume] + 230 + + + 102 + kg/~ + kg/~ + =[unit of emission]/[custom unit of gas volume] + 231 + + + 103 + $/1000·~/month + $/~/month + =[unit of currency]/[custom unit of gas volume]/month + 232 + + + 104 + $/1000·~/day + $/~/day + =[unit of currency]/[custom unit of gas volume]/day + 233 + + + 105 + ~/MWh + ~/MWh + =~/MWh + 234 + + + 106 + ~/GJ + ~/GJ + =~/[unit of heat rate numerator] + 235 + + + 107 + ~/MW + ~/MW + =~/MW + 236 + + + 108 + $/~/yr + $/~/yr + =[unit of currency]/~/yr + 237 + + + 109 + MWh/~ + MWh/~ + =MWh/~ + 238 + + + 110 + MMBTu/~ + GJ/~ + =[unit of energy]/~ + 239 + + + 111 + GJ/~ + GJ/~ + =[unit of gas energy output]/~ + 240 + + + 112 + m³/~ + m³/~ + =[unit of water volume]/~ + 241 + + + 113 + MMBTU/~ + GJ/~ + =[unit of fuel]/~ + 242 + + + 114 + kg/~ + kg/~ + =[unit of emission]/~ + 243 + + + 115 + ~/min + ~/min + =~/min + 244 + + + 116 + MW/1000·~ + MW/1000·~ + =MW/1000·~ + 245 + + + 117 + MWh/1000·~ + MWh/1000·~ + =MWh/1000·~ + 246 + + + 118 + MW + MW + MW + MW + kW + MW + kW + unit of hydro efficiency numerator + 247 + + + 119 + MW + MW + MW + m³/s + ft³/s + m³/s + AF/hr + unit of hydro efficiency denominator + 248 + + + 120 + MW/MW + MW/MW + =[unit of hydro efficiency numerator]/[unit of hydro efficiency denominator] + 249 + + + 121 + MVA + MVA + unit of measurement for apparent power + 250 + + + 122 + MVAr + MVAr + unit of measurement for reactive power + 251 + + + 123 + ~/~ + ~/~ + 252 + + + 124 + ~/~² + ~/~² + 253 + + + 125 + ~/~³ + ~/~³ + 254 + + + 126 + mm + mm + inches + mm + inches + mm + inches + unit of rainfall + 255 + + + 127 + m/second + m/second + mph + m/second + mph + m/second + mph + unit of wind speed + 256 + + + 128 + mm/mercury + mm/mercury + inches/mercury + mm/mercury + inches/mercury + mm/mercury + inches/mercury + unit of barometric pressure + 257 + + + 129 + m³/min + m³/min + =[unit of water volume]/minute + 258 + + + 130 + m³/hour + m³/hour + =[unit of water volume]/hour + 259 + + + 131 + m³/week + m³/week + =[unit of water volume]/week + 260 + + + 132 + m³/month + m³/month + =[unit of water volume]/month + 261 + + + 133 + m³/year + m³/year + =[unit of water volume]/year + 262 + + + 134 + MWh + MWh + MWh + 1000 m³ + 1000 ft³ + CMD + AF + unit of spill + 263 + + + 135 + $/MWh + $/MWh + =[unit of currency]/[unit of spill] + 264 + + + 136 + ~/day + ~/day + 265 + + + 137 + km + km + miles + km + miles + km + miles + unit of distance + 266 + + + 138 + km/h + km/h + miles/h + km/h + miles/h + km/h + miles/h + unit of speed + 267 + + + 1 + 1 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 2 + 1 + 3 + 2 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 3 + 1 + 3 + 3 + Min Generation + Min Generation + 1 + 1 + false + true + false + false + true + false + true + true + 483 + 483 + Minimum Generation in the period + true + + + 4 + 1 + 3 + 4 + Min Stable Level Violation + Min Stable Level Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2633 + 2633 + Violation of [Min Stable Level] constraint. + true + + + 5 + 1 + 3 + 5 + Min Stable Level Violation Cost + Min Stable Level Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2634 + 2634 + Cost of [Min Stable Level] violations. + true + + + 6 + 1 + 3 + 6 + Max Generation + Max Generation + 1 + 1 + false + true + false + false + true + false + true + true + 431 + 431 + Maximum Generation in the period + true + + + 7 + 1 + 3 + 7 + Units Generating + Units Generating + 0 + 0 + true + false + false + false + true + false + true + true + 816 + 816 + Number of units generating + true + + + 8 + 1 + 3 + 8 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 9 + 1 + 3 + 9 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 10 + 1 + 3 + 10 + Committed Capacity + Committed Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2936 + 2936 + Capacity of committed units + true + + + 11 + 1 + 3 + 11 + Dispatchable Capacity + Dispatchable Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 149 + Capacity of committed units between technical limits + true + + + 12 + 1 + 3 + 12 + Undispatched Capacity + Undispatched Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 803 + Capacity on-line but undispatched + true + + + 13 + 1 + 3 + 13 + Undispatched Pump Capacity + Undispatched Pump Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2852 + 2852 + Pump capacity online but undispatched + true + + + 14 + 1 + 3 + 14 + Unused Capacity + Unused Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2853 + 2853 + Unused capacity (Rating x Units - Generation) + true + + + 15 + 1 + 3 + 15 + Unused Pump Capacity + Unused Pump Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2854 + 2854 + Unused pump capacity (Pump Load x Pump Units - station pumping load) + true + + + 16 + 1 + 3 + 16 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 17 + 1 + 3 + 17 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 18 + 1 + 3 + 18 + Min Up Time Violation + Min Up Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2598 + 2598 + Violation of min up time constraint. + true + + + 19 + 1 + 3 + 19 + Min Up Time Violation Cost + Min Up Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2599 + 2599 + Cost of violating min up time constraint. + true + + + 20 + 1 + 3 + 20 + Max Up Time Violation + Max Up Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2600 + 2600 + Violation of maximum up time constraint. + true + + + 21 + 1 + 3 + 21 + Max Up Time Violation Cost + Max Up Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2601 + 2601 + Cost of violating maximum up time constraint. + true + + + 22 + 1 + 3 + 22 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 23 + 1 + 3 + 23 + Min Down Time Violation + Min Down Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2602 + 2602 + Violation of min down time constraint. + true + + + 24 + 1 + 3 + 24 + Min Down Time Violation Cost + Min Down Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2603 + 2603 + Cost of violating min up time constraint. + true + + + 25 + 1 + 3 + 25 + Max Down Time Violation + Max Down Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2621 + 2621 + Violation of maximum down time constraint. + true + + + 26 + 1 + 3 + 26 + Max Down Time Violation Cost + Max Down Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2622 + 2622 + Cost of violating maximum down time constraint. + true + + + 27 + 1 + 3 + 27 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity generating + true + + + 28 + 1 + 3 + 28 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 29 + 1 + 3 + 29 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 30 + 1 + 3 + 30 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 31 + 1 + 3 + 31 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 32 + 1 + 3 + 32 + Hours Curtailed + Hours Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1058 + 1058 + Number of hours that non-positive-priced generation has been curtailed. + true + + + 33 + 1 + 3 + 33 + Capacity Curtailed + Energy Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1163 + 2344 + Amount of non-positive-priced generation curtailed. + true + + + 34 + 1 + 3 + 34 + Curtailment Factor + Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 1061 + 1061 + Proportion of non-positive-priced generation curtailed. + true + + + 35 + 1 + 3 + 35 + Ramp + Ramp + 9 + 9 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 36 + 1 + 3 + 36 + Ramp Up + Ramp Up + 1 + 1 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 37 + 1 + 3 + 37 + Max Ramp Up + Max Ramp Up + 9 + 9 + true + true + false + false + true + false + true + true + 448 + 448 + Maximum ramp up rate that applies at the given load point + true + + + 38 + 1 + 3 + 38 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 39 + 1 + 3 + 39 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 40 + 1 + 3 + 40 + Ramp Up Price + Ramp Up Price + 32 + 32 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint. + true + + + 41 + 1 + 3 + 41 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation. + true + + + 42 + 1 + 3 + 42 + Ramp Up Violation + Ramp Up Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint. + true + + + 43 + 1 + 3 + 43 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations. + true + + + 44 + 1 + 3 + 44 + Ramp Down + Ramp Down + 1 + 1 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 45 + 1 + 3 + 45 + Max Ramp Down + Max Ramp Down + 9 + 9 + true + true + false + false + true + false + true + true + 447 + 447 + Maximum ramp down rate that applies at the given load point + true + + + 46 + 1 + 3 + 46 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 47 + 1 + 3 + 47 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 48 + 1 + 3 + 48 + Ramp Down Price + Ramp Down Price + 32 + 32 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint. + true + + + 49 + 1 + 3 + 49 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation. + true + + + 50 + 1 + 3 + 50 + Ramp Down Violation + Ramp Down Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint. + true + + + 51 + 1 + 3 + 51 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations. + true + + + 52 + 1 + 3 + 52 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 53 + 1 + 3 + 53 + Fixed Load Violation + Fixed Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1168 + 1168 + Violation of [Fixed Load] constraint. + true + + + 54 + 1 + 3 + 54 + Fixed Load Violation Hours + Fixed Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1045 + 1045 + Number of hours that [Fixed Load] is violated. + true + + + 55 + 1 + 3 + 55 + Fixed Load Violation Cost + Fixed Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1042 + 1042 + Cost of [Fixed Load] violations. + true + + + 56 + 1 + 3 + 56 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 57 + 1 + 3 + 57 + Min Load Violation + Min Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1169 + 1169 + Violation of [Min Load] constraint. + true + + + 58 + 1 + 3 + 58 + Min Load Violation Hours + Min Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1046 + 1046 + Number of hours that [Min Load] is violated. + true + + + 59 + 1 + 3 + 59 + Min Load Violation Cost + Min Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1047 + 1047 + Cost of [Min Load] violations. + true + + + 60 + 1 + 3 + 60 + Max Load Violation + Max Load Violation + 1 + 1 + true + true + false + false + true + false + true + true + 2604 + 2604 + Violation of [Max Load] constraint. + true + + + 61 + 1 + 3 + 61 + Max Load Violation Cost + Max Load Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2605 + 2605 + Cost of [Max Load] violations. + true + + + 62 + 1 + 3 + 62 + Max Energy Violation + Max Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1192 + 1192 + Violation of [Max Energy] or [Max Capacity Factor] constraints. + true + + + 63 + 1 + 3 + 63 + Max Energy Violation Cost + Max Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1193 + 1193 + Cost of [Max Energy] or [Max Capacity Factor] constraint violations. + true + + + 64 + 1 + 3 + 64 + Min Energy Violation + Min Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1194 + 1194 + Violation of [Min Energy] or [Min Capacity Factor] constraints. + true + + + 65 + 1 + 3 + 65 + Min Energy Violation Cost + Min Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1195 + 1195 + Cost of [Min Energy] or [Min Capacity Factor] constraint violations. + true + + + 66 + 1 + 3 + 66 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints. + true + + + 67 + 1 + 3 + 67 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations. + true + + + 68 + 1 + 3 + 68 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise reserve + true + + + 69 + 1 + 3 + 69 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 70 + 1 + 3 + 70 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 71 + 1 + 3 + 71 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 72 + 1 + 3 + 72 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 73 + 1 + 3 + 73 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 74 + 1 + 3 + 74 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 75 + 1 + 3 + 75 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of additional generation that could be unloaded + true + + + 76 + 1 + 3 + 76 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 77 + 1 + 3 + 77 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 78 + 1 + 3 + 78 + Dispatched Capacity Available + Dispatched Capacity Available + 1 + 2 + true + true + false + false + true + false + true + true + 2204 + 2204 + The available capacity during unit commitment + false + + + 79 + 1 + 3 + 79 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 80 + 1 + 3 + 80 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 81 + 1 + 3 + 81 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 82 + 1 + 3 + 82 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 83 + 1 + 3 + 83 + Storage Release + Storage Release + 25 + 24 + true + true + false + false + true + false + true + true + 2780 + 2780 + Release from the Head Storage to the generator + true + + + 84 + 1 + 3 + 84 + Natural Inflow + Natural Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 530 + 530 + Natural inflow to the generator + true + + + 85 + 1 + 3 + 85 + Controllable Inflow + Controllable Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 2779 + 2779 + Controllable natural inflow to the generator + true + + + 86 + 1 + 3 + 86 + Uncontrolled Inflow + Uncontrolled Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 2777 + 2777 + Uncontrolled natural inflow to the generator + true + + + 87 + 1 + 3 + 87 + Spill + Spill + 25 + 24 + true + true + false + false + true + false + true + true + 758 + 758 + Spill to "the sea" + true + + + 88 + 1 + 3 + 88 + Units Pumping + Units Pumping + 0 + 0 + true + false + false + false + true + false + true + true + 1228 + 1228 + Number of units operating in pump mode + true + + + 89 + 1 + 3 + 89 + Pump Units Started + Pump Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 1322 + 1322 + Number of units stared in pump mode + true + + + 90 + 1 + 3 + 90 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by a unit in pumping mode + true + + + 91 + 1 + 3 + 91 + Pump Load Violation + Pump Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2606 + 2606 + Violation of maximum pump load constraint. + true + + + 92 + 1 + 3 + 92 + Pump Load Violation Cost + Pump Load Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2607 + 2607 + Cost of violating maximum pump load constraint. + true + + + 93 + 1 + 3 + 93 + Pump Operating Hours + Pump Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1642 + 1642 + Number of hours the unit is operating in pump mode + true + + + 94 + 1 + 3 + 94 + Net Sum Generation + Net Sum Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2374 + 2374 + Generation sum of pump load and generation + false + + + 95 + 1 + 3 + 95 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 96 + 1 + 3 + 96 + Fixed Pump Load + Fixed Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 1328 + 1328 + Fixed pump load + true + + + 97 + 1 + 3 + 97 + Fixed Pump Load Violation + Fixed Pump Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1331 + 1331 + Violation of [Fixed Pump Load] constraint. + true + + + 98 + 1 + 3 + 98 + Fixed Pump Load Violation Hours + Fixed Pump Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1330 + 1330 + Number of hours that [Fixed Pump Load] is violated. + true + + + 99 + 1 + 3 + 99 + Fixed Pump Load Violation Cost + Fixed Pump Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1332 + 1332 + Cost of [Fixed Pump Load] violations. + true + + + 100 + 1 + 3 + 100 + Water Release + Water Release + 25 + 24 + true + true + false + false + true + false + true + true + 854 + 854 + Water release from hydro generation + true + + + 101 + 1 + 3 + 101 + Water Pumped + Water Pumped + 25 + 24 + true + true + false + false + true + false + true + true + 853 + 853 + Water pumped in pumping mode + true + + + 102 + 1 + 3 + 102 + Units Sync Cond + Units Sync Cond + 0 + 0 + true + false + false + false + true + false + true + true + 1643 + 1643 + Number of units operating in synchronous condenser mode + true + + + 103 + 1 + 3 + 103 + Sync Cond Load + Sync Cond Load + 1 + 2 + true + true + false + false + true + false + true + true + 772 + 772 + Load drawn by a unit in synchronous condenser mode + true + + + 104 + 1 + 3 + 104 + Sync Cond Operating Hours + Sync Cond Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1644 + 1644 + Number of hours the unit is operating in synchronous condenser mode + true + + + 105 + 1 + 3 + 105 + Fuel Price + Fuel Price + 29 + 29 + true + true + false + false + true + false + true + true + 225 + 225 + Fuel price (when not using Fuels collection) + true + + + 106 + 1 + 3 + 106 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 107 + 1 + 3 + 107 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 108 + 1 + 3 + 108 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 109 + 1 + 3 + 109 + VO&M Charge + VO&M Charge + 33 + 33 + true + true + false + false + true + false + true + true + 849 + 849 + Variable operation and maintenance charge + true + + + 110 + 1 + 3 + 110 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 111 + 1 + 3 + 111 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 112 + 1 + 3 + 112 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 113 + 1 + 3 + 113 + Generation Credit Revenue + Generation Credit Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2766 + 2766 + Total revenue derived from generation credits + true + + + 114 + 1 + 3 + 114 + Generation Credit Price + Generation Credit Price + 33 + 33 + true + true + false + false + true + false + true + true + 2767 + 2767 + Average price of the generation credits + true + + + 115 + 1 + 3 + 115 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Cost of pump energy + true + + + 116 + 1 + 3 + 116 + Sync Cond Cost + Sync Cond Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1649 + 1649 + Cost of synchronous condenser energy + true + + + 117 + 1 + 3 + 117 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 118 + 1 + 3 + 118 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 119 + 1 + 3 + 119 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of generation + true + + + 120 + 1 + 3 + 120 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 121 + 1 + 3 + 121 + Start & Shutdown Penalty Cost + Start & Shutdown Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1183 + 1183 + Penalty cost of unit start up and shutdown + true + + + 122 + 1 + 3 + 122 + Start Profile Violation + Start Profile Violation + 1 + 1 + true + true + false + false + true + false + true + true + 2640 + 2640 + Violation of [Start Profile] constraint. + true + + + 123 + 1 + 3 + 123 + Start Profile Violation Cost + Start Profile Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2641 + 2641 + Cost of [Start Profile] violations. + true + + + 124 + 1 + 3 + 124 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + false + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 125 + 1 + 3 + 125 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 126 + 1 + 3 + 126 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 127 + 1 + 3 + 127 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 128 + 1 + 3 + 128 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 129 + 1 + 3 + 129 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 130 + 1 + 3 + 130 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 131 + 1 + 3 + 131 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 132 + 1 + 3 + 132 + Heat Rate + Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 260 + 260 + Average heat rate (total fuel divided by total generation) + true + + + 133 + 1 + 3 + 133 + Marginal Heat Rate + Marginal Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal generation level + true + + + 134 + 1 + 3 + 134 + Average Heat Rate + Average Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate + true + + + 135 + 1 + 3 + 135 + Efficiency + Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of generation + true + + + 136 + 1 + 3 + 136 + Marginal Fuel Cost + Marginal Fuel Cost + 33 + 33 + true + true + false + false + true + false + true + true + 1776 + 1776 + Short-run marginal cost fuel component + true + + + 137 + 1 + 3 + 137 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 138 + 1 + 3 + 138 + Average Cost + Average Cost + 33 + 33 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of generation + true + + + 139 + 1 + 3 + 139 + Average Total Cost + Average Total Cost + 33 + 33 + true + true + false + false + true + false + true + true + 1374 + 1374 + Average [Total Generation Cost] + true + + + 140 + 1 + 3 + 140 + Offer Base + Offer Base + 1 + 2 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for incr/decr style offer + true + + + 141 + 1 + 3 + 141 + Offer No Load Cost + Offer No Load Cost + 48 + 48 + true + false + false + false + true + false + true + true + 568 + 568 + Fixed dispatch cost component of generator offer. + true + + + 142 + 1 + 3 + 142 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band + true + + + 143 + 1 + 3 + 143 + Average Offer Quantity Per Unit + Average Offer Quantity Per Unit + 1 + 2 + true + true + true + false + true + false + true + true + 1842555267 + 1842555267 + Average Quantity per generating unit offered in band + true + + + 144 + 1 + 3 + 144 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 145 + 1 + 3 + 145 + Cost Price + Cost Price + 33 + 33 + true + true + true + false + true + false + true + true + 119 + 119 + Marginal cost of energy in band + true + + + 146 + 1 + 3 + 146 + Mark-up + Mark-up + 33 + 33 + true + true + true + false + true + false + true + true + 408 + 408 + Mark-up above marginal cost + true + + + 147 + 1 + 3 + 147 + Bid-Cost Mark-up + Bid-Cost Mark-up + 12 + 12 + true + true + true + false + true + false + true + true + 32 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + true + + + 148 + 1 + 3 + 148 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 149 + 1 + 3 + 149 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 150 + 1 + 3 + 150 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 151 + 1 + 3 + 151 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + true + true + false + true + true + 377 + 377 + Transmission marginal loss factor (MLF or TLF) + true + + + 152 + 1 + 3 + 152 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 153 + 1 + 3 + 153 + Pump Bid Base + Pump Bid Base + 1 + 2 + true + true + false + false + true + false + true + true + 1301 + 1301 + Base pump load for balancing bid + true + + + 154 + 1 + 3 + 154 + Pump Bid Quantity + Pump Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 1303 + 1303 + Pump load bid quantity in band + true + + + 155 + 1 + 3 + 155 + Pump Bid Price + Pump Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 1302 + 1302 + Bid price of pump load in band + true + + + 156 + 1 + 3 + 156 + Pump Bid Cleared + Pump Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1304 + 1304 + Quantity cleared in pump load bid band + true + + + 157 + 1 + 3 + 157 + Cleared Pump Bid Price + Cleared Pump Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1305 + 1305 + Price of marginal pump load bid band + true + + + 158 + 1 + 3 + 158 + Cleared Pump Bid Cost + Cleared Pump Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1307 + 1307 + Area cleared under generator pump bid curve + true + + + 159 + 1 + 3 + 159 + Pump Price Paid + Pump Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 1306 + 1306 + Price paid for pump load + true + + + 160 + 1 + 3 + 160 + Sync Cond Price Paid + Sync Cond Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 1650 + 1650 + Price paid for synchronous condenser load + true + + + 161 + 1 + 3 + 161 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 162 + 1 + 3 + 162 + Spark Spread + Spark Spread + 33 + 33 + true + true + false + false + true + false + true + true + 1062 + 1062 + Difference between price received and cost of fuel used to generate. + true + + + 163 + 1 + 3 + 163 + Clean Spark Spread + Clean Spark Spread + 33 + 33 + true + true + false + false + true + false + true + true + 1064 + 1064 + Difference between price received and cost of fuel used to generate accounting for incremental cost of emissions. + true + + + 164 + 1 + 3 + 164 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue + true + + + 165 + 1 + 3 + 165 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 166 + 1 + 3 + 166 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 167 + 1 + 3 + 167 + Heat Market Revenue + Heat Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 256 + 256 + Revenue from heat markets + true + + + 168 + 1 + 3 + 168 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 169 + 1 + 3 + 169 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 170 + 1 + 3 + 170 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before mark-up models. + true + + + 171 + 1 + 3 + 171 + Shadow Pool Revenue + Shadow Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1146 + 1146 + Pool revenue before mark-up models. + true + + + 172 + 1 + 3 + 172 + Shadow Price Received + Shadow Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 400 + 400 + Price received before uplift or mark-up models. + true + + + 173 + 1 + 3 + 173 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 174 + 1 + 3 + 174 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint applied to this Generator. + true + + + 175 + 1 + 3 + 175 + Scheduled Generation + Scheduled Generation + 1 + 2 + true + true + false + false + false + false + true + true + 721 + 721 + Generation in the unconstrained schedule (uniform pricing only) + true + + + 176 + 1 + 3 + 176 + Scheduled Revenue + Scheduled Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 724 + 724 + Revenue from scheduled generation (uniform pricing only) + true + + + 177 + 1 + 3 + 177 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 178 + 1 + 3 + 178 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 179 + 1 + 3 + 179 + Scheduled Generation Cost + Scheduled Generation Cost + 14 + 34 + true + true + false + true + false + false + true + true + 722 + 722 + Cost of generation in the unconstrained schedule (uniform pricing only) + true + + + 180 + 1 + 3 + 180 + Scheduled Offer Cost + Scheduled Offer Cost + 14 + 34 + true + true + false + true + false + false + true + true + 723 + 723 + Area cleared under generator offer curve in unconstrained schedule (uniform pricing only) + true + + + 181 + 1 + 3 + 181 + Scheduled Start & Shutdown Cost + Scheduled Start & Shutdown Cost + 14 + 34 + true + true + false + false + false + false + true + true + 725 + 725 + Cost of unit start ups and shut downs in the unconstrained schedule + true + + + 182 + 1 + 3 + 182 + CHP Generation + CHP Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1049 + 1049 + Combined heat and power generation from heat mode + true + + + 183 + 1 + 3 + 183 + Condense Mode Generation + Condense Mode Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1050 + 1050 + Combined heat and power generation from condense mode + true + + + 184 + 1 + 3 + 184 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Total Heat Production from Generator (including Ancillary Boiler) + true + + + 185 + 1 + 3 + 185 + CHP Heat Production + CHP Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 1051 + 1051 + Heat production from CHP mode + true + + + 186 + 1 + 3 + 186 + Boiler Heat Production + Boiler Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 41 + 41 + Heat production from Ancillary Boiler + true + + + 187 + 1 + 3 + 187 + Heat Fuel Offtake + Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 254 + 254 + Total Fuel Offtake for Heat Production + true + + + 188 + 1 + 3 + 188 + CHP Power Fuel Offtake + CHP Power Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1052 + 1052 + Fuel Offtake proportion for Electricity production + true + + + 189 + 1 + 3 + 189 + CHP Heat Fuel Offtake + CHP Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1053 + 1053 + Fuel Offtake proportion for Heat production + true + + + 190 + 1 + 3 + 190 + CHP Heat Surrogate Fuel Offtake + CHP Heat Surrogate Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1054 + 1054 + Fuel Offtake proportion for Heat production (estimated as input user) + true + + + 191 + 1 + 3 + 191 + Boiler Fuel Offtake + Boiler Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1055 + 1055 + Fuel Offtake of Ancillary Boiler + true + + + 192 + 1 + 3 + 192 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Cost of heat production + true + + + 193 + 1 + 3 + 193 + Heat Revenue + Heat Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 267 + 267 + Revenue from heat production + true + + + 194 + 1 + 3 + 194 + Max Heat + Max Heat + 15 + 16 + true + true + false + true + true + false + true + true + 1514 + 1514 + Maximum heat allowed in storage + true + + + 195 + 1 + 3 + 195 + Max Heat Violation + Max Heat Violation + 15 + 16 + true + true + false + true + true + false + true + true + 2608 + 2608 + Amount above Generator Max Heat + true + + + 196 + 1 + 3 + 196 + Max Heat Violation Cost + Max Heat Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2609 + 2609 + Cost of Generator Max Heat violation + true + + + 197 + 1 + 3 + 197 + Min Heat + Min Heat + 15 + 16 + true + true + false + true + true + false + true + true + 1515 + 1515 + Minimum heat allowed in storage + true + + + 198 + 1 + 3 + 198 + Opening Heat + Opening Heat + 15 + 16 + true + true + false + false + true + false + true + true + 1513 + 1513 + Initial heat in the storage + true + + + 199 + 1 + 3 + 199 + Closing Heat + Closing Heat + 15 + 16 + true + true + false + false + true + false + true + true + 1517 + 1517 + Heat in storage at the end of the period + true + + + 200 + 1 + 3 + 200 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from storage + true + + + 201 + 1 + 3 + 201 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into storage + true + + + 202 + 1 + 3 + 202 + Net Heat Withdrawal + Net Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1542 + 1542 + Net of withdrawal and injection + true + + + 203 + 1 + 3 + 203 + Heat Loss + Heat Loss + 15 + 16 + true + true + false + true + true + false + true + true + 1516 + 1516 + Rate at which heat is lost from storage + true + + + 204 + 1 + 3 + 204 + Heat Withdrawal Cost + Heat Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1543 + 1543 + Cost of withdrawing heat from storage + true + + + 205 + 1 + 3 + 205 + Heat Injection Cost + Heat Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1544 + 1544 + Cost of injecting heat into storage + true + + + 206 + 1 + 3 + 206 + Heat Shadow Price + Heat Shadow Price + 61 + 61 + true + true + false + false + true + false + true + true + 1545 + 1545 + Shadow price of heat in storage + true + + + 207 + 1 + 3 + 207 + Water Offtake + Water Offtake + 64 + 64 + true + true + false + false + true + false + true + true + 1801 + 1801 + Water recycled through the generator (e.g. for cooling) + true + + + 208 + 1 + 3 + 208 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + false + true + false + true + true + 1803 + 1803 + Water consumed by the generator (e.g. evaporative cooling losses) + true + + + 209 + 1 + 3 + 209 + Water Cost + Water Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1809 + 1809 + Cost of water consumed + true + + + 210 + 1 + 3 + 210 + Water Price Paid + Water Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 1808 + 1808 + Price paid for water consumption + true + + + 211 + 1 + 3 + 211 + Energy Utilisation Factor + Energy Utilisation Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2088 + 2088 + Portion of available technical capacity dispatched + true + + + 212 + 1 + 3 + 212 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served at the Gas Node attached to the generator + true + + + 213 + 1 + 6 + 213 + Max Capacity + Max Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 414 + 414 + Maximum generating capacity of each unit + true + + + 214 + 1 + 6 + 214 + Min Capacity + Min Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 2804 + 2804 + Minimum generating capacity of each unit + true + + + 215 + 1 + 6 + 215 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 216 + 1 + 6 + 216 + Rating + Rating + 1 + 1 + true + true + false + false + true + false + true + true + 665 + 665 + Rated capacity of units + true + + + 217 + 1 + 6 + 217 + Raw Rating + Raw Rating + 1 + 1 + true + true + false + false + true + false + true + true + 1872 + 1872 + Rated output capacity of units without considering outages or degradation + true + + + 218 + 1 + 6 + 218 + Rated Capacity + Rated Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + true + + + 219 + 1 + 6 + 219 + Rating Violation + Rating Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2637 + 2637 + Violation of Rating constraint + true + + + 220 + 1 + 6 + 220 + Rating Violation Cost + Rating Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2638 + 2638 + Cost of Rating violation + true + + + 221 + 1 + 6 + 221 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the generator to capacity reserves + true + + + 222 + 1 + 6 + 222 + Net Firm Capacity + Net Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 2701 + 2701 + Firm Capacity net of maintenance and degradation + true + + + 223 + 1 + 6 + 223 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + false + true + false + false + 1012 + 1012 + Contribution to regional capacity reserves + true + + + 224 + 1 + 7 + 224 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 225 + 1 + 7 + 225 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity lost to maintenance + true + + + 226 + 1 + 7 + 226 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 227 + 1 + 7 + 227 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 228 + 1 + 7 + 228 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 229 + 1 + 7 + 229 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 230 + 1 + 7 + 230 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 231 + 1 + 7 + 231 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 232 + 1 + 7 + 232 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 233 + 1 + 7 + 233 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 234 + 1 + 7 + 234 + Outage Hours + Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2561 + 2561 + Number of hours on outage + true + + + 235 + 1 + 7 + 235 + Outage Rate + Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 2562 + 2562 + Proportion of installed capacity on outage + true + + + 236 + 1 + 7 + 236 + Operating or Forced Outage Hours + Operating or Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1821 + 1821 + Number of hours operating or on forced outage + false + + + 237 + 1 + 7 + 237 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 238 + 1 + 7 + 238 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for generation + true + + + 239 + 1 + 8 + 239 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 240 + 1 + 8 + 240 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 241 + 1 + 8 + 241 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 242 + 1 + 8 + 242 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 243 + 1 + 8 + 243 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 244 + 1 + 8 + 244 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the generator for capacity + true + + + 245 + 1 + 8 + 245 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 246 + 1 + 8 + 246 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 247 + 1 + 8 + 247 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 248 + 1 + 8 + 248 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 249 + 1 + 8 + 249 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 250 + 1 + 8 + 250 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 251 + 1 + 8 + 251 + Shadow Capacity Built + Shadow Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1823 + 1823 + Capacity built (Max Capacity x Units Built) before Competition models. + true + + + 252 + 1 + 8 + 252 + Age + Age + 8 + 8 + true + true + false + false + true + false + false + false + 1373 + 1373 + Average age of generating units + true + + + 253 + 1 + 8 + 253 + Recovery Price + Recovery Price + 33 + 33 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of generator expansion + true + + + 254 + 1 + 8 + 254 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by operating the generator + true + + + 255 + 1 + 8 + 255 + Establishment Cost + Establishment Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1160069392 + 1160069392 + Establishment cost incurred due to the installation of the generator + true + + + 256 + 1 + 12 + 256 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 257 + 1 + 12 + 257 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 258 + 1 + 12 + 258 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 259 + 5 + 3 + 1 + Transition Cost + Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1139 + 1139 + Cost required for a Generator transition + true + + + 260 + 5 + 3 + 2 + Transition Count + Transition Count + 0 + 0 + true + true + false + false + true + false + true + true + 1882 + 1882 + The number of transitions in the given period + true + + + 261 + 7 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 262 + 7 + 1 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the generator + true + + + 263 + 7 + 1 + 3 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 264 + 7 + 1 + 4 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 265 + 7 + 1 + 5 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used including transport charges + true + + + 266 + 7 + 1 + 6 + Transport Charge + Transport Charge + 29 + 29 + true + true + false + true + true + false + true + true + 800 + 800 + Transport charge (added to base fuel price) + true + + + 267 + 7 + 1 + 7 + Transport Cost + Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 996 + 996 + Cost of transporting fuel to the generator + true + + + 268 + 7 + 1 + 8 + Transition Cost + Transition Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1139 + 1139 + Cost of transitioning to or from this Fuel. + true + + + 269 + 7 + 1 + 9 + Marginal Heat Rate + Marginal Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal generation level + true + + + 270 + 7 + 1 + 10 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 271 + 7 + 1 + 11 + Hours Available + Hours Available + 6 + 6 + true + true + false + false + true + false + true + true + 275 + 275 + If the fuel is available for use by the generator + true + + + 272 + 7 + 1 + 12 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + MW offer in band + true + + + 273 + 7 + 1 + 13 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 274 + 7 + 1 + 14 + Cost Price + Cost Price + 33 + 33 + true + true + true + false + true + false + true + true + 119 + 119 + Marginal cost of energy in band + true + + + 275 + 7 + 1 + 15 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + MW cleared in band + true + + + 276 + 7 + 1 + 16 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours the Fuel is in use by the Generator + true + + + 277 + 8 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 278 + 8 + 1 + 2 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 279 + 8 + 1 + 3 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Total cost of fuel used including transport charges + true + + + 280 + 8 + 1 + 4 + Transport Cost + Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 996 + 996 + Cost of transporting fuel to the generator + true + + + 281 + 9 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the generator + true + + + 282 + 9 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the generator + true + + + 283 + 9 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the generator + true + + + 284 + 12 + 3 + 1 + Participation Factor + Participation Factor + 0 + 0 + true + true + false + false + false + false + false + true + 1840 + 1840 + Generation Participation Factor at the node + false + + + 285 + 16 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the generator + true + + + 286 + 16 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the generator + true + + + 287 + 16 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the generator + true + + + 288 + 16 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas field to the generator + true + + + 289 + 16 + 3 + 5 + Delivered Price + Delivered Price + 29 + 29 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas field to the generator + true + + + 290 + 17 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the generator + true + + + 291 + 17 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the generator + true + + + 292 + 17 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the generator + true + + + 293 + 17 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas plant to the generator + true + + + 294 + 17 + 3 + 5 + Delivered Price + Delivered Price + 29 + 29 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas plant to the generator + true + + + 295 + 18 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 296 + 20 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the generator + true + + + 297 + 20 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the generator + true + + + 298 + 20 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas storage to the generator + true + + + 299 + 20 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas storage to the generator + true + + + 300 + 20 + 3 + 5 + Delivered Price + Delivered Price + 29 + 29 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas storage to the generator + true + + + 301 + 21 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the generator + true + + + 302 + 21 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the generator + true + + + 303 + 21 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the generator + true + + + 304 + 21 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas contract to the generator + true + + + 305 + 21 + 3 + 5 + Delivered Price + Delivered Price + 29 + 29 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas contract to the generator + true + + + 306 + 22 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the generator + true + + + 307 + 22 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the generator + true + + + 308 + 22 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the generator + true + + + 309 + 24 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 310 + 24 + 3 + 2 + Dispatchable Capacity + Dispatchable Energy + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 2341 + On-line capacity + true + + + 311 + 24 + 3 + 3 + Undispatched Capacity + Undispatched Energy + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 2342 + Capacity on-line but undispatched + true + + + 312 + 24 + 3 + 4 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 313 + 24 + 3 + 5 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 314 + 24 + 3 + 6 + Heat Fuel Offtake + Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 254 + 254 + Fuel used for heat production + true + + + 315 + 24 + 3 + 7 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 316 + 24 + 3 + 8 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 317 + 24 + 3 + 9 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 318 + 24 + 3 + 10 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 319 + 24 + 3 + 11 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 320 + 24 + 3 + 12 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by a unit in pumping mode + true + + + 321 + 24 + 3 + 13 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 322 + 24 + 3 + 14 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 323 + 24 + 3 + 15 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 324 + 24 + 3 + 16 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 325 + 24 + 3 + 17 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 326 + 24 + 3 + 18 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 327 + 24 + 3 + 19 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Heat production + true + + + 328 + 24 + 3 + 20 + Boiler Heat Production + Boiler Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 41 + 41 + Heat production from auxiliary boiler + true + + + 329 + 24 + 3 + 21 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 330 + 24 + 3 + 22 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 331 + 24 + 3 + 23 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 332 + 24 + 3 + 24 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 333 + 24 + 3 + 25 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 334 + 24 + 3 + 26 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 335 + 24 + 3 + 27 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Pool cost + true + + + 336 + 24 + 3 + 28 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 337 + 24 + 3 + 29 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 338 + 24 + 3 + 30 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Cost of heat production + true + + + 339 + 24 + 3 + 31 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of generation + true + + + 340 + 24 + 3 + 32 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts + true + + + 341 + 24 + 3 + 33 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 342 + 24 + 3 + 34 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 343 + 24 + 3 + 35 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 344 + 24 + 3 + 36 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 345 + 24 + 3 + 37 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 346 + 24 + 3 + 38 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 347 + 24 + 3 + 39 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 348 + 24 + 3 + 40 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue + true + + + 349 + 24 + 3 + 41 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 350 + 24 + 3 + 42 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 351 + 24 + 3 + 43 + Heat Revenue + Heat Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 267 + 267 + Revenue from heat production + true + + + 352 + 24 + 3 + 44 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 353 + 24 + 3 + 45 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 354 + 24 + 3 + 46 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 355 + 24 + 3 + 47 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 356 + 24 + 3 + 48 + Scheduled Generation + Scheduled Generation + 1 + 2 + true + true + false + false + false + false + true + true + 721 + 721 + Generation in the unconstrained schedule (uniform pricing only) + true + + + 357 + 24 + 3 + 49 + Scheduled Revenue + Scheduled Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 724 + 724 + Revenue from scheduled generation (uniform pricing only) + true + + + 358 + 24 + 3 + 50 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 359 + 24 + 3 + 51 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 360 + 24 + 3 + 52 + Scheduled Generation Cost + Scheduled Generation Cost + 14 + 34 + true + true + false + true + false + false + true + true + 722 + 722 + Cost of generation in the unconstrained schedule (uniform pricing only) + true + + + 361 + 24 + 3 + 53 + Scheduled Offer Cost + Scheduled Offer Cost + 14 + 34 + true + true + false + true + false + false + true + true + 723 + 723 + Area cleared under generator offer curve in unconstrained schedule (uniform pricing only) + true + + + 362 + 24 + 3 + 54 + Scheduled Start & Shutdown Cost + Scheduled Start & Shutdown Cost + 14 + 34 + true + true + false + false + false + false + true + true + 725 + 725 + Cost of unit start ups and shut downs in the unconstrained schedule + true + + + 363 + 24 + 6 + 55 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 364 + 24 + 6 + 56 + Rated Capacity + Rated Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 663 + 663 + Rated capacity (Rating x Units) + true + + + 365 + 24 + 6 + 57 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 366 + 24 + 7 + 58 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + false + true + true + 392 + 392 + Capacity out on maintenance + true + + + 367 + 24 + 7 + 59 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 368 + 24 + 8 + 60 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 369 + 24 + 8 + 61 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 370 + 24 + 8 + 62 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 371 + 24 + 8 + 63 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments to the generator + true + + + 372 + 24 + 8 + 64 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 373 + 24 + 8 + 65 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of units retired + true + + + 374 + 25 + 3 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + false + false + 1437 + 1437 + Consumption of the Commodity by the Generator + true + + + 375 + 26 + 3 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + false + false + 624 + 624 + Production of the Commodity by the Generator + true + + + 376 + 29 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Capacity sold to market + true + + + 377 + 29 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from capacity market + true + + + 378 + 29 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 379 + 29 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 380 + 30 + 1 + 1 + Sales + Sales + 0 + 0 + true + true + false + false + true + false + true + true + 718 + 718 + Heat sold into the market + true + + + 381 + 30 + 1 + 2 + Revenue + Revenue + 0 + 0 + true + true + false + false + true + false + true + true + 696 + 696 + Revenue from heat sales + true + + + 382 + 40 + 3 + 1 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 383 + 40 + 3 + 2 + Tax + Tax + 88 + 88 + true + true + false + false + true + false + true + true + 785 + 785 + Fuel tax + true + + + 384 + 40 + 3 + 3 + Total Price + Total Price + 88 + 88 + true + true + false + false + true + false + true + true + 792 + 792 + Fuel price including tax + true + + + 385 + 40 + 3 + 4 + Time-weighted Price + Time-weighted Price + 88 + 88 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price of fuel. + true + + + 386 + 40 + 3 + 5 + Offtake + Offtake + 86 + 87 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 387 + 40 + 3 + 6 + Max Offtake + Max Offtake + 86 + 86 + false + true + false + true + true + false + true + true + 939 + 939 + Maximum fuel offtake per interval + true + + + 388 + 40 + 3 + 7 + Min Offtake + Min Offtake + 86 + 86 + false + true + false + true + true + false + true + true + 944 + 944 + Minimum fuel offtake per interval + true + + + 389 + 40 + 3 + 8 + Max Inventory + Max Inventory + 87 + 87 + true + true + false + true + true + false + true + true + 1589 + 1589 + Maximum fuel allowed in stockpile + true + + + 390 + 40 + 3 + 9 + Min Inventory + Min Inventory + 87 + 87 + true + true + false + true + true + false + true + true + 1590 + 1590 + Minimum fuel required in stockpile + true + + + 391 + 40 + 3 + 10 + Opening Inventory + Opening Inventory + 87 + 87 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial fuel in the stockpile + true + + + 392 + 40 + 3 + 11 + Closing Inventory + Closing Inventory + 87 + 87 + true + true + false + false + true + false + true + true + 1593 + 1593 + Final fuel in stockpile + true + + + 393 + 40 + 3 + 12 + Delivery + Delivery + 86 + 87 + true + true + false + true + true + false + true + true + 1592 + 1592 + Fuel delivered to the stockpile + true + + + 394 + 40 + 3 + 13 + Withdrawal + Withdrawal + 86 + 87 + true + true + false + true + true + false + true + true + 1391 + 1391 + Fuel withdrawn from the stockpile + true + + + 395 + 40 + 3 + 14 + Net Withdrawal + Net Withdrawal + 86 + 87 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net of withdrawal and delivery + true + + + 396 + 40 + 3 + 15 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used excluding taxation + true + + + 397 + 40 + 3 + 16 + Tax Cost + Tax Cost + 14 + 34 + true + true + false + true + true + false + true + true + 897 + 897 + Total taxation paid on fuel used + true + + + 398 + 40 + 3 + 17 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of deliveries to the stockpile + true + + + 399 + 40 + 3 + 18 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost applied to closing inventory in the stockpile + true + + + 400 + 40 + 3 + 19 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost applied to unused inventory capacity in the stockpile + true + + + 401 + 40 + 3 + 20 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawing fuel from stockpile + true + + + 402 + 40 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 403 + 40 + 3 + 22 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total cost of fuel used + true + + + 404 + 40 + 3 + 23 + Shadow Price + Shadow Price + 88 + 14 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of fuel (if defined as input, sets the internal price for fuel) + true + + + 405 + 40 + 3 + 24 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the fuel + true + + + 406 + 40 + 3 + 25 + Average Heat Rate + Average Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate of generation with the fuel + true + + + 407 + 40 + 3 + 26 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served at the Gas Node attached to the fuel + true + + + 408 + 40 + 6 + 27 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed generation capacity + true + + + 409 + 40 + 12 + 28 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 410 + 40 + 12 + 29 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 411 + 40 + 12 + 30 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 412 + 43 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the fuel + true + + + 413 + 43 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the fuel + true + + + 414 + 43 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the fuel + true + + + 415 + 44 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the fuel + true + + + 416 + 44 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the fuel + true + + + 417 + 44 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the fuel + true + + + 418 + 45 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the fuel + true + + + 419 + 45 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the fuel + true + + + 420 + 45 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the fuel + true + + + 421 + 47 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the fuel + true + + + 422 + 47 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the fuel + true + + + 423 + 47 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas storage to the fuel + true + + + 424 + 48 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the fuel + true + + + 425 + 48 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the fuel + true + + + 426 + 48 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the fuel + true + + + 427 + 49 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the fuel + true + + + 428 + 49 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the fuel + true + + + 429 + 49 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the fuel + true + + + 430 + 51 + 3 + 1 + Consumption + Consumption + 86 + 87 + true + true + false + true + true + false + true + true + 1437 + 1437 + Fuel consumption by the Facility + true + + + 431 + 53 + 1 + 1 + Sales + Sales + 86 + 87 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 432 + 53 + 1 + 2 + Purchases + Purchases + 86 + 87 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 433 + 53 + 1 + 3 + Net Sales + Net Sales + 86 + 87 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 434 + 53 + 1 + 4 + Net Purchases + Net Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 435 + 53 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 436 + 53 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 437 + 53 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 438 + 53 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 439 + 57 + 3 + 1 + Offtake + Offtake + 86 + 87 + true + true + true + true + true + false + true + true + 577 + 577 + Fuel offtake associated with the contract + true + + + 440 + 57 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of fuel used under contract + true + + + 441 + 57 + 3 + 3 + Price + Price + 88 + 88 + true + true + true + false + true + false + true + true + 612 + 612 + Contract price + true + + + 442 + 57 + 3 + 4 + Take-or-Pay Price + Take-or-Pay Price + 88 + 88 + true + true + false + false + true + false + true + true + 777 + 777 + Contract take-or-pay price + true + + + 443 + 57 + 3 + 5 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with fuel scarcity + true + + + 444 + 57 + 3 + 6 + Take-or-Pay Shadow Price + Take-or-Pay Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 783 + 783 + Shadow price associated with take-or-pay commitment + true + + + 445 + 57 + 3 + 7 + Take-or-Pay Violation + Take-or-Pay Violation + 86 + 87 + true + true + false + true + true + false + true + true + 1439 + 1439 + Violation of take-or-pay constraint + true + + + 446 + 57 + 3 + 8 + Take-or-Pay Violation Cost + Take-or-Pay Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1440 + 1440 + Cost of take-or-pay constraint violation + true + + + 447 + 57 + 3 + 9 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Total fixed operations and maintenance costs + true + + + 448 + 57 + 3 + 10 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 449 + 57 + 12 + 11 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 450 + 57 + 12 + 12 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 451 + 57 + 12 + 13 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 452 + 65 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 453 + 65 + 3 + 2 + Units Operating + Units Operating + 0 + 0 + true + false + false + false + true + false + true + true + 2049 + 2049 + Number of units operating + true + + + 454 + 65 + 3 + 3 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 455 + 65 + 3 + 4 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 456 + 65 + 3 + 5 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load drawn by the facility + true + + + 457 + 65 + 3 + 6 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of maximum load being used + true + + + 458 + 65 + 3 + 7 + Max Load + Max Load + 1 + 1 + true + true + false + false + true + false + true + true + 436 + 436 + Maximum load of each unit + true + + + 459 + 65 + 3 + 8 + Production Rate + Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 627 + 1743 + Rate of production/volume of production + true + + + 460 + 65 + 3 + 9 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of energy conversion process + true + + + 461 + 65 + 3 + 10 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 462 + 65 + 3 + 11 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 463 + 65 + 3 + 12 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 464 + 65 + 3 + 13 + Ramp + Ramp + 9 + 9 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 465 + 65 + 3 + 14 + Ramp Up + Ramp Up + 1 + 1 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 466 + 65 + 3 + 15 + Max Ramp Up + Max Ramp Up + 9 + 9 + true + true + false + false + true + false + true + true + 448 + 448 + Maximum ramp up rate that applies at the given load point + true + + + 467 + 65 + 3 + 16 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 468 + 65 + 3 + 17 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 469 + 65 + 3 + 18 + Ramp Up Price + Ramp Up Price + 32 + 32 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint. + true + + + 470 + 65 + 3 + 19 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation. + true + + + 471 + 65 + 3 + 20 + Ramp Up Violation + Ramp Up Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint. + true + + + 472 + 65 + 3 + 21 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations. + true + + + 473 + 65 + 3 + 22 + Ramp Down + Ramp Down + 1 + 1 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 474 + 65 + 3 + 23 + Max Ramp Down + Max Ramp Down + 9 + 9 + true + true + false + false + true + false + true + true + 447 + 447 + Maximum ramp down rate that applies at the given load point + true + + + 475 + 65 + 3 + 24 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 476 + 65 + 3 + 25 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 477 + 65 + 3 + 26 + Ramp Down Price + Ramp Down Price + 32 + 32 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint. + true + + + 478 + 65 + 3 + 27 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation. + true + + + 479 + 65 + 3 + 28 + Ramp Down Violation + Ramp Down Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint. + true + + + 480 + 65 + 3 + 29 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations. + true + + + 481 + 65 + 3 + 30 + Max Production Violation + Max Production Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] or [Max Capacity Factor] constraints + true + + + 482 + 65 + 3 + 31 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] or [Max Capacity Factor] constraint violations + true + + + 483 + 65 + 3 + 32 + Min Production Violation + Min Production Violation + 0 + 0 + true + true + false + false + true + false + true + true + 2309 + 2309 + Violation of [Min Production] or [Min Capacity Factor] constraints + true + + + 484 + 65 + 3 + 33 + Min Production Violation Cost + Min Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2311 + 2311 + Cost of [Min Production] or [Min Capacity Factor] constraint violations + true + + + 485 + 65 + 3 + 34 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints. + true + + + 486 + 65 + 3 + 35 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations. + true + + + 487 + 65 + 3 + 36 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost of electric load + true + + + 488 + 65 + 3 + 37 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 489 + 65 + 3 + 38 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 490 + 65 + 3 + 39 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of production + true + + + 491 + 65 + 3 + 40 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 492 + 65 + 3 + 41 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including VO&M, start and shutdown costs + true + + + 493 + 65 + 3 + 42 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including VO&M, start and shutdown costs, and ramp costs + true + + + 494 + 65 + 3 + 43 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 1803 + 1803 + Water consumed by the Power2X facility + true + + + 495 + 65 + 3 + 44 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 496 + 65 + 3 + 45 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 497 + 65 + 3 + 46 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 498 + 65 + 3 + 47 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 499 + 65 + 3 + 48 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 500 + 65 + 3 + 49 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 501 + 65 + 3 + 50 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by the electric load + true + + + 502 + 65 + 3 + 51 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Quantity cleared in band + true + + + 503 + 65 + 3 + 52 + Cleared Bid Price + Cleared Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 504 + 65 + 3 + 53 + Cleared Bid Cost + Cleared Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2551 + 2551 + Area cleared under the Power2X bid curve + true + + + 505 + 65 + 3 + 54 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 506 + 65 + 3 + 55 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 507 + 65 + 3 + 56 + Shadow Price + Shadow Price + 29 + 29 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of production + true + + + 508 + 65 + 3 + 57 + Recovery Price + Recovery Price + 33 + 33 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price + true + + + 509 + 65 + 3 + 58 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by operating the Power2X + true + + + 510 + 65 + 6 + 59 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Load x Units) + true + + + 511 + 65 + 6 + 60 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the Power2X object to capacity reserves + true + + + 512 + 65 + 6 + 61 + Net Firm Capacity + Net Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 2701 + 2701 + Firm Capacity net of maintenance and degradation + true + + + 513 + 65 + 7 + 62 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service due to maintenance + true + + + 514 + 65 + 7 + 63 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 515 + 65 + 7 + 64 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 516 + 65 + 7 + 65 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 517 + 65 + 7 + 66 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 518 + 65 + 7 + 67 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 519 + 65 + 7 + 68 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 520 + 65 + 8 + 69 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 521 + 65 + 8 + 70 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Load x Units Built) + true + + + 522 + 65 + 8 + 71 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 523 + 65 + 8 + 72 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 524 + 65 + 8 + 73 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 525 + 65 + 8 + 74 + Levelized Cost + Levelized Cost + 29 + 29 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of the commodity produced + true + + + 526 + 65 + 12 + 75 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 527 + 65 + 12 + 76 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 528 + 65 + 12 + 77 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 529 + 81 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of BESS units installed + true + + + 530 + 81 + 3 + 2 + Energy + Energy + 3 + 3 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored in the BESS + true + + + 531 + 81 + 3 + 3 + SoC + SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1660 + 1660 + State of Charge + true + + + 532 + 81 + 3 + 4 + Available SoC + Available SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1661 + 1661 + SoC less minimum SoC + true + + + 533 + 81 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + generation (battery discharge) + true + + + 534 + 81 + 3 + 6 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + load (battery recharge) + true + + + 535 + 81 + 3 + 7 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 536 + 81 + 3 + 8 + Charging + Charging + 1 + 2 + true + true + false + false + true + false + true + true + 2113 + 2113 + Charge rate/energy + true + + + 537 + 81 + 3 + 9 + Discharging + Discharging + 1 + 2 + true + true + false + false + true + false + true + true + 2114 + 2114 + Discharge rate/energy + true + + + 538 + 81 + 3 + 10 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Total recharge and discharge losses + true + + + 539 + 81 + 3 + 11 + Self Discharge Losses + Self Discharge Losses + 25 + 24 + true + true + false + false + true + false + true + true + 2711 + 2711 + Losses due to self-discharge + true + + + 540 + 81 + 3 + 12 + Total Losses + Total Losses + 1 + 2 + true + true + false + false + true + false + true + true + 2712 + 2712 + Sum of self discharge, recharge and discharge losses. + true + + + 541 + 81 + 3 + 13 + Hours Charging + Hours Charging + 6 + 6 + true + true + false + false + true + false + true + true + 1662 + 1662 + Number of hours in charging state + true + + + 542 + 81 + 3 + 14 + Hours Discharging + Hours Discharging + 6 + 6 + true + true + false + false + true + false + true + true + 1663 + 1663 + Number of hours in discharging state + true + + + 543 + 81 + 3 + 15 + Hours Idle + Hours Idle + 6 + 6 + true + true + false + false + true + false + true + true + 1664 + 1664 + Number of hours in idle state + true + + + 544 + 81 + 3 + 16 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours battery has been operating + true + + + 545 + 81 + 3 + 17 + Units Charging + Units Charging + 0 + 0 + true + true + false + false + true + false + true + true + 3039 + 3039 + Number of units charging + true + + + 546 + 81 + 3 + 18 + Units Discharging + Units Discharging + 0 + 0 + true + true + false + false + true + false + true + true + 3040 + 3040 + Number of units discharging + true + + + 547 + 81 + 3 + 19 + Charge Units Started + Charge Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 3041 + 3041 + Number of charge units started + true + + + 548 + 81 + 3 + 20 + Charge Units Shutdown + Charge Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 3042 + 3042 + Number of charge units shutdown + true + + + 549 + 81 + 3 + 21 + Discharge Units Started + Discharge Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 3043 + 3043 + Number of discharge units started + true + + + 550 + 81 + 3 + 22 + Discharge Units Shutdown + Discharge Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 3044 + 3044 + Number of discharge units shutdown + true + + + 551 + 81 + 3 + 23 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 552 + 81 + 3 + 24 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 553 + 81 + 3 + 25 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 554 + 81 + 3 + 26 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 555 + 81 + 3 + 27 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 556 + 81 + 3 + 28 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 557 + 81 + 3 + 29 + Auxiliary Consumption + Auxiliary Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 2974 + 2974 + Total auxiliary load (fixed, base and incr) + true + + + 558 + 81 + 3 + 30 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 559 + 81 + 3 + 31 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 560 + 81 + 3 + 32 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operations and maintenance cost + true + + + 561 + 81 + 3 + 33 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 562 + 81 + 3 + 34 + Capacity Factor + Capacity Factor + 12 + 12 + false + true + false + false + true + false + true + true + 58 + 58 + Proportion of battery discharge capacity utilized + true + + + 563 + 81 + 3 + 35 + Load Factor + Load Factor + 12 + 12 + false + true + false + false + true + false + true + true + 876 + 876 + Proportion of battery recharge load utilized + true + + + 564 + 81 + 3 + 36 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 565 + 81 + 3 + 37 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by load + true + + + 566 + 81 + 3 + 38 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Generation revenue + true + + + 567 + 81 + 3 + 39 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Load cost + true + + + 568 + 81 + 3 + 40 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 569 + 81 + 3 + 41 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 570 + 81 + 3 + 42 + Offer Base + Offer Base + 1 + 2 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for incr/decr style offer + true + + + 571 + 81 + 3 + 43 + Offer No Load Cost + Offer No Load Cost + 48 + 48 + true + false + false + false + true + false + true + true + 568 + 568 + Fixed dispatch cost component of generator offer. + true + + + 572 + 81 + 3 + 44 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band + true + + + 573 + 81 + 3 + 45 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 574 + 81 + 3 + 46 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 575 + 81 + 3 + 47 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 576 + 81 + 3 + 48 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 577 + 81 + 3 + 49 + Bid Base + Bid Base + 1 + 2 + true + true + false + false + true + false + true + true + 2547 + 2547 + Base load for balancing bid + true + + + 578 + 81 + 3 + 50 + Bid Quantity + Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 34 + 34 + Load bid quantity in band + true + + + 579 + 81 + 3 + 51 + Bid Price + Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 33 + 33 + Bid price of load in band + true + + + 580 + 81 + 3 + 52 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Quantity cleared in load bid band + true + + + 581 + 81 + 3 + 53 + Cleared Bid Price + Cleared Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal load bid band + true + + + 582 + 81 + 3 + 54 + Cleared Bid Cost + Cleared Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2551 + 2551 + Area cleared under the Battery bid curve + true + + + 583 + 81 + 3 + 55 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 584 + 81 + 3 + 56 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit + true + + + 585 + 81 + 3 + 57 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Marginal value of energy held in storage + true + + + 586 + 81 + 3 + 58 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before mark-up models + true + + + 587 + 81 + 3 + 59 + Shadow Load + Shadow Load + 1 + 2 + true + true + false + false + true + false + true + true + 1142 + 1142 + Load before mark-up models + true + + + 588 + 81 + 3 + 60 + Shadow Generation Revenue + Shadow Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2690 + 2690 + Generation revenue before mark-up models + true + + + 589 + 81 + 3 + 61 + Shadow Cost to Load + Shadow Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 1141 + 1141 + Cost to load before mark-up models + true + + + 590 + 81 + 3 + 62 + Shadow Price Received + Shadow Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 400 + 400 + Price received before uplift or mark-up models + true + + + 591 + 81 + 3 + 63 + Shadow Price Paid + Shadow Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 2691 + 2691 + Price paid before uplift or mark-up models + true + + + 592 + 81 + 3 + 64 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 593 + 81 + 3 + 65 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint applied to this Battery + true + + + 594 + 81 + 3 + 66 + Scheduled Generation + Scheduled Generation + 1 + 2 + true + true + false + false + false + false + true + true + 721 + 721 + Generation in the unconstrained schedule (uniform pricing only) + true + + + 595 + 81 + 3 + 67 + Scheduled Revenue + Scheduled Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 724 + 724 + Revenue from scheduled generation (uniform pricing only) + true + + + 596 + 81 + 3 + 68 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 597 + 81 + 3 + 69 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 598 + 81 + 3 + 70 + Undispatched Generation Capacity + Undispatched Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2855 + 2855 + Generation (discharging) capacity undispatched + true + + + 599 + 81 + 3 + 71 + Undispatched Load Capacity + Undispatched Load Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2856 + 2856 + Charging (load) capacity undispatched + true + + + 600 + 81 + 3 + 72 + Unused Generation Capacity + Unused Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2857 + 2857 + Unused generation capacity (Max Power x Units - Generation) + true + + + 601 + 81 + 3 + 73 + Unused Load Capacity + Unused Load Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2858 + 2858 + Unused load capacity (Max Load x Units - Load) + true + + + 602 + 81 + 3 + 74 + Energy Target Violation + Energy Target Violation + 3 + 3 + true + true + false + false + true + false + true + true + 2964 + 2964 + Violation of the [Energy Target] constraint. + true + + + 603 + 81 + 3 + 75 + Energy Target Violation Cost + Energy Target Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2965 + 2965 + Cost of [Energy Target] constraint violations. + true + + + 604 + 81 + 3 + 76 + Non-physical Charge Adjustments + Non-physical Charge Adjustments + 25 + 24 + true + true + false + false + true + false + true + true + 2872 + 2872 + Non-physical charge adjustments required to maintain feasible states of charge. + true + + + 605 + 81 + 3 + 77 + Non-physical Discharge Adjustments + Non-physical Discharge Adjustments + 25 + 24 + true + true + false + false + true + false + true + true + 2873 + 2873 + Non-physical discharge adjustments required to maintain feasible states of charge. + true + + + 606 + 81 + 6 + 78 + Installed Capacity + Installed Capacity + 3 + 3 + true + true + false + false + true + true + true + true + 320 + 320 + Installed battery capacity + true + + + 607 + 81 + 6 + 79 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Installed generation capacity + true + + + 608 + 81 + 6 + 80 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Contribution of the battery generation to capacity reserves + true + + + 609 + 81 + 6 + 81 + Net Generation Firm Capacity + Net Generation Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 3146 + 3146 + Firm Capacity net of maintenance and degradation + true + + + 610 + 81 + 7 + 82 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 611 + 81 + 7 + 83 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 612 + 81 + 7 + 84 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 613 + 81 + 7 + 85 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 614 + 81 + 7 + 86 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 615 + 81 + 7 + 87 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 616 + 81 + 7 + 88 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Power lost to forced outage + true + + + 617 + 81 + 7 + 89 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 618 + 81 + 7 + 90 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 619 + 81 + 8 + 91 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of BESS units built in this year + true + + + 620 + 81 + 8 + 92 + Capacity Built + Capacity Built + 3 + 3 + true + true + false + false + true + false + false + false + 54 + 54 + Battery capacity built + true + + + 621 + 81 + 8 + 93 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 622 + 81 + 8 + 94 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a BESS unit + true + + + 623 + 81 + 8 + 95 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 624 + 81 + 8 + 96 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed, variable and charging costs + true + + + 625 + 81 + 8 + 97 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of storage + true + + + 626 + 81 + 8 + 98 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of BESS units retired in this year + true + + + 627 + 81 + 8 + 99 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a BESS unit + true + + + 628 + 81 + 8 + 100 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 629 + 81 + 8 + 101 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the battery for capacity + true + + + 630 + 81 + 8 + 102 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 631 + 81 + 8 + 103 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by operating the Battery + true + + + 632 + 81 + 8 + 104 + Recovery Price + Recovery Price + 33 + 33 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of Battery expansion + true + + + 633 + 81 + 12 + 105 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 634 + 81 + 12 + 106 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 635 + 81 + 12 + 107 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 636 + 85 + 3 + 1 + Distribution Factor + Distribution Factor + 0 + 0 + true + true + false + false + false + false + false + true + 2713 + 2713 + Proportion of battery charge and discharge at the node + false + + + 637 + 87 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + generation (battery discharge) + true + + + 638 + 87 + 3 + 2 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + load (battery recharge) + true + + + 639 + 87 + 3 + 3 + Energy + Energy + 3 + 3 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored in the BESS + true + + + 640 + 87 + 3 + 4 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 641 + 87 + 3 + 5 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Total recharge and discharge losses + true + + + 642 + 87 + 3 + 6 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 643 + 87 + 3 + 7 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 644 + 87 + 3 + 8 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 645 + 87 + 3 + 9 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 646 + 87 + 3 + 10 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 647 + 87 + 3 + 11 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 648 + 87 + 3 + 12 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 649 + 87 + 3 + 13 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operations and maintenance cost + true + + + 650 + 87 + 3 + 14 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 651 + 87 + 3 + 15 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 652 + 87 + 3 + 16 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Generation revenue + true + + + 653 + 87 + 3 + 17 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Load cost + true + + + 654 + 87 + 3 + 18 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 655 + 87 + 3 + 19 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 656 + 87 + 3 + 20 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 657 + 87 + 6 + 21 + Installed Capacity + Installed Capacity + 3 + 3 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 658 + 87 + 6 + 22 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Installed generation capacity + true + + + 659 + 87 + 6 + 23 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Contribution of the battery generation to capacity reserves + true + + + 660 + 87 + 8 + 24 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of BESS units built in this year + true + + + 661 + 87 + 8 + 25 + Capacity Built + Capacity Built + 3 + 3 + true + true + false + false + true + false + false + false + 54 + 54 + Battery capacity built + true + + + 662 + 87 + 8 + 26 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 663 + 87 + 8 + 27 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a BESS unit + true + + + 664 + 87 + 8 + 28 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 665 + 87 + 8 + 29 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of BESS units retired in this year + true + + + 666 + 87 + 8 + 30 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a BESS unit + true + + + 667 + 91 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Capacity sold to market + true + + + 668 + 91 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from capacity market + true + + + 669 + 91 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 670 + 91 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 671 + 99 + 3 + 1 + Max Volume + Max Volume + 24 + 24 + true + true + false + false + true + false + true + true + 466 + 466 + Maximum volume + true + + + 672 + 99 + 3 + 2 + Min Volume + Min Volume + 24 + 24 + true + true + false + false + true + false + true + true + 510 + 510 + Minimum volume + true + + + 673 + 99 + 3 + 3 + Initial Volume + Initial Volume + 24 + 24 + true + true + false + false + true + false + true + true + 318 + 318 + Storage volume at the start of the period + true + + + 674 + 99 + 3 + 4 + End Volume + End Volume + 24 + 24 + true + true + false + false + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 675 + 99 + 3 + 5 + Initial Level + Initial Level + 23 + 23 + true + true + false + false + true + false + true + true + 316 + 316 + Initial level + true + + + 676 + 99 + 3 + 6 + End Level + End Level + 23 + 23 + true + true + false + false + true + false + true + true + 169 + 169 + Storage level at the end of the period + true + + + 677 + 99 + 3 + 7 + Hours Full + Hours Full + 6 + 6 + true + true + false + false + true + false + true + true + 1710 + 1710 + Number of hours the storage is full + true + + + 678 + 99 + 3 + 8 + Working Volume + Working Volume + 24 + 24 + true + true + false + true + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 679 + 99 + 3 + 9 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization on end volume + true + + + 680 + 99 + 3 + 10 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 681 + 99 + 3 + 11 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 682 + 99 + 3 + 12 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 683 + 99 + 3 + 13 + Inflow + Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 312 + 312 + Inflow + true + + + 684 + 99 + 3 + 14 + Release + Release + 25 + 24 + true + true + false + false + true + false + true + true + 676 + 676 + Total releases from storage + true + + + 685 + 99 + 3 + 15 + Natural Inflow + Natural Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 530 + 530 + Rate of natural inflow + true + + + 686 + 99 + 3 + 16 + Generator Release + Generator Release + 25 + 24 + true + true + false + false + true + false + true + true + 250 + 250 + Release for generation + true + + + 687 + 99 + 3 + 17 + Downstream Release + Downstream Release + 25 + 24 + true + true + false + false + true + false + true + true + 154 + 154 + Release downstream via waterways + true + + + 688 + 99 + 3 + 18 + Spill + Spill + 25 + 24 + true + true + false + false + true + false + true + true + 758 + 758 + Spill to "the sea" + true + + + 689 + 99 + 3 + 19 + Spill Cost + Spill Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2655 + 2655 + Spill Penalty multiplied by the Spill amount + true + + + 690 + 99 + 3 + 20 + Loss + Loss + 25 + 24 + true + true + false + false + true + false + true + true + 372 + 372 + Loss due to evaporation, leakage, etc + true + + + 691 + 99 + 3 + 21 + Inflow Rate + Inflow Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1875 + 1875 + Inflow + true + + + 692 + 99 + 3 + 22 + Release Rate + Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1876 + 1876 + Total releases from storage + true + + + 693 + 99 + 3 + 23 + Natural Inflow Rate + Natural Inflow Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1877 + 1877 + Rate of natural inflow + true + + + 694 + 99 + 3 + 24 + Generator Release Rate + Generator Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1878 + 1878 + Release for generation + true + + + 695 + 99 + 3 + 25 + Downstream Release Rate + Downstream Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1879 + 1879 + Release downstream via waterways + true + + + 696 + 99 + 3 + 26 + Spill Rate + Spill Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1880 + 1880 + Spill to "the sea" + true + + + 697 + 99 + 3 + 27 + Downstream Efficiency + Downstream Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 153 + 153 + Aggregate efficiency of generation down the river chain + true + + + 698 + 99 + 3 + 28 + Max Potential Energy + Max Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2615 + 2615 + Potential energy of storage at max volume + true + + + 699 + 99 + 3 + 29 + Min Potential Energy + Min Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2616 + 2616 + Potential energy of storage at min volume + true + + + 700 + 99 + 3 + 30 + Initial Potential Energy + Initial Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2617 + 2617 + Potential energy of initial volume + true + + + 701 + 99 + 3 + 31 + End Potential Energy + End Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 1659 + 1659 + Potential energy of end volume + true + + + 702 + 99 + 3 + 32 + Inflow Energy + Inflow Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2583 + 2583 + Potential energy of inflows + true + + + 703 + 99 + 3 + 33 + Release Energy + Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2584 + 2584 + Potential energy of releases + true + + + 704 + 99 + 3 + 34 + Natural Inflow Energy + Natural Inflow Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2585 + 2585 + Potential energy of natural inflows + true + + + 705 + 99 + 3 + 35 + Generator Release Energy + Generator Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2586 + 2586 + Potential energy of generator releases + true + + + 706 + 99 + 3 + 36 + Downstream Release Energy + Downstream Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2587 + 2587 + Potential energy of downstream releases + true + + + 707 + 99 + 3 + 37 + Spill Energy + Spill Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2588 + 2588 + Potential energy of spill to "the sea" + true + + + 708 + 99 + 3 + 38 + Shadow Price + Shadow Price + 46 + 46 + true + true + false + false + true + false + true + true + 742 + 742 + Marginal value of water held in storage + true + + + 709 + 99 + 3 + 39 + Marginal Value + Marginal Value + 33 + 33 + true + true + false + false + true + false + true + true + 406 + 406 + Marginal energy value of water held in storage + true + + + 710 + 99 + 3 + 40 + Marginal Cost + Marginal Cost + 33 + 33 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal energy cost of water released from the storage + true + + + 711 + 99 + 3 + 41 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation from exporting generators + true + + + 712 + 99 + 3 + 42 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by exporting generators running in pumping mode + true + + + 713 + 99 + 3 + 43 + Efficiency + Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of generation + true + + + 714 + 99 + 3 + 44 + Max Volume Violation + Max Volume Violation + 3 + 2 + true + true + false + false + true + false + true + true + 2718 + 2718 + Violation of the Max Volume constraint + true + + + 715 + 99 + 3 + 45 + Max Volume Violation Cost + Max Volume Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2719 + 2719 + Cost of Max Volume constraint violations + true + + + 716 + 99 + 3 + 46 + Min Volume Violation + Min Volume Violation + 3 + 2 + true + true + false + false + true + false + true + true + 2720 + 2720 + Violation of the Min Volume constraint + true + + + 717 + 99 + 3 + 47 + Min Volume Violation Cost + Min Volume Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2721 + 2721 + Cost of Min Volume constraint violations + true + + + 718 + 99 + 3 + 48 + Min Release Violation + Min Release Violation + 25 + 24 + true + true + false + false + true + false + true + true + 1949 + 1949 + Violation of the [Min Release] constraint. + true + + + 719 + 99 + 3 + 49 + Min Release Violation Hours + Min Release Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1950 + 1950 + Number of hours the [Min Release] constraint is violated. + true + + + 720 + 99 + 3 + 50 + Min Release Violation Cost + Min Release Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1951 + 1951 + Cost of [Min Release] constraint violations. + true + + + 721 + 99 + 3 + 51 + Max Release Violation + Max Release Violation + 25 + 24 + true + true + false + false + true + false + true + true + 1952 + 1952 + Violation of the [Max Release] and [Max Generator Release] constraint. + true + + + 722 + 99 + 3 + 52 + Max Release Violation Hours + Max Release Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1953 + 1953 + Number of hours the [Max Release] or [Max Generator Release] constraint is violated. + true + + + 723 + 99 + 3 + 53 + Max Release Violation Cost + Max Release Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1954 + 1954 + Cost of [Max Release] and [Max Generator Release] constraint violations. + true + + + 724 + 99 + 3 + 54 + Ramp + Ramp + 24 + 24 + true + true + false + false + true + false + true + true + 655 + 655 + Change in storage end volume. + true + + + 725 + 99 + 3 + 55 + Ramp Price + Ramp Price + 46 + 46 + true + true + false + false + true + false + true + true + 659 + 659 + Incremental value of additional ramping capability. + true + + + 726 + 99 + 3 + 56 + Ramp Violation + Ramp Violation + 24 + 24 + true + true + false + false + true + false + true + true + 661 + 661 + Violation of the [Max Ramp] constraint. + true + + + 727 + 99 + 3 + 57 + Ramp Violation Hours + Ramp Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1065 + 1065 + Number of hours the [Max Ramp] constraint is violated. + true + + + 728 + 99 + 3 + 58 + Ramp Violation Cost + Ramp Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1066 + 1066 + Cost of [Max Ramp] constraint violations. + true + + + 729 + 99 + 3 + 59 + Target Violation + Target Violation + 24 + 24 + true + true + false + false + true + false + true + true + 1188 + 1188 + Violation of the [Target] constraint. + true + + + 730 + 99 + 3 + 60 + Target Violation Cost + Target Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1189 + 1189 + Cost of [Target] constraint violations. + true + + + 731 + 99 + 3 + 61 + Non-physical Inflow + Non-physical Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 1067 + 1067 + Non-physical inflow required to maintain feasible storage volumes. + true + + + 732 + 99 + 3 + 62 + Non-physical Spill + Non-physical Spill + 25 + 24 + true + true + false + false + true + false + true + true + 1068 + 1068 + Non-physical spill required to maintain feasible storage volumes. + true + + + 733 + 99 + 8 + 63 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 734 + 99 + 8 + 64 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 735 + 99 + 8 + 65 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 736 + 99 + 8 + 66 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 737 + 99 + 8 + 67 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 738 + 99 + 8 + 68 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 739 + 99 + 8 + 69 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 740 + 99 + 8 + 70 + Net New Capacity + Net New Capacity + 86 + 86 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 741 + 99 + 8 + 71 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 742 + 99 + 12 + 72 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 743 + 99 + 12 + 73 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 744 + 99 + 12 + 74 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 745 + 107 + 3 + 1 + Flow + Flow + 25 + 24 + true + true + false + false + true + false + true + true + 205 + 205 + Flow on waterway + true + + + 746 + 107 + 3 + 2 + Max Flow + Max Flow + 25 + 25 + true + true + false + false + true + false + true + true + 429 + 429 + Maximum flow limit + true + + + 747 + 107 + 3 + 3 + Min Flow + Min Flow + 25 + 25 + true + true + false + false + true + false + true + true + 481 + 481 + Minimum flow limit + true + + + 748 + 107 + 3 + 4 + Hours Flowing + Hours Flowing + 6 + 6 + true + true + false + false + true + false + true + true + 1711 + 1711 + Number of hours the waterway is flowing + true + + + 749 + 107 + 3 + 5 + Shadow Price + Shadow Price + 54 + 54 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price on max flow constraint + true + + + 750 + 107 + 3 + 6 + Max Flow Violation Hours + Max Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1069 + 1069 + Number of hours the [Max Flow] limit is violated. + true + + + 751 + 107 + 3 + 7 + Max Flow Violation + Max Flow Violation + 25 + 24 + true + true + false + false + true + false + true + true + 430 + 430 + Violation of max flow constraint + true + + + 752 + 107 + 3 + 8 + Max Flow Violation Cost + Max Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1073 + 1073 + Cost of [Max Flow] violations. + true + + + 753 + 107 + 3 + 9 + Min Flow Violation Hours + Min Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1071 + 1071 + Number of hours the [Min Flow] limit is violated. + true + + + 754 + 107 + 3 + 10 + Min Flow Violation + Min Flow Violation + 25 + 24 + true + true + false + false + true + false + true + true + 482 + 482 + Violation of min flow constraint + true + + + 755 + 107 + 3 + 11 + Min Flow Violation Cost + Min Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1074 + 1074 + Cost of [Min Flow] violations. + true + + + 756 + 107 + 3 + 12 + Ramp + Ramp + 25 + 24 + true + true + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 757 + 107 + 3 + 13 + Max Ramp + Max Ramp + 25 + 25 + true + false + false + false + true + false + true + true + 446 + 446 + Maximum change in flow (MW or cumecs per hour) + true + + + 758 + 107 + 3 + 14 + Ramp Violation Hours + Ramp Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1065 + 1065 + Number of hours the [Max Ramp] constraint is violated. + true + + + 759 + 107 + 3 + 15 + Ramp Violation + Ramp Violation + 25 + 24 + true + true + false + false + true + false + true + true + 661 + 661 + Violation of flow ramp constraint + true + + + 760 + 107 + 3 + 16 + Ramp Violation Cost + Ramp Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1066 + 1066 + Cost of [Max Ramp] constraint violations. + true + + + 761 + 107 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 762 + 107 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 763 + 107 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 764 + 114 + 3 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission + true + + + 765 + 114 + 3 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 766 + 114 + 3 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 767 + 114 + 3 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 768 + 114 + 3 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 769 + 114 + 3 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 770 + 114 + 3 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 771 + 114 + 3 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 772 + 114 + 3 + 9 + Price + Price + 30 + 30 + true + true + false + false + true + false + true + true + 612 + 612 + Price charged per unit of emission (accounting only) + true + + + 773 + 114 + 3 + 10 + Shadow Price + Shadow Price + 30 + 30 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price (marginal cost) of emissions + true + + + 774 + 114 + 3 + 11 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of emissions charged at "Price" (if defined, otherwise at "Shadow Price") + true + + + 775 + 114 + 3 + 12 + Max Production Violation + Max Production Violation + 19 + 20 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] constraints. + true + + + 776 + 114 + 3 + 13 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] violations. + true + + + 777 + 114 + 12 + 14 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 778 + 114 + 12 + 15 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 779 + 114 + 12 + 16 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 780 + 117 + 1 + 1 + Generation Production + Generation Production + 19 + 20 + true + true + false + true + true + false + true + true + 1606 + 1606 + Net production of the emission from generation + true + + + 781 + 117 + 1 + 2 + Unit Start Production + Unit Start Production + 19 + 20 + true + true + false + true + true + false + true + true + 1607 + 1607 + Net production of the emission from unit start up + true + + + 782 + 117 + 1 + 3 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 783 + 117 + 1 + 4 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 784 + 117 + 1 + 5 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 785 + 117 + 1 + 6 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Incremental cost of emissions abatement + true + + + 786 + 117 + 1 + 7 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 787 + 117 + 1 + 8 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 788 + 117 + 1 + 9 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 789 + 117 + 1 + 10 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 790 + 117 + 1 + 11 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 791 + 117 + 1 + 12 + Incremental Production Rate + Incremental Production Rate + 40 + 40 + true + true + false + false + true + false + true + true + 1626 + 1626 + Incremental rate of emission production by the generator + true + + + 792 + 117 + 1 + 13 + Incremental Cost + Incremental Cost + 33 + 33 + true + true + false + false + true + false + true + true + 918 + 918 + Incremental cost of the emission to the generator + true + + + 793 + 117 + 1 + 14 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Effective SRMC of generation including emission shadow price + true + + + 794 + 118 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 795 + 118 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 796 + 118 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 797 + 118 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 798 + 118 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 799 + 118 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 800 + 118 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 801 + 118 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 802 + 118 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 803 + 120 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 804 + 120 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Gross production of the emission + true + + + 805 + 120 + 1 + 3 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 806 + 120 + 1 + 4 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Emission abatement cost + true + + + 807 + 120 + 1 + 5 + Field Production Cost + Field Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2776 + 2776 + Gas Field Production emission cost + true + + + 808 + 122 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 809 + 122 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Gross production of the emission + true + + + 810 + 122 + 1 + 3 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 811 + 122 + 1 + 4 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 812 + 126 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission + true + + + 813 + 126 + 1 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 814 + 127 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission by the Vehicle + true + + + 815 + 129 + 3 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission by the Facility + true + + + 816 + 129 + 3 + 2 + Removal + Removal + 19 + 20 + true + true + false + true + true + false + true + true + 1441 + 1441 + Emissions removed by the Facility + true + + + 817 + 130 + 1 + 1 + Sales + Sales + 19 + 20 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 818 + 130 + 1 + 2 + Purchases + Purchases + 19 + 20 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 819 + 130 + 1 + 3 + Net Sales + Net Sales + 19 + 20 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 820 + 130 + 1 + 4 + Net Purchases + Net Purchases + 19 + 20 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 821 + 130 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 822 + 130 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 823 + 130 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 824 + 130 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 825 + 133 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Flag if emission abatement technology is installed + true + + + 826 + 133 + 3 + 2 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 827 + 133 + 3 + 3 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Emission input to the abatement technology + true + + + 828 + 133 + 3 + 4 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 829 + 133 + 3 + 5 + Net Emissions + Net Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1433 + 1433 + Emissions net of abatement + true + + + 830 + 133 + 3 + 6 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of emission abatement + true + + + 831 + 133 + 3 + 7 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost per unit of emission removed + true + + + 832 + 133 + 3 + 8 + Running Cost + Running Cost + 14 + 34 + true + true + false + true + true + false + true + true + 978 + 978 + Fixed cost of running emission abatement when generators are on-line + true + + + 833 + 133 + 3 + 9 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 834 + 133 + 3 + 10 + Consumables Cost + Consumables Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1434 + 1434 + Total cost of consumables + true + + + 835 + 133 + 3 + 11 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Total fixed operations and maintenance costs + true + + + 836 + 133 + 3 + 12 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed, semi-fixed and variable costs + true + + + 837 + 133 + 3 + 13 + Abatement Value + Abatement Value + 14 + 34 + true + true + false + true + true + false + true + true + 1435 + 1435 + Value of emissions abated + true + + + 838 + 133 + 3 + 14 + Abatement Net Cost + Abatement Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1436 + 1436 + Net of [Total Cost] and [Abatement Value] + true + + + 839 + 133 + 7 + 15 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Flag if emission abatement technology is out-of-service + true + + + 840 + 133 + 12 + 16 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 841 + 133 + 12 + 17 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 842 + 133 + 12 + 18 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 843 + 137 + 3 + 1 + Consumption + Consumption + 17 + 18 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumable used + true + + + 844 + 137 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of consumable used + true + + + 845 + 138 + 3 + 1 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Emission input to the abatement technology for this emission + true + + + 846 + 138 + 3 + 2 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated for this emission + true + + + 847 + 138 + 3 + 3 + Net Emissions + Net Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1433 + 1433 + Emissions net of abatement for this emission + true + + + 848 + 138 + 3 + 4 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of emission abatement for this emission + true + + + 849 + 138 + 3 + 5 + Abatement Value + Abatement Value + 14 + 34 + true + true + false + true + true + false + true + true + 1435 + 1435 + Value of emissions abated for this emission + true + + + 850 + 146 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation on physical contract + true + + + 851 + 146 + 3 + 2 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load on physical contract + true + + + 852 + 146 + 3 + 3 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 853 + 146 + 3 + 4 + Capacity Factor + Capacity Factor + 12 + 12 + false + true + false + false + true + false + true + true + 58 + 58 + Proportion of generation capacity utilized + true + + + 854 + 146 + 3 + 5 + Load Factor + Load Factor + 12 + 12 + false + true + false + false + true + false + true + true + 876 + 876 + Proportion of load obligation serviced + true + + + 855 + 146 + 3 + 6 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 856 + 146 + 3 + 7 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by load + true + + + 857 + 146 + 3 + 8 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of cleared generation offers + true + + + 858 + 146 + 3 + 9 + Load Revenue + Load Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 357 + 357 + Revenue from cleared load bids + true + + + 859 + 146 + 3 + 10 + Net Generation Cost + Net Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 540 + 540 + Net cost of cleared generation offers and load bids + true + + + 860 + 146 + 3 + 11 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Mark-to-market revenue from generation (Price Received * Generation) + true + + + 861 + 146 + 3 + 12 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Mark-to-market cost to load (Price Received × Load) + true + + + 862 + 146 + 3 + 13 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 863 + 146 + 3 + 14 + Fixed Cost + Fixed Cost + 14 + 34 + true + true + false + false + true + false + true + true + 194 + 194 + Fixed cost of contract capacity + true + + + 864 + 146 + 6 + 15 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Contribution of generation to system capacity reserves + true + + + 865 + 146 + 6 + 16 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Load obligation for capacity reserves. + true + + + 866 + 146 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 867 + 146 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 868 + 146 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 869 + 155 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Purchaser load + true + + + 870 + 155 + 3 + 2 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for energy + true + + + 871 + 155 + 3 + 3 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost of energy purchases + true + + + 872 + 155 + 3 + 4 + Bid Quantity + Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 873 + 155 + 3 + 5 + Bid Price + Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 33 + 33 + Value of energy in band + true + + + 874 + 155 + 3 + 6 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 875 + 155 + 3 + 7 + Cleared Bid Price + Cleared Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 876 + 155 + 3 + 8 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 877 + 155 + 3 + 9 + Load Factor + Load Factor + 12 + 12 + true + true + false + false + true + false + true + true + 876 + 876 + Proportion of load bids cleared + true + + + 878 + 155 + 3 + 10 + Max Energy Violation + Max Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1192 + 1192 + Violation of [Max Energy] or [Max Load Factor] constraints. + true + + + 879 + 155 + 3 + 11 + Max Energy Violation Cost + Max Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1193 + 1193 + Cost of [Max Energy] or [Max Load Factor] constraint violations. + true + + + 880 + 155 + 3 + 12 + Min Energy Violation + Min Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1194 + 1194 + Violation of [Min Energy] or [Min Load Factor] constraints. + true + + + 881 + 155 + 3 + 13 + Min Energy Violation Cost + Min Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1195 + 1195 + Cost of [Min Energy] or [Min Load Factor] constraint violations. + true + + + 882 + 155 + 3 + 14 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 883 + 155 + 3 + 15 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 692 + 692 + Revenue earned from interruptible load provision + true + + + 884 + 155 + 6 + 16 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Load obligation for capacity reserves. + true + + + 885 + 155 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 886 + 155 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 887 + 155 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 888 + 163 + 3 + 1 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 889 + 163 + 3 + 2 + Sharing + Sharing + 1 + 2 + true + true + false + false + true + false + true + true + 2882 + 2882 + Reserve provision from other regions/zones + true + + + 890 + 163 + 3 + 3 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Risk + true + + + 891 + 163 + 3 + 4 + Shortage + Shortage + 1 + 2 + true + true + false + false + true + false + true + true + 746 + 746 + Reserve shortfall + true + + + 892 + 163 + 3 + 5 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage. + true + + + 893 + 163 + 3 + 6 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1076 + 1076 + Cost of Reserve Shortage. + true + + + 894 + 163 + 3 + 7 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 895 + 163 + 3 + 8 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 896 + 163 + 3 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Reserve cost paid to reserve providers + true + + + 897 + 163 + 3 + 10 + Price + Price + 32 + 32 + true + true + false + false + true + false + true + true + 612 + 612 + Price + true + + + 898 + 163 + 3 + 11 + Time-weighted Price + Time-weighted Price + 32 + 32 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price of reserve. + true + + + 899 + 163 + 3 + 12 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Total available reserve response + true + + + 900 + 163 + 12 + 13 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 901 + 163 + 12 + 14 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 902 + 163 + 12 + 15 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 903 + 166 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 904 + 166 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 905 + 166 + 1 + 3 + Spinning Reserve Provision + Spinning Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1310 + 1310 + Reserve provision by spinning reserve + true + + + 906 + 166 + 1 + 4 + Sync Cond Reserve Provision + Sync Cond Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1311 + 1311 + Reserve provision by units in synchronous condenser mode + true + + + 907 + 166 + 1 + 5 + Pump Dispatchable Load Provision + Pump Dispatchable Load Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1312 + 1312 + Reserve provision by pump dispatchable load + true + + + 908 + 166 + 1 + 6 + Non-spinning Reserve Provision + Non-spinning Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1313 + 1313 + Reserve provision by off-line units + true + + + 909 + 166 + 1 + 7 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 910 + 166 + 1 + 8 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 911 + 166 + 1 + 9 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 912 + 166 + 1 + 10 + Provision Heat + Provision Heat + 15 + 16 + true + true + false + true + true + false + true + true + 1221494487 + 1221494487 + Heat generation due to reserve provision + true + + + 913 + 167 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Generator contingency to Risk. + true + + + 914 + 167 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Generator contingency constraint. + true + + + 915 + 168 + 1 + 1 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Reserve cost allocated + true + + + 916 + 169 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 917 + 169 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 918 + 169 + 1 + 3 + Revenue + Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 919 + 170 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 920 + 170 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 921 + 170 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 922 + 170 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 923 + 170 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 924 + 171 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Battery contingency to Risk. + true + + + 925 + 171 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Battery contingency constraint. + true + + + 926 + 172 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 927 + 172 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve + true + + + 928 + 172 + 1 + 3 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 929 + 172 + 1 + 4 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 930 + 172 + 1 + 5 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 931 + 172 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Reserve cost + true + + + 932 + 174 + 1 + 1 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision from the region + true + + + 933 + 174 + 1 + 2 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Region load to the Risk + true + + + 934 + 174 + 1 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Reserve cost paid to providers in the region + true + + + 935 + 174 + 1 + 4 + Price + Price + 32 + 32 + true + true + false + false + true + false + true + true + 612 + 612 + Marginal cost of reserve provision from the region + true + + + 936 + 175 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Zone load to the Risk + true + + + 937 + 176 + 1 + 1 + Sharing + Sharing + 1 + 2 + true + true + false + false + true + false + true + true + 2882 + 2882 + Amount of reserve shared on the line + true + + + 938 + 177 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Line contingency to Risk. + true + + + 939 + 177 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Line contingency constraint. + true + + + 940 + 178 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Reserve sold into the market + true + + + 941 + 178 + 1 + 2 + Purchases + Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 648 + 648 + Reserve bought from the market + true + + + 942 + 178 + 1 + 3 + Net Sales + Net Sales + 1 + 2 + true + true + false + false + true + false + true + true + 553 + 553 + Net reserve sold into the market + true + + + 943 + 178 + 1 + 4 + Net Purchases + Net Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 549 + 549 + Net reserve purchases from the market + true + + + 944 + 178 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from reserve sales in the market + true + + + 945 + 178 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of reserve purchases from the market + true + + + 946 + 178 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue from reserve sales in the market + true + + + 947 + 178 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net cost of reserve purchases from the market + true + + + 948 + 182 + 1 + 1 + Firm Capacity Contribution + Firm Capacity Contribution + 1 + 1 + true + true + true + false + true + false + true + true + 2161 + 2161 + Firm Capacity Contribution + true + + + 949 + 182 + 12 + 2 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to a solution. + true + + + 950 + 182 + 12 + 3 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to a solution + true + + + 951 + 182 + 12 + 4 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to a solution + true + + + 952 + 188 + 1 + 1 + Quantity + Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 650 + 650 + Contract quantity + true + + + 953 + 188 + 1 + 2 + Floor Price + Floor Price + 33 + 33 + true + true + false + false + true + false + true + true + 204 + 204 + Contract floor price + true + + + 954 + 188 + 1 + 3 + Cap Price + Cap Price + 33 + 33 + true + true + false + false + true + false + true + true + 53 + 53 + Contract cap price + true + + + 955 + 188 + 1 + 4 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price the contract is settled at + true + + + 956 + 188 + 1 + 5 + Shortfall + Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 1078 + 1078 + Shortfall of generation to meet contract + true + + + 957 + 188 + 1 + 6 + Settlement Quantity + Settlement Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 740 + 740 + Quantity of contract settled + true + + + 958 + 188 + 1 + 7 + Settlement + Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 738 + 738 + Settlement + true + + + 959 + 188 + 1 + 8 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the Financial Contract is active. + true + + + 960 + 193 + 1 + 1 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price the contract is settled at + true + + + 961 + 193 + 1 + 2 + Shortfall + Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 1078 + 1078 + Shortfall of generation to meet contract + true + + + 962 + 193 + 1 + 3 + Settlement Quantity + Settlement Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 740 + 740 + Quantity of contract settled + true + + + 963 + 193 + 1 + 4 + Settlement + Settlement + 14 + 34 + true + true + false + false + true + false + true + true + 738 + 738 + Settlement + true + + + 964 + 197 + 1 + 1 + Elasticity + Elasticity + 56 + 56 + true + true + false + false + false + false + true + true + 1273 + 1273 + Price elasticity of demand + true + + + 965 + 197 + 1 + 2 + Demand Intercept + Demand Intercept + 33 + 33 + true + true + false + false + false + false + true + true + 139 + 139 + Demand function vertical intercept + true + + + 966 + 197 + 1 + 3 + Demand Slope + Demand Slope + 56 + 56 + true + true + false + false + false + false + true + true + 142 + 142 + Long-run demand function slope + true + + + 967 + 197 + 1 + 4 + Perfect Competition Demand + Perfect Competition Demand + 1 + 2 + true + true + false + false + false + false + true + true + 1405 + 1405 + Demand in the perfect competition solution + true + + + 968 + 197 + 1 + 5 + Perfect Competition Production + Perfect Competition Production + 1 + 2 + true + true + false + false + false + false + true + true + 1413 + 1413 + Production in the perfect competition solution + true + + + 969 + 197 + 1 + 6 + Perfect Competition Net Import + Perfect Competition Net Import + 1 + 2 + true + true + false + false + false + false + true + true + 1408 + 1408 + Net import in the perfect competition solution + true + + + 970 + 197 + 1 + 7 + Perfect Competition Price + Perfect Competition Price + 33 + 33 + true + true + false + false + false + false + true + true + 1406 + 1406 + Price in the perfect competition solution + true + + + 971 + 197 + 1 + 8 + Perfect Competition Producer Revenue + Perfect Competition Producer Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 1414 + 1414 + Producer revenue in the perfect competition solution + true + + + 972 + 197 + 1 + 9 + Perfect Competition Consumer Surplus + Perfect Competition Consumer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1411 + 1411 + Consumer surplus in the perfect competition solution + true + + + 973 + 197 + 1 + 10 + Perfect Competition Producer Surplus + Perfect Competition Producer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1412 + 1412 + Producer surplus in the perfect competition solution + true + + + 974 + 197 + 1 + 11 + Demand + Demand + 1 + 2 + true + true + false + false + false + false + true + true + 133 + 133 + Demand in the Nash-Cournot equilibrium solution + true + + + 975 + 197 + 1 + 12 + Production + Production + 1 + 2 + true + true + false + false + false + false + true + true + 624 + 624 + Production in the Nash-Cournot equilibrium solution + true + + + 976 + 197 + 1 + 13 + Net Import + Net Import + 1 + 2 + true + true + false + false + false + false + true + true + 1407 + 1407 + Net import in the Nash-Cournot equilibrium solution + true + + + 977 + 197 + 1 + 14 + Price + Price + 33 + 33 + true + true + false + false + false + false + true + true + 612 + 612 + Price in the Nash-Cournot equilibrium solution + true + + + 978 + 197 + 1 + 15 + Producer Revenue + Producer Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 1415 + 1415 + Producer revenue in the Nash-Cournot equilibrium solution + true + + + 979 + 197 + 1 + 16 + Consumer Surplus + Consumer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1409 + 1409 + Consumer surplus in the Nash-Cournot equilibrium solution + true + + + 980 + 197 + 1 + 17 + Producer Surplus + Producer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1410 + 1410 + Producer surplus in the Nash-Cournot equilibrium solution + true + + + 981 + 201 + 1 + 1 + RSI + RSI + 0 + 0 + true + false + false + false + true + false + true + true + 712 + 712 + Residual Supply Index + true + + + 982 + 201 + 1 + 2 + Utility Generation + Utility Generation + 1 + 1 + true + false + false + false + true + false + true + true + 839 + 839 + Utility Generation + true + + + 983 + 201 + 1 + 3 + Utility Available Capacity + Utility Available Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 837 + 837 + Utility Available Capacity + true + + + 984 + 201 + 1 + 4 + Non Utility Generation + Non Utility Generation + 1 + 1 + true + false + false + false + true + false + true + true + 561 + 561 + Non Utility Generation + true + + + 985 + 201 + 1 + 5 + Non Utility Available Capacity + Non Utility Available Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 559 + 559 + Non Utility Available Capacity + true + + + 986 + 201 + 1 + 6 + Non Utility Contract Volume + Non Utility Contract Volume + 1 + 1 + true + false + false + false + true + false + true + true + 560 + 560 + Non Utility Contract Volume + true + + + 987 + 201 + 1 + 7 + Total Internal Capacity + Total Internal Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 791 + 791 + Total Internal Capacity + true + + + 988 + 201 + 1 + 8 + Total Import Capacity + Total Import Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 790 + 790 + Total Import Capacity + true + + + 989 + 201 + 1 + 9 + Total Supply Capacity + Total Supply Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 793 + 793 + Total Supply Capacity (Total Internal Capacity + Total Import Capacity) + true + + + 990 + 201 + 1 + 10 + Largest Suppliers Capacity + Largest Suppliers Capacity + 0 + 0 + true + false + false + false + true + false + true + true + 342 + 342 + Largest Supplier's Capacity + true + + + 991 + 201 + 1 + 11 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 288 + 288 + Import Capacity + true + + + 992 + 201 + 1 + 12 + Demand + Demand + 0 + 0 + true + false + false + false + true + false + true + true + 133 + 133 + Demand + true + + + 993 + 201 + 1 + 13 + Lerner Index + Lerner Index + 0 + 0 + true + true + false + false + true + false + true + true + 344 + 344 + Lerner Index (P-C)/P + true + + + 994 + 201 + 1 + 14 + Bounded Lerner Index + Bounded Lerner Index + 0 + 0 + true + true + false + false + true + false + true + true + 43 + 43 + Lerner Index (P-C)/P + true + + + 995 + 201 + 1 + 15 + Bid-Cost Mark-up + Bid-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 32 + 32 + Bid-Cost Mark-up (P-C)/C + true + + + 996 + 201 + 1 + 16 + Price-Cost Mark-up + Price-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 614 + 614 + Price-Cost Mark-up (P-C)/C + true + + + 997 + 201 + 1 + 17 + Load Unhedged + Load Unhedged + 0 + 0 + true + false + false + false + true + false + true + true + 360 + 360 + PCT Load Unhedged + true + + + 998 + 201 + 1 + 18 + Load Capacity Ratio + Load Capacity Ratio + 0 + 0 + true + false + false + false + true + false + true + true + 350 + 350 + Ratio of load to the total internal capacity plus import capability + true + + + 999 + 201 + 1 + 19 + Capacity Factor + Capacity Factor + 0 + 0 + true + false + false + false + true + false + true + true + 58 + 58 + Capacity Factor + true + + + 1000 + 201 + 1 + 20 + Load Variation + Load Variation + 0 + 0 + true + false + false + false + true + false + true + true + 362 + 362 + Load Variation + true + + + 1001 + 201 + 1 + 21 + Summer Period + Summer Period + 0 + 0 + true + false + false + false + true + false + true + true + 768 + 768 + Summer Period Flag + true + + + 1002 + 201 + 1 + 22 + Peak Period + Peak Period + 0 + 0 + true + false + false + false + true + false + true + true + 600 + 600 + Peak Period Flag + true + + + 1003 + 205 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Supply capacity from the line. + true + + + 1004 + 206 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Supply capacity from the interfaces. + true + + + 1005 + 207 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Total supply capacity from the company. + true + + + 1006 + 207 + 1 + 2 + Bid-Cost Mark-up + Bid-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 32 + 32 + Bid cost mark-up applied to generators in the company + true + + + 1007 + 208 + 6 + 1 + Capacity + Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 1665 + 1665 + Total online nameplate capacity for the group + true + + + 1008 + 208 + 6 + 2 + Marginal Contribution + Marginal Contribution + 0 + 0 + true + true + false + false + true + false + false + false + 3079 + 3079 + Marginal contribution of the group to the total firm capacity + true + + + 1009 + 208 + 12 + 3 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1010 + 208 + 12 + 4 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1011 + 208 + 12 + 5 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1012 + 214 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 1013 + 214 + 3 + 2 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 1014 + 214 + 3 + 3 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load + true + + + 1015 + 214 + 3 + 4 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed (or embedded) generation + true + + + 1016 + 214 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1017 + 214 + 3 + 6 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 1018 + 214 + 3 + 7 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 1019 + 214 + 3 + 8 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 1020 + 214 + 3 + 9 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 1021 + 214 + 3 + 10 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 1022 + 214 + 3 + 11 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 1023 + 214 + 3 + 12 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 1024 + 214 + 3 + 13 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 1025 + 214 + 3 + 14 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 1026 + 214 + 3 + 15 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 1027 + 214 + 3 + 16 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 1028 + 214 + 3 + 17 + Heat Plant Load + Heat Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2833 + 2833 + Heat Plant electric load + true + + + 1029 + 214 + 3 + 18 + Gas Plant Load + Gas Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2834 + 2834 + Gas Plant electric load + true + + + 1030 + 214 + 3 + 19 + Gas Storage Load + Gas Storage Load + 1 + 2 + true + true + false + false + true + false + true + true + 2861 + 2861 + Gas Storage electric load + true + + + 1031 + 214 + 3 + 20 + Water Plant Load + Water Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2835 + 2835 + Water Plant electric load + true + + + 1032 + 214 + 3 + 21 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 1033 + 214 + 3 + 22 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 1034 + 214 + 3 + 23 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 1035 + 214 + 3 + 24 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 1036 + 214 + 3 + 25 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 1037 + 214 + 3 + 26 + Facility Generation + Facility Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2844 + 2844 + Generation from connected Facilities + true + + + 1038 + 214 + 3 + 27 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1039 + 214 + 3 + 28 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 1040 + 214 + 3 + 29 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 1041 + 214 + 3 + 30 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 1042 + 214 + 3 + 31 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Exports - Imports + true + + + 1043 + 214 + 3 + 32 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 1044 + 214 + 3 + 33 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 1045 + 214 + 3 + 34 + Unserved Energy Hours + Unserved Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 282 + 282 + Number of hours of unserved energy (USE) + true + + + 1046 + 214 + 3 + 35 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1047 + 214 + 3 + 36 + Max Unserved Energy + Max Unserved Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2014 + 2014 + Maximum unserved energy + true + + + 1048 + 214 + 3 + 37 + Unserved Energy Factor + Unserved Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2015 + 2015 + Proportion of energy unserved + true + + + 1049 + 214 + 3 + 38 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 1050 + 214 + 3 + 39 + Dump Energy Hours + Dump Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1088 + 1088 + Number of hours of dump energy + true + + + 1051 + 214 + 3 + 40 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1052 + 214 + 3 + 41 + Max Dump Energy + Max Dump Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2909 + 2909 + Maximum dump energy + true + + + 1053 + 214 + 3 + 42 + Dump Energy Factor + Dump Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2921 + 2921 + Proportion of energy dumped + true + + + 1054 + 214 + 3 + 43 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy + true + + + 1055 + 214 + 3 + 44 + Committed Capacity + Committed Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2936 + 2936 + Capacity of committed units + true + + + 1056 + 214 + 3 + 45 + No Cost Generation Capacity + No Cost Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 1165 + 1165 + Capacity available at no cost + true + + + 1057 + 214 + 3 + 46 + Hours Generation Curtailed + Hours Generation Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1166 + 1166 + Number of hours that non-positive-priced generation has been curtailed + true + + + 1058 + 214 + 3 + 47 + Generation Capacity Curtailed + Generation Capacity Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1167 + 1167 + Amount of non-positive-priced generation curtailed + true + + + 1059 + 214 + 3 + 48 + Max Generation Curtailed + Max Generation Curtailed + 1 + 1 + true + true + false + false + true + false + true + true + 2922 + 2922 + Maximum generation curtailed + true + + + 1060 + 214 + 3 + 49 + Generation Curtailment Factor + Generation Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2934 + 2934 + Proportion of generation curtailed + true + + + 1061 + 214 + 3 + 50 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 1062 + 214 + 3 + 51 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 1063 + 214 + 3 + 52 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 1064 + 214 + 3 + 53 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 1065 + 214 + 3 + 54 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 1066 + 214 + 3 + 55 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 1067 + 214 + 3 + 56 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 1068 + 214 + 3 + 57 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of generation that could be unloaded + true + + + 1069 + 214 + 3 + 58 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 1070 + 214 + 3 + 59 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 1071 + 214 + 3 + 60 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 1072 + 214 + 3 + 61 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 1073 + 214 + 3 + 62 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Total variable cost of generation + true + + + 1074 + 214 + 3 + 63 + Generator Pump Cost + Generator Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 249 + 249 + Cost of load to pump storage generators + true + + + 1075 + 214 + 3 + 64 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Cost of generating unit starts and shutdowns + true + + + 1076 + 214 + 3 + 65 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 1077 + 214 + 3 + 66 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1078 + 214 + 3 + 67 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 1079 + 214 + 3 + 68 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 1080 + 214 + 3 + 69 + Generator FO&M Cost + Generator FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 888 + 888 + Total fixed operations and maintenance costs + true + + + 1081 + 214 + 3 + 70 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs (fixed O&amp;M, equity, debt) + true + + + 1082 + 214 + 3 + 71 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Highest short-run marginal cost of running generators + true + + + 1083 + 214 + 3 + 72 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Price + true + + + 1084 + 214 + 3 + 73 + Uplift + Uplift + 33 + 33 + true + true + false + false + true + false + true + true + 826 + 826 + Uplift to uniform price due to no load cost and start costs + true + + + 1085 + 214 + 3 + 74 + Price-Cost Mark-up + Price-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 614 + 614 + Price Cost Mark-up (P-C)/C + true + + + 1086 + 214 + 3 + 75 + Time-weighted Price + Time-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price + true + + + 1087 + 214 + 3 + 76 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load weighted average price + true + + + 1088 + 214 + 3 + 77 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1089 + 214 + 3 + 78 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of locational marginal price + true + + + 1090 + 214 + 3 + 79 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of regional price + true + + + 1091 + 214 + 3 + 80 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of the regional price + true + + + 1092 + 214 + 3 + 81 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 1093 + 214 + 3 + 82 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1094 + 214 + 3 + 83 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Total transmission rental + true + + + 1095 + 214 + 3 + 84 + Settlement Surplus + Settlement Surplus + 14 + 34 + true + true + false + true + true + false + true + true + 741 + 741 + Difference between cost to load and generator revenue + true + + + 1096 + 214 + 3 + 85 + Interregional Transmission Losses + Interregional Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 326 + 326 + Total inter-regional losses assigned to region + true + + + 1097 + 214 + 3 + 86 + Intraregional Transmission Losses + Intraregional Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 329 + 329 + Total losses on all intraregional lines + true + + + 1098 + 214 + 3 + 87 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Contract volume + true + + + 1099 + 214 + 3 + 88 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on contracts + true + + + 1100 + 214 + 3 + 89 + Net Cost to Load + Net Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 538 + 538 + Cost to load of their energy purchases net of contracts + true + + + 1101 + 214 + 3 + 90 + DSP Bid Quantity + DSP Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 156 + 156 + Bid quantity for demand-side participation + true + + + 1102 + 214 + 3 + 91 + DSP Bid Price + DSP Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 155 + 155 + Bid price for demand-side participation + true + + + 1103 + 214 + 3 + 92 + DSP Bid Cleared + DSP Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1398 + 1398 + Quantity cleared in demand-side participation bid band + true + + + 1104 + 214 + 3 + 93 + Cleared DSP Bid Price + Cleared DSP Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1400 + 1400 + Price of marginal demand-side participation bid band + true + + + 1105 + 214 + 3 + 94 + Cleared DSP Bid Cost + Cleared DSP Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1401 + 1401 + Value of cleared demand-side participation bids + true + + + 1106 + 214 + 3 + 95 + Cost of Curtailment + Cost of Curtailment + 14 + 34 + true + true + false + true + true + false + true + true + 118 + 118 + Cost of demand-side participation bids cleared + true + + + 1107 + 214 + 3 + 96 + Generator Net Pool Revenue + Generator Net Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 245 + 245 + Generator pool revenue net of contracts and pump load cost + true + + + 1108 + 214 + 3 + 97 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 1109 + 214 + 3 + 98 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 1110 + 214 + 3 + 99 + Generator Net Revenue + Generator Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 247 + 247 + Generator net revenue (producer surplus) + true + + + 1111 + 214 + 3 + 100 + Shadow Load + Shadow Load + 1 + 2 + true + true + false + false + true + false + true + true + 1142 + 1142 + Load before uplift or Competition models. + true + + + 1112 + 214 + 3 + 101 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 1113 + 214 + 3 + 102 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Price before uplift or mark-ups models. + true + + + 1114 + 214 + 3 + 103 + Shadow Cost to Load + Shadow Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 1141 + 1141 + Cost to load of their energy purchases based on [Shadow Price]. + true + + + 1115 + 214 + 3 + 104 + Generator Monopoly Rent + Generator Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 244 + 244 + Generator monopoly rent from competitive bidding + true + + + 1116 + 214 + 3 + 105 + Utility Monopoly Rent + Utility Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 840 + 840 + Generator monopoly rent from competitive bidding + true + + + 1117 + 214 + 3 + 106 + Non-Utility Monopoly Rent + Non-Utility Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 563 + 563 + Generator monopoly rent from competitive bidding + true + + + 1118 + 214 + 3 + 107 + Utility Contract Settlement + Utility Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 838 + 838 + Utility generator contract settlement + true + + + 1119 + 214 + 3 + 108 + Non-Utility Contract Settlement + Non-Utility Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 562 + 562 + Non-utility generator contract settlement + true + + + 1120 + 214 + 3 + 109 + Utility Net Revenue + Utility Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 841 + 841 + Utility generator net revenue (producer surplus) + true + + + 1121 + 214 + 3 + 110 + Non-Utility Net Revenue + Non-Utility Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 564 + 564 + Non-utility generator net revenue (producer surplus) + true + + + 1122 + 214 + 3 + 111 + Constrained On Cost + Constrained On Cost + 14 + 34 + true + true + false + true + true + false + true + true + 93 + 93 + Constrained on cost + true + + + 1123 + 214 + 3 + 112 + Constrained Off Cost + Constrained Off Cost + 14 + 34 + true + true + false + true + true + false + true + true + 91 + 91 + Constrained off cost + true + + + 1124 + 214 + 3 + 113 + Generator Net Profit + Generator Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 246 + 246 + Net profit from generators in region + true + + + 1125 + 214 + 3 + 114 + Net Market Profit + Net Market Profit + 14 + 34 + true + true + false + true + true + false + true + true + 1445 + 1445 + Net profit from all market nodes + true + + + 1126 + 214 + 3 + 115 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1127 + 214 + 3 + 116 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1128 + 214 + 3 + 117 + Net Cost of Exports + Net Cost of Exports + 14 + 34 + true + true + false + true + true + false + true + true + 537 + 537 + Net cost of exports + true + + + 1129 + 214 + 3 + 118 + Wheeling Revenue + Wheeling Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1036 + 1036 + Wheeling revenue on exports from the region + true + + + 1130 + 214 + 3 + 119 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost + true + + + 1131 + 214 + 3 + 120 + Trade Export Revenue + Trade Export Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 3016 + 3016 + Revenue from trade exports + true + + + 1132 + 214 + 3 + 121 + Trade Import Cost + Trade Import Cost + 14 + 34 + true + true + false + true + true + false + true + true + 3017 + 3017 + Cost of trade imports + true + + + 1133 + 214 + 3 + 122 + Intraregional Transmission Rental + Intraregional Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 330 + 330 + Total transmission rental on intraregional lines + true + + + 1134 + 214 + 3 + 123 + Interregional Transmission Rental + Interregional Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 327 + 327 + Share of interregional transmission rentals + true + + + 1135 + 214 + 3 + 124 + Transmission Control Rental + Transmission Control Rental + 14 + 34 + true + true + false + true + true + false + true + true + 795 + 795 + Rental from penalties on changes in flow control angles and DC line flows + true + + + 1136 + 214 + 3 + 125 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the region. + true + + + 1137 + 214 + 3 + 126 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the region. + true + + + 1138 + 214 + 3 + 127 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange in the region (Financial Exports - Financial Imports). + true + + + 1139 + 214 + 3 + 128 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region. + true + + + 1140 + 214 + 3 + 129 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region. + true + + + 1141 + 214 + 3 + 130 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1142 + 214 + 6 + 131 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + true + + + 1143 + 214 + 6 + 132 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Total installed generation capacity + true + + + 1144 + 214 + 6 + 133 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Region Firm Generation Capacity is based on the Firm Capacity of all the generators in the region. + true + + + 1145 + 214 + 6 + 134 + DSM Load Reduction + DSM Load Reduction + 1 + 1 + true + true + false + false + true + true + true + true + 313531233 + 313531233 + Region Load reduction by the DSM Load Modifying generators. + true + + + 1146 + 214 + 6 + 135 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1147 + 214 + 6 + 136 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1148 + 214 + 6 + 137 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1149 + 214 + 6 + 138 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity from the Region + true + + + 1150 + 214 + 6 + 139 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Total export capacity from the Region + true + + + 1151 + 214 + 6 + 140 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1152 + 214 + 6 + 141 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 1153 + 214 + 6 + 142 + Max Capacity Reserves + Max Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 1154 + 214 + 6 + 143 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1155 + 214 + 6 + 144 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 1156 + 214 + 6 + 145 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 1157 + 214 + 6 + 146 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + true + + + 1158 + 214 + 6 + 147 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1159 + 214 + 6 + 148 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 1160 + 214 + 6 + 149 + Available Capacity Reserves + Available Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 1629 + 1629 + Capacity Reserves based on Available Capacity + true + + + 1161 + 214 + 6 + 150 + Available Capacity Margin + Available Capacity Margin + 12 + 12 + true + true + false + false + true + false + true + true + 1630 + 1630 + Capacity Reserve Margin based on Available Capacity + true + + + 1162 + 214 + 6 + 151 + Dispatchable Capacity + Dispatchable Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 149 + 149 + On-line capacity + true + + + 1163 + 214 + 6 + 152 + Undispatched Capacity + Undispatched Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 803 + 803 + Capacity on-line but undispatched + true + + + 1164 + 214 + 6 + 153 + Firm Capacity Group Value + Firm Capacity Group Value + 1 + 1 + true + true + false + false + true + false + true + true + 3007 + 3007 + Total firm capacity from the Firm Capacity Groups in the Region + true + + + 1165 + 214 + 7 + 154 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1166 + 214 + 7 + 155 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + false + true + true + 392 + 392 + Capacity out on maintenance + true + + + 1167 + 214 + 7 + 156 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 1168 + 214 + 7 + 157 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1169 + 214 + 7 + 158 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1170 + 214 + 7 + 159 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + true + true + true + true + 394 + 394 + Maintenance factor + true + + + 1171 + 214 + 7 + 160 + EENS + EENS + 3 + 3 + true + true + false + false + true + true + false + false + 161 + 161 + Expected energy not served (summary type "Sum") + true + + + 1172 + 214 + 7 + 161 + EDNS + EDNS + 1 + 1 + true + true + false + false + true + true + false + false + 160 + 160 + Expected Demand Not Served (summary type "Average") + true + + + 1173 + 214 + 7 + 162 + LOLE + LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 365 + 365 + Number of days of outage (summary type "Sum") + true + + + 1174 + 214 + 7 + 163 + LOLP + LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 366 + 366 + Loss of load probability (summary type "Average") + true + + + 1175 + 214 + 7 + 164 + Multi-area LOLE + Multi-area LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 1736 + 1736 + Number of days of outage including assistants from other connected regions (summary type "Sum") + true + + + 1176 + 214 + 7 + 165 + Multi-area LOLP + Multi-area LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 1735 + 1735 + Loss of load probability considering assistance from other connected regions + true + + + 1177 + 214 + 8 + 166 + Planning Peak Load + Planning Peak Load + 1 + 1 + true + true + false + false + true + false + false + false + 608 + 608 + Peak load in the current capacity optimization period (e.g. year) + true + + + 1178 + 214 + 8 + 167 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 1179 + 214 + 8 + 168 + Generation Capacity Retired + Generation Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 233 + 233 + Generation capacity retired + true + + + 1180 + 214 + 8 + 169 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Additional import capacity from the Region due to transmission expansion. + true + + + 1181 + 214 + 8 + 170 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Reduction in import capacity from the Region due to transmission retirements. + true + + + 1182 + 214 + 8 + 171 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Additional export capacity from the Region due to transmission expansion. + true + + + 1183 + 214 + 8 + 172 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Reduction in export capacity from the Region due to transmission retirements. + true + + + 1184 + 214 + 8 + 173 + Capacity Shortage + Capacity Shortage + 1 + 1 + true + true + false + false + true + false + false + false + 70 + 70 + Capacity shortage (below Min Capacity Reserves) + true + + + 1185 + 214 + 8 + 174 + Capacity Excess + Capacity Excess + 1 + 1 + true + true + false + false + true + false + false + false + 56 + 56 + Capacity excess (above Max Capacity Reserves) + true + + + 1186 + 214 + 8 + 175 + Capacity Shadow Price + Capacity Shadow Price + 31 + 31 + true + true + false + false + true + false + false + false + 68 + 68 + Shadow price of capacity + true + + + 1187 + 214 + 8 + 176 + LRMC + LRMC + 33 + 33 + false + true + false + false + true + false + false + false + 1034 + 1034 + Long-run marginal cost of production + true + + + 1188 + 214 + 8 + 177 + Capacity Payments + Capacity Payments + 14 + 34 + true + true + false + true + true + false + true + true + 883 + 883 + Payments made for capacity + true + + + 1189 + 214 + 8 + 178 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the region + true + + + 1190 + 214 + 8 + 179 + Capacity Shortage Cost + Capacity Shortage Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1225 + 1225 + Cost of capacity shortage priced at [Capacity Shortage Price]. + true + + + 1191 + 214 + 8 + 180 + Capacity Excess Cost + Capacity Excess Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1226 + 1226 + Cost of capacity excess priced at [Capacity Excess Price]. + true + + + 1192 + 214 + 8 + 181 + Total Generator Revenue + Total Generator Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1140 + 1140 + Total generator revenue including capacity payments. + true + + + 1193 + 214 + 8 + 182 + Generator Build Cost + Generator Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 241 + 241 + Cost of units built + true + + + 1194 + 214 + 8 + 183 + Generator Retirement Cost + Generator Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 251 + 251 + Cost of units retired + true + + + 1195 + 214 + 8 + 184 + Transmission Build Cost + Transmission Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 794 + 794 + Cost of transmission lines built + true + + + 1196 + 214 + 8 + 185 + Transmission Retirement Cost + Transmission Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 799 + 799 + Cost of transmission lines retired + true + + + 1197 + 214 + 8 + 186 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 1198 + 214 + 8 + 187 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 1199 + 214 + 8 + 188 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 1200 + 214 + 8 + 189 + Shadow Generation Capacity Built + Shadow Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1824 + 1824 + Generation capacity built before Competition models. + true + + + 1201 + 214 + 12 + 190 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1202 + 214 + 12 + 191 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1203 + 214 + 12 + 192 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1204 + 220 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Emissions + true + + + 1205 + 220 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 1206 + 220 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 1207 + 220 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 1208 + 220 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 1209 + 220 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1210 + 220 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 1211 + 220 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 1212 + 220 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 1213 + 225 + 1 + 1 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability between the regions in the reference direction. + true + + + 1214 + 225 + 1 + 2 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability between the regions in the counter-reference direction. + true + + + 1215 + 225 + 1 + 3 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports from region + true + + + 1216 + 225 + 1 + 4 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports to region + true + + + 1217 + 225 + 1 + 5 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Net interchange to region (exports - imports) + true + + + 1218 + 225 + 1 + 6 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the region + true + + + 1219 + 225 + 1 + 7 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the region + true + + + 1220 + 225 + 1 + 8 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) from parent region to child region. + true + + + 1221 + 225 + 1 + 9 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region + true + + + 1222 + 225 + 1 + 10 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region + true + + + 1223 + 225 + 1 + 11 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 1224 + 225 + 1 + 12 + Wheeling Cost + Wheeling Cost + 14 + 14 + true + true + false + false + true + false + true + true + 860 + 860 + Wheeling cost on exports to the region + true + + + 1225 + 246 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Total load + true + + + 1226 + 246 + 3 + 2 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1227 + 246 + 3 + 3 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 1228 + 246 + 3 + 4 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 1229 + 246 + 3 + 5 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 1230 + 246 + 3 + 6 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1231 + 246 + 3 + 7 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 1232 + 246 + 3 + 8 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1233 + 246 + 3 + 9 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy. + true + + + 1234 + 246 + 3 + 10 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation, start, shutdown, and emissions costs + true + + + 1235 + 246 + 3 + 11 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Energy price + true + + + 1236 + 246 + 3 + 12 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1237 + 246 + 3 + 13 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1238 + 246 + 3 + 14 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 1239 + 246 + 3 + 15 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1240 + 246 + 3 + 16 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1241 + 246 + 3 + 17 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1242 + 246 + 3 + 18 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Total customer load + true + + + 1243 + 246 + 3 + 19 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net generation value + true + + + 1244 + 246 + 3 + 20 + ORDC System Lambda + ORDC System Lambda + 33 + 33 + true + true + false + false + true + false + true + true + 2682 + 2682 + Max value of Energy Charge over all Nodes + true + + + 1245 + 246 + 3 + 21 + ORDC Online Price Adder + ORDC Online Price Adder + 33 + 33 + true + true + false + false + true + false + true + true + 2683 + 2683 + ORDC Online Price Adder + true + + + 1246 + 246 + 3 + 22 + ORDC Offline Price Adder + ORDC Offline Price Adder + 33 + 33 + true + true + false + false + true + false + true + true + 2684 + 2684 + ORDC Offline Price Adder + true + + + 1247 + 246 + 12 + 23 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1248 + 246 + 12 + 24 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1249 + 246 + 12 + 25 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1250 + 253 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 1251 + 253 + 3 + 2 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 1252 + 253 + 3 + 3 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load + true + + + 1253 + 253 + 3 + 4 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed generation + true + + + 1254 + 253 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1255 + 253 + 3 + 6 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 1256 + 253 + 3 + 7 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 1257 + 253 + 3 + 8 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 1258 + 253 + 3 + 9 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 1259 + 253 + 3 + 10 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 1260 + 253 + 3 + 11 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 1261 + 253 + 3 + 12 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 1262 + 253 + 3 + 13 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 1263 + 253 + 3 + 14 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 1264 + 253 + 3 + 15 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 1265 + 253 + 3 + 16 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 1266 + 253 + 3 + 17 + Heat Plant Load + Heat Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2833 + 2833 + Heat Plant electric load + true + + + 1267 + 253 + 3 + 18 + Gas Plant Load + Gas Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2834 + 2834 + Gas Plant electric load + true + + + 1268 + 253 + 3 + 19 + Gas Storage Load + Gas Storage Load + 1 + 2 + true + true + false + false + true + false + true + true + 2861 + 2861 + Gas Storage electric load + true + + + 1269 + 253 + 3 + 20 + Water Plant Load + Water Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2835 + 2835 + Water Plant electric load + true + + + 1270 + 253 + 3 + 21 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 1271 + 253 + 3 + 22 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 1272 + 253 + 3 + 23 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 1273 + 253 + 3 + 24 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 1274 + 253 + 3 + 25 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 1275 + 253 + 3 + 26 + Facility Generation + Facility Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2844 + 2844 + Generation from connected Facilities + true + + + 1276 + 253 + 3 + 27 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1277 + 253 + 3 + 28 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 1278 + 253 + 3 + 29 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 1279 + 253 + 3 + 30 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 1280 + 253 + 3 + 31 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Exports - Imports + true + + + 1281 + 253 + 3 + 32 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 1282 + 253 + 3 + 33 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 1283 + 253 + 3 + 34 + Unserved Energy Hours + Unserved Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 282 + 282 + Number of hours of unserved energy (USE). + true + + + 1284 + 253 + 3 + 35 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1285 + 253 + 3 + 36 + Max Unserved Energy + Max Unserved Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2014 + 2014 + Maximum unserved energy + true + + + 1286 + 253 + 3 + 37 + Unserved Energy Factor + Unserved Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2015 + 2015 + Ratio of unserved energy to load + true + + + 1287 + 253 + 3 + 38 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 1288 + 253 + 3 + 39 + Dump Energy Hours + Dump Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1088 + 1088 + Number of hours of dump energy. + true + + + 1289 + 253 + 3 + 40 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1290 + 253 + 3 + 41 + Max Dump Energy + Max Dump Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2909 + 2909 + Maximum dump energy + true + + + 1291 + 253 + 3 + 42 + Dump Energy Factor + Dump Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2921 + 2921 + Proportion of energy dumped + true + + + 1292 + 253 + 3 + 43 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy. + true + + + 1293 + 253 + 3 + 44 + Committed Capacity + Committed Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 2936 + 2936 + Capacity of committed units + true + + + 1294 + 253 + 3 + 45 + No Cost Generation Capacity + No Cost Generation Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 1165 + 1165 + Capacity available at no cost + true + + + 1295 + 253 + 3 + 46 + Hours Generation Curtailed + Hours Generation Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1166 + 1166 + Number of hours that non-positive-priced generation has been curtailed + true + + + 1296 + 253 + 3 + 47 + Generation Capacity Curtailed + Generation Capacity Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1167 + 1167 + Amount of non-positive-priced generation curtailed + true + + + 1297 + 253 + 3 + 48 + Max Generation Curtailed + Max Generation Curtailed + 1 + 1 + true + true + false + false + true + false + true + true + 2922 + 2922 + Maximum generation curtailed + true + + + 1298 + 253 + 3 + 49 + Generation Curtailment Factor + Generation Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2934 + 2934 + Proportion of generation curtailed + true + + + 1299 + 253 + 3 + 50 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 1300 + 253 + 3 + 51 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 1301 + 253 + 3 + 52 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 1302 + 253 + 3 + 53 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 1303 + 253 + 3 + 54 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 1304 + 253 + 3 + 55 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 1305 + 253 + 3 + 56 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 1306 + 253 + 3 + 57 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of generation that could be unloaded + true + + + 1307 + 253 + 3 + 58 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 1308 + 253 + 3 + 59 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 1309 + 253 + 3 + 60 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 1310 + 253 + 3 + 61 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 1311 + 253 + 3 + 62 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Total variable cost of generation + true + + + 1312 + 253 + 3 + 63 + Generator Pump Cost + Generator Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 249 + 249 + Cost of load to pump storage generators + true + + + 1313 + 253 + 3 + 64 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Cost of generating unit starts and shutdowns + true + + + 1314 + 253 + 3 + 65 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 1315 + 253 + 3 + 66 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1316 + 253 + 3 + 67 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation and start and shutdown costs and emissions costs + true + + + 1317 + 253 + 3 + 68 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 1318 + 253 + 3 + 69 + Generator FO&M Cost + Generator FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 888 + 888 + Total fixed operations and maintenance costs + true + + + 1319 + 253 + 3 + 70 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs (fixed O&M, equity, debt) + true + + + 1320 + 253 + 3 + 71 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Highest short-run marginal cost of running generators + true + + + 1321 + 253 + 3 + 72 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Energy price + true + + + 1322 + 253 + 3 + 73 + Time-weighted Price + Time-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 789 + 789 + Time-weighted average price + true + + + 1323 + 253 + 3 + 74 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1324 + 253 + 3 + 75 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1325 + 253 + 3 + 76 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of locational marginal price + true + + + 1326 + 253 + 3 + 77 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of zonal price + true + + + 1327 + 253 + 3 + 78 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of the zonal price + true + + + 1328 + 253 + 3 + 79 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Average marginal loss factor of buses in the zone + true + + + 1329 + 253 + 3 + 80 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 1330 + 253 + 3 + 81 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1331 + 253 + 3 + 82 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Total transmission rental + true + + + 1332 + 253 + 3 + 83 + Settlement Surplus + Settlement Surplus + 14 + 34 + true + true + false + true + true + false + true + true + 741 + 741 + Difference between cost to load and generator revenue + true + + + 1333 + 253 + 3 + 84 + Cost of Curtailment + Cost of Curtailment + 14 + 34 + true + true + false + true + true + false + true + true + 118 + 118 + Cost of demand-side participation bids cleared + true + + + 1334 + 253 + 3 + 85 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 1335 + 253 + 3 + 86 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 1336 + 253 + 3 + 87 + Generator Net Revenue + Generator Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 247 + 247 + Generator net revenue (producer surplus) + true + + + 1337 + 253 + 3 + 88 + Generator Net Profit + Generator Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 246 + 246 + Net profit from generators in Zone + true + + + 1338 + 253 + 3 + 89 + Net Market Profit + Net Market Profit + 14 + 34 + true + true + false + true + true + false + true + true + 1445 + 1445 + Net profit from all market nodes + true + + + 1339 + 253 + 3 + 90 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1340 + 253 + 3 + 91 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1341 + 253 + 3 + 92 + Net Cost of Exports + Net Cost of Exports + 14 + 34 + true + true + false + true + true + false + true + true + 537 + 537 + Net cost of exports + true + + + 1342 + 253 + 3 + 93 + Wheeling Revenue + Wheeling Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1036 + 1036 + Wheeling revenue on exports from the zone + true + + + 1343 + 253 + 3 + 94 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost on imports to the zone + true + + + 1344 + 253 + 3 + 95 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the zone. + true + + + 1345 + 253 + 3 + 96 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the zone. + true + + + 1346 + 253 + 3 + 97 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange in the zone (Financial Exports - Financial Imports). + true + + + 1347 + 253 + 3 + 98 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the zone. + true + + + 1348 + 253 + 3 + 99 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the Zone. + true + + + 1349 + 253 + 3 + 100 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1350 + 253 + 6 + 101 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load across the current period + true + + + 1351 + 253 + 6 + 102 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Total installed generation capacity + true + + + 1352 + 253 + 6 + 103 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Installed capacity accounting for [Rating], [Rating Factor] and [Firm Capacity] + true + + + 1353 + 253 + 6 + 104 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1354 + 253 + 6 + 105 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1355 + 253 + 6 + 106 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1356 + 253 + 6 + 107 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity from the Zone + true + + + 1357 + 253 + 6 + 108 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Capacity export capability + true + + + 1358 + 253 + 6 + 109 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1359 + 253 + 6 + 110 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 1360 + 253 + 6 + 111 + Max Capacity Reserves + Max Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 1361 + 253 + 6 + 112 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1362 + 253 + 6 + 113 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 1363 + 253 + 6 + 114 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 1364 + 253 + 6 + 115 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 63 + 63 + Reserve margin + true + + + 1365 + 253 + 6 + 116 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1366 + 253 + 6 + 117 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 1367 + 253 + 6 + 118 + Available Capacity Reserves + Available Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 1629 + 1629 + Capacity Reserves based on Available Capacity + true + + + 1368 + 253 + 6 + 119 + Available Capacity Margin + Available Capacity Margin + 12 + 12 + true + true + false + false + true + false + true + true + 1630 + 1630 + Capacity Reserve Margin based on Available Capacity + true + + + 1369 + 253 + 6 + 120 + Dispatchable Capacity + Dispatchable Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 149 + 149 + On-line capacity + true + + + 1370 + 253 + 6 + 121 + Undispatched Capacity + Undispatched Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 803 + 803 + Capacity on-line but undispatched + true + + + 1371 + 253 + 6 + 122 + Firm Capacity Group Value + Firm Capacity Group Value + 1 + 1 + true + true + false + false + true + false + true + true + 3007 + 3007 + Total firm capacity from the Firm Capacity Groups in the Zone + true + + + 1372 + 253 + 7 + 123 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1373 + 253 + 7 + 124 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1374 + 253 + 7 + 125 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + false + true + false + false + 394 + 394 + Maintenance factor + true + + + 1375 + 253 + 7 + 126 + EENS + EENS + 3 + 3 + true + true + false + false + false + true + false + false + 161 + 161 + Expected energy not served (summary type "Sum") + true + + + 1376 + 253 + 7 + 127 + EDNS + EDNS + 1 + 1 + true + true + false + false + false + true + false + false + 160 + 160 + Expected demand not served (summary type "Average") + true + + + 1377 + 253 + 7 + 128 + LOLE + LOLE + 7 + 7 + true + true + false + false + false + true + false + false + 365 + 365 + Number of days of outage (summary type "Sum") + true + + + 1378 + 253 + 7 + 129 + LOLP + LOLP + 12 + 12 + true + true + false + false + false + true + false + false + 366 + 366 + Loss of load probability (summary type "Average") + true + + + 1379 + 253 + 7 + 130 + Multi-area LOLE + Multi-area LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 1736 + 1736 + Number of days of outage including assistants from other connected zones (summary type "Sum") + true + + + 1380 + 253 + 7 + 131 + Multi-area LOLP + Multi-area LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 1735 + 1735 + Loss of load probability including assistants from other connected zones (summary type "Average") + true + + + 1381 + 253 + 8 + 132 + Planning Peak Load + Planning Peak Load + 1 + 1 + true + true + false + false + true + false + false + false + 608 + 608 + Peak load in the current capacity optimization period (e.g. year) + true + + + 1382 + 253 + 8 + 133 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 1383 + 253 + 8 + 134 + Generation Capacity Retired + Generation Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 233 + 233 + Generation capacity retired + true + + + 1384 + 253 + 8 + 135 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Additional import capacity from the Zone due to transmission expansion. + true + + + 1385 + 253 + 8 + 136 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Reduction in import capacity from the Zone due to transmission retirements. + true + + + 1386 + 253 + 8 + 137 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Additional export capacity from the Zone due to transmission expansion + true + + + 1387 + 253 + 8 + 138 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Reduction in export capacity from the Zone due to transmission retirements + true + + + 1388 + 253 + 8 + 139 + Capacity Shortage + Capacity Shortage + 1 + 1 + true + true + false + false + true + false + false + false + 70 + 70 + Capacity Shortage (below Min Capacity Reserves) + true + + + 1389 + 253 + 8 + 140 + Capacity Excess + Capacity Excess + 1 + 1 + true + true + false + false + true + false + false + false + 56 + 56 + Capacity excess (above Max Capacity Reserves) + true + + + 1390 + 253 + 8 + 141 + Capacity Shadow Price + Capacity Shadow Price + 31 + 31 + true + true + false + false + true + false + false + false + 68 + 68 + Shadow price of capacity + true + + + 1391 + 253 + 8 + 142 + LRMC + LRMC + 33 + 33 + false + true + false + false + true + false + false + false + 1034 + 1034 + Long-run marginal cost of production + true + + + 1392 + 253 + 8 + 143 + Capacity Payments + Capacity Payments + 14 + 34 + true + true + false + false + true + false + true + true + 883 + 883 + Payments made for capacity + true + + + 1393 + 253 + 8 + 144 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the zone + true + + + 1394 + 253 + 8 + 145 + Capacity Shortage Cost + Capacity Shortage Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1225 + 1225 + Cost of capacity shortage priced at [Capacity Shortage Price]. + true + + + 1395 + 253 + 8 + 146 + Capacity Excess Cost + Capacity Excess Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1226 + 1226 + Cost of capacity excess priced at [Capacity Excess Price]. + true + + + 1396 + 253 + 8 + 147 + Total Generator Revenue + Total Generator Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1140 + 1140 + Total generator revenue including capacity payments. + true + + + 1397 + 253 + 8 + 148 + Generator Build Cost + Generator Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 241 + 241 + Cost of units built + true + + + 1398 + 253 + 8 + 149 + Generator Retirement Cost + Generator Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 251 + 251 + Cost of units retired + true + + + 1399 + 253 + 8 + 150 + Transmission Build Cost + Transmission Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 794 + 794 + Cost of transmission lines built + true + + + 1400 + 253 + 8 + 151 + Transmission Retirement Cost + Transmission Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 799 + 799 + Cost of transmission lines retired + true + + + 1401 + 253 + 8 + 152 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 1402 + 253 + 8 + 153 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 1403 + 253 + 8 + 154 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 1404 + 253 + 12 + 155 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1405 + 253 + 12 + 156 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1406 + 253 + 12 + 157 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1407 + 260 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Emissions + true + + + 1408 + 260 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 1409 + 260 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 1410 + 260 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 1411 + 260 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 1412 + 260 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1413 + 260 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 1414 + 260 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 1415 + 260 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 1416 + 269 + 1 + 1 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability between the zones in the reference direction. + true + + + 1417 + 269 + 1 + 2 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability between the zones in the counter-reference direction. + true + + + 1418 + 269 + 1 + 3 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the zone + true + + + 1419 + 269 + 1 + 4 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to parent zone from child zone. + true + + + 1420 + 269 + 1 + 5 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) from parent zone to child zone. + true + + + 1421 + 269 + 1 + 6 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the zone + true + + + 1422 + 269 + 1 + 7 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the zone + true + + + 1423 + 269 + 1 + 8 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1424 + 269 + 1 + 9 + Wheeling Cost + Wheeling Cost + 14 + 14 + true + true + false + false + true + false + true + true + 860 + 860 + Wheeling cost on exports to the zone + true + + + 1425 + 298 + 3 + 1 + GPF Loss Factor + GPF Loss Factor + 0 + 0 + true + false + false + false + false + false + false + true + 2805 + 2805 + Generator Penalty Factors(GPF) loss factor at the node + false + + + 1426 + 298 + 3 + 2 + PTDF Index + PTDF Index + 0 + 0 + true + true + false + false + false + false + false + true + 2806 + 2806 + Index of PTDF zone the node belongs to + false + + + 1427 + 298 + 3 + 3 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 1428 + 298 + 3 + 4 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 1429 + 298 + 3 + 5 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load at the node + true + + + 1430 + 298 + 3 + 6 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed (or embedded) generation at the node + true + + + 1431 + 298 + 3 + 7 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1432 + 298 + 3 + 8 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 1433 + 298 + 3 + 9 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 1434 + 298 + 3 + 10 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 1435 + 298 + 3 + 11 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Pump load + true + + + 1436 + 298 + 3 + 12 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 1437 + 298 + 3 + 13 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 1438 + 298 + 3 + 14 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 1439 + 298 + 3 + 15 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 1440 + 298 + 3 + 16 + Heat Plant Load + Heat Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2833 + 2833 + Heat Plant electric load + true + + + 1441 + 298 + 3 + 17 + Gas Plant Load + Gas Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2834 + 2834 + Gas Plant electric load + true + + + 1442 + 298 + 3 + 18 + Gas Storage Load + Gas Storage Load + 1 + 2 + true + true + false + false + true + false + true + true + 2861 + 2861 + Gas Storage electric load + true + + + 1443 + 298 + 3 + 19 + Water Plant Load + Water Plant Load + 1 + 2 + true + true + false + false + true + false + true + true + 2835 + 2835 + Water Plant electric load + true + + + 1444 + 298 + 3 + 20 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 1445 + 298 + 3 + 21 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 1446 + 298 + 3 + 22 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 1447 + 298 + 3 + 23 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 1448 + 298 + 3 + 24 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 1449 + 298 + 3 + 25 + Facility Generation + Facility Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2844 + 2844 + Generation from connected Facilities + true + + + 1450 + 298 + 3 + 26 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1451 + 298 + 3 + 27 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 1452 + 298 + 3 + 28 + DSP Bid Quantity + DSP Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 156 + 156 + Demand-side participation bid quantity + true + + + 1453 + 298 + 3 + 29 + DSP Bid Price + DSP Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 155 + 155 + Demand-side participation bid price + true + + + 1454 + 298 + 3 + 30 + DSP Bid Cleared + DSP Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1398 + 1398 + Quantity cleared in demand-side participation bid band + true + + + 1455 + 298 + 3 + 31 + Cleared DSP Bid Price + Cleared DSP Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1400 + 1400 + Price of marginal demand-side participation bid band + true + + + 1456 + 298 + 3 + 32 + Cleared DSP Bid Cost + Cleared DSP Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1401 + 1401 + Value of cleared demand-side participation bids + true + + + 1457 + 298 + 3 + 33 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load served to customers at the node + true + + + 1458 + 298 + 3 + 34 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports to the node + true + + + 1459 + 298 + 3 + 35 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports from the node + true + + + 1460 + 298 + 3 + 36 + Net DC Export + Net DC Export + 1 + 2 + true + true + false + false + true + false + true + true + 929 + 929 + Export from the node on DC lines net of losses + true + + + 1461 + 298 + 3 + 37 + Net Injection + Net Injection + 1 + 2 + true + true + false + false + true + false + true + true + 542 + 542 + Net injection (exports - imports) + true + + + 1462 + 298 + 3 + 38 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1463 + 298 + 3 + 39 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1464 + 298 + 3 + 40 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Losses allocated to the node + true + + + 1465 + 298 + 3 + 41 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow through the node + true + + + 1466 + 298 + 3 + 42 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Locational marginal price + true + + + 1467 + 298 + 3 + 43 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of locational marginal price + true + + + 1468 + 298 + 3 + 44 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of locational marginal price + true + + + 1469 + 298 + 3 + 45 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of locational marginal price + true + + + 1470 + 298 + 3 + 46 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Marginal loss factor to slack bus(es) + true + + + 1471 + 298 + 3 + 47 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage + true + + + 1472 + 298 + 3 + 48 + Phase Angle + Phase Angle + 11 + 11 + true + false + false + false + true + false + true + true + 607 + 607 + Node phase angle + true + + + 1473 + 298 + 3 + 49 + Injection Mismatch + Injection Mismatch + 1 + 2 + true + true + false + false + true + false + true + true + 2067 + 2067 + Absolute value of mismatch of injection due to PTDF threshold. + true + + + 1474 + 298 + 3 + 50 + AC Mismatch + AC Mismatch + 121 + 121 + true + true + false + false + false + false + false + true + 2817 + 2817 + The magnitude of the complex power mismatch between the left- and right-hand sides of the AC power balance equation, as initialized using a PLEXOS economic dispatch + true + + + 1475 + 298 + 3 + 51 + DC Losses + DC Losses + 1 + 2 + true + false + false + false + false + false + false + true + 2863 + 2863 + DC Losses allocated to the node + false + + + 1476 + 298 + 3 + 52 + AC Branch Losses + AC Branch Losses + 1 + 2 + true + true + false + false + false + false + false + true + 2886 + 2886 + AC Branch Losses allocated to the node + false + + + 1477 + 298 + 6 + 53 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load across the current period + true + + + 1478 + 298 + 6 + 54 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Rated capacity (Rating x Units) + true + + + 1479 + 298 + 6 + 55 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Firm capacity provided by generators + true + + + 1480 + 298 + 6 + 56 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1481 + 298 + 6 + 57 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1482 + 298 + 6 + 58 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1483 + 298 + 6 + 59 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity to the Node. + true + + + 1484 + 298 + 6 + 60 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Total export capacity from the Node. + true + + + 1485 + 298 + 6 + 61 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1486 + 298 + 6 + 62 + Generation Available Transfer Capacity + Generation Available Transfer Capacity + 1 + 1 + true + true + false + false + false + false + false + true + 3011 + 3011 + The maximum amount of additional MW generation that is possible between this node and the slack bus(es). + true + + + 1487 + 298 + 6 + 63 + Load Available Transfer Capacity + Load Available Transfer Capacity + 1 + 1 + true + true + false + false + false + false + false + true + 2983 + 2983 + The maximum amount of additional MW load that is possible between this node and the slack bus(es). + true + + + 1488 + 298 + 6 + 64 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves + true + + + 1489 + 298 + 6 + 65 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1490 + 298 + 6 + 66 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1491 + 298 + 7 + 67 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1492 + 298 + 7 + 68 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1493 + 298 + 7 + 69 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + false + true + false + false + 394 + 394 + Maintenance biasing factor + true + + + 1494 + 298 + 7 + 70 + EENS + EENS + 3 + 3 + true + true + false + false + false + true + false + false + 161 + 161 + Expected Energy Not Served (summary type "Sum") + true + + + 1495 + 298 + 7 + 71 + EDNS + EDNS + 1 + 1 + true + true + false + false + false + true + false + false + 160 + 160 + Expected Demand Not Served (summary type "Average") + true + + + 1496 + 298 + 7 + 72 + LOLE + LOLE + 7 + 7 + true + true + false + false + false + true + false + false + 365 + 365 + Loss Of Load Expected (summary type "Sum") + true + + + 1497 + 298 + 7 + 73 + LOLP + LOLP + 12 + 12 + true + true + false + false + false + true + false + false + 366 + 366 + Loss Of Load Probability (summary type "Average") + true + + + 1498 + 298 + 12 + 74 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1499 + 298 + 12 + 75 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1500 + 298 + 12 + 76 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1501 + 301 + 1 + 1 + Emissions + Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 3001 + 3001 + Emissions consumed at the node in a virtual emission network + true + + + 1502 + 306 + 3 + 1 + Pricing Weight + Pricing Weight + 0 + 0 + true + true + false + false + true + false + true + true + 1651 + 1651 + Pricing Weight of each node in the hub + true + + + 1503 + 311 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 1504 + 311 + 1 + 2 + Purchases + Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 1505 + 311 + 1 + 3 + Net Sales + Net Sales + 1 + 2 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 1506 + 311 + 1 + 4 + Net Purchases + Net Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 1507 + 311 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 1508 + 311 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 1509 + 311 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 1510 + 311 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 1511 + 317 + 12 + 1 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1512 + 317 + 12 + 2 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1513 + 317 + 12 + 3 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1514 + 322 + 3 + 1 + Flow Path Ratio + Flow Path Ratio + 0 + 0 + true + false + false + false + false + false + false + true + 2807 + 2807 + Susceptance ratio between the line and the path + false + + + 1515 + 322 + 3 + 2 + Flow Price Complete + Flow Price Complete + 33 + 33 + true + false + false + false + false + false + false + true + 2808 + 2808 + Total shadow price from all binding constraints + false + + + 1516 + 322 + 3 + 3 + Formulate Upfront + Formulate Upfront + 0 + 0 + true + true + false + false + false + false + false + true + 976 + 976 + Flag if the thermal limits or non-physical losses should be formulated upfront(0,1) + false + + + 1517 + 322 + 3 + 4 + Is Power Flow Line + Is Power Flow Line + 0 + 0 + true + true + false + false + false + false + false + true + 2809 + 2809 + Flag if the line is a power flow modeled line (0,1) + false + + + 1518 + 322 + 3 + 5 + PTDF Index + PTDF Index + 0 + 0 + true + true + false + false + false + false + false + true + 2806 + 2806 + PTDF Index of the path the line belongs to + false + + + 1519 + 322 + 3 + 6 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Flag if the line is in service (0,1) + true + + + 1520 + 322 + 3 + 7 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow + true + + + 1521 + 322 + 3 + 8 + Flow Back + Flow Back + 1 + 2 + true + true + false + false + true + false + true + true + 206 + 206 + Flow on the line in the counter-reference direction + true + + + 1522 + 322 + 3 + 9 + Net Flow + Net Flow + 1 + 2 + false + true + false + false + true + false + true + true + 1816 + 1816 + Net Flow on the line + true + + + 1523 + 322 + 3 + 10 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the line + true + + + 1524 + 322 + 3 + 11 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the line + true + + + 1525 + 322 + 3 + 12 + Overload Export Limit + Overload Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2864 + 2864 + Maximum post-contingency flow allowed on the line + true + + + 1526 + 322 + 3 + 13 + Overload Import Limit + Overload Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2865 + 2865 + Minimum post-contingency flow allowed on the line + true + + + 1527 + 322 + 3 + 14 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1528 + 322 + 3 + 15 + Loading Back + Loading Back + 12 + 12 + false + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1529 + 322 + 3 + 16 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours line is congested in the reference direction in pre-contingency state + true + + + 1530 + 322 + 3 + 17 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours line is congested in the counter-reference direction + true + + + 1531 + 322 + 3 + 18 + Hours Congested Total + Hours Congested Total + 6 + 6 + true + true + false + false + true + false + true + true + 2878 + 2878 + Number of hours line is congested in the reference direction + true + + + 1532 + 322 + 3 + 19 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow/expansion price in pre-contingency state + true + + + 1533 + 322 + 3 + 20 + Shadow Price Back + Shadow Price Back + 32 + 32 + true + true + false + false + true + false + true + true + 743 + 743 + Shadow/expansion price for counter-reference direction flows + true + + + 1534 + 322 + 3 + 21 + Shadow Price Total + Shadow Price Total + 32 + 32 + true + true + false + false + true + false + true + true + 2879 + 2879 + Shadow/expansion price + true + + + 1535 + 322 + 3 + 22 + Violation Hours + Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 283 + 283 + If the line is flowing above is minimum or maximum rating + true + + + 1536 + 322 + 3 + 23 + Violation Back Hours + Violation Back Hours + 6 + 6 + false + true + false + false + true + false + true + true + 284 + 284 + Number of hours the flow limit is violated in the counter-reference direction. + true + + + 1537 + 322 + 3 + 24 + Violation + Violation + 1 + 2 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of flow limit + true + + + 1538 + 322 + 3 + 25 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the flow limit in the counter-reference direction. + true + + + 1539 + 322 + 3 + 26 + Violation Cost + Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 845 + 845 + Cost of violating flow limits + true + + + 1540 + 322 + 3 + 27 + Violation Cost Back + Violation Cost Back + 14 + 34 + false + true + false + true + true + false + true + true + 846 + 846 + Cost of violating the flow limit in the counter-reference direction. + true + + + 1541 + 322 + 3 + 28 + Ramp + Ramp + 1 + 1 + true + false + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 1542 + 322 + 3 + 29 + Ramp Cost + Ramp Cost + 14 + 34 + true + true + false + true + true + false + true + true + 869 + 869 + Cost of ramping + true + + + 1543 + 322 + 3 + 30 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow + true + + + 1544 + 322 + 3 + 31 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow + true + + + 1545 + 322 + 3 + 32 + Fixed Flow + Fixed Flow + 1 + 2 + true + true + false + false + true + false + true + true + 197 + 197 + Fixed flow on line + true + + + 1546 + 322 + 3 + 33 + Fixed Flow Violation + Fixed Flow Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1325 + 1325 + Violation of [Fixed Flow] constraint. + true + + + 1547 + 322 + 3 + 34 + Fixed Flow Violation Hours + Fixed Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1327 + 1327 + Number of hours that [Fixed Flow] is violated. + true + + + 1548 + 322 + 3 + 35 + Fixed Flow Violation Cost + Fixed Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1326 + 1326 + Cost of [Fixed Flow] violations. + true + + + 1549 + 322 + 3 + 36 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of energy exported + true + + + 1550 + 322 + 3 + 37 + Import Cost + Import Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1234 + 1234 + Cost of energy imported + true + + + 1551 + 322 + 3 + 38 + Export Revenue + Export Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1235 + 1235 + Revenue from energy exported + true + + + 1552 + 322 + 3 + 39 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from energy imported + true + + + 1553 + 322 + 3 + 40 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Rental / settlement surplus in pre-contingency state + true + + + 1554 + 322 + 3 + 41 + Rental Back + Rental Back + 14 + 34 + false + true + false + false + true + false + true + true + 679 + 679 + Rental / settlement surplus in the counter-reference direction + true + + + 1555 + 322 + 3 + 42 + Rental Total + Rental Total + 14 + 34 + true + true + false + true + true + false + true + true + 2880 + 2880 + Rental / settlement surplus + true + + + 1556 + 322 + 3 + 43 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost + true + + + 1557 + 322 + 3 + 44 + Wheeling Cost Back + Wheeling Cost Back + 14 + 34 + true + true + false + false + true + false + true + true + 861 + 861 + Wheeling cost of flows in the counter-reference direction + true + + + 1558 + 322 + 3 + 45 + Loss + Loss + 1 + 2 + true + true + false + false + true + false + true + true + 372 + 372 + Losses + true + + + 1559 + 322 + 3 + 46 + Loss Back + Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 374 + 374 + Losses on flows in the counter-reference direction + true + + + 1560 + 322 + 3 + 47 + Marginal Loss + Marginal Loss + 12 + 12 + true + true + false + false + true + false + true + true + 403 + 403 + Marginal loss + true + + + 1561 + 322 + 3 + 48 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Transmission marginal loss factor (MLF or TLF) for exports + true + + + 1562 + 322 + 3 + 49 + Non-physical Loss + Non-physical Loss + 1 + 2 + true + true + false + false + true + false + true + true + 2896 + 2896 + Non-physical losses in the reference direction + true + + + 1563 + 322 + 3 + 50 + Non-physical Loss Back + Non-physical Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 2897 + 2897 + Non-physical losses in the counter-reference direction + true + + + 1564 + 322 + 3 + 51 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage of the line + true + + + 1565 + 322 + 3 + 52 + Offer Base + Offer Base + 1 + 1 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for balancing offer + true + + + 1566 + 322 + 3 + 53 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band for reference direction flows + true + + + 1567 + 322 + 3 + 54 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price offered in band for reference direction flows + true + + + 1568 + 322 + 3 + 55 + Offer Quantity Back + Offer Quantity Back + 1 + 2 + true + true + true + false + true + false + true + true + 573 + 573 + Quantity offered in band for counter-reference direction flows + true + + + 1569 + 322 + 3 + 56 + Offer Price Back + Offer Price Back + 33 + 33 + true + true + true + false + true + false + true + true + 570 + 570 + Price offered in band for counter-reference direction flows + true + + + 1570 + 322 + 3 + 57 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 1571 + 322 + 3 + 58 + Offer Cleared Back + Offer Cleared Back + 1 + 2 + true + true + true + false + true + false + true + true + 567 + 567 + Quantity cleared in band + true + + + 1572 + 322 + 3 + 59 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 1573 + 322 + 3 + 60 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under offer curve + true + + + 1574 + 322 + 3 + 61 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1575 + 322 + 3 + 62 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 1576 + 322 + 3 + 63 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 1577 + 322 + 3 + 64 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 1578 + 322 + 6 + 65 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + false + + + 1579 + 322 + 6 + 66 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Net capacity reserves exported + true + + + 1580 + 322 + 6 + 67 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + false + false + 1012 + 1012 + Contribution of the line to region capacity reserves + true + + + 1581 + 322 + 6 + 68 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the line. + true + + + 1582 + 322 + 6 + 69 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the line in the counter-reference direction. + true + + + 1583 + 322 + 7 + 70 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units (circuits) out of service + true + + + 1584 + 322 + 7 + 71 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Total capacity out of service in the reference direction (discrete + distributed) + true + + + 1585 + 322 + 7 + 72 + Maintenance Back + Maintenance Back + 1 + 2 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 1586 + 322 + 7 + 73 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 1587 + 322 + 7 + 74 + Discrete Maintenance Back + Discrete Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 1588 + 322 + 7 + 75 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 1589 + 322 + 7 + 76 + Distributed Maintenance Back + Distributed Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 1590 + 322 + 7 + 77 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 1591 + 322 + 7 + 78 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1592 + 322 + 7 + 79 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 1593 + 322 + 7 + 80 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for transfer + true + + + 1594 + 322 + 8 + 81 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 1595 + 322 + 8 + 82 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 1596 + 322 + 8 + 83 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Export capacity gained from new builds + true + + + 1597 + 322 + 8 + 84 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Import capacity gained from new builds + true + + + 1598 + 322 + 8 + 85 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Export capacity lost to retirements + true + + + 1599 + 322 + 8 + 86 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Import capacity lost to retirements + true + + + 1600 + 322 + 8 + 87 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the line + true + + + 1601 + 322 + 8 + 88 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of building the line + true + + + 1602 + 322 + 8 + 89 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the line + true + + + 1603 + 322 + 12 + 90 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1604 + 322 + 12 + 91 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1605 + 322 + 12 + 92 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1606 + 325 + 1 + 1 + Emission Flow + Emission Flow + 19 + 20 + true + true + false + true + true + false + true + true + 3002 + 3002 + Emissions flow on the line in virtual emission network + true + + + 1607 + 339 + 3 + 1 + Flow Path Ratio + Flow Path Ratio + 0 + 0 + true + false + false + false + false + false + false + true + 2807 + 2807 + Susceptance ratio between the transformer and the path + false + + + 1608 + 339 + 3 + 2 + Flow Price Complete + Flow Price Complete + 33 + 33 + true + false + false + false + false + false + false + true + 2808 + 2808 + Total shadow price from all binding constraints + false + + + 1609 + 339 + 3 + 3 + Formulate Upfront + Formulate Upfront + 0 + 0 + true + true + false + false + false + false + false + true + 976 + 976 + Flag if the thermal limits or non-physical losses should be formulated upfront(0,1) + false + + + 1610 + 339 + 3 + 4 + Is Power Flow Transformer + Is Power Flow Transformer + 0 + 0 + true + true + false + false + false + false + false + true + 2810 + 2810 + Flag if the transformer is a power flow modeled transformer (0,1) + false + + + 1611 + 339 + 3 + 5 + PTDF Index + PTDF Index + 0 + 0 + true + true + false + false + false + false + false + true + 2806 + 2806 + PTDF Index of the path the transformer belongs to + false + + + 1612 + 339 + 3 + 6 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow through the transformer (sent out) + true + + + 1613 + 339 + 3 + 7 + Flow Back + Flow Back + 1 + 2 + false + true + false + false + true + false + true + true + 206 + 206 + Flow through the transformer in the counter-reference direction + true + + + 1614 + 339 + 3 + 8 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the transformer + true + + + 1615 + 339 + 3 + 9 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the line + true + + + 1616 + 339 + 3 + 10 + Overload Export Limit + Overload Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2864 + 2864 + Maximum post-contingency flow allowed on the transformer + true + + + 1617 + 339 + 3 + 11 + Overload Import Limit + Overload Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2865 + 2865 + Minimum post-contingency flow allowed on the line + true + + + 1618 + 339 + 3 + 12 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1619 + 339 + 3 + 13 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1620 + 339 + 3 + 14 + Loss + Loss + 1 + 2 + true + true + false + false + true + false + true + true + 372 + 372 + Losses (sent out) + true + + + 1621 + 339 + 3 + 15 + Loss Back + Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 374 + 374 + Losses on flows in the counter-reference direction + true + + + 1622 + 339 + 3 + 16 + Non-physical Loss + Non-physical Loss + 1 + 2 + true + true + false + false + true + false + true + true + 2896 + 2896 + Non-physical losses in the reference direction + true + + + 1623 + 339 + 3 + 17 + Non-physical Loss Back + Non-physical Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 2897 + 2897 + Non-physical losses in the counter-reference direction + true + + + 1624 + 339 + 3 + 18 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage of the transformer + true + + + 1625 + 339 + 3 + 19 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the Transformer is flowing at its [Rating] in pre-contingency state + true + + + 1626 + 339 + 3 + 20 + Hours Congested Total + Hours Congested Total + 6 + 6 + true + true + false + true + true + false + true + true + 2878 + 2878 + Number of hours the Transformer is flowing at its [Rating] + true + + + 1627 + 339 + 3 + 21 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow/expansion price in pre-contingency state + true + + + 1628 + 339 + 3 + 22 + Shadow Price Total + Shadow Price Total + 32 + 32 + true + true + false + false + true + false + true + true + 2879 + 2879 + Shadow/expansion price + true + + + 1629 + 339 + 3 + 23 + Violation Hours + Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 283 + 283 + Number of hours the Transformer Flow exceeds the [Rating]. + true + + + 1630 + 339 + 3 + 24 + Violation Back Hours + Violation Back Hours + 6 + 6 + false + true + false + false + true + false + true + true + 284 + 284 + Number of hours the flow limit is violated in the counter-reference direction. + true + + + 1631 + 339 + 3 + 25 + Violation + Violation + 1 + 2 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of flow limit + true + + + 1632 + 339 + 3 + 26 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the flow limit in the counter-reference direction. + true + + + 1633 + 339 + 3 + 27 + Violation Cost + Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 845 + 845 + Cost of violating flow limits + true + + + 1634 + 339 + 3 + 28 + Violation Cost Back + Violation Cost Back + 14 + 34 + false + true + false + true + true + false + true + true + 846 + 846 + Cost of violating the flow limit in the counter-reference direction. + true + + + 1635 + 339 + 3 + 29 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow + true + + + 1636 + 339 + 3 + 30 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow + true + + + 1637 + 339 + 3 + 31 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of energy exported + true + + + 1638 + 339 + 3 + 32 + Import Cost + Import Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1234 + 1234 + Cost of energy imported + true + + + 1639 + 339 + 3 + 33 + Export Revenue + Export Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1235 + 1235 + Revenue from energy exported + true + + + 1640 + 339 + 3 + 34 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from energy imported + true + + + 1641 + 339 + 3 + 35 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Transmission rent in pre-contingency state + true + + + 1642 + 339 + 3 + 36 + Rental Back + Rental Back + 14 + 34 + false + true + false + true + true + false + true + true + 679 + 679 + Rental / settlement surplus in the counter-reference direction + true + + + 1643 + 339 + 3 + 37 + Rental Total + Rental Total + 14 + 34 + true + true + false + true + true + false + true + true + 2880 + 2880 + Transmission rent + true + + + 1644 + 339 + 7 + 38 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Total capacity out of service in the reference direction (discrete + distributed) + true + + + 1645 + 339 + 7 + 39 + Maintenance Back + Maintenance Back + 1 + 2 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 1646 + 339 + 7 + 40 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 1647 + 339 + 7 + 41 + Discrete Maintenance Back + Discrete Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 1648 + 339 + 7 + 42 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 1649 + 339 + 7 + 43 + Distributed Maintenance Back + Distributed Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 1650 + 339 + 7 + 44 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 1651 + 339 + 7 + 45 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1652 + 339 + 7 + 46 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 1653 + 339 + 7 + 47 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for transfer + true + + + 1654 + 339 + 6 + 48 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the transformer. + true + + + 1655 + 339 + 6 + 49 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the transformer in the counter-reference direction. + true + + + 1656 + 339 + 6 + 50 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Rating (o.w. Max Flow) x Units) + false + + + 1657 + 339 + 12 + 51 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1658 + 339 + 12 + 52 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1659 + 339 + 12 + 53 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1660 + 346 + 3 + 1 + Angle + Angle + 11 + 11 + true + true + false + false + true + false + true + true + 14 + 14 + Angle (initial angle when used as input) + true + + + 1661 + 346 + 3 + 2 + Min Angle + Min Angle + 11 + 11 + true + true + false + false + true + false + true + true + 472 + 472 + Min angle set on the flow control + true + + + 1662 + 346 + 3 + 3 + Max Angle + Max Angle + 11 + 11 + true + true + false + false + true + false + true + true + 411 + 411 + Max angle set on the flow control + true + + + 1663 + 346 + 3 + 4 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Equivalent flow in reference direction due to phase shift + true + + + 1664 + 346 + 3 + 5 + Flow Back + Flow Back + 1 + 2 + true + true + false + false + true + false + true + true + 206 + 206 + Equivalent flow against reference direction due to phase shift + true + + + 1665 + 346 + 3 + 6 + Impedance + Impedance + 10 + 10 + true + true + false + false + true + false + true + true + 1782 + 1782 + Equivalent impedance + true + + + 1666 + 346 + 3 + 7 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + false + true + true + 276 + 276 + Number of hours the flow control is operating at maximum angle. + true + + + 1667 + 346 + 3 + 8 + Shadow Price + Shadow Price + 43 + 43 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow (expansion) price + true + + + 1668 + 346 + 3 + 9 + Rental + Rental + 14 + 34 + true + true + false + false + true + false + true + true + 678 + 678 + Rental + true + + + 1669 + 346 + 3 + 10 + Penalty + Penalty + 14 + 34 + true + true + false + false + true + false + true + true + 602 + 602 + Penalty incurred for shifting the angle + true + + + 1670 + 346 + 3 + 11 + Max Flow + Max Flow + 1 + 2 + true + true + false + false + false + false + false + true + 429 + 429 + Maximum flow that can flow on FC device + false + + + 1671 + 346 + 8 + 12 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Binary indicating if the unit was built + true + + + 1672 + 346 + 8 + 13 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the flow control + true + + + 1673 + 346 + 12 + 14 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1674 + 346 + 12 + 15 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1675 + 346 + 12 + 16 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1676 + 353 + 3 + 1 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow on the interface + true + + + 1677 + 353 + 3 + 2 + Flow Back + Flow Back + 1 + 2 + false + true + false + false + true + false + true + true + 206 + 206 + Flow on the interface in the counter-reference direction + true + + + 1678 + 353 + 3 + 3 + Net Flow + Net Flow + 1 + 2 + false + true + false + false + true + false + true + true + 1816 + 1816 + Net Flow on the interface + true + + + 1679 + 353 + 3 + 4 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the interface + true + + + 1680 + 353 + 3 + 5 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the interface + true + + + 1681 + 353 + 3 + 6 + Overload Export Limit + Overload Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2864 + 2864 + Maximum post-contingency flow allowed on the interface + true + + + 1682 + 353 + 3 + 7 + Overload Import Limit + Overload Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 2865 + 2865 + Minimum post-contingency flow allowed on the interface + true + + + 1683 + 353 + 3 + 8 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1684 + 353 + 3 + 9 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1685 + 353 + 3 + 10 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the interface is congested in pre-contingency state + true + + + 1686 + 353 + 3 + 11 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the interface flow is congested in the counter-reference direction + true + + + 1687 + 353 + 3 + 12 + Hours Congested Total + Hours Congested Total + 6 + 6 + true + true + false + false + true + false + true + true + 2878 + 2878 + Number of hours interface is congested in the reference direction + true + + + 1688 + 353 + 3 + 13 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of interface limit in the reference direction in pre-contingency state + true + + + 1689 + 353 + 3 + 14 + Shadow Price Back + Shadow Price Back + 32 + 32 + false + true + false + false + true + false + true + true + 743 + 743 + Shadow price of interface limit in the counter-reference direction + true + + + 1690 + 353 + 3 + 15 + Shadow Price Total + Shadow Price Total + 32 + 32 + true + true + false + false + true + false + true + true + 2879 + 2879 + Shadow/expansion price + true + + + 1691 + 353 + 3 + 16 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Flowgate rental in pre-contingency state + true + + + 1692 + 353 + 3 + 17 + Rental Total + Rental Total + 14 + 34 + true + true + false + true + true + false + true + true + 2880 + 2880 + Flowgate rental + true + + + 1693 + 353 + 3 + 18 + Violation + Violation + 1 + 2 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of the interface limit. + true + + + 1694 + 353 + 3 + 19 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the interface limit in the counter-reference direction. + true + + + 1695 + 353 + 3 + 20 + Ramp + Ramp + 1 + 1 + true + false + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 1696 + 353 + 3 + 21 + Ramp Cost + Ramp Cost + 14 + 34 + true + true + false + true + true + false + true + true + 869 + 869 + Cost of ramping + true + + + 1697 + 353 + 3 + 22 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow on interface + true + + + 1698 + 353 + 3 + 23 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow on interface + true + + + 1699 + 353 + 3 + 24 + Fixed Flow + Fixed Flow + 1 + 2 + true + true + false + false + true + false + true + true + 197 + 197 + Fixed flow on interface + true + + + 1700 + 353 + 3 + 25 + Fixed Flow Violation + Fixed Flow Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1325 + 1325 + Violation of [Fixed Flow] constraint. + true + + + 1701 + 353 + 3 + 26 + Fixed Flow Violation Hours + Fixed Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1327 + 1327 + Number of hours that [Fixed Flow] is violated. + true + + + 1702 + 353 + 3 + 27 + Fixed Flow Violation Cost + Fixed Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1326 + 1326 + Cost of [Fixed Flow] violations. + true + + + 1703 + 353 + 3 + 28 + Offer Base + Offer Base + 1 + 1 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for balancing offer + true + + + 1704 + 353 + 3 + 29 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band for reference direction flows + true + + + 1705 + 353 + 3 + 30 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price offered in band for reference direction flows + true + + + 1706 + 353 + 3 + 31 + Offer Quantity Back + Offer Quantity Back + 1 + 2 + true + true + true + false + true + false + true + true + 573 + 573 + Quantity offered in band for counter-reference direction flows + true + + + 1707 + 353 + 3 + 32 + Offer Price Back + Offer Price Back + 33 + 33 + true + true + true + false + true + false + true + true + 570 + 570 + Price offered in band for counter-reference direction flows + true + + + 1708 + 353 + 3 + 33 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 1709 + 353 + 3 + 34 + Offer Cleared Back + Offer Cleared Back + 1 + 2 + true + true + true + false + true + false + true + true + 567 + 567 + Quantity cleared in band + true + + + 1710 + 353 + 3 + 35 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 1711 + 353 + 3 + 36 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under offer curve + true + + + 1712 + 353 + 6 + 37 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the interface. + true + + + 1713 + 353 + 6 + 38 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the interface in the counter-reference direction. + true + + + 1714 + 353 + 6 + 39 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the interface to region capacity reserves + true + + + 1715 + 353 + 6 + 40 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Reserve provided by lines in the interface + true + + + 1716 + 353 + 8 + 41 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (expansion of interface in both directions) + true + + + 1717 + 353 + 8 + 42 + Expansion Cost + Expansion Cost + 34 + 34 + true + true + false + false + true + false + false + false + 184 + 184 + Cost of expanding the interface by one megawatt + true + + + 1718 + 353 + 12 + 43 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1719 + 353 + 12 + 44 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1720 + 353 + 12 + 45 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1721 + 356 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from interface constraint + false + + + 1722 + 356 + 1 + 2 + Flow Coefficient + Flow Coefficient + 0 + 0 + true + false + false + false + false + false + false + true + 208 + 208 + Transformer flow coefficient + false + + + 1723 + 357 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from interface constraint + false + + + 1724 + 357 + 1 + 2 + Flow Coefficient + Flow Coefficient + 0 + 0 + true + false + false + false + false + false + false + true + 208 + 208 + Transformer flow coefficient + false + + + 1725 + 361 + 3 + 1 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + false + true + true + 276 + 276 + Number of hours that any monitored limit under the Contingency is binding. + true + + + 1726 + 361 + 3 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency shadow price + true + + + 1727 + 361 + 12 + 3 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1728 + 361 + 12 + 4 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1729 + 361 + 12 + 5 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1730 + 365 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from contingency constraint + false + + + 1731 + 366 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Contingency auto-detected Monitored Lines Post-Contingent Flows + false + + + 1732 + 366 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency auto-detected Monitored Lines Shadow price for contingency constraint + false + + + 1733 + 366 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from contingency constraint + false + + + 1734 + 367 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Post-Contingent Flows + true + + + 1735 + 367 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price for contingency constraint + true + + + 1736 + 367 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Line congestion contribution from contingency constraint + false + + + 1737 + 368 + 1 + 1 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from contingency constraint + false + + + 1738 + 369 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Post-Contingent Flows + true + + + 1739 + 369 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price for contingency constraint + true + + + 1740 + 369 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from contingency constraint + false + + + 1741 + 370 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Contingency auto-detected Monitored Transformers Post-Contingent Flows + false + + + 1742 + 370 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency auto-detected Monitored Transformers Shadow price for contingency constraint + false + + + 1743 + 370 + 1 + 3 + Congestion Contribution + Congestion Contribution + 33 + 33 + true + false + false + false + false + false + false + true + 2851 + 2851 + Transformer congestion contribution from contingency constraint + false + + + 1744 + 371 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Contingency auto-detected Monitored Interfaces Post-Contingent Flows + false + + + 1745 + 371 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency auto-detected Monitored Interfaces Shadow price for contingency constraint + false + + + 1746 + 372 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Post-Contingent Flows + true + + + 1747 + 372 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price for contingency constraint + true + + + 1748 + 373 + 3 + 1 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Price at the hub + true + + + 1749 + 373 + 3 + 2 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 1750 + 373 + 3 + 3 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 1751 + 373 + 3 + 4 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load their energy purchases + true + + + 1752 + 373 + 3 + 5 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1753 + 373 + 3 + 6 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1754 + 373 + 3 + 7 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1755 + 373 + 3 + 8 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of the hub price + true + + + 1756 + 373 + 3 + 9 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of the hub price + true + + + 1757 + 373 + 3 + 10 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of the hub price + true + + + 1758 + 373 + 12 + 11 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1759 + 373 + 12 + 12 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1760 + 373 + 12 + 13 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1761 + 378 + 1 + 1 + Quantity + Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 650 + 650 + Contract quantity + true + + + 1762 + 378 + 1 + 2 + Settlement + Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 738 + 738 + Settlement + true + + + 1763 + 378 + 1 + 3 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Settlement net of scheduled Price + true + + + 1764 + 378 + 1 + 4 + Source Price + Source Price + 33 + 33 + true + true + false + false + true + false + true + true + 1783 + 1783 + Price on source side + true + + + 1765 + 378 + 1 + 5 + Source Energy Charge + Source Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1784 + 1784 + Energy charge on source side + true + + + 1766 + 378 + 1 + 6 + Source Congestion Charge + Source Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1785 + 1785 + Congestion charge on source side + true + + + 1767 + 378 + 1 + 7 + Source Loss Charge + Source Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1786 + 1786 + Loss charge on source side + true + + + 1768 + 378 + 1 + 8 + Sink Price + Sink Price + 33 + 33 + true + true + false + false + true + false + true + true + 1787 + 1787 + Price on sink side + true + + + 1769 + 378 + 1 + 9 + Sink Energy Charge + Sink Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1788 + 1788 + Energy charge on sink side + true + + + 1770 + 378 + 1 + 10 + Sink Congestion Charge + Sink Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1789 + 1789 + Congestion charge on sink side + true + + + 1771 + 378 + 1 + 11 + Sink Loss Charge + Sink Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1790 + 1790 + Loss charge on sink side + true + + + 1772 + 378 + 1 + 12 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price difference between the source and sink side + true + + + 1773 + 389 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 1774 + 389 + 3 + 2 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Heat production + true + + + 1775 + 389 + 3 + 3 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Heat production cost + true + + + 1776 + 389 + 3 + 4 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 1777 + 389 + 3 + 5 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1778 + 389 + 3 + 6 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 1779 + 389 + 3 + 7 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + false + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 1780 + 389 + 3 + 8 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 1781 + 389 + 3 + 9 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 1782 + 389 + 3 + 10 + Electrical Usage + Electrical Usage + 1 + 2 + true + true + false + false + true + false + true + true + 1938 + 1938 + Electrical usage from the electric boiler + true + + + 1783 + 389 + 3 + 11 + Units Producing Heat + Units Producing Heat + 0 + 0 + true + false + false + false + true + false + true + true + 1939 + 1939 + Number of units producing heat + true + + + 1784 + 389 + 3 + 12 + Ramp + Ramp + 35 + 35 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 1785 + 389 + 3 + 13 + Ramp Up + Ramp Up + 15 + 15 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 1786 + 389 + 3 + 14 + Ramp Down + Ramp Down + 15 + 15 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 1787 + 389 + 3 + 15 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 1788 + 389 + 3 + 16 + Hours Up + Hours Up + 6 + 6 + true + true + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start of a heat plant + true + + + 1789 + 389 + 3 + 17 + Hours Down + Hours Down + 6 + 6 + true + true + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shut down of a heat plant + true + + + 1790 + 389 + 3 + 18 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of heat plant units started + true + + + 1791 + 389 + 3 + 19 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of heat plant units shut down + true + + + 1792 + 389 + 3 + 20 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints. + true + + + 1793 + 389 + 3 + 21 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations. + true + + + 1794 + 389 + 3 + 22 + Efficiency + Efficiency + 37 + 37 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of heat production + true + + + 1795 + 389 + 3 + 23 + Marginal Heat Rate + Marginal Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal heat production level + true + + + 1796 + 389 + 3 + 24 + Average Heat Rate + Average Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate + true + + + 1797 + 389 + 3 + 25 + SRMC + SRMC + 29 + 29 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 1798 + 389 + 6 + 26 + Installed Capacity + Installed Capacity + 35 + 35 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity + true + + + 1799 + 389 + 8 + 27 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of Heat Plant units built in this year + true + + + 1800 + 389 + 8 + 28 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 1801 + 389 + 8 + 29 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 1802 + 389 + 8 + 30 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of Heat Plant units retired in this year + true + + + 1803 + 389 + 8 + 31 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the Heat Plant + true + + + 1804 + 389 + 12 + 32 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1805 + 389 + 12 + 33 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1806 + 389 + 12 + 34 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1807 + 392 + 3 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 1808 + 392 + 3 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the heat plant + true + + + 1809 + 392 + 3 + 3 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 1810 + 392 + 3 + 4 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used + true + + + 1811 + 392 + 3 + 5 + Marginal Heat Rate + Marginal Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal heat production level + true + + + 1812 + 392 + 3 + 6 + SRMC + SRMC + 29 + 29 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 1813 + 392 + 3 + 7 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours the Fuel is in use by the heat plant + true + + + 1814 + 393 + 3 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 1815 + 393 + 3 + 2 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 1816 + 393 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used + true + + + 1817 + 401 + 3 + 1 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from heat node + true + + + 1818 + 401 + 3 + 2 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into heat node + true + + + 1819 + 401 + 3 + 3 + Heat Demand + Heat Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1941 + 1941 + Demand at the heat node + true + + + 1820 + 401 + 3 + 4 + Facility Heat Consumption + Facility Heat Consumption + 75 + 76 + true + true + false + false + true + false + true + true + 3150 + 3150 + Load from connected Facilities + true + + + 1821 + 401 + 12 + 5 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1822 + 401 + 12 + 6 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1823 + 401 + 12 + 7 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1824 + 407 + 1 + 1 + Sales + Sales + 15 + 16 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 1825 + 407 + 1 + 2 + Purchases + Purchases + 15 + 16 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 1826 + 407 + 1 + 3 + Net Sales + Net Sales + 15 + 16 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 1827 + 407 + 1 + 4 + Net Purchases + Net Purchases + 15 + 16 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 1828 + 407 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 1829 + 407 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 1830 + 407 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 1831 + 407 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 1832 + 411 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 1833 + 411 + 3 + 2 + End Heat + End Heat + 15 + 15 + true + true + false + false + true + false + true + true + 2213 + 2213 + Heat in storage at the end of the period + true + + + 1834 + 411 + 3 + 3 + Initial Heat + Initial Heat + 15 + 15 + true + true + false + false + true + false + true + true + 2212 + 2212 + Initial heat in the storage + true + + + 1835 + 411 + 3 + 4 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into storage + true + + + 1836 + 411 + 3 + 5 + Heat Injection Cost + Heat Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1544 + 1544 + Cost of injecting heat into storage + true + + + 1837 + 411 + 3 + 6 + Heat Loss + Heat Loss + 15 + 16 + true + true + false + true + true + false + true + true + 1516 + 1516 + Rate at which heat is lost from storage + true + + + 1838 + 411 + 3 + 7 + Heat Shadow Price + Heat Shadow Price + 61 + 61 + true + true + false + false + true + false + true + true + 1545 + 1545 + Shadow price of heat in storage + true + + + 1839 + 411 + 3 + 8 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from storage + true + + + 1840 + 411 + 3 + 9 + Heat Withdrawal Cost + Heat Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1543 + 1543 + Cost of withdrawing heat from storage + true + + + 1841 + 411 + 3 + 10 + Net Heat Withdrawal + Net Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1542 + 1542 + Net of withdrawal and injection + true + + + 1842 + 411 + 3 + 11 + Max Heat + Max Heat + 15 + 15 + true + true + false + true + true + false + true + true + 1514 + 1514 + Maximum heat allowed in storage + true + + + 1843 + 411 + 3 + 12 + Min Heat + Min Heat + 15 + 15 + true + true + false + true + true + false + true + true + 1515 + 1515 + Minimum heat allowed in storage + true + + + 1844 + 411 + 8 + 13 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of Heat Storage units built in this year + true + + + 1845 + 411 + 8 + 14 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the heat storage + true + + + 1846 + 411 + 8 + 15 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of Heat Storage units retired in this year + true + + + 1847 + 411 + 8 + 16 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the heat storage + true + + + 1848 + 417 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Gas Field is in service + true + + + 1849 + 417 + 3 + 2 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume of gas in the field + true + + + 1850 + 417 + 3 + 3 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 1851 + 417 + 3 + 4 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas field + true + + + 1852 + 417 + 3 + 5 + Production Loss + Production Loss + 75 + 76 + true + true + false + true + true + false + true + true + 3127 + 3127 + Quantity of gas lost or fuel used by gas field production + true + + + 1853 + 417 + 3 + 6 + Max Production Available + Max Production Available + 75 + 76 + true + true + false + true + true + false + true + true + 3021 + 3021 + The max available production of a gas field given its constraints + true + + + 1854 + 417 + 3 + 7 + Min Production Available + Min Production Available + 75 + 76 + true + true + false + true + true + false + true + true + 3022 + 3022 + The min available production of a gas field given its constraints + true + + + 1855 + 417 + 3 + 8 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Incremental cost of extracting gas from the field + true + + + 1856 + 417 + 3 + 9 + Loss + Loss + 75 + 76 + true + true + false + true + true + false + true + true + 372 + 372 + Gas field loss amount of the carried gas + true + + + 1857 + 417 + 3 + 10 + Carrying Cost + Carrying Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2039 + 2039 + Total cost of gas carried in the gas field + true + + + 1858 + 417 + 3 + 11 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost from the Inventory Price of holding gas in a field + true + + + 1859 + 417 + 3 + 12 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Average price of producing gas + true + + + 1860 + 417 + 3 + 13 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch Price + true + + + 1861 + 417 + 3 + 14 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 1862 + 417 + 3 + 15 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1863 + 417 + 3 + 16 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1864 + 417 + 3 + 17 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 1865 + 417 + 3 + 18 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1866 + 417 + 3 + 19 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the field + true + + + 1867 + 417 + 3 + 20 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas field expansion + true + + + 1868 + 417 + 3 + 21 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by extracting gas from the field + true + + + 1869 + 417 + 7 + 22 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1870 + 417 + 7 + 23 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 1871 + 417 + 7 + 24 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas field is on maintenance + true + + + 1872 + 417 + 7 + 25 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 1873 + 417 + 7 + 26 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas field is on forced outage of production + true + + + 1874 + 417 + 7 + 27 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Field capacity available in production + true + + + 1875 + 417 + 8 + 28 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of gas fields built this year + true + + + 1876 + 417 + 8 + 29 + Capacity Built + Capacity Built + 76 + 76 + true + true + false + false + true + false + false + false + 54 + 54 + Gas field capacity built + true + + + 1877 + 417 + 8 + 30 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of developing the gas field + true + + + 1878 + 417 + 12 + 31 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1879 + 417 + 12 + 32 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1880 + 417 + 12 + 33 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1881 + 422 + 3 + 1 + Production + Production + 58 + 58 + true + true + false + true + true + false + true + true + 624 + 624 + Total production from gas field + true + + + 1882 + 422 + 3 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Production costs associated with company gas field production + true + + + 1883 + 422 + 3 + 3 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance costs + true + + + 1884 + 422 + 3 + 4 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1885 + 422 + 3 + 5 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with gas scarcity + true + + + 1886 + 422 + 3 + 6 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net Revenue + true + + + 1887 + 422 + 3 + 7 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net Profit = Net Revenue - Fixed Costs + true + + + 1888 + 426 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of Gas Plant units in service + true + + + 1889 + 426 + 3 + 2 + Units Operating + Units Operating + 0 + 0 + true + false + false + false + true + false + true + true + 2049 + 2049 + Number of units operating + true + + + 1890 + 426 + 3 + 3 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 1891 + 426 + 3 + 4 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 1892 + 426 + 3 + 5 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 1893 + 426 + 3 + 6 + Start Profile Violation + Start Profile Violation + 75 + 76 + true + true + false + false + true + false + true + true + 2640 + 2640 + Violation of [Start Profile] constraint. + true + + + 1894 + 426 + 3 + 7 + Start Profile Violation Cost + Start Profile Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2641 + 2641 + Cost of [Start Profile] violations. + true + + + 1895 + 426 + 3 + 8 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + true + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints. + true + + + 1896 + 426 + 3 + 9 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations. + true + + + 1897 + 426 + 3 + 10 + Raw Gas + Raw Gas + 58 + 76 + true + true + false + true + true + false + true + true + 1739 + 1739 + The amount of raw gas processed + true + + + 1898 + 426 + 3 + 11 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + The amount of saleable gas processed + true + + + 1899 + 426 + 3 + 12 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Gas plant utilization based on production + true + + + 1900 + 426 + 3 + 13 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of gas refinement process + true + + + 1901 + 426 + 3 + 14 + Energy Efficiency + Energy Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 3101 + 3101 + Efficiency of the energy usage for the gas plant production + true + + + 1902 + 426 + 3 + 15 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start of a gas plant + true + + + 1903 + 426 + 3 + 16 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown of a gas plant + true + + + 1904 + 426 + 3 + 17 + Max Production Available + Max Production Available + 75 + 76 + true + true + false + true + true + false + true + true + 3021 + 3021 + The max available production of a gas plant + true + + + 1905 + 426 + 3 + 18 + Min Production Available + Min Production Available + 75 + 76 + true + true + false + true + true + false + true + true + 3022 + 3022 + The min available production of a gas plant + true + + + 1906 + 426 + 3 + 19 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + The total cost for processing the gas + true + + + 1907 + 426 + 3 + 20 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Incremental dispatch price of processing gas + true + + + 1908 + 426 + 3 + 21 + Consumption + Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 1437 + 1437 + The amount of pipeline quality gas consumed in processing + true + + + 1909 + 426 + 3 + 22 + Energy Consumption + Energy Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + The total electric consumption of the Gas Plant + true + + + 1910 + 426 + 3 + 23 + Electric Energy Cost + Electric Energy Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2733 + 2733 + Cost of electric energy + true + + + 1911 + 426 + 3 + 24 + Electric Price Paid + Electric Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 613242910 + 613242910 + Price paid by the electric load + true + + + 1912 + 426 + 3 + 25 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Variable operations and maintenance cost + true + + + 1913 + 426 + 3 + 26 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1914 + 426 + 3 + 27 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1915 + 426 + 3 + 28 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 1916 + 426 + 3 + 29 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 1917 + 426 + 3 + 30 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1918 + 426 + 3 + 31 + SRMC + SRMC + 60 + 60 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost of gas production + true + + + 1919 + 426 + 3 + 32 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served as raw gas to the gas plant + true + + + 1920 + 426 + 3 + 33 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity producing + false + + + 1921 + 426 + 6 + 34 + Installed Capacity + Installed Capacity + 75 + 76 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Production x Units) + false + + + 1922 + 426 + 6 + 35 + Rated Capacity + Rated Capacity + 75 + 76 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + false + + + 1923 + 426 + 3 + 36 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas plant expansion + true + + + 1924 + 426 + 3 + 37 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by extracting gas from the gas plant + true + + + 1925 + 426 + 7 + 38 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1926 + 426 + 7 + 39 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 1927 + 426 + 7 + 40 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas plant is on maintenance + true + + + 1928 + 426 + 7 + 41 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 1929 + 426 + 7 + 42 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas plant is on forced outage of Production + true + + + 1930 + 426 + 7 + 43 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of plant capacity available in production + true + + + 1931 + 426 + 8 + 44 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of gas plant units built + true + + + 1932 + 426 + 8 + 45 + Capacity Built + Capacity Built + 76 + 76 + true + true + false + false + true + false + false + false + 54 + 54 + Gas plant capacity built + true + + + 1933 + 426 + 8 + 46 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the plant for capacity + false + + + 1934 + 426 + 8 + 47 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + false + + + 1935 + 426 + 8 + 48 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Gas Plant + true + + + 1936 + 426 + 8 + 49 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of gas plant units retired + true + + + 1937 + 426 + 8 + 50 + Capacity Retired + Capacity Retired + 76 + 76 + true + true + false + false + true + false + false + false + 66 + 66 + Gas plant capacity Retired + true + + + 1938 + 426 + 8 + 51 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Gas Plant + true + + + 1939 + 426 + 8 + 52 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 1940 + 426 + 8 + 53 + Total Cost + Total Cost + 34 + 34 + true + true + false + true + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 1941 + 426 + 8 + 54 + Levelized Cost + Levelized Cost + 60 + 60 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of gas produced + true + + + 1942 + 426 + 12 + 55 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1943 + 426 + 12 + 56 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1944 + 426 + 12 + 57 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1945 + 436 + 3 + 1 + Flow In + Flow In + 75 + 76 + true + true + false + true + true + false + true + true + 1974 + 1974 + Quantity of gas pumped into the pipeline + true + + + 1946 + 436 + 3 + 2 + Flow Out + Flow Out + 75 + 76 + true + true + false + true + true + false + true + true + 1975 + 1975 + Quantity of gas extracted from the pipeline + true + + + 1947 + 436 + 3 + 3 + Reverse Flow In + Reverse Flow In + 75 + 76 + true + true + false + true + true + false + true + true + 3114 + 3114 + Quantity of reverse flow into the Gas Pipeline + true + + + 1948 + 436 + 3 + 4 + Reverse Flow Out + Reverse Flow Out + 75 + 76 + true + true + false + true + true + false + true + true + 3115 + 3115 + Quantity of reverse flow out of the Gas Pipeline + true + + + 1949 + 436 + 3 + 5 + Max Daily Flow + Max Daily Flow + 75 + 76 + true + true + false + false + true + false + true + true + 2031 + 2031 + Maximum daily flow limit of the pipeline + true + + + 1950 + 436 + 3 + 6 + Max Observed Flow + Max Observed Flow + 75 + 76 + true + true + false + true + true + false + true + true + 2146 + 2146 + Quantity of max observed flow in a pipeline. + true + + + 1951 + 436 + 3 + 7 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the pipeline is congested in the reference direction + true + + + 1952 + 436 + 3 + 8 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the pipeline is congested in the counter-reference direction + true + + + 1953 + 436 + 3 + 9 + Max Volume + Max Volume + 76 + 76 + true + true + false + true + true + false + true + true + 466 + 466 + Maximum volume of gas stored in the pipeline + true + + + 1954 + 436 + 3 + 10 + Min Volume + Min Volume + 76 + 76 + true + true + false + true + true + false + true + true + 510 + 510 + Minimum volume of gas stored in the pipeline + true + + + 1955 + 436 + 3 + 11 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Volume of gas stored in the pipeline at the beginning of the horizon + true + + + 1956 + 436 + 3 + 12 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Volume of gas in the pipeline at the end of the period + true + + + 1957 + 436 + 3 + 13 + Volume Imbalance + Volume Imbalance + 76 + 76 + true + true + false + true + true + false + true + true + 1654 + 1654 + Absolute value of the difference between delivery volume into the pipeline and the redelivered volume off the pipeline. + true + + + 1958 + 436 + 3 + 14 + Utilization Forward + Utilization Forward + 12 + 12 + true + true + false + false + true + false + true + true + 2556 + 2556 + Flow forward capacity utilization + true + + + 1959 + 436 + 3 + 15 + Utilization Back + Utilization Back + 12 + 12 + true + true + false + false + true + false + true + true + 2557 + 2557 + Flow back capacity utilization + true + + + 1960 + 436 + 3 + 16 + Imbalance Cost + Imbalance Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1656 + 1656 + Cost of imbalances + true + + + 1961 + 436 + 3 + 17 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting gas from the pipeline + true + + + 1962 + 436 + 3 + 18 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1963 + 436 + 3 + 19 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1964 + 436 + 3 + 20 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Gas pipeline reservation cost + true + + + 1965 + 436 + 3 + 21 + Loss + Loss + 75 + 76 + true + true + false + true + true + false + true + true + 372 + 372 + Gas pipeline flow loss amount + true + + + 1966 + 436 + 3 + 22 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Gas pipeline total cost + true + + + 1967 + 436 + 3 + 23 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Total Variable Costs of gas from the pipeline + true + + + 1968 + 436 + 3 + 24 + Pressure + Pressure + 89 + 89 + true + true + false + true + true + false + true + true + 2425 + 2425 + Pressure of gas stored in the pipeline at the start of the period + true + + + 1969 + 436 + 3 + 25 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas pipeline expansion + true + + + 1970 + 436 + 3 + 26 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by flowing gas through the pipeline + true + + + 1971 + 436 + 3 + 27 + Inflow Excess Capacity + Inflow Excess Capacity + 75 + 76 + true + true + false + true + true + false + true + true + 3161 + 3161 + Excess Volume of gas that can be stored in the pipeline at the input side + true + + + 1972 + 436 + 3 + 28 + Output Excess Capacity + Output Excess Capacity + 75 + 76 + true + true + false + true + true + false + true + true + 3162 + 3162 + Excess Volume of gas that can be stored in the pipeline at the output side + true + + + 1973 + 436 + 7 + 29 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1974 + 436 + 7 + 30 + Flow Capacity Outage + Flow Capacity Outage + 75 + 76 + true + true + false + false + true + false + true + true + 2147 + 2147 + Flow capacity on outage due to maintenance or forced outage + true + + + 1975 + 436 + 7 + 31 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity on maintenance + true + + + 1976 + 436 + 7 + 32 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the pipeline is on maintenance + true + + + 1977 + 436 + 7 + 33 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1978 + 436 + 7 + 34 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the pipeline is on forced outage + true + + + 1979 + 436 + 7 + 35 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of pipeline capacity available + true + + + 1980 + 436 + 8 + 36 + Max Daily Flow Built + Max Daily Flow Built + 75 + 76 + true + true + false + false + true + false + false + false + 2148 + 2148 + Amount of increase in Gas Pipeline Max Daily Flow + true + + + 1981 + 436 + 8 + 37 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas pipeline + true + + + 1982 + 436 + 8 + 38 + Max Daily Flow Retired + Max Daily Flow Retired + 75 + 76 + true + true + false + false + true + false + false + false + 2149 + 2149 + Amount of reduction in Gas Pipeline Max Daily Flow + true + + + 1983 + 436 + 8 + 39 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas pipeline + true + + + 1984 + 436 + 8 + 40 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 1985 + 436 + 12 + 41 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1986 + 436 + 12 + 42 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1987 + 436 + 12 + 43 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1988 + 439 + 1 + 1 + Emission Flow + Emission Flow + 19 + 20 + true + true + false + true + true + false + true + true + 3002 + 3002 + Emissions flow on the Gas Pipeline in virtual emission network + true + + + 1989 + 440 + 3 + 1 + Participation Factor + Participation Factor + 12 + 12 + true + true + true + false + true + false + true + true + 1840 + 1840 + Percentage of total Gas Node inflow from a given exporting Gas Pipeline + true + + + 1990 + 441 + 3 + 1 + Participation Factor + Participation Factor + 12 + 12 + true + true + true + false + true + false + true + true + 1840 + 1840 + Percentage of total Gas Node inflow from a given importing Gas Pipeline + true + + + 1991 + 443 + 1 + 1 + Energy Flow + Energy Flow + 0 + 0 + true + true + false + true + true + false + true + true + 1290299302 + 1290299302 + Energy flow on the Gas Pipeline in virtual energy network + true + + + 1992 + 448 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Gas Node is in service + true + + + 1993 + 448 + 3 + 2 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas fields + true + + + 1994 + 448 + 3 + 3 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Demand at the gas node + true + + + 1995 + 448 + 3 + 4 + Flow + Flow + 75 + 76 + true + true + false + true + true + false + true + true + 205 + 205 + Flow of gas through the node + true + + + 1996 + 448 + 3 + 5 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on connected Gas Pipelines, Gas Plants and Gas Transports + true + + + 1997 + 448 + 3 + 6 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on connected Gas Pipelines, Gas Plants and Gas Transports + true + + + 1998 + 448 + 3 + 7 + Net Interchange + Net Interchange + 75 + 76 + true + true + false + true + true + false + true + true + 543 + 543 + Net exports on gas pipelines + true + + + 1999 + 448 + 3 + 8 + Net Market Sales + Net Market Sales + 75 + 76 + true + true + false + true + true + false + true + true + 545 + 545 + Net sales to external gas markets + true + + + 2000 + 448 + 3 + 9 + Facility Consumption + Facility Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 2732 + 2732 + Gas consumed by connected Facilities + true + + + 2001 + 448 + 3 + 10 + Facility Production + Facility Production + 75 + 76 + true + true + false + true + true + false + true + true + 2869 + 2869 + Gas produced by connected Facilities + true + + + 2002 + 448 + 3 + 11 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume in gas storage + true + + + 2003 + 448 + 3 + 12 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + End volume in gas storage + true + + + 2004 + 448 + 3 + 13 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2382 + 2382 + Cost of flowing gas through the node + true + + + 2005 + 448 + 3 + 14 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in supply of gas at the node + true + + + 2006 + 448 + 3 + 15 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 2007 + 448 + 3 + 16 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 2008 + 448 + 3 + 17 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas at the node + true + + + 2009 + 448 + 3 + 18 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 2010 + 448 + 3 + 19 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 2011 + 448 + 3 + 20 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Demand at the gas node net of shortages, excesses and DSM Program reductions + true + + + 2012 + 448 + 3 + 21 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas at the gas node + true + + + 2013 + 448 + 3 + 22 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Settlement price for gas at the gas node + true + + + 2014 + 448 + 3 + 23 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Delivered price for gas at the gas node + true + + + 2015 + 448 + 3 + 24 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Delivered cost of gas at the gas node + true + + + 2016 + 448 + 3 + 25 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 2017 + 448 + 3 + 26 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2018 + 448 + 3 + 27 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2019 + 448 + 3 + 28 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 2020 + 448 + 3 + 29 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2021 + 448 + 8 + 30 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the gas node is built in this year + true + + + 2022 + 448 + 8 + 31 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas node + true + + + 2023 + 448 + 8 + 32 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the gas node is retired in this year + true + + + 2024 + 448 + 8 + 33 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas node + true + + + 2025 + 448 + 3 + 34 + Shipments Imported + Shipments Imported + 0 + 0 + true + true + false + true + true + false + true + true + 2759 + 2759 + Number of shipments received from Gas Transports + true + + + 2026 + 448 + 3 + 35 + Shipments Exported + Shipments Exported + 0 + 0 + true + true + false + true + true + false + true + true + 2760 + 2760 + Number of shipments sent through Gas Transports + true + + + 2027 + 448 + 12 + 36 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2028 + 448 + 12 + 37 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2029 + 448 + 12 + 38 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2030 + 451 + 1 + 1 + Emissions + Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 3001 + 3001 + Emissions at the Gas Node in a virtual emission network + true + + + 2031 + 453 + 3 + 1 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on connected Gas Transports + true + + + 2032 + 453 + 3 + 2 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on connected Gas Transports + true + + + 2033 + 453 + 3 + 3 + Shipments Imported + Shipments Imported + 0 + 0 + true + true + false + true + true + false + true + true + 2759 + 2759 + Number of shipments received from the Gas Transport + true + + + 2034 + 453 + 3 + 4 + Shipments Exported + Shipments Exported + 0 + 0 + true + true + false + true + true + false + true + true + 2760 + 2760 + Number of shipments exported through the Gas Transport + true + + + 2035 + 453 + 3 + 5 + Port Cost + Port Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2794 + 2794 + Cost of using port by gas transport + true + + + 2036 + 455 + 1 + 1 + Energy Value + Energy Value + 0 + 0 + true + true + false + true + true + false + true + true + 176 + 176 + Energy value at the Gas Node in a virtual energy network + true + + + 2037 + 457 + 1 + 1 + Sales + Sales + 58 + 58 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 2038 + 457 + 1 + 2 + Purchases + Purchases + 58 + 58 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 2039 + 457 + 1 + 3 + Net Sales + Net Sales + 58 + 58 + true + true + false + true + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 2040 + 457 + 1 + 4 + Net Purchases + Net Purchases + 58 + 58 + true + true + false + true + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 2041 + 457 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 2042 + 457 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 2043 + 457 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 2044 + 457 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 2045 + 460 + 3 + 1 + Max Volume + Max Volume + 76 + 76 + true + true + false + true + true + false + true + true + 466 + 466 + Maximum volume of gas allowed in storage + true + + + 2046 + 460 + 3 + 2 + Min Volume + Min Volume + 76 + 76 + true + true + false + true + true + false + true + true + 510 + 510 + Minimum volume of gas allowed in storage + true + + + 2047 + 460 + 3 + 3 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume of gas in the storage + true + + + 2048 + 460 + 3 + 4 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 2049 + 460 + 3 + 5 + Working Volume + Working Volume + 76 + 76 + true + true + false + true + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 2050 + 460 + 3 + 6 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization based on end volume + true + + + 2051 + 460 + 3 + 7 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 2052 + 460 + 3 + 8 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 2053 + 460 + 3 + 9 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 2054 + 460 + 3 + 10 + Withdrawal + Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of gas withdrawn from the storage + true + + + 2055 + 460 + 3 + 11 + Max Withdrawal Available + Max Withdrawal Available + 75 + 76 + true + true + false + true + true + false + true + true + 2431 + 2431 + Quantity of gas available to withdraw based on the specified gas storage ratchets + true + + + 2056 + 460 + 3 + 12 + Injection + Injection + 75 + 76 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of gas injected into the gas storage + true + + + 2057 + 460 + 3 + 13 + Max Injection Available + Max Injection Available + 75 + 76 + true + true + false + true + true + false + true + true + 2432 + 2432 + Quantity of gas available to inject based on the specified gas storage ratchets + true + + + 2058 + 460 + 3 + 14 + Net Utilization + Net Utilization + 75 + 76 + true + true + false + true + true + false + true + true + 2052 + 2052 + Net of withdrawal and injection + true + + + 2059 + 460 + 3 + 15 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawing gas from the storage + true + + + 2060 + 460 + 3 + 16 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injecting gas into the storage + true + + + 2061 + 460 + 3 + 17 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of injections and withdrawals + true + + + 2062 + 460 + 3 + 18 + Carrying Cost + Carrying Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2039 + 2039 + Total cost of gas carried in storage + true + + + 2063 + 460 + 3 + 19 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the storage + true + + + 2064 + 460 + 3 + 20 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch price + true + + + 2065 + 460 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2066 + 460 + 3 + 22 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2067 + 460 + 3 + 23 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Reservation cost for Gas Storage + true + + + 2068 + 460 + 3 + 24 + Injection Fuel + Injection Fuel + 75 + 76 + true + true + false + true + true + false + true + true + 1970 + 1970 + Fuel amount lost in the gas storage injection + true + + + 2069 + 460 + 3 + 25 + Withdraw Fuel + Withdraw Fuel + 75 + 76 + true + true + false + true + true + false + true + true + 1971 + 1971 + Fuel amount lost in the gas storage withdrawal + true + + + 2070 + 460 + 3 + 26 + Net Injection + Net Injection + 75 + 76 + true + true + false + true + true + false + true + true + 542 + 542 + Net injection after injection fuel loss + true + + + 2071 + 460 + 3 + 27 + Net Injection Cost + Net Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2053 + 2053 + Net injection Cost for the gas storage + true + + + 2072 + 460 + 3 + 28 + Net Withdrawal + Net Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net withdrawal after withdrawal fuel loss + true + + + 2073 + 460 + 3 + 29 + Net Withdrawal Cost + Net Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2054 + 2054 + Net withdrawal cost for the gas storage + true + + + 2074 + 460 + 3 + 30 + Loss + Loss + 75 + 76 + true + true + false + true + true + false + true + true + 372 + 372 + Gas storage flow loss amount + true + + + 2075 + 460 + 3 + 31 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Total variable cost for the gas storage + true + + + 2076 + 460 + 3 + 32 + Initial Inventory Value + Initial Inventory Value + 34 + 34 + true + true + false + true + true + false + true + true + 2073 + 2073 + Value of inventory in gas storage at the start of a period. + true + + + 2077 + 460 + 3 + 33 + Ending Inventory Value + Ending Inventory Value + 34 + 34 + true + true + false + true + true + false + true + true + 2211 + 2211 + Value of inventory in gas storage at the end of period. + true + + + 2078 + 460 + 3 + 34 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost from the Inventory Charge of holding gas in storage + true + + + 2079 + 460 + 3 + 35 + Initial Energy + Initial Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2406 + 2406 + Value of heat energy in gas storage at the start of period + true + + + 2080 + 460 + 3 + 36 + Ending Energy + Ending Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2409 + 2409 + Value of heat energy in gas storage at the end of period + true + + + 2081 + 460 + 3 + 37 + Initial Carbon Quantity + Initial Carbon Quantity + 20 + 20 + true + true + false + true + true + false + true + true + 2444 + 2444 + Carbon quantity of the gas storage at the start of period + true + + + 2082 + 460 + 3 + 38 + Ending Carbon Quantity + Ending Carbon Quantity + 20 + 20 + true + true + false + true + true + false + true + true + 2410 + 2410 + Carbon Quantity of the gas storage at the end of period + true + + + 2083 + 460 + 3 + 39 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend injected into the gas storage + true + + + 2084 + 460 + 3 + 40 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas storage expansion + true + + + 2085 + 460 + 3 + 41 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered in the gas storage operation + true + + + 2086 + 460 + 3 + 42 + Energy Consumption + Energy Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + total energy consumption of the Gas Storage + true + + + 2087 + 460 + 3 + 43 + Total Operation + Total Operation + 75 + 76 + true + true + false + true + true + false + true + true + 2775 + 2775 + Total of net withdrawal and net injection + true + + + 2088 + 460 + 3 + 44 + Max Storage Target Volume + Max Storage Target Volume + 76 + 76 + true + true + false + true + true + false + true + true + 3061 + 3061 + Max target volume of gas inventory + true + + + 2089 + 460 + 3 + 45 + Min Storage Target Volume + Min Storage Target Volume + 76 + 76 + true + true + false + true + true + false + true + true + 3062 + 3062 + Min target volume of gas inventory + true + + + 2090 + 460 + 3 + 46 + External Injection Volume + External Injection Volume + 75 + 76 + true + true + false + true + true + false + true + true + 3129 + 3129 + Quantity of external injection into the gas storage + true + + + 2091 + 460 + 3 + 47 + External Injection Cost + External Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 3130 + 3130 + Cost of injecting gas from outside of the network into the storage + true + + + 2092 + 460 + 7 + 48 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2093 + 460 + 7 + 49 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Withdrawal/Injection on maintenance + true + + + 2094 + 460 + 7 + 50 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas storage is on maintenance + true + + + 2095 + 460 + 7 + 51 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Withdrawal/Injection on Forced Outage + true + + + 2096 + 460 + 7 + 52 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas storage is on forced outage of Withdrawal/Injection + true + + + 2097 + 460 + 7 + 53 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Storage capacity available in withdrawal/injection + true + + + 2098 + 460 + 8 + 54 + Max Volume Built + Max Volume Built + 76 + 76 + true + true + false + false + true + false + false + false + 2152 + 2152 + Amount of increase in Gas Storage Max Volume + true + + + 2099 + 460 + 8 + 55 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas storage + true + + + 2100 + 460 + 8 + 56 + Max Volume Retired + Max Volume Retired + 76 + 76 + true + true + false + false + true + false + false + false + 2153 + 2153 + Amount of reduction in Gas Storage Max Volume + true + + + 2101 + 460 + 8 + 57 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas storage + true + + + 2102 + 460 + 8 + 58 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 2103 + 460 + 8 + 59 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of the amount built + true + + + 2104 + 460 + 8 + 60 + Total Cost + Total Cost + 34 + 34 + true + true + false + true + true + false + false + false + 898 + 898 + Total of fixed, withdrawal and injection costs + true + + + 2105 + 460 + 8 + 61 + Levelized Cost + Levelized Cost + 60 + 60 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of gas injections and withdrawals + true + + + 2106 + 460 + 12 + 62 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2107 + 460 + 12 + 63 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2108 + 460 + 12 + 64 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2109 + 463 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas storage + true + + + 2110 + 463 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas storage + true + + + 2111 + 463 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the gas storage + true + + + 2112 + 465 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas storage + true + + + 2113 + 465 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas storage + true + + + 2114 + 465 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the gas storage + true + + + 2115 + 465 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas field to the gas storage + true + + + 2116 + 465 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas field to the gas storage + true + + + 2117 + 466 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas storage + true + + + 2118 + 466 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas storage + true + + + 2119 + 466 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the gas storage + true + + + 2120 + 466 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas plant to the gas storage + true + + + 2121 + 466 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas plant to the gas storage + true + + + 2122 + 468 + 3 + 1 + Delivered Energy + Delivered Energy + 75 + 76 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by source gas storage to the gas storage + true + + + 2123 + 468 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by source gas storage to the gas storage + true + + + 2124 + 468 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by source gas storage to the gas storage + true + + + 2125 + 468 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by source gas storage to the gas storage + true + + + 2126 + 468 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by source gas storage to the gas storage + true + + + 2127 + 469 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas storage + true + + + 2128 + 469 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas storage + true + + + 2129 + 469 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the gas storage + true + + + 2130 + 469 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas contract to the gas storage + true + + + 2131 + 469 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas contract to the gas storage + true + + + 2132 + 470 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas storage + true + + + 2133 + 470 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas storage + true + + + 2134 + 470 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the gas storage + true + + + 2135 + 471 + 1 + 1 + Initial Energy Value + Initial Energy Value + 0 + 0 + true + true + false + true + true + false + true + true + 221557121 + 221557121 + Initial Energy value of the Gas Storage in a virtual energy network + true + + + 2136 + 471 + 1 + 2 + Ending Energy Value + Ending Energy Value + 0 + 0 + true + true + false + true + true + false + true + true + 1579465735 + 1579465735 + Ending Energy value of the Gas Storage in a virtual energy network + true + + + 2137 + 476 + 3 + 1 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Demand for gas + true + + + 2138 + 476 + 3 + 2 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in gas supply + true + + + 2139 + 476 + 3 + 3 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 2140 + 476 + 3 + 4 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 2141 + 476 + 3 + 5 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas + true + + + 2142 + 476 + 3 + 6 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 2143 + 476 + 3 + 7 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 2144 + 476 + 3 + 8 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages, excesses and DSM Program reductions + true + + + 2145 + 476 + 3 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 2146 + 476 + 3 + 10 + Price Paid + Price Paid + 60 + 60 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for gas demand + true + + + 2147 + 476 + 3 + 11 + Bid Quantity + Bid Quantity + 75 + 76 + true + true + true + true + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 2148 + 476 + 3 + 12 + Bid Price + Bid Price + 60 + 60 + true + true + true + false + true + false + true + true + 33 + 33 + Value of gas in band + true + + + 2149 + 476 + 3 + 13 + Bid Cleared + Bid Cleared + 75 + 76 + true + true + true + true + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 2150 + 476 + 3 + 14 + Cleared Bid Price + Cleared Bid Price + 60 + 60 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 2151 + 476 + 3 + 15 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 2152 + 476 + 3 + 16 + Baseline Demand + Baseline Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2023 + 2023 + Demand without DSM reduction + true + + + 2153 + 476 + 3 + 17 + Total DSM Reduction + Total DSM Reduction + 75 + 76 + true + true + false + true + true + false + true + true + 2024 + 2024 + DSM reduction + true + + + 2154 + 476 + 3 + 18 + Served Demand + Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2070 + 2070 + Served Demand (with respect to excess and shortage) + true + + + 2155 + 476 + 3 + 19 + Peak Served Demand + Peak Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2143 + 2143 + Peak Served Demand (with respect to excess and shortage) + true + + + 2156 + 476 + 3 + 20 + Peak Unserved Demand + Peak Unserved Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2144 + 2144 + Peak Unserved Demand (with respect to excess and shortage) + true + + + 2157 + 476 + 3 + 21 + Unaccounted Demand + Unaccounted Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2351 + 2351 + Percentage of unaccounted gas demand + true + + + 2158 + 476 + 3 + 22 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Total emissions made by the blend of gas serving the Gas Demand + true + + + 2159 + 476 + 3 + 23 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 2160 + 476 + 3 + 24 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2161 + 476 + 3 + 25 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served to meet the gas demand + true + + + 2162 + 476 + 12 + 26 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2163 + 476 + 12 + 27 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2164 + 476 + 12 + 28 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2165 + 479 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas demand + true + + + 2166 + 479 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas demand + true + + + 2167 + 479 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Power2X to the gas demand + true + + + 2168 + 480 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas demand + true + + + 2169 + 480 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas demand + true + + + 2170 + 480 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas field to the gas demand + true + + + 2171 + 480 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas field to the gas demand + true + + + 2172 + 480 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas field to the gas demand + true + + + 2173 + 481 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas demand + true + + + 2174 + 481 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas demand + true + + + 2175 + 481 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas plant to the gas demand + true + + + 2176 + 481 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas plant to the gas demand + true + + + 2177 + 481 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas plant to the gas demand + true + + + 2178 + 482 + 3 + 1 + Transportation Cost + Transportation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 3116 + 3116 + Cost of the gas transportation of gas pipeline that supplies the gas demand + true + + + 2179 + 484 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the gas demand + true + + + 2180 + 484 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the gas demand + true + + + 2181 + 484 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas storage to the gas demand + true + + + 2182 + 484 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas storage to the gas demand + true + + + 2183 + 484 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas storage to the gas demand + true + + + 2184 + 486 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas demand + true + + + 2185 + 486 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas demand + true + + + 2186 + 486 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by gas contract to the gas demand + true + + + 2187 + 486 + 3 + 4 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Cost of Gas delivered by gas contract to the gas demand + true + + + 2188 + 486 + 3 + 5 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Price of Gas delivered by gas contract to the gas demand + true + + + 2189 + 487 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas demand + true + + + 2190 + 487 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas demand + true + + + 2191 + 487 + 3 + 3 + Delivered Emission + Delivered Emission + 19 + 20 + true + true + false + true + true + false + true + true + 2799 + 2799 + Emission delivered by Gas Transport to the gas demand + true + + + 2192 + 488 + 1 + 1 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Gas demand + true + + + 2193 + 488 + 1 + 2 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 2194 + 488 + 1 + 3 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 2195 + 488 + 1 + 4 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 2196 + 488 + 1 + 5 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 2197 + 488 + 1 + 6 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages and excesses + true + + + 2198 + 488 + 1 + 7 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 2199 + 489 + 3 + 1 + Reduction Amount + Reduction Amount + 75 + 76 + true + true + false + true + true + false + true + true + 2025 + 2025 + Demand reduction caused by Gas DSM program + true + + + 2200 + 489 + 3 + 2 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable cost of gas dsm program + true + + + 2201 + 489 + 3 + 3 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2202 + 489 + 3 + 4 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs + true + + + 2203 + 489 + 3 + 5 + Max Reduction + Max Reduction + 75 + 76 + true + true + false + true + true + false + false + false + 2884 + 2884 + Maximum demand reduction for the Gas DSM program + true + + + 2204 + 489 + 8 + 6 + Reduction Amount Built + Reduction Amount Built + 75 + 76 + true + true + false + false + true + false + false + false + 2687 + 2687 + Demand reduction amount chosen to be implemented + true + + + 2205 + 489 + 8 + 7 + Reduction Level Built + Reduction Level Built + 0 + 0 + true + true + false + false + true + false + false + false + 2885 + 2885 + Implementation level of the Gas DSM program + true + + + 2206 + 489 + 8 + 8 + Capital Cost + Capital Cost + 34 + 34 + true + true + false + true + true + false + false + false + 2018 + 2018 + Capital cost of the gas dsm program + true + + + 2207 + 489 + 12 + 9 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2208 + 489 + 12 + 10 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2209 + 489 + 12 + 11 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2210 + 495 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of gas fields in the basin + true + + + 2211 + 495 + 3 + 2 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Volume of gas in the basin at the start of the period + true + + + 2212 + 495 + 3 + 3 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Volume of gas in the basin at the end of the period + true + + + 2213 + 495 + 3 + 4 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced from the basin + true + + + 2214 + 495 + 3 + 5 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting gas from the basin + true + + + 2215 + 495 + 3 + 6 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Average price of producing gas from basin fields + true + + + 2216 + 495 + 3 + 7 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Average dispatch price from basin fields + true + + + 2217 + 495 + 3 + 8 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2218 + 495 + 3 + 9 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2219 + 495 + 3 + 10 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the basin + true + + + 2220 + 495 + 8 + 11 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of gas fields built in the basin + true + + + 2221 + 495 + 8 + 12 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building gas fields in the basin + true + + + 2222 + 495 + 12 + 13 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2223 + 495 + 12 + 14 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2224 + 495 + 12 + 15 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2225 + 500 + 3 + 1 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas fields + true + + + 2226 + 500 + 3 + 2 + Peak Served Zone Demand + Peak Served Zone Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2203 + 2203 + Gas Peak Served Demand in gas zone + true + + + 2227 + 500 + 3 + 3 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Gas demand + true + + + 2228 + 500 + 3 + 4 + Generator Offtake + Generator Offtake + 75 + 76 + true + true + false + true + true + false + true + true + 2692 + 2692 + Generator Offtake from Gas Nodes in Gas Zone + true + + + 2229 + 500 + 3 + 5 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on gas pipelines + true + + + 2230 + 500 + 3 + 6 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on gas pipelines + true + + + 2231 + 500 + 3 + 7 + Net Interchange + Net Interchange + 75 + 76 + true + true + false + true + true + false + true + true + 543 + 543 + Net exports on gas pipelines + true + + + 2232 + 500 + 3 + 8 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume in gas storage + true + + + 2233 + 500 + 3 + 9 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + End volume in gas storage + true + + + 2234 + 500 + 3 + 10 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in gas supply + true + + + 2235 + 500 + 3 + 11 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 2236 + 500 + 3 + 12 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 2237 + 500 + 3 + 13 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas + true + + + 2238 + 500 + 3 + 14 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 2239 + 500 + 3 + 15 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 2240 + 500 + 3 + 16 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages and excesses + true + + + 2241 + 500 + 3 + 17 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 2242 + 500 + 3 + 18 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Average of the gas prices across all gas nodes in the Gas Zone + true + + + 2243 + 500 + 3 + 19 + Price Paid + Price Paid + 60 + 60 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for gas demand + true + + + 2244 + 500 + 3 + 20 + Weighted Average Cost + Weighted Average Cost + 60 + 60 + true + true + false + false + true + false + true + true + 1992 + 1992 + Average cost for gas in entire model + true + + + 2245 + 500 + 3 + 21 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs for gas in entire model, including FOM and reservation costs + true + + + 2246 + 500 + 3 + 22 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Equal to Total Gas Purchase Cost + Total Penalty Cost. + true + + + 2247 + 500 + 3 + 23 + Grand Total Cost + Grand Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2055 + 2055 + Equal to Total Fixed Cost + Total Variable Costs (Total Variable Cost Includes penalty costs) + true + + + 2248 + 500 + 3 + 24 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Equal to Total Fixed Cost + Total Variable Cost – Total Penalty Cost {Excludes penalty costs} + true + + + 2249 + 500 + 3 + 25 + Net Total Cost + Net Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2056 + 2056 + Equal to Grand Total Cost – Total Market Revenue + true + + + 2250 + 500 + 3 + 26 + Injection + Injection + 75 + 76 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of gas injected into the gas storages in the zone + true + + + 2251 + 500 + 3 + 27 + Net Injection + Net Injection + 75 + 76 + true + true + false + true + true + false + true + true + 542 + 542 + Quantity of gas injected into the gas storages in the zone after injection fuel loss + true + + + 2252 + 500 + 3 + 28 + Net Injection Cost + Net Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2053 + 2053 + Summation of gas storage net injection cost + true + + + 2253 + 500 + 3 + 29 + Withdrawal + Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of gas withdrawn from the storages in the zone + true + + + 2254 + 500 + 3 + 30 + Net Withdrawal + Net Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1393 + 1393 + Quantity of gas withdrawn from the storages in the zone after withdrawal fuel loss + true + + + 2255 + 500 + 3 + 31 + Net Withdrawal Cost + Net Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2054 + 2054 + Summation of gas storage net withdrawal cost + true + + + 2256 + 500 + 3 + 32 + Costs of Gas Delivered + Costs of Gas Delivered + 14 + 34 + true + true + false + true + true + false + true + true + 2057 + 2057 + Equal to Total System Cost – Net Injection Cost + Net Withdrawal Cost {Please note that withdrawal and injection fuel is subtracted to get the net} + true + + + 2257 + 500 + 3 + 33 + Net Variable Cost + Net Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1995 + 1995 + Equal to Total Variable Cost – Total Market Revenue + true + + + 2258 + 500 + 3 + 34 + Forward Zone Flow + Forward Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1997 + 1997 + Quantity of gas pipeline flow in forward direction + true + + + 2259 + 500 + 3 + 35 + Back Zone Flow + Back Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1998 + 1998 + Quantity of gas pipeline flow in backward direction + true + + + 2260 + 500 + 3 + 36 + Net Zone Flow + Net Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1999 + 1999 + Net Quantity of gas pipeline flow (forward-backward) + true + + + 2261 + 500 + 3 + 37 + Gas Supply Total Commodity Costs + Gas Supply Total Commodity Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2078 + 2078 + Total supply commodity costs + true + + + 2262 + 500 + 3 + 38 + Gas Storage Total Variable Costs + Gas Storage Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2079 + 2079 + Total variable costs for gas storages + true + + + 2263 + 500 + 3 + 39 + Gas Pipeline Total Variable Costs + Gas Pipeline Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2080 + 2080 + Total variable costs for gas pipelines + true + + + 2264 + 500 + 3 + 40 + Gas Field Total Variable Costs + Gas Field Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2994 + 2994 + Total variable costs for gas fields + true + + + 2265 + 500 + 3 + 41 + Gas Transport Total Variable Costs + Gas Transport Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2995 + 2995 + Total variable costs for gas transport + true + + + 2266 + 500 + 3 + 42 + Gas Storage Total Reservation Costs + Gas Storage Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2081 + 2081 + Total reservation costs for gas storages + true + + + 2267 + 500 + 3 + 43 + Gas Pipeline Total Reservation Costs + Gas Pipeline Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2082 + 2082 + Total reservation costs for gas pipelines + true + + + 2268 + 500 + 3 + 44 + Gas Contract Total Reservation Costs + Gas Contract Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2083 + 2083 + Total reservation costs for gas contracts + true + + + 2269 + 500 + 3 + 45 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 2270 + 500 + 3 + 46 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2271 + 500 + 6 + 47 + Available Capacity + Available Capacity + 75 + 76 + true + true + false + false + true + false + true + true + 23 + 23 + Available Capacity of the Gas Plants + false + + + 2272 + 500 + 6 + 48 + Min Capacity Reserves + Min Capacity Reserves + 75 + 76 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + false + + + 2273 + 500 + 6 + 49 + Max Capacity Reserves + Max Capacity Reserves + 75 + 76 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + false + + + 2274 + 500 + 6 + 50 + Capacity Reserves + Capacity Reserves + 75 + 76 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + false + + + 2275 + 500 + 6 + 51 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + false + + + 2276 + 500 + 6 + 52 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + false + + + 2277 + 500 + 6 + 53 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + false + + + 2278 + 500 + 6 + 54 + Min Load + Min Load + 75 + 76 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + false + + + 2279 + 500 + 6 + 55 + Peak Load + Peak Load + 75 + 76 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + false + + + 2280 + 500 + 12 + 56 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2281 + 500 + 12 + 57 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2282 + 500 + 12 + 58 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2283 + 517 + 3 + 1 + Take Quantity + Take Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 1978 + 1978 + Gas offtake associated with the contract + true + + + 2284 + 517 + 3 + 2 + Supply Excess + Supply Excess + 75 + 76 + true + true + false + true + true + false + true + true + 2156 + 2156 + Gas supply excess + true + + + 2285 + 517 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas used under contract + true + + + 2286 + 517 + 3 + 4 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Price of gas contract + true + + + 2287 + 517 + 3 + 5 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch Price of Gas Contract + true + + + 2288 + 517 + 3 + 6 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with gas scarcity + true + + + 2289 + 517 + 3 + 7 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 2290 + 517 + 3 + 8 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 2291 + 517 + 3 + 9 + Commodity Cost + Commodity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2319 + 2319 + Total of node commodity costs for Gas Contract + true + + + 2292 + 517 + 3 + 10 + Differential Cost + Differential Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2320 + 2320 + Total of basis differential costs for Gas Contract + true + + + 2293 + 517 + 3 + 11 + Take-or-Pay Excess + Take-or-Pay Excess + 75 + 76 + true + true + false + true + true + false + true + true + 2741 + 2741 + Excess take of Take or Pay contract + true + + + 2294 + 517 + 3 + 12 + Take-or-Pay Violation + Take-or-Pay Violation + 75 + 76 + true + true + false + true + true + false + true + true + 1439 + 1439 + Violation of take-or-pay constraint + true + + + 2295 + 517 + 3 + 13 + Take-or-Pay Violation Cost + Take-or-Pay Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1440 + 1440 + Cost of take-or-pay constraint violation + true + + + 2296 + 517 + 3 + 14 + Take-or-Pay Violation Price + Take-or-Pay Violation Price + 60 + 60 + true + true + false + false + true + false + true + true + 2783 + 2783 + Penalty price on the take violation for a Take or Pay contract + true + + + 2297 + 517 + 3 + 15 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Reservation cost for gas contract + true + + + 2298 + 517 + 3 + 16 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs includes reservation cost plus amortized build costs + true + + + 2299 + 517 + 3 + 17 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 2300 + 517 + 3 + 18 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2301 + 517 + 3 + 19 + Min Daily Take + Min Daily Take + 75 + 75 + true + true + false + false + true + false + true + true + 2239 + 2239 + Min daily gas offtake associated with the contract + true + + + 2302 + 517 + 3 + 20 + Max Daily Take + Max Daily Take + 75 + 75 + true + true + false + false + true + false + true + true + 1985 + 1985 + Max daily gas offtake associated with the contract + true + + + 2303 + 517 + 3 + 21 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas contract expansion + true + + + 2304 + 517 + 3 + 22 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by the gas contract production + true + + + 2305 + 517 + 8 + 23 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 2306 + 517 + 8 + 24 + Quantity Day Built + Quantity Day Built + 76 + 76 + true + true + false + false + true + false + false + false + 2688 + 2688 + Expansion quantity daily gas offtake associated with the contract + true + + + 2307 + 517 + 8 + 25 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building an expansion gas contract + true + + + 2308 + 517 + 8 + 26 + Quantity Day Retired + Quantity Day Retired + 76 + 76 + true + true + false + false + true + false + false + false + 2689 + 2689 + Amount of reduction in quantity daily gas offtake associated with the contract + true + + + 2309 + 517 + 8 + 27 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas contract + true + + + 2310 + 517 + 12 + 28 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Pass-through value (summed in summary) + true + + + 2311 + 517 + 12 + 29 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Pass-through value (summed in summary) + true + + + 2312 + 517 + 12 + 30 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Pass-through value (summed in summary) + true + + + 2313 + 522 + 3 + 1 + Take Quantity + Take Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 1978 + 1978 + Gas offtake associated with the contract at a specific node + true + + + 2314 + 522 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Sum of commodity cost and basis differential cost under contract-gas node + true + + + 2315 + 522 + 3 + 3 + Commodity Cost + Commodity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2319 + 2319 + Commodity costs for the Gas contract-Gas Node. + true + + + 2316 + 522 + 3 + 4 + Differential Cost + Differential Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2320 + 2320 + Basis differential costs for the Gas contract-Gas Node. + true + + + 2317 + 522 + 3 + 5 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Gas contract-gas node price + true + + + 2318 + 525 + 3 + 1 + Gas Supply + Gas Supply + 75 + 76 + true + true + false + true + true + false + true + true + 2138 + 2138 + Total supply provided by the company + true + + + 2319 + 528 + 3 + 1 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Gas discharged at the import gas node + true + + + 2320 + 528 + 3 + 2 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Gas loaded at the export gas node + true + + + 2321 + 528 + 3 + 3 + Losses + Losses + 75 + 76 + true + true + false + true + true + false + true + true + 924 + 924 + Gas lost during the voyage + true + + + 2322 + 528 + 3 + 4 + Idle Boil off + Idle Boil off + 75 + 76 + true + true + false + true + true + false + true + true + 3003 + 3003 + Gas lost while waiting in the harbour + true + + + 2323 + 528 + 3 + 5 + Contract Imports + Contract Imports + 75 + 76 + true + true + false + true + true + false + true + true + 1852 + 1852 + Delivered gas associated with gas contracts + true + + + 2324 + 528 + 3 + 6 + Spot Imports + Spot Imports + 75 + 76 + true + true + false + true + true + false + true + true + 1853 + 1853 + Delivered gas associated with spot market shipments + true + + + 2325 + 528 + 3 + 7 + Loading Time + Loading Time + 7 + 7 + true + true + false + true + true + false + true + true + 1842 + 1842 + Time taken to load gas into the transport + true + + + 2326 + 528 + 3 + 8 + Travel Time + Travel Time + 7 + 7 + true + true + false + true + true + false + true + true + 3004 + 3004 + Gas transport travel time + true + + + 2327 + 528 + 3 + 9 + Harbour Time + Harbour Time + 7 + 7 + true + true + false + true + true + false + true + true + 3005 + 3005 + Gas transport harbour time + true + + + 2328 + 528 + 3 + 10 + Discharge Time + Discharge Time + 7 + 7 + true + true + false + true + true + false + true + true + 1843 + 1843 + Time taken to unload gas from the transport + true + + + 2329 + 528 + 3 + 11 + Total Voyage Time + Total Voyage Time + 7 + 7 + true + true + false + true + true + false + true + true + 3006 + 3006 + Gas transport total voyage time + true + + + 2330 + 528 + 3 + 12 + Voyage Progress + Voyage Progress + 12 + 12 + true + true + false + false + true + false + true + true + 2891 + 2891 + Percentage of voyage completed + true + + + 2331 + 528 + 3 + 13 + Shipping Cost + Shipping Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1854 + 1854 + Cost of shipping + true + + + 2332 + 528 + 3 + 14 + Charter Cost + Charter Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2795 + 2795 + Charter cost of gas transport + true + + + 2333 + 528 + 3 + 15 + Port Cost + Port Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2794 + 2794 + Cost of using port by gas transport + true + + + 2334 + 528 + 3 + 16 + Canal Cost + Canal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2796 + 2796 + Cost of using canal by gas transport + true + + + 2335 + 528 + 3 + 17 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2336 + 528 + 3 + 18 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable operation and maintenance cost + true + + + 2337 + 528 + 3 + 19 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 2338 + 528 + 7 + 20 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2339 + 528 + 7 + 21 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2340 + 528 + 7 + 22 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas transport is on maintenance + true + + + 2341 + 528 + 7 + 23 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Volume on Forced Outage + true + + + 2342 + 528 + 7 + 24 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas transport is on forced outage + true + + + 2343 + 528 + 7 + 25 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Gas transport capacity available for delivery + true + + + 2344 + 528 + 8 + 26 + Max Volume Built + Max Volume Built + 75 + 76 + true + true + false + false + true + false + false + false + 2152 + 2152 + Amount of increase in Gas Transport Max Volume + true + + + 2345 + 528 + 8 + 27 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas transport + true + + + 2346 + 528 + 8 + 28 + Max Volume Retired + Max Volume Retired + 75 + 76 + true + true + false + false + true + false + false + false + 2153 + 2153 + Amount of reduction in Gas Transport Max Volume + true + + + 2347 + 528 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Gas Transport + true + + + 2348 + 528 + 8 + 30 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 2349 + 528 + 12 + 31 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Pass-through value (summed in summary) + true + + + 2350 + 528 + 12 + 32 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Pass-through value (summed in summary) + true + + + 2351 + 528 + 12 + 33 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Pass-through value (averaged in summary) + true + + + 2352 + 531 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas transport + true + + + 2353 + 531 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas transport + true + + + 2354 + 532 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas transport + true + + + 2355 + 532 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas transport + true + + + 2356 + 533 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas transport + true + + + 2357 + 533 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas transport + true + + + 2358 + 536 + 3 + 1 + Delivered Energy + Delivered Energy + 75 + 76 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the gas transport + true + + + 2359 + 536 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the gas transport + true + + + 2360 + 537 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas transport + true + + + 2361 + 537 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas transport + true + + + 2362 + 538 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas transport + true + + + 2363 + 538 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas transport + true + + + 2364 + 539 + 3 + 1 + Canal Cost + Canal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2796 + 2796 + Cost of using canal by gas transport + true + + + 2365 + 547 + 3 + 1 + Capacity Released + Capacity Released + 75 + 76 + true + true + false + true + true + false + true + true + 2038 + 2038 + Gas capacity released on pipelines or storages + true + + + 2366 + 547 + 3 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Total revenue from capacity released + true + + + 2367 + 547 + 12 + 3 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2368 + 547 + 12 + 4 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2369 + 547 + 12 + 5 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2370 + 563 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of Water Plant units in service + true + + + 2371 + 563 + 3 + 2 + Raw Water + Raw Water + 65 + 64 + true + true + false + false + true + false + true + true + 1810 + 1810 + Quantity of raw water input to the water plant + true + + + 2372 + 563 + 3 + 3 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Quantity of water produced by the water plant + true + + + 2373 + 563 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Water production cost + true + + + 2374 + 563 + 3 + 5 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Variable operations and maintenance cost + true + + + 2375 + 563 + 3 + 6 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2376 + 563 + 3 + 7 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + true + true + false + true + true + 1217 + 1217 + Violation of Water Plant [Max Starts] constraints. + true + + + 2377 + 563 + 3 + 8 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1218 + 1218 + Cost of Water Plant [Max Starts] constraint violations. + true + + + 2378 + 563 + 3 + 9 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2379 + 563 + 3 + 10 + SRMC + SRMC + 67 + 67 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost of water production + true + + + 2380 + 563 + 3 + 11 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 1815 + 1815 + The total electric and heat consumption of the Water Plant + true + + + 2381 + 563 + 3 + 12 + Cost of Energy Consumption + Cost of Energy Consumption + 14 + 34 + true + true + false + true + true + false + true + true + 2526 + 2526 + Cost of energy consumption + false + + + 2382 + 563 + 3 + 13 + Electric Load + Electric Load + 1 + 2 + true + true + false + false + true + false + true + true + 1890 + 1890 + The part of the [Energy Consumption] met by electric + true + + + 2383 + 563 + 3 + 14 + Electric Energy Cost + Electric Energy Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2733 + 2733 + Cost of electric energy + true + + + 2384 + 563 + 3 + 15 + Electric Price Paid + Electric Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 613242910 + 613242910 + Price paid by the electric load + true + + + 2385 + 563 + 3 + 16 + Heat Load + Heat Load + 15 + 16 + true + true + false + false + true + false + true + true + 255 + 255 + The part of the [Energy Consumption] met by heat + true + + + 2386 + 563 + 3 + 17 + Cost of Heat Load + Cost of Heat Load + 14 + 34 + true + true + false + true + true + false + true + true + 2528 + 2528 + Cost of heat load + false + + + 2387 + 563 + 3 + 18 + Auxiliary Use + Auxiliary Use + 65 + 64 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 2388 + 563 + 3 + 19 + Units Operating + Units Operating + 0 + 0 + true + true + false + false + true + false + true + true + 2049 + 2049 + Number of water plant units operating + true + + + 2389 + 563 + 3 + 20 + Hours Up + Hours Up + 6 + 6 + true + true + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start of a water plant + true + + + 2390 + 563 + 3 + 21 + Hours Down + Hours Down + 6 + 6 + true + true + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown of a water plant + true + + + 2391 + 563 + 3 + 22 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of water plant units started + true + + + 2392 + 563 + 3 + 23 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of heat plant units shut down + true + + + 2393 + 563 + 3 + 24 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity producing + true + + + 2394 + 563 + 3 + 25 + Capacity Curtailed + Capacity Curtailed + 65 + 64 + true + true + false + false + true + false + true + true + 1163 + 1163 + Amount of non-positive-priced production curtailed + true + + + 2395 + 563 + 3 + 26 + Curtailment Factor + Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 1061 + 1061 + Proportion of non-positive-priced generation curtailed + true + + + 2396 + 563 + 3 + 27 + Water Availability + Water Availability + 65 + 64 + true + true + false + false + true + false + true + true + 2529 + 2529 + Availability of water + true + + + 2397 + 563 + 3 + 28 + Incremental Fuel Offtake + Incremental Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 2530 + 2530 + Incremental offtake of fuel + false + + + 2398 + 563 + 6 + 29 + Installed Capacity + Installed Capacity + 65 + 64 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Production x Units) + false + + + 2399 + 563 + 6 + 30 + Rated Capacity + Rated Capacity + 65 + 64 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + false + + + 2400 + 563 + 7 + 31 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2401 + 563 + 7 + 32 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 2402 + 563 + 7 + 33 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the Water plant is on maintenance + true + + + 2403 + 563 + 7 + 34 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 2404 + 563 + 7 + 35 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the Water plant is on forced outage of Production + true + + + 2405 + 563 + 7 + 36 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of plant capacity available in production + true + + + 2406 + 563 + 8 + 37 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of water plant units built + true + + + 2407 + 563 + 8 + 38 + Capacity Built + Capacity Built + 65 + 65 + true + true + false + false + true + false + false + false + 54 + 54 + Water plant capacity Built + true + + + 2408 + 563 + 8 + 39 + Capacity Price + Capacity Price + 99 + 99 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the plant for capacity + true + + + 2409 + 563 + 8 + 40 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 2410 + 563 + 8 + 41 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of developing the Water Plant + true + + + 2411 + 563 + 8 + 42 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of water plant units retired + true + + + 2412 + 563 + 8 + 43 + Capacity Retired + Capacity Retired + 65 + 65 + true + true + false + false + true + false + false + false + 66 + 66 + Water plant capacity Retired + true + + + 2413 + 563 + 8 + 44 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the water plant + true + + + 2414 + 563 + 12 + 45 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2415 + 563 + 12 + 46 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2416 + 563 + 12 + 47 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2417 + 573 + 3 + 1 + Flow + Flow + 65 + 64 + true + true + false + false + true + false + true + true + 205 + 205 + Quantity of water extracted from the pipeline + true + + + 2418 + 573 + 3 + 2 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the pipeline is congested in the reference direction + true + + + 2419 + 573 + 3 + 3 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the pipeline is congested in the counter-reference direction + true + + + 2420 + 573 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting water from the pipeline + true + + + 2421 + 573 + 3 + 5 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2422 + 573 + 3 + 6 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2423 + 573 + 3 + 7 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + Total energy consumed for pipeline utilization + true + + + 2424 + 573 + 7 + 8 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2425 + 573 + 7 + 9 + Flow Capacity Outage + Flow Capacity Outage + 65 + 65 + true + false + false + false + true + false + true + true + 2147 + 2147 + Flow capacity on outage due to maintenance or forced outage + true + + + 2426 + 573 + 7 + 10 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2427 + 573 + 7 + 11 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the pipeline is on maintenance + true + + + 2428 + 573 + 7 + 12 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 2429 + 573 + 7 + 13 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the pipeline is on forced outage + true + + + 2430 + 573 + 7 + 14 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of pipeline capacity available + true + + + 2431 + 573 + 8 + 15 + Max Capacity Built + Max Capacity Built + 65 + 65 + true + true + false + false + true + false + false + false + 2150 + 2150 + Amount of increase in Water Pipeline Max Capacity + true + + + 2432 + 573 + 8 + 16 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Water pipeline + true + + + 2433 + 573 + 8 + 17 + Max Capacity Retired + Max Capacity Retired + 65 + 65 + true + true + false + false + true + false + false + false + 2151 + 2151 + Amount of reduction in Water Pipeline Max Capacity + true + + + 2434 + 573 + 8 + 18 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Water pipeline + true + + + 2435 + 573 + 12 + 19 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2436 + 573 + 12 + 20 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2437 + 573 + 12 + 21 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2438 + 581 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Water Node is in service + true + + + 2439 + 581 + 3 + 2 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Total quantity of water supplied by Supplying Water Plants + true + + + 2440 + 581 + 3 + 3 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Demand at the water node + true + + + 2441 + 581 + 3 + 4 + Flow + Flow + 65 + 64 + true + true + false + false + true + false + true + true + 205 + 205 + Flow of water through the node + true + + + 2442 + 581 + 3 + 5 + Imports + Imports + 65 + 64 + true + true + false + false + true + false + true + true + 294 + 294 + Imports on water pipelines + true + + + 2443 + 581 + 3 + 6 + Exports + Exports + 65 + 64 + true + true + false + false + true + false + true + true + 192 + 192 + Exports on water pipelines + true + + + 2444 + 581 + 3 + 7 + Net Interchange + Net Interchange + 65 + 64 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on water pipelines + true + + + 2445 + 581 + 3 + 8 + Initial Volume + Initial Volume + 64 + 64 + true + true + false + false + true + false + true + true + 318 + 318 + Initial volume in water storage + true + + + 2446 + 581 + 3 + 9 + End Volume + End Volume + 64 + 64 + true + true + false + false + true + false + true + true + 170 + 170 + End volume in water storage + true + + + 2447 + 581 + 3 + 10 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2382 + 2382 + Cost of flowing water through the node + true + + + 2448 + 581 + 3 + 11 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in supply of water at the node + true + + + 2449 + 581 + 3 + 12 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2450 + 581 + 3 + 13 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2451 + 581 + 3 + 14 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water at the node + true + + + 2452 + 581 + 3 + 15 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2453 + 581 + 3 + 16 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2454 + 581 + 3 + 17 + Shadow Price + Shadow Price + 67 + 67 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of water at the water node + true + + + 2455 + 581 + 3 + 18 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2456 + 581 + 3 + 19 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2457 + 581 + 3 + 20 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + Total energy consumed for pipeline utilization + true + + + 2458 + 581 + 3 + 21 + Facility Consumption + Facility Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 2732 + 2732 + Water consumed by connected Facilities + true + + + 2459 + 581 + 8 + 22 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the water node is built in this year + true + + + 2460 + 581 + 8 + 23 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the water node + true + + + 2461 + 581 + 8 + 24 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of water node units retired + true + + + 2462 + 581 + 8 + 25 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the water node + true + + + 2463 + 581 + 12 + 26 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2464 + 581 + 12 + 27 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2465 + 581 + 12 + 28 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2466 + 590 + 3 + 1 + Max Volume + Max Volume + 64 + 64 + true + true + false + false + true + false + true + true + 466 + 466 + Maximum volume of Water allowed in storage + true + + + 2467 + 590 + 3 + 2 + Min Volume + Min Volume + 64 + 64 + true + true + false + false + true + false + true + true + 510 + 510 + Minimum volume of Water allowed in storage + true + + + 2468 + 590 + 3 + 3 + Initial Volume + Initial Volume + 64 + 64 + true + true + false + false + true + false + true + true + 318 + 318 + Initial volume of Water in the storage + true + + + 2469 + 590 + 3 + 4 + End Volume + End Volume + 64 + 64 + true + true + false + false + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 2470 + 590 + 3 + 5 + Working Volume + Working Volume + 64 + 64 + true + true + false + false + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 2471 + 590 + 3 + 6 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization based on end volume + true + + + 2472 + 590 + 3 + 7 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 2473 + 590 + 3 + 8 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 2474 + 590 + 3 + 9 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 2475 + 590 + 3 + 10 + Withdrawal + Withdrawal + 64 + 64 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of water withdrawn from the storage + true + + + 2476 + 590 + 3 + 11 + Injection + Injection + 64 + 64 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of water injected into the water storage + true + + + 2477 + 590 + 3 + 12 + Net Withdrawal + Net Withdrawal + 64 + 64 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 2478 + 590 + 3 + 13 + Shadow Price + Shadow Price + 67 + 67 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of water in the storage + true + + + 2479 + 590 + 3 + 14 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2480 + 590 + 3 + 15 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2481 + 590 + 3 + 16 + End Level + End Level + 23 + 23 + true + true + false + true + true + false + true + true + 169 + 169 + Water storage level at the end of period + true + + + 2482 + 590 + 7 + 17 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2483 + 590 + 7 + 18 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Withdrawal/Injection on maintenance + true + + + 2484 + 590 + 7 + 19 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the Water storage is on maintenance + true + + + 2485 + 590 + 7 + 20 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Withdrawal/Injection on Forced Outage + true + + + 2486 + 590 + 7 + 21 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the Water storage is on forced outage of Withdrawal/Injection + true + + + 2487 + 590 + 7 + 22 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Storage capacity available in withdrawal/injection + true + + + 2488 + 590 + 8 + 23 + Max Volume Built + Max Volume Built + 64 + 64 + true + true + false + false + true + false + false + false + 2152 + 2152 + Amount of increase in Water Storage Max Volume + true + + + 2489 + 590 + 8 + 24 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Water storage + true + + + 2490 + 590 + 8 + 25 + Max Volume Retired + Max Volume Retired + 64 + 64 + true + true + false + false + true + false + false + false + 2153 + 2153 + Amount of reduction in Water Storage Max Volume + true + + + 2491 + 590 + 8 + 26 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Water storage + true + + + 2492 + 590 + 12 + 27 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2493 + 590 + 12 + 28 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2494 + 590 + 12 + 29 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2495 + 597 + 3 + 1 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Demand for water + true + + + 2496 + 597 + 3 + 2 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in water supply + true + + + 2497 + 597 + 3 + 3 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2498 + 597 + 3 + 4 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2499 + 597 + 3 + 5 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water + true + + + 2500 + 597 + 3 + 6 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2501 + 597 + 3 + 7 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2502 + 597 + 3 + 8 + Net Demand + Net Demand + 65 + 64 + true + true + false + false + true + false + true + true + 1269 + 1269 + Water demand net of shortages and excesses + true + + + 2503 + 597 + 3 + 9 + Served Demand + Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2070 + 2070 + Served Demand (with respect to excess and shortage) + true + + + 2504 + 597 + 3 + 10 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of water demand + true + + + 2505 + 597 + 3 + 11 + Price Paid + Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for water demand + true + + + 2506 + 597 + 3 + 12 + Bid Quantity + Bid Quantity + 65 + 64 + true + true + true + false + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 2507 + 597 + 3 + 13 + Bid Price + Bid Price + 67 + 67 + true + true + true + false + true + false + true + true + 33 + 33 + Value of water in band + true + + + 2508 + 597 + 3 + 14 + Bid Cleared + Bid Cleared + 65 + 64 + true + true + true + false + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 2509 + 597 + 3 + 15 + Cleared Bid Price + Cleared Bid Price + 67 + 67 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 2510 + 597 + 3 + 16 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 2511 + 597 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2512 + 597 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2513 + 597 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2514 + 601 + 3 + 1 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Quantity of water produced by the water plants + true + + + 2515 + 601 + 3 + 2 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Water demand + true + + + 2516 + 601 + 3 + 3 + Imports + Imports + 65 + 64 + true + true + false + false + true + false + true + true + 294 + 294 + Imports on water pipelines + true + + + 2517 + 601 + 3 + 4 + Exports + Exports + 65 + 64 + true + true + false + false + true + false + true + true + 192 + 192 + Exports on water pipelines + true + + + 2518 + 601 + 3 + 5 + Net Interchange + Net Interchange + 65 + 64 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on water pipelines + true + + + 2519 + 601 + 3 + 6 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in water supply + true + + + 2520 + 601 + 3 + 7 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2521 + 601 + 3 + 8 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2522 + 601 + 3 + 9 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water + true + + + 2523 + 601 + 3 + 10 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2524 + 601 + 3 + 11 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2525 + 601 + 3 + 12 + Net Demand + Net Demand + 65 + 64 + true + true + false + false + true + false + true + true + 1269 + 1269 + Water demand net of shortages and excesses + true + + + 2526 + 601 + 3 + 13 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of water demand + true + + + 2527 + 601 + 3 + 14 + Price Paid + Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for water demand + true + + + 2528 + 601 + 6 + 15 + Available Capacity + Available Capacity + 65 + 65 + true + true + false + false + true + false + true + true + 23 + 23 + Aggregate of Water Availability of Water Plants in the Water Zone + true + + + 2529 + 601 + 6 + 16 + Min Capacity Reserves + Min Capacity Reserves + 65 + 65 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 2530 + 601 + 6 + 17 + Max Capacity Reserves + Max Capacity Reserves + 65 + 65 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 2531 + 601 + 6 + 18 + Capacity Reserves + Capacity Reserves + 65 + 65 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 2532 + 601 + 6 + 19 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 2533 + 601 + 6 + 20 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 2534 + 601 + 6 + 21 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + true + + + 2535 + 601 + 6 + 22 + Min Load + Min Load + 65 + 65 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 2536 + 601 + 6 + 23 + Peak Load + Peak Load + 65 + 65 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + true + + + 2537 + 601 + 12 + 24 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2538 + 601 + 12 + 25 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2539 + 601 + 12 + 26 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2540 + 611 + 3 + 1 + Head + Head + 23 + 23 + true + true + false + false + true + false + true + true + 2265 + 2265 + Pump station head + true + + + 2541 + 611 + 3 + 2 + Flow Rate + Flow Rate + 65 + 65 + true + true + false + false + true + false + true + true + 2266 + 2266 + Pump station flow rate + true + + + 2542 + 611 + 3 + 3 + Power + Power + 1 + 1 + true + true + false + false + true + false + true + true + 2267 + 2267 + Power consumed by the pump station to achieve the given head and flow rate + true + + + 2543 + 611 + 3 + 4 + Energy + Energy + 3 + 3 + true + true + false + true + true + false + true + true + 173 + 173 + Energy consumption over a given period + true + + + 2544 + 611 + 3 + 5 + Volume Pumped + Volume Pumped + 64 + 64 + true + true + false + true + true + false + true + true + 2268 + 2268 + Volume pumped over a given period + true + + + 2545 + 620 + 3 + 1 + Units Operating + Units Operating + 0 + 0 + true + true + false + false + true + false + true + true + 2049 + 2049 + the number of units on the pump operating in a given period + true + + + 2546 + 620 + 3 + 2 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start of a water pump + true + + + 2547 + 620 + 3 + 3 + Hours Down + Hours Down + 6 + 6 + true + true + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown of a water pump + true + + + 2548 + 620 + 3 + 4 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of water pumps units started + true + + + 2549 + 620 + 3 + 5 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of water pump units shut down + true + + + 2550 + 620 + 3 + 6 + Head + Head + 23 + 23 + true + true + false + false + true + false + true + true + 2265 + 2265 + Pump head + true + + + 2551 + 620 + 3 + 7 + Flow Rate + Flow Rate + 65 + 65 + true + true + false + false + true + false + true + true + 2266 + 2266 + Pump flow rate + true + + + 2552 + 620 + 3 + 8 + Power + Power + 1 + 1 + true + true + false + false + true + false + true + true + 2267 + 2267 + Power consumed by the pump + true + + + 2553 + 620 + 3 + 9 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of pump starts and shutdowns + true + + + 2554 + 620 + 3 + 10 + Operating Cost + Operating Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2555 + 2555 + Electric cost of operating the pump + true + + + 2555 + 624 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of vehicles + true + + + 2556 + 624 + 3 + 2 + Installed Capacity + Installed Capacity + 80 + 80 + true + true + false + false + true + true + true + true + 320 + 320 + Total battery capacity + true + + + 2557 + 624 + 3 + 3 + Distance + Distance + 81 + 81 + true + true + false + true + true + false + true + true + 2111 + 2111 + Distance travelled + true + + + 2558 + 624 + 3 + 4 + Energy Consumption + Energy Consumption + 80 + 3 + true + true + false + true + true + false + true + true + 1815 + 1815 + Energy consumed + true + + + 2559 + 624 + 3 + 5 + Efficiency + Efficiency + 82 + 82 + true + true + false + false + true + false + true + true + 1209 + 1209 + Energy used per unit travelled + true + + + 2560 + 624 + 3 + 6 + Range + Range + 81 + 81 + true + true + false + false + true + false + true + true + 2112 + 2112 + Remaining range + true + + + 2561 + 624 + 3 + 7 + Energy + Energy + 80 + 80 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored + true + + + 2562 + 624 + 3 + 8 + SoC + SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1660 + 1660 + State of charge + true + + + 2563 + 624 + 3 + 9 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Charge rate/energy + true + + + 2564 + 624 + 3 + 10 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Discharge rate/energy + true + + + 2565 + 624 + 3 + 11 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2566 + 624 + 3 + 12 + Self Discharge Losses + Self Discharge Losses + 79 + 3 + true + true + false + false + true + false + true + true + 2711 + 2711 + Losses due to self-discharge + true + + + 2567 + 624 + 3 + 13 + Auxiliary Consumption + Auxiliary Consumption + 79 + 3 + true + true + false + true + true + false + true + true + 2974 + 2974 + Energy consumption from auxiliary sources + true + + + 2568 + 624 + 3 + 14 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours in use + true + + + 2569 + 624 + 3 + 15 + Hours Charging + Hours Charging + 6 + 6 + true + true + false + false + true + false + true + true + 1662 + 1662 + Number of hours in charging state + true + + + 2570 + 624 + 3 + 16 + Hours Discharging + Hours Discharging + 6 + 6 + true + true + false + false + true + false + true + true + 1663 + 1663 + Number of hours in discharging state + true + + + 2571 + 624 + 3 + 17 + Hours Idle + Hours Idle + 6 + 6 + true + true + false + false + true + false + true + true + 1664 + 1664 + Number of hours in idle state + true + + + 2572 + 624 + 3 + 18 + Units Charging + Units Charging + 0 + 0 + true + true + false + false + true + false + true + true + 3039 + 3039 + Number of units charging + true + + + 2573 + 624 + 3 + 19 + Units Discharging + Units Discharging + 0 + 0 + true + true + false + false + true + false + true + true + 3040 + 3040 + Number of units discharging + true + + + 2574 + 624 + 3 + 20 + Charge Units Started + Charge Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 3041 + 3041 + Number of charge units started + true + + + 2575 + 624 + 3 + 21 + Charge Units Shutdown + Charge Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 3042 + 3042 + Number of charge units shutdown + true + + + 2576 + 624 + 3 + 22 + Discharge Units Started + Discharge Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 3043 + 3043 + Number of discharge units started + true + + + 2577 + 624 + 3 + 23 + Discharge Units Shutdown + Discharge Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 3044 + 3044 + Number of discharge units shutdown + true + + + 2578 + 624 + 3 + 24 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2579 + 624 + 3 + 25 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2580 + 624 + 3 + 26 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2581 + 624 + 3 + 27 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2582 + 624 + 3 + 28 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2583 + 624 + 3 + 29 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2584 + 624 + 3 + 30 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid charging + true + + + 2585 + 624 + 3 + 31 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2586 + 624 + 3 + 32 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2587 + 624 + 3 + 33 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2588 + 624 + 3 + 34 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2589 + 624 + 3 + 35 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2590 + 624 + 3 + 36 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2591 + 624 + 3 + 37 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2592 + 624 + 3 + 38 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2593 + 624 + 3 + 39 + Energy Target Violation + Energy Target Violation + 80 + 80 + true + true + false + false + true + false + true + true + 2964 + 2964 + Violation of the [Energy Target] constraint. + true + + + 2594 + 624 + 3 + 40 + Energy Target Violation Cost + Energy Target Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2965 + 2965 + Cost of [Energy Target] constraint violations. + true + + + 2595 + 624 + 3 + 41 + Non-physical Charge Adjustments + Non-physical Charge Adjustments + 79 + 3 + true + true + false + false + true + false + true + true + 2872 + 2872 + Non-physical charge adjustments required to maintain feasible states of charge. + true + + + 2596 + 624 + 3 + 42 + Non-physical Discharge Adjustments + Non-physical Discharge Adjustments + 79 + 3 + true + true + false + false + true + false + true + true + 2873 + 2873 + Non-physical discharge adjustments required to maintain feasible states of charge. + true + + + 2597 + 624 + 3 + 43 + Charge Efficiency + Charge Efficiency + 12 + 12 + true + true + false + true + true + false + true + true + 1668 + 1668 + Efficiency of charging + true + + + 2598 + 624 + 3 + 44 + Discharge Efficiency + Discharge Efficiency + 12 + 12 + true + true + false + true + true + false + true + true + 1669 + 1669 + Efficiency of discharging + true + + + 2599 + 624 + 8 + 45 + Units Purchased + Units Purchased + 0 + 0 + true + true + false + false + true + false + false + false + 2453 + 2453 + Number of vehicles purchased + true + + + 2600 + 624 + 8 + 46 + Capacity Added + Capacity Added + 80 + 80 + true + true + false + false + true + false + false + false + 2454 + 2454 + Battery capacity added + true + + + 2601 + 624 + 8 + 47 + Purchase Cost + Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2451 + 2451 + Cost of vehicles purchased + true + + + 2602 + 624 + 8 + 48 + Annualized Purchase Cost + Annualized Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2455 + 2455 + Annualized cost of vehicle purchases + true + + + 2603 + 624 + 8 + 49 + Units Disposed + Units Disposed + 0 + 0 + true + true + false + false + true + false + false + false + 2456 + 2456 + Number of vehicles disposed of + true + + + 2604 + 624 + 8 + 50 + Capacity Removed + Capacity Removed + 80 + 80 + true + true + false + false + true + false + false + false + 2457 + 2457 + Battery capacity removed + true + + + 2605 + 624 + 8 + 51 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 2606 + 624 + 8 + 52 + Disposal Cost + Disposal Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2452 + 2452 + Cost of disposing of vehicles + true + + + 2607 + 624 + 8 + 53 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2608 + 624 + 12 + 54 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2609 + 624 + 12 + 55 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2610 + 624 + 12 + 56 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2611 + 629 + 3 + 1 + Consumption + Consumption + 0 + 0 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Commodity + true + + + 2612 + 629 + 3 + 2 + Energy Consumption + Energy Consumption + 80 + 3 + true + true + false + false + true + false + true + true + 1815 + 1815 + Energy from the Commodity + true + + + 2613 + 629 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Cost for Energy from the Commodity + true + + + 2614 + 632 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of chargers + true + + + 2615 + 632 + 3 + 2 + Installed Capacity + Installed Capacity + 79 + 79 + true + true + false + false + true + true + true + true + 320 + 320 + Total charging capacity of the station + true + + + 2616 + 632 + 3 + 3 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Load from charging + true + + + 2617 + 632 + 3 + 4 + Deferred Load + Deferred Load + 79 + 3 + true + true + false + false + true + false + true + true + 2126 + 2126 + Deferred charging load + true + + + 2618 + 632 + 3 + 5 + Hours Deferred + Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2154 + 2154 + Average hours load is deferred in the period + true + + + 2619 + 632 + 3 + 6 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Generation from discharging + true + + + 2620 + 632 + 3 + 7 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2621 + 632 + 3 + 8 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 2622 + 632 + 3 + 9 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2623 + 632 + 3 + 10 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2624 + 632 + 3 + 11 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2625 + 632 + 3 + 12 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2626 + 632 + 3 + 13 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2627 + 632 + 3 + 14 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2628 + 632 + 3 + 15 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid charging + true + + + 2629 + 632 + 3 + 16 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2630 + 632 + 3 + 17 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2631 + 632 + 3 + 18 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2632 + 632 + 3 + 19 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2633 + 632 + 3 + 20 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2634 + 632 + 3 + 21 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2635 + 632 + 3 + 22 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2636 + 632 + 8 + 23 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2637 + 632 + 8 + 24 + Capacity Built + Capacity Built + 79 + 79 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2638 + 632 + 8 + 25 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 2639 + 632 + 8 + 26 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2640 + 632 + 8 + 27 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2641 + 632 + 8 + 28 + Capacity Retired + Capacity Retired + 79 + 79 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2642 + 632 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2643 + 632 + 8 + 30 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2644 + 632 + 12 + 31 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2645 + 632 + 12 + 32 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2646 + 632 + 12 + 33 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2647 + 639 + 3 + 1 + Installed Capacity + Installed Capacity + 80 + 80 + true + true + false + false + true + true + true + true + 320 + 320 + Total battery capacity + true + + + 2648 + 639 + 3 + 2 + Distance + Distance + 81 + 81 + true + true + false + false + true + false + true + true + 2111 + 2111 + Distance travelled + true + + + 2649 + 639 + 3 + 3 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Load from charging + true + + + 2650 + 639 + 3 + 4 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Generation from discharging + true + + + 2651 + 639 + 3 + 5 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2652 + 639 + 3 + 6 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2653 + 639 + 3 + 7 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2654 + 639 + 3 + 8 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2655 + 639 + 3 + 9 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2656 + 639 + 3 + 10 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2657 + 639 + 3 + 11 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2658 + 639 + 3 + 12 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid for charging + true + + + 2659 + 639 + 3 + 13 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2660 + 639 + 3 + 14 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2661 + 639 + 3 + 15 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2662 + 639 + 3 + 16 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2663 + 639 + 3 + 17 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2664 + 639 + 3 + 18 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2665 + 639 + 3 + 19 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2666 + 639 + 3 + 20 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2667 + 639 + 8 + 21 + Units Purchased + Units Purchased + 0 + 0 + true + true + false + false + true + false + false + false + 2453 + 2453 + Number of vehicles purchased + true + + + 2668 + 639 + 8 + 22 + Capacity Added + Capacity Added + 80 + 80 + true + true + false + false + true + false + false + false + 2454 + 2454 + Battery capacity added + true + + + 2669 + 639 + 8 + 23 + Purchase Cost + Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2451 + 2451 + Cost of vehicles purchased + true + + + 2670 + 639 + 8 + 24 + Annualized Purchase Cost + Annualized Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2455 + 2455 + Annualized cost of vehicle purchases + true + + + 2671 + 639 + 8 + 25 + Units Disposed + Units Disposed + 0 + 0 + true + true + false + false + true + false + false + false + 2456 + 2456 + Number of vehicles disposed of + true + + + 2672 + 639 + 8 + 26 + Capacity Removed + Capacity Removed + 80 + 80 + true + true + false + false + true + false + false + false + 2457 + 2457 + Battery capacity removed + true + + + 2673 + 639 + 8 + 27 + Disposal Cost + Disposal Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2452 + 2452 + Cost of disposing of vehicles + true + + + 2674 + 639 + 8 + 28 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2675 + 639 + 12 + 29 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2676 + 639 + 12 + 30 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2677 + 639 + 12 + 31 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2678 + 643 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Own generation + generation contracts + true + + + 2679 + 643 + 3 + 2 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 2680 + 643 + 3 + 3 + Fuel Production Rate + Fuel Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 2036 + 2742 + Fuel production from Power2X + true + + + 2681 + 643 + 3 + 4 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 2682 + 643 + 3 + 5 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 2683 + 643 + 3 + 6 + Dispatchable Capacity + Dispatchable Energy + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 2341 + On-line capacity + true + + + 2684 + 643 + 3 + 7 + Undispatched Capacity + Undispatched Energy + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 2342 + Capacity on-line but undispatched + true + + + 2685 + 643 + 3 + 8 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 2686 + 643 + 3 + 9 + Capacity Curtailed + Energy Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1163 + 2344 + Amount of non-positive-priced generation curtailed. + true + + + 2687 + 643 + 3 + 10 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 2688 + 643 + 3 + 11 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 2689 + 643 + 3 + 12 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2690 + 643 + 3 + 13 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2691 + 643 + 3 + 14 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2692 + 643 + 3 + 15 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2693 + 643 + 3 + 16 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2694 + 643 + 3 + 17 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2695 + 643 + 3 + 18 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 2696 + 643 + 3 + 19 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 2697 + 643 + 3 + 20 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Own load + load contracts + true + + + 2698 + 643 + 3 + 21 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 2699 + 643 + 3 + 22 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Max(0, generation - purchase) + true + + + 2700 + 643 + 3 + 23 + Net Load + Net Load + 1 + 2 + true + true + false + false + true + false + true + true + 544 + 544 + Max(0, load - generation) + true + + + 2701 + 643 + 3 + 24 + Fuel Price + Fuel Price + 29 + 29 + true + true + false + true + true + false + true + true + 225 + 225 + Average fuel price + true + + + 2702 + 643 + 3 + 25 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 2703 + 643 + 3 + 26 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 2704 + 643 + 3 + 27 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 2705 + 643 + 3 + 28 + Fuel Inventory Cost + Fuel Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1604 + 1604 + Cost of fuel stockpile. + true + + + 2706 + 643 + 3 + 29 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2707 + 643 + 3 + 30 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2708 + 643 + 3 + 31 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2709 + 643 + 3 + 32 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Pool cost for pump energy + true + + + 2710 + 643 + 3 + 33 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 2711 + 643 + 3 + 34 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 2712 + 643 + 3 + 35 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Generation cost + true + + + 2713 + 643 + 3 + 36 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Total cost of generation unit starts + true + + + 2714 + 643 + 3 + 37 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 2715 + 643 + 3 + 38 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 2716 + 643 + 3 + 39 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2717 + 643 + 3 + 40 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation and start and shutdown costs and emissions costs + true + + + 2718 + 643 + 3 + 41 + Fuel Production Cost + Fuel Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2743 + 2743 + Cost of fuel production from Power2X + true + + + 2719 + 643 + 3 + 42 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 2720 + 643 + 3 + 43 + Fuel Contract Cost + Fuel Contract Cost + 14 + 34 + true + true + false + true + true + false + true + true + 220 + 220 + Cost of fuel purchased under contract + true + + + 2721 + 643 + 3 + 44 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 2722 + 643 + 3 + 45 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 2723 + 643 + 3 + 46 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs + true + + + 2724 + 643 + 3 + 47 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Pool purchase cost from own load + load contracts + true + + + 2725 + 643 + 3 + 48 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Weighted average SRMC of the company sent out generation + true + + + 2726 + 643 + 3 + 49 + Bid-Cost Mark-up + Bid-Cost Mark-up + 12 + 12 + true + true + true + false + true + false + true + true + 32 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + true + + + 2727 + 643 + 3 + 50 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Weighted average price received for generation + true + + + 2728 + 643 + 3 + 51 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Weighted average price paid for purchases + true + + + 2729 + 643 + 3 + 52 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue from own generation + generation contracts + true + + + 2730 + 643 + 3 + 53 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2731 + 643 + 3 + 54 + Gas Market Revenue + Gas Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1683 + 1683 + Revenue from gas markets + true + + + 2732 + 643 + 3 + 55 + Heat Market Revenue + Heat Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 256 + 256 + Revenue from heat markets + true + + + 2733 + 643 + 3 + 56 + Fuel Market Revenue + Fuel Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 221 + 221 + Revenue from fuel markets + true + + + 2734 + 643 + 3 + 57 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Settlement surplus on own transmission lines + true + + + 2735 + 643 + 3 + 58 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net generator pool revenue + true + + + 2736 + 643 + 3 + 59 + Net Cost to Load + Net Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 538 + 538 + Net cost to load + true + + + 2737 + 643 + 3 + 60 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 2738 + 643 + 3 + 61 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 2739 + 643 + 3 + 62 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit + true + + + 2740 + 643 + 3 + 63 + Generation at RRN + Generation at RRN + 1 + 2 + true + true + false + false + true + false + true + true + 228 + 228 + Own generation taken to the regional reference node + true + + + 2741 + 643 + 3 + 64 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Volume of financial contracts (CfDs) + true + + + 2742 + 643 + 3 + 65 + Net Contract Volume + Net Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 535 + 535 + Net volume on CfDs (generation - contract volume) + true + + + 2743 + 643 + 3 + 66 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on CfDs + true + + + 2744 + 643 + 3 + 67 + Net Contract Settlement + Net Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 534 + 534 + Monies received (+ve) or paid out (-ve) on CfDs net of interconnector surpluses + true + + + 2745 + 643 + 3 + 68 + Net Pool Revenue + Net Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 547 + 547 + Pool revenue plus financial contract settlement + true + + + 2746 + 643 + 3 + 69 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 2747 + 643 + 3 + 70 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 2748 + 643 + 3 + 71 + Contract Cost + Contract Cost + 14 + 34 + true + true + false + true + true + false + true + true + 101 + 101 + Generation cost from physical contracts + true + + + 2749 + 643 + 3 + 72 + Contract Revenue + Contract Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 106 + 106 + Revenue from physical contracts + true + + + 2750 + 643 + 3 + 73 + Net Contract Revenue + Net Contract Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 533 + 533 + Net revenue from physical contracts + true + + + 2751 + 643 + 3 + 74 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 2752 + 643 + 3 + 75 + Generator Monopoly Rent + Generator Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 244 + 244 + Monopoly rent from competitive bidding + true + + + 2753 + 643 + 3 + 76 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint. + true + + + 2754 + 643 + 3 + 77 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 2755 + 643 + 3 + 78 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 2756 + 643 + 3 + 79 + Gas Demand + Gas Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2137 + 2137 + Total gas demand for the company + true + + + 2757 + 643 + 3 + 80 + Gas Supply + Gas Supply + 75 + 76 + true + true + false + true + true + false + true + true + 2138 + 2138 + Total gas supply for the company + true + + + 2758 + 643 + 3 + 81 + Gas Imbalance + Gas Imbalance + 75 + 76 + true + true + false + true + true + false + true + true + 2139 + 2139 + Total gas supply imbalance for the company (Gas Demand - Gas Supply) + true + + + 2759 + 643 + 3 + 82 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the company + true + + + 2760 + 643 + 3 + 83 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the company + true + + + 2761 + 643 + 3 + 84 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange for the company (Financial Exports - Financial Imports) + true + + + 2762 + 643 + 3 + 85 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the company + true + + + 2763 + 643 + 3 + 86 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the company + true + + + 2764 + 643 + 3 + 87 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 2765 + 643 + 3 + 88 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 2766 + 643 + 3 + 89 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 2767 + 643 + 3 + 90 + Dump Energy Allocation + Dump Energy Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 2390 + 2390 + Dump energy allocated to the company. + true + + + 2768 + 643 + 3 + 91 + Unserved Energy Allocation + Unserved Energy Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 2391 + 2391 + Unserved energy (USE) allocated to the company. + true + + + 2769 + 643 + 3 + 92 + Loss Allocation + Loss Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 373 + 373 + Losses allocated to the company. + true + + + 2770 + 643 + 6 + 93 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed generation capacity + true + + + 2771 + 643 + 6 + 94 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available generation capacity + true + + + 2772 + 643 + 6 + 95 + Generator Firm Capacity + Generator Firm Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 242 + 242 + Capacity provided by generators + true + + + 2773 + 643 + 8 + 96 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 2774 + 643 + 8 + 97 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 2775 + 643 + 8 + 98 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 2776 + 643 + 8 + 99 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments to generators in the company + true + + + 2777 + 643 + 8 + 100 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the company + true + + + 2778 + 643 + 8 + 101 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2779 + 643 + 8 + 102 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of units retired + true + + + 2780 + 643 + 8 + 103 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 2781 + 643 + 8 + 104 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 2782 + 643 + 8 + 105 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 2783 + 643 + 8 + 106 + Shadow Capacity Built + Shadow Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1823 + 1823 + Capacity built (Max Capacity x Units Built) before Competition models. + true + + + 2784 + 643 + 12 + 107 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2785 + 643 + 12 + 108 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2786 + 643 + 12 + 109 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2787 + 646 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 2788 + 646 + 1 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the generators + true + + + 2789 + 646 + 1 + 3 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Costs associated with fuel stockpile + true + + + 2790 + 646 + 1 + 4 + Production Rate + Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 627 + 1743 + Rate of production/volume of production from Power2X + true + + + 2791 + 646 + 1 + 5 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of production from Power2X + true + + + 2792 + 646 + 1 + 6 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs across the entire portfolio + true + + + 2793 + 646 + 1 + 7 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of the fuel produced + true + + + 2794 + 647 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 2795 + 647 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 2796 + 647 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 2797 + 647 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 2798 + 647 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 2799 + 647 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2800 + 647 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 2801 + 647 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 2802 + 647 + 1 + 9 + Allocation + Allocation + 19 + 20 + true + true + false + false + true + false + true + true + 3 + 3 + Emission rights allocation + true + + + 2803 + 647 + 1 + 10 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost net of rights allocation + true + + + 2804 + 648 + 1 + 1 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 2805 + 648 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 2806 + 649 + 1 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Own load in region + true + + + 2807 + 649 + 1 + 2 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity in region + true + + + 2808 + 649 + 1 + 3 + Available Capacity + Available Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 23 + Available generation capacity in region + true + + + 2809 + 649 + 1 + 4 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation in region + true + + + 2810 + 649 + 1 + 5 + Marginal Cost + Marginal Cost + 33 + 33 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of generation in the Region + true + + + 2811 + 649 + 1 + 6 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Weighted average price received for generation in region + true + + + 2812 + 649 + 1 + 7 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue from own generation + generation contracts in region + true + + + 2813 + 649 + 1 + 8 + Generation at RRN + Generation at RRN + 1 + 2 + true + true + false + false + true + false + true + true + 228 + 228 + Own generation taken to the regional reference node + true + + + 2814 + 649 + 1 + 9 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Volume of financial contracts (CfDs) sold in the region + true + + + 2815 + 649 + 1 + 10 + Net Contract Volume + Net Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 535 + 535 + Net volume on CfDs (generation - contract volume) + true + + + 2816 + 649 + 1 + 11 + Contract Shortfall + Contract Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 108 + 108 + Shortfall of generation for contracts in region (pro-rated) + true + + + 2817 + 649 + 1 + 12 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on CfDs in the region + true + + + 2818 + 649 + 1 + 13 + Net Contract Settlement + Net Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 534 + 534 + Monies received (+ve) or paid out (-ve) on CfDs net of interconnector surpluses + true + + + 2819 + 649 + 1 + 14 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 2820 + 651 + 1 + 1 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from parent company to child company + true + + + 2821 + 651 + 1 + 2 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the parent region from child region + true + + + 2822 + 651 + 1 + 3 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) + true + + + 2823 + 651 + 1 + 4 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region + true + + + 2824 + 651 + 1 + 5 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region + true + + + 2825 + 651 + 1 + 6 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 2826 + 652 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 2827 + 652 + 1 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1274 + 1274 + Production cost from Facilities producing the Commodity + true + + + 2828 + 652 + 1 + 3 + Total Cost + Total Cost + 14 + 34 + true + true + false + false + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 2829 + 652 + 1 + 4 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + true + true + 1388 + 1388 + Levelized cost of production + true + + + 2830 + 657 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of units + true + + + 2831 + 657 + 3 + 2 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Commodity + true + + + 2832 + 657 + 3 + 3 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 2833 + 657 + 3 + 4 + Net Consumption + Net Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 2282 + 2282 + Net of consumption and production of the Commodity + true + + + 2834 + 657 + 3 + 5 + Energy Consumption + Energy Consumption + 15 + 16 + true + true + false + false + true + false + true + true + 1815 + 1815 + Equivalent energy consumption + true + + + 2835 + 657 + 3 + 6 + Energy Production + Energy Production + 15 + 16 + true + true + false + false + true + false + true + true + 2471 + 2471 + Equivalent energy production + true + + + 2836 + 657 + 3 + 7 + Net Energy Consumption + Net Energy Consumption + 15 + 16 + true + true + false + false + true + false + true + true + 2472 + 2472 + Net equivalent energy consumption + true + + + 2837 + 657 + 3 + 8 + Electric Energy Consumption + Electric Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 2473 + 2473 + Equivalent electric energy consumption + true + + + 2838 + 657 + 3 + 9 + Electric Energy Production + Electric Energy Production + 1 + 2 + true + true + false + false + true + false + true + true + 2474 + 2474 + Equivalent electric energy production + true + + + 2839 + 657 + 3 + 10 + Net Electric Energy Consumption + Net Electric Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 2475 + 2475 + Net equivalent electric energy consumption + true + + + 2840 + 657 + 3 + 11 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Price of the Commodity for the given level of Net Consumption + true + + + 2841 + 657 + 3 + 12 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity from binding constraints + true + + + 2842 + 657 + 3 + 13 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost incurred by consumption of the Commodity + true + + + 2843 + 657 + 3 + 14 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue earned from production of the Commodity + true + + + 2844 + 657 + 3 + 15 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of Cost and Revenue from consumption and production of the Commodity + true + + + 2845 + 657 + 3 + 16 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2846 + 657 + 3 + 17 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2847 + 657 + 10 + 18 + Max Inventory + Max Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1589 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 2848 + 657 + 10 + 19 + Min Inventory + Min Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1590 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 2849 + 657 + 10 + 20 + Opening Inventory + Opening Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial amount of the Commodity in inventory + true + + + 2850 + 657 + 10 + 21 + Closing Inventory + Closing Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1593 + 1593 + Amount of the Commodity in inventory + true + + + 2851 + 657 + 10 + 22 + Inventory Change + Inventory Change + 86 + 86 + true + true + false + false + true + false + true + true + 2340 + 2340 + Change in Commodity in inventory + true + + + 2852 + 657 + 10 + 23 + Working Inventory + Working Inventory + 86 + 86 + true + true + false + true + true + false + true + true + 2501 + 2501 + Working inventory capacity at the end of the period + true + + + 2853 + 657 + 10 + 24 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Inventory capacity utilization + true + + + 2854 + 657 + 10 + 25 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Working inventory capacity utilization + true + + + 2855 + 657 + 10 + 26 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average inventory capacity utilization + true + + + 2856 + 657 + 10 + 27 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average working inventory capacity utilization + true + + + 2857 + 657 + 10 + 28 + Delivery + Delivery + 86 + 86 + true + true + false + false + true + false + true + true + 1592 + 1592 + Amount of the Commodity added to inventory + true + + + 2858 + 657 + 10 + 29 + Injection + Injection + 86 + 86 + true + true + false + false + true + false + true + true + 1392 + 1392 + Amount of the Commodity added to inventory + true + + + 2859 + 657 + 10 + 30 + Withdrawal + Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1391 + 1391 + Amount of the Commodity withdrawn from inventory + true + + + 2860 + 657 + 10 + 31 + Net Withdrawal + Net Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 2861 + 657 + 10 + 32 + Injection Losses + Injection Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2509 + 2509 + Losses from injections + true + + + 2862 + 657 + 10 + 33 + Withdrawal Losses + Withdrawal Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2510 + 2510 + Losses from withdrawals + true + + + 2863 + 657 + 10 + 34 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of additions to inventory + true + + + 2864 + 657 + 10 + 35 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost of holding the Commodity in inventory + true + + + 2865 + 657 + 10 + 36 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost of unused inventory capacity + true + + + 2866 + 657 + 10 + 37 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injections to the inventory + true + + + 2867 + 657 + 10 + 38 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawals from inventory + true + + + 2868 + 657 + 8 + 39 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2869 + 657 + 8 + 40 + Capacity Built + Capacity Built + 0 + 0 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2870 + 657 + 8 + 41 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2871 + 657 + 8 + 42 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2872 + 657 + 8 + 43 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from all facilities involved in production of the commodity + true + + + 2873 + 657 + 8 + 44 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of production + true + + + 2874 + 657 + 8 + 45 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2875 + 657 + 8 + 46 + Capacity Retired + Capacity Retired + 0 + 0 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2876 + 657 + 8 + 47 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2877 + 657 + 8 + 48 + Net New Capacity + Net New Capacity + 0 + 0 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 2878 + 657 + 12 + 49 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2879 + 657 + 12 + 50 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2880 + 657 + 12 + 51 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2881 + 664 + 3 + 1 + Consumption + Consumption + 93 + 93 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Primary Input Commodity by the Process + true + + + 2882 + 664 + 3 + 2 + Production + Production + 94 + 94 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Primary Output Commodity by the Process + true + + + 2883 + 664 + 3 + 3 + Capacity + Capacity + 94 + 94 + true + true + false + false + true + false + true + true + 1665 + 1665 + Capacity of production measured in units of the primary output + true + + + 2884 + 664 + 3 + 4 + Surplus + Surplus + 94 + 94 + true + true + false + false + true + false + true + true + 2332 + 2332 + Surplus production capacity + true + + + 2885 + 664 + 3 + 5 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of production capacity used + true + + + 2886 + 664 + 3 + 6 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that of surplus capacity + true + + + 2887 + 664 + 3 + 7 + Surplus Factor + Surplus Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2411 + 2411 + Proportion of production capacity not used + true + + + 2888 + 664 + 3 + 8 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Ratio of primary output production to primary input consumption + true + + + 2889 + 664 + 3 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Processing cost + true + + + 2890 + 664 + 3 + 10 + Marginal Cost + Marginal Cost + 96 + 96 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2891 + 664 + 3 + 11 + Average Cost + Average Cost + 96 + 96 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2892 + 664 + 3 + 12 + Shadow Price + Shadow Price + 96 + 96 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of production + true + + + 2893 + 664 + 3 + 13 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost from all facilities implementing the process + true + + + 2894 + 664 + 8 + 14 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built from all facilities implementing the process + true + + + 2895 + 664 + 8 + 15 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built from all facilities implementing the process + true + + + 2896 + 664 + 8 + 16 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from all facilities implementing the process + true + + + 2897 + 664 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2898 + 664 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2899 + 664 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2900 + 669 + 1 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Secondary Input Commodity by the Process + true + + + 2901 + 670 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Secondary Output Commodity by the Process + true + + + 2902 + 673 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of existing units + true + + + 2903 + 673 + 3 + 2 + Consumption + Consumption + 93 + 93 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Primary Input Commodity by the Facility + true + + + 2904 + 673 + 3 + 3 + Production + Production + 94 + 94 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Primary Output Commodity by the Facility + true + + + 2905 + 673 + 3 + 4 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of capacity in production + true + + + 2906 + 673 + 3 + 5 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Average efficiency of production + true + + + 2907 + 673 + 3 + 6 + Efficiency Incr + Efficiency Incr + 12 + 12 + true + true + false + false + true + false + true + true + 163 + 163 + Marginal efficiency of production + true + + + 2908 + 673 + 3 + 7 + Electric Energy Consumption + Electric Energy Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 2473 + 2473 + Electric energy consumption + true + + + 2909 + 673 + 3 + 8 + Heat Consumption + Heat Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 2751 + 2751 + Heat consumption + true + + + 2910 + 673 + 3 + 9 + Gas Consumption + Gas Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 2730 + 2730 + Gas consumption + true + + + 2911 + 673 + 3 + 10 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 1803 + 1803 + Water consumption + true + + + 2912 + 673 + 3 + 11 + Electric Energy Cost + Electric Energy Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2733 + 2733 + Cost of electric energy consumed + true + + + 2913 + 673 + 3 + 12 + Heat Cost + Heat Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2753 + 2753 + Cost of heat consumed + true + + + 2914 + 673 + 3 + 13 + Gas Cost + Gas Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2734 + 2734 + Cost of gas consumed + true + + + 2915 + 673 + 3 + 14 + Water Cost + Water Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1809 + 1809 + Cost of water consumed + true + + + 2916 + 673 + 3 + 15 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 2917 + 673 + 3 + 16 + Marginal Cost + Marginal Cost + 96 + 96 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2918 + 673 + 3 + 17 + Average Cost + Average Cost + 96 + 96 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2919 + 673 + 3 + 18 + Units Warming Up + Units Warming Up + 0 + 0 + true + false + false + false + true + false + true + true + 2499 + 2499 + Number of units in the warm up process + true + + + 2920 + 673 + 3 + 19 + Units Operating + Units Operating + 0 + 0 + true + false + false + false + true + false + true + true + 2049 + 2049 + Number of units operating + true + + + 2921 + 673 + 3 + 20 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 2922 + 673 + 3 + 21 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 2923 + 673 + 3 + 22 + Warm Up Hours + Warm Up Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2497 + 2497 + Number of hours warming up + true + + + 2924 + 673 + 3 + 23 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation + true + + + 2925 + 673 + 3 + 24 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 2926 + 673 + 3 + 25 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 2927 + 673 + 3 + 26 + Ramp + Ramp + 94 + 94 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 2928 + 673 + 3 + 27 + Ramp Up + Ramp Up + 94 + 94 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 2929 + 673 + 3 + 28 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 2930 + 673 + 3 + 29 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 2931 + 673 + 3 + 30 + Ramp Up Price + Ramp Up Price + 14 + 14 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint + true + + + 2932 + 673 + 3 + 31 + Ramp Down + Ramp Down + 0 + 0 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 2933 + 673 + 3 + 32 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 2934 + 673 + 3 + 33 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 2935 + 673 + 3 + 34 + Ramp Down Price + Ramp Down Price + 14 + 14 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint + true + + + 2936 + 673 + 3 + 35 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation + true + + + 2937 + 673 + 3 + 36 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation + true + + + 2938 + 673 + 3 + 37 + Ramp Up Violation + Ramp Up Violation + 94 + 94 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint + true + + + 2939 + 673 + 3 + 38 + Ramp Down Violation + Ramp Down Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint + true + + + 2940 + 673 + 3 + 39 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations + true + + + 2941 + 673 + 3 + 40 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations + true + + + 2942 + 673 + 3 + 41 + Fixed Production + Fixed Production + 94 + 94 + true + true + false + false + true + false + true + true + 2304 + 2304 + Production attributable to [Fixed Operating Level] constraint + true + + + 2943 + 673 + 3 + 42 + Fixed Production Violation + Fixed Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 2305 + 2305 + Violation of [Fixed Operating Level] constraint + true + + + 2944 + 673 + 3 + 43 + Fixed Production Violation Hours + Fixed Production Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2306 + 2306 + Number of hours that [Fixed Operating Level] is violated + true + + + 2945 + 673 + 3 + 44 + Fixed Production Violation Cost + Fixed Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2307 + 2307 + Cost of [Fixed Operating Level] violations + true + + + 2946 + 673 + 3 + 45 + Min Production Violation + Min Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 2309 + 2309 + Violation of [Min Operating Level] constraint + true + + + 2947 + 673 + 3 + 46 + Min Production Violation Hours + Min Production Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2310 + 2310 + Number of hours that [Min Operating Level] is violated + true + + + 2948 + 673 + 3 + 47 + Min Production Violation Cost + Min Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2311 + 2311 + Cost of [Min Operating Level] violations + true + + + 2949 + 673 + 3 + 48 + Max Production Violation + Max Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] or [Max Capacity Factor] constraints + true + + + 2950 + 673 + 3 + 49 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] or [Max Capacity Factor] constraint violations + true + + + 2951 + 673 + 3 + 50 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints + true + + + 2952 + 673 + 3 + 51 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations + true + + + 2953 + 673 + 3 + 52 + VO&M Charge + VO&M Charge + 14 + 14 + true + true + false + false + true + false + true + true + 849 + 849 + Variable operation and maintenance charge + true + + + 2954 + 673 + 3 + 53 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2955 + 673 + 3 + 54 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2956 + 673 + 3 + 55 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit start up and shutdown + true + + + 2957 + 673 + 3 + 56 + Start & Shutdown Penalty Cost + Start & Shutdown Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1183 + 1183 + Penalty cost of unit start up and shutdown + true + + + 2958 + 673 + 3 + 57 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including production, VO&M, start and shutdown costs + true + + + 2959 + 673 + 3 + 58 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2960 + 673 + 3 + 59 + Price Received + Price Received + 14 + 14 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for production + true + + + 2961 + 673 + 3 + 60 + Electric Energy Production + Electric Energy Production + 3 + 2 + true + true + false + true + true + false + true + true + 2474 + 2474 + Electric energy production + true + + + 2962 + 673 + 3 + 61 + Heat Production + Heat Production + 3 + 2 + true + true + false + true + true + false + true + true + 257 + 257 + Heat production + true + + + 2963 + 673 + 3 + 62 + Gas Production + Gas Production + 75 + 76 + true + true + false + true + true + false + true + true + 2839 + 2839 + Gas production + true + + + 2964 + 673 + 3 + 63 + Water Production + Water Production + 64 + 64 + true + true + false + true + true + false + true + true + 2840 + 2840 + Water production + true + + + 2965 + 673 + 3 + 64 + Electric Energy Revenue + Electric Energy Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2841 + 2841 + Revenue from electric energy produced + true + + + 2966 + 673 + 3 + 65 + Heat Revenue + Heat Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 267 + 267 + Revenue from heat produced + true + + + 2967 + 673 + 3 + 66 + Gas Revenue + Gas Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2842 + 2842 + Revenue from gas produced + true + + + 2968 + 673 + 3 + 67 + Water Revenue + Water Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2843 + 2843 + Revenue from water produced + true + + + 2969 + 673 + 3 + 68 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue for production + true + + + 2970 + 673 + 3 + 69 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 2971 + 673 + 6 + 70 + Installed Capacity + Installed Capacity + 94 + 94 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Operating Level x Units) + true + + + 2972 + 673 + 6 + 71 + Available Capacity + Available Capacity + 94 + 94 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 2973 + 673 + 7 + 72 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service due to maintenance + true + + + 2974 + 673 + 7 + 73 + Maintenance + Maintenance + 94 + 94 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2975 + 673 + 7 + 74 + Discrete Maintenance + Discrete Maintenance + 94 + 94 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 2976 + 673 + 7 + 75 + Distributed Maintenance + Distributed Maintenance + 94 + 94 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 2977 + 673 + 7 + 76 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 2978 + 673 + 7 + 77 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of capacity on maintenance outage + true + + + 2979 + 673 + 7 + 78 + Forced Outage + Forced Outage + 94 + 94 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 2980 + 673 + 7 + 79 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 2981 + 673 + 7 + 80 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of capacity on forced outage + true + + + 2982 + 673 + 7 + 81 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 2983 + 673 + 7 + 82 + Outage Hours + Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2561 + 2561 + Number of hours on outage + true + + + 2984 + 673 + 7 + 83 + Outage Rate + Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 2562 + 2562 + Proportion of installed capacity on outage + true + + + 2985 + 673 + 7 + 84 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of capacity available for production + true + + + 2986 + 673 + 8 + 85 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2987 + 673 + 8 + 86 + Capacity Built + Capacity Built + 94 + 94 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2988 + 673 + 8 + 87 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2989 + 673 + 8 + 88 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2990 + 673 + 8 + 89 + Establishment Cost + Establishment Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1160069392 + 1160069392 + Establishment cost incurred due to the installation of the facility + true + + + 2991 + 673 + 8 + 90 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2992 + 673 + 8 + 91 + Capacity Retired + Capacity Retired + 94 + 94 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2993 + 673 + 8 + 92 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2994 + 673 + 8 + 93 + Net New Capacity + Net New Capacity + 94 + 94 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 2995 + 673 + 8 + 94 + Capacity Price + Capacity Price + 14 + 14 + true + true + false + false + true + false + true + true + 881 + 881 + Price of new capacity + true + + + 2996 + 673 + 8 + 95 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 2997 + 673 + 8 + 96 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2998 + 673 + 8 + 97 + Levelized Cost + Levelized Cost + 14 + 14 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of production + true + + + 2999 + 673 + 12 + 98 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3000 + 673 + 12 + 99 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3001 + 673 + 12 + 100 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3002 + 676 + 1 + 1 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of using the fuel commodity by the transport + true + + + 3003 + 676 + 3 + 2 + Consumption + Consumption + 0 + 0 + true + true + true + false + true + false + true + true + 1437 + 1437 + Amount of Process Primary Input Commodity consumed by the Facility + true + + + 3004 + 677 + 3 + 1 + Production + Production + 0 + 0 + true + true + true + false + true + false + true + true + 624 + 624 + Amount of Process Primary Output Commodity produced by the Facility + true + + + 3005 + 678 + 3 + 1 + Consumption + Consumption + 0 + 0 + true + true + true + false + true + false + true + true + 1437 + 1437 + Amount of Process Secondary Input Commodity consumed by the Facility + true + + + 3006 + 679 + 3 + 1 + Production + Production + 0 + 0 + true + true + true + false + true + false + true + true + 624 + 624 + Amount of Process Secondary Output Commodity produced by the Facility + true + + + 3007 + 689 + 1 + 1 + Start Date + Start Date + 0 + 0 + true + true + false + false + true + false + true + true + 1719 + 1719 + Start date of next maintenance event. + true + + + 3008 + 689 + 1 + 2 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the maintenance is active. + true + + + 3009 + 689 + 1 + 3 + Duration + Duration + 6 + 6 + true + true + false + false + true + false + true + true + 1476 + 1476 + Duration of the maintenance event. + true + + + 3010 + 689 + 1 + 4 + Time Remaining + Time Remaining + 6 + 6 + true + true + false + false + true + false + true + true + 612974844 + 612974844 + Time remaining until the completion of the maintenance occurrence. + true + + + 3011 + 689 + 1 + 5 + Cost + Cost + 14 + 34 + true + true + true + false + true + false + true + true + 117 + 117 + Cost of the maintenance event. + true + + + 3012 + 689 + 1 + 6 + Crew + Crew + 0 + 0 + true + true + true + false + true + false + true + true + 1688 + 1688 + Maintenance event crew requirements. + true + + + 3013 + 689 + 1 + 7 + Equipment + Equipment + 0 + 0 + true + true + true + false + true + false + true + true + 1689 + 1689 + Maintenance event equipment requirements. + true + + + 3014 + 689 + 1 + 8 + Penalty Cost + Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 603 + 603 + Cost of not scheduling this maintenance event. + true + + + 3015 + 689 + 1 + 9 + Cumulative Operating Hours + Cumulative Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 3139 + 3139 + Cumulative number of operating hours since the last maintenance occurrence. + true + + + 3016 + 689 + 1 + 10 + Max Operating Hour Limit Violation + Max Operating Hour Limit Violation + 0 + 0 + true + true + false + false + true + true + true + true + 361103192 + 361103192 + Violation of the Max Operating Hour Limit. + true + + + 3017 + 689 + 1 + 11 + Max Operating Hour Limit Violation Cost + Max Operating Hour Limit Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1142667310 + 1142667310 + Cost of violating the Max Operating Hour Limit. + true + + + 3018 + 689 + 1 + 12 + Min Operating Hour Limit Violation + Min Operating Hour Limit Violation + 0 + 0 + true + true + false + false + true + true + true + true + 2102845806 + 2102845806 + Violation of the Min Operating Hour Limit. + true + + + 3019 + 689 + 1 + 13 + Min Operating Hour Limit Violation Cost + Min Operating Hour Limit Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 222150509 + 222150509 + Cost of violating the Min Operating Hour Limit. + true + + + 3020 + 689 + 1 + 14 + Cumulative Starts + Cumulative Starts + 0 + 0 + true + true + false + false + true + false + true + true + 3140 + 3140 + Cumulative number of starts since the last maintenance occurrence. + true + + + 3021 + 689 + 1 + 15 + Max Starts Limit Violation + Max Starts Limit Violation + 0 + 0 + true + true + false + false + true + true + true + true + 2081946979 + 2081946979 + Violation of the Max Starts Limit. + true + + + 3022 + 689 + 1 + 16 + Max Starts Limit Violation Cost + Max Starts Limit Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 504144995 + 504144995 + Cost of violating the Max Starts Limit. + true + + + 3023 + 689 + 1 + 17 + Min Starts Limit Violation + Min Starts Limit Violation + 0 + 0 + true + true + false + false + true + true + true + true + 900790569 + 900790569 + Violation of the Min Starts Limit. + true + + + 3024 + 689 + 1 + 18 + Min Starts Limit Violation Cost + Min Starts Limit Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1923488658 + 1923488658 + Cost of violating the Min Starts Limit. + true + + + 3025 + 689 + 1 + 19 + Cumulative Time + Cumulative Time + 6 + 6 + true + true + false + false + true + false + true + true + 3141 + 3141 + Cumulative number of absolute hours since the last occurrence completion. + true + + + 3026 + 689 + 1 + 20 + Max Time Limit Violation + Max Time Limit Violation + 0 + 0 + true + true + false + false + true + true + true + true + 794775082 + 794775082 + Violation of the Max Time Limit. + true + + + 3027 + 689 + 1 + 21 + Max Time Limit Violation Cost + Max Time Limit Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 363321774 + 363321774 + Cost of violating the Max Time Limit. + true + + + 3028 + 689 + 1 + 22 + Min Time Limit Violation + Min Time Limit Violation + 0 + 0 + true + true + false + false + true + true + true + true + 101971764 + 101971764 + Violation of the Min Time Limit. + true + + + 3029 + 689 + 1 + 23 + Min Time Limit Violation Cost + Min Time Limit Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1918896275 + 1918896275 + Cost of violating the Min Time Limit. + true + + + 3030 + 689 + 12 + 24 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3031 + 689 + 12 + 25 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3032 + 689 + 12 + 26 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3033 + 693 + 1 + 1 + Units In Use + Units In Use + 0 + 0 + true + true + false + false + true + false + true + true + 3153 + 3153 + Number of units in use (unavailable) + true + + + 3034 + 693 + 1 + 2 + Time Remaining + Time Remaining + 0 + 0 + true + true + true + false + true + false + true + true + 612974844 + 612974844 + Time remaining for the turnaround of each component unit + true + + + 3035 + 696 + 1 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of units either available or in use + true + + + 3036 + 696 + 1 + 2 + Units In Use + Units In Use + 0 + 0 + true + true + false + false + true + false + true + true + 3153 + 3153 + Number of units in use (unavailable) + true + + + 3037 + 696 + 1 + 3 + Units Available + Units Available + 0 + 0 + true + true + false + false + true + false + true + true + 3154 + 3154 + Number of units available for use (not currently in use) + true + + + 3038 + 696 + 1 + 4 + Units Violation + Units Violation + 0 + 0 + true + true + false + false + true + false + true + true + 2129793776 + 2129793776 + Violation of the Units + true + + + 3039 + 696 + 1 + 5 + Units Violation Cost + Units Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2129793777 + 2129793777 + Cost of violation of the Units + true + + + 3040 + 696 + 1 + 6 + Time Remaining + Time Remaining + 6 + 6 + true + true + true + false + true + false + true + true + 612974844 + 612974844 + Time remaining for the component units + true + + + 3041 + 699 + 3 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Commodity consumed + true + + + 3042 + 699 + 3 + 2 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Commodity produced + true + + + 3043 + 699 + 3 + 3 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 3044 + 699 + 3 + 4 + Marginal Cost + Marginal Cost + 14 + 14 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 3045 + 699 + 3 + 5 + Average Cost + Average Cost + 14 + 14 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 3046 + 699 + 3 + 6 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Commodity flowed + true + + + 3047 + 699 + 3 + 7 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 3048 + 699 + 3 + 8 + Imports + Imports + 86 + 86 + true + true + false + false + true + false + true + true + 294 + 294 + Commodity imported + true + + + 3049 + 699 + 3 + 9 + Exports + Exports + 86 + 86 + true + true + false + false + true + false + true + true + 192 + 192 + Commodity exported + true + + + 3050 + 699 + 3 + 10 + Net Interchange + Net Interchange + 86 + 86 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on Flow Paths + true + + + 3051 + 699 + 3 + 11 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Total losses in the network + true + + + 3052 + 699 + 3 + 12 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 3053 + 699 + 3 + 13 + Shortage + Shortage + 86 + 86 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 3054 + 699 + 3 + 14 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 3055 + 699 + 3 + 15 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 3056 + 699 + 3 + 16 + Surplus + Surplus + 86 + 86 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 3057 + 699 + 3 + 17 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 3058 + 699 + 3 + 18 + Sales + Sales + 86 + 86 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to Markets + true + + + 3059 + 699 + 3 + 19 + Purchases + Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from Markets + true + + + 3060 + 699 + 3 + 20 + Net Sales + Net Sales + 86 + 86 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to Markets + true + + + 3061 + 699 + 3 + 21 + Net Purchases + Net Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from Markets + true + + + 3062 + 699 + 3 + 22 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours Market price cap was applied + true + + + 3063 + 699 + 3 + 23 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours Market price floor was applied + true + + + 3064 + 699 + 3 + 24 + Price + Price + 14 + 14 + true + true + false + false + true + false + true + true + 612 + 612 + Market price + true + + + 3065 + 699 + 3 + 25 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of Market sales + true + + + 3066 + 699 + 3 + 26 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Value of Market purchases + true + + + 3067 + 699 + 3 + 27 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net value of Market sales + true + + + 3068 + 699 + 3 + 28 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net value of Market purchases + true + + + 3069 + 699 + 3 + 29 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 3070 + 699 + 3 + 30 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 3071 + 699 + 3 + 31 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 3072 + 699 + 3 + 32 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity in the Flow Network + true + + + 3073 + 699 + 6 + 33 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Flow capacity + true + + + 3074 + 699 + 6 + 34 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 3075 + 699 + 8 + 35 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Production capacity built + true + + + 3076 + 699 + 8 + 36 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of production capacity builds + true + + + 3077 + 699 + 8 + 37 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Production capacity retired + true + + + 3078 + 699 + 8 + 38 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of production capacity retirements + true + + + 3079 + 699 + 12 + 39 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3080 + 699 + 12 + 40 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3081 + 699 + 12 + 41 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3082 + 708 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Flow Node is in service + true + + + 3083 + 708 + 3 + 2 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Commodity consumed + true + + + 3084 + 708 + 3 + 3 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Commodity produced + true + + + 3085 + 708 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 3086 + 708 + 3 + 5 + Marginal Cost + Marginal Cost + 88 + 88 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 3087 + 708 + 3 + 6 + Average Cost + Average Cost + 88 + 88 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 3088 + 708 + 3 + 7 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Commodity flowed + true + + + 3089 + 708 + 3 + 8 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 3090 + 708 + 3 + 9 + Imports + Imports + 86 + 86 + true + true + false + false + true + false + true + true + 294 + 294 + Commodity imported + true + + + 3091 + 708 + 3 + 10 + Exports + Exports + 86 + 86 + true + true + false + false + true + false + true + true + 192 + 192 + Commodity exported + true + + + 3092 + 708 + 3 + 11 + Net Interchange + Net Interchange + 86 + 86 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on Flow Paths + true + + + 3093 + 708 + 3 + 12 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Losses incurred at the Flow Node + true + + + 3094 + 708 + 3 + 13 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 3095 + 708 + 3 + 14 + Shortage + Shortage + 86 + 86 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 3096 + 708 + 3 + 15 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 3097 + 708 + 3 + 16 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 3098 + 708 + 3 + 17 + Surplus + Surplus + 86 + 86 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 3099 + 708 + 3 + 18 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 3100 + 708 + 3 + 19 + Sales + Sales + 86 + 86 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to Markets + true + + + 3101 + 708 + 3 + 20 + Purchases + Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from Markets + true + + + 3102 + 708 + 3 + 21 + Net Sales + Net Sales + 86 + 86 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to Markets + true + + + 3103 + 708 + 3 + 22 + Net Purchases + Net Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from Markets + true + + + 3104 + 708 + 3 + 23 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours Market price cap was applied + true + + + 3105 + 708 + 3 + 24 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours Market price floor was applied + true + + + 3106 + 708 + 3 + 25 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Market price + true + + + 3107 + 708 + 3 + 26 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of Market sales + true + + + 3108 + 708 + 3 + 27 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Value of Market purchases + true + + + 3109 + 708 + 3 + 28 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net value of Market sales + true + + + 3110 + 708 + 3 + 29 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net value of Market purchases + true + + + 3111 + 708 + 3 + 30 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 3112 + 708 + 3 + 31 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 3113 + 708 + 3 + 32 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 3114 + 708 + 3 + 33 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity at the Flow Node + true + + + 3115 + 708 + 6 + 34 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Flow capacity + true + + + 3116 + 708 + 6 + 35 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 3117 + 708 + 8 + 36 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the Flow Node is built in this year + true + + + 3118 + 708 + 8 + 37 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 3119 + 708 + 8 + 38 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Flow Node + true + + + 3120 + 708 + 8 + 39 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the Flow Node is retired in this year + true + + + 3121 + 708 + 8 + 40 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 3122 + 708 + 8 + 41 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Flow Node + true + + + 3123 + 708 + 12 + 42 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3124 + 708 + 12 + 43 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3125 + 708 + 12 + 44 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3126 + 713 + 1 + 1 + Inflow + Inflow + 94 + 94 + true + true + false + true + true + false + true + true + 312 + 312 + Commodity flow from flow node to transport hub + true + + + 3127 + 713 + 1 + 2 + Outflow + Outflow + 94 + 94 + true + true + false + true + true + false + true + true + 514104739 + 514104739 + Commodity flow from transport hub to flow node + true + + + 3128 + 716 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Flow Path is in service + true + + + 3129 + 716 + 3 + 2 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Net flow of the Commodity + true + + + 3130 + 716 + 3 + 3 + Flow Forward + Flow Forward + 86 + 86 + true + true + false + false + true + false + true + true + 2383 + 2383 + Commodity flow in the reference direction + true + + + 3131 + 716 + 3 + 4 + Flow Back + Flow Back + 86 + 86 + true + true + false + false + true + false + true + true + 206 + 206 + Commodity flow in the counter-reference direction + true + + + 3132 + 716 + 3 + 5 + Flows in Transit + Flows in Transit + 86 + 86 + true + true + false + false + true + false + true + true + 2735 + 2735 + Commodity flow in transit at the end of the period + true + + + 3133 + 716 + 3 + 6 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 3134 + 716 + 3 + 7 + Export Limit + Export Limit + 86 + 86 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the Flow Path + true + + + 3135 + 716 + 3 + 8 + Import Limit + Import Limit + 86 + 86 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the Flow Path + true + + + 3136 + 716 + 3 + 9 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to flow limit + true + + + 3137 + 716 + 3 + 10 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to flow limit + true + + + 3138 + 716 + 3 + 11 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the Flow Path is congested + true + + + 3139 + 716 + 3 + 12 + Hours Congested Forward + Hours Congested Forward + 6 + 6 + false + true + false + false + true + false + true + true + 2369 + 2369 + Number of hours the Flow Path is congested in the reference direction + true + + + 3140 + 716 + 3 + 13 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the Flow Path is congested in the counter-reference direction + true + + + 3141 + 716 + 3 + 14 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Losses incurred + true + + + 3142 + 716 + 3 + 15 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price + true + + + 3143 + 716 + 3 + 16 + Shadow Price Forward + Shadow Price Forward + 88 + 88 + false + true + false + false + true + false + true + true + 2370 + 2370 + Shadow price in the reference direction + true + + + 3144 + 716 + 3 + 17 + Shadow Price Back + Shadow Price Back + 88 + 88 + false + true + false + false + true + false + true + true + 743 + 743 + Shadow price of interface limit in the counter-reference direction + true + + + 3145 + 716 + 6 + 18 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Flow x Units) + true + + + 3146 + 716 + 6 + 19 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 3147 + 716 + 7 + 20 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 3148 + 716 + 7 + 21 + Maintenance + Maintenance + 86 + 86 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 3149 + 716 + 7 + 22 + Maintenance Back + Maintenance Back + 86 + 86 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 3150 + 716 + 7 + 23 + Discrete Maintenance + Discrete Maintenance + 86 + 86 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 3151 + 716 + 7 + 24 + Discrete Maintenance Back + Discrete Maintenance Back + 86 + 86 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 3152 + 716 + 7 + 25 + Distributed Maintenance + Distributed Maintenance + 86 + 86 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 3153 + 716 + 7 + 26 + Distributed Maintenance Back + Distributed Maintenance Back + 86 + 86 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 3154 + 716 + 7 + 27 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 3155 + 716 + 7 + 28 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of capacity on maintenance outage + true + + + 3156 + 716 + 7 + 29 + Forced Outage + Forced Outage + 86 + 86 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 3157 + 716 + 7 + 30 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 3158 + 716 + 7 + 31 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of capacity on forced outage + true + + + 3159 + 716 + 7 + 32 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of capacity available for production + true + + + 3160 + 716 + 3 + 33 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 3161 + 716 + 8 + 34 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the Flow Node is built in this year + true + + + 3162 + 716 + 8 + 35 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 3163 + 716 + 8 + 36 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Flow Path + true + + + 3164 + 716 + 8 + 37 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the Flow Node is retired in this year + true + + + 3165 + 716 + 8 + 38 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 3166 + 716 + 8 + 39 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Flow Path + true + + + 3167 + 716 + 12 + 40 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3168 + 716 + 12 + 41 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3169 + 716 + 12 + 42 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3170 + 724 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of units + true + + + 3171 + 724 + 3 + 2 + Max Inventory + Max Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1589 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 3172 + 724 + 3 + 3 + Min Inventory + Min Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1590 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 3173 + 724 + 3 + 4 + Opening Inventory + Opening Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial amount of the Commodity in inventory + true + + + 3174 + 724 + 3 + 5 + Closing Inventory + Closing Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1593 + 1593 + Amount of the Commodity in inventory + true + + + 3175 + 724 + 3 + 6 + Inventory Change + Inventory Change + 86 + 86 + true + true + false + false + true + false + true + true + 2340 + 2340 + Change in Commodity in inventory + true + + + 3176 + 724 + 3 + 7 + Delivery + Delivery + 86 + 86 + true + true + false + false + true + false + true + true + 1592 + 1592 + Amount of the Commodity added to inventory + true + + + 3177 + 724 + 3 + 8 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Gross amount of the Commodity drawn from the Flow Node + true + + + 3178 + 724 + 3 + 9 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Net amount of the Commodity released to the Flow Node + true + + + 3179 + 724 + 3 + 10 + Injection + Injection + 86 + 86 + true + true + false + false + true + false + true + true + 1392 + 1392 + Net amount of the Commodity added to inventory + true + + + 3180 + 724 + 3 + 11 + Withdrawal + Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1391 + 1391 + Gross amount of the Commodity withdrawn from inventory + true + + + 3181 + 724 + 3 + 12 + Net Withdrawal + Net Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 3182 + 724 + 3 + 13 + Injection Losses + Injection Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2509 + 2509 + Losses from injections + true + + + 3183 + 724 + 3 + 14 + Withdrawal Losses + Withdrawal Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2510 + 2510 + Losses from withdrawals + true + + + 3184 + 724 + 3 + 15 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of additions to inventory + true + + + 3185 + 724 + 3 + 16 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost of holding the Commodity in inventory + true + + + 3186 + 724 + 3 + 17 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost of unused inventory capacity + true + + + 3187 + 724 + 3 + 18 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injections to the inventory + true + + + 3188 + 724 + 3 + 19 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawals from inventory + true + + + 3189 + 724 + 3 + 20 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity from binding constraints + true + + + 3190 + 724 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 3191 + 724 + 3 + 22 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 3192 + 724 + 8 + 23 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 3193 + 724 + 8 + 24 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 3194 + 724 + 8 + 25 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 3195 + 724 + 8 + 26 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 3196 + 724 + 8 + 27 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 3197 + 724 + 8 + 28 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 3198 + 724 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 3199 + 724 + 8 + 30 + Net New Capacity + Net New Capacity + 86 + 86 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 3200 + 724 + 8 + 31 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 3201 + 724 + 12 + 32 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3202 + 724 + 12 + 33 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3203 + 724 + 12 + 34 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3204 + 731 + 3 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity by the Facilities + true + + + 3205 + 731 + 3 + 2 + Sales + Sales + 0 + 0 + true + true + false + false + true + false + true + true + 718 + 718 + Sales of the Commodity to the Markets + true + + + 3206 + 731 + 3 + 3 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including production, VO&M, start and shutdown costs + true + + + 3207 + 731 + 3 + 4 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of sales to the Markets + true + + + 3208 + 731 + 3 + 5 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit of the Entity + true + + + 3209 + 731 + 8 + 6 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Build cost of Facilities + true + + + 3210 + 731 + 8 + 7 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of Facilities built + true + + + 3211 + 731 + 8 + 8 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Retirement costs of Facilities + true + + + 3212 + 731 + 8 + 9 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from Facilities + true + + + 3213 + 731 + 12 + 10 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3214 + 731 + 12 + 11 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3215 + 731 + 12 + 12 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3216 + 734 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 3217 + 734 + 1 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1274 + 1274 + Production cost from Facilities producing the Commodity + true + + + 3218 + 734 + 1 + 3 + Total Cost + Total Cost + 14 + 34 + true + true + false + false + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 3219 + 734 + 1 + 4 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + true + true + 1388 + 1388 + Levelized cost of production + true + + + 3220 + 737 + 3 + 1 + Sales + Sales + 86 + 87 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 3221 + 737 + 3 + 2 + Purchases + Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 3222 + 737 + 3 + 3 + Net Sales + Net Sales + 86 + 87 + true + true + false + false + true + false + true + true + 553 + 553 + Net reserve sold into the market + true + + + 3223 + 737 + 3 + 4 + Net Purchases + Net Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 3224 + 737 + 3 + 5 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 3225 + 737 + 3 + 6 + Shortage + Shortage + 86 + 87 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 3226 + 737 + 3 + 7 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 3227 + 737 + 3 + 8 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 3228 + 737 + 3 + 9 + Surplus + Surplus + 86 + 87 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 3229 + 737 + 3 + 10 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 3230 + 737 + 3 + 11 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours the price cap was applied + true + + + 3231 + 737 + 3 + 12 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours the price floor was applied + true + + + 3232 + 737 + 3 + 13 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Price point on market demand function + true + + + 3233 + 737 + 3 + 14 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of sales to the market + true + + + 3234 + 737 + 3 + 15 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 3235 + 737 + 3 + 16 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue from reserve sales in the market + true + + + 3236 + 737 + 3 + 17 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net cost of purchases from the market + true + + + 3237 + 737 + 3 + 18 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Cost including block fixed costs + true + + + 3238 + 737 + 3 + 19 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 3239 + 737 + 3 + 20 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 3240 + 737 + 3 + 21 + Natural Revenue + Natural Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1624 + 1624 + Value of sales to the market ignoring bid-ask spread + true + + + 3241 + 737 + 3 + 22 + Natural Cost + Natural Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1625 + 1625 + Cost of purchases from the market ignoring bid-ask spread + true + + + 3242 + 737 + 6 + 23 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the market purchases to generation capacity for capacity reserves. + true + + + 3243 + 737 + 6 + 24 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Contribution of the market sales to the load obligation for capacity reserves. + true + + + 3244 + 737 + 12 + 25 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3245 + 737 + 12 + 26 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3246 + 737 + 12 + 27 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3247 + 743 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of existing units + true + + + 3248 + 743 + 3 + 2 + Exports + Exports + 94 + 94 + true + true + false + true + true + false + true + true + 192 + 192 + Amount of primary commodity exported from the export transport hub + true + + + 3249 + 743 + 3 + 3 + Imports + Imports + 94 + 94 + true + true + false + true + true + false + true + true + 294 + 294 + Amount of primary commodity delivered at the import transport hub + true + + + 3250 + 743 + 3 + 4 + Losses + Losses + 94 + 94 + true + true + false + true + true + false + true + true + 924 + 924 + Primary commodity lost during the trip + true + + + 3251 + 743 + 3 + 5 + Idle Losses + Idle Losses + 94 + 94 + true + true + false + true + true + false + true + true + 2098162535 + 2098162535 + Primary commodity lost while dwelling + true + + + 3252 + 743 + 3 + 6 + Commodity Inventory + Commodity Inventory + 94 + 94 + true + true + false + true + true + false + true + true + 1841377490 + 1841377490 + Amount of primary commodity present in the transport + true + + + 3253 + 743 + 3 + 7 + Fuel Exports + Fuel Exports + 94 + 94 + true + true + false + true + true + false + true + true + 1884851777 + 1884851777 + Amount of fuel commodity exported from the export transport hub + true + + + 3254 + 743 + 3 + 8 + Fuel Consumption + Fuel Consumption + 94 + 94 + true + true + false + true + true + false + true + true + 1741489016 + 1741489016 + Amount of fuel consumption by transport + true + + + 3255 + 743 + 3 + 9 + Fuel Inventory + Fuel Inventory + 94 + 94 + true + true + false + true + true + false + true + true + 527435046 + 527435046 + Amount of fuel commodity present in the transport + true + + + 3256 + 743 + 3 + 10 + Loading Time + Loading Time + 7 + 7 + true + true + false + true + true + false + true + true + 1842 + 1842 + Time taken to load the primary commodity into the transport + true + + + 3257 + 743 + 3 + 11 + Unloading Time + Unloading Time + 7 + 7 + true + true + false + true + true + false + true + true + 1866458365 + 1866458365 + Time taken to unload the primary commodity from the transport + true + + + 3258 + 743 + 3 + 12 + Travel Time + Travel Time + 7 + 7 + true + true + false + true + true + false + true + true + 3004 + 3004 + Transport travel time + true + + + 3259 + 743 + 3 + 13 + Dwell Time + Dwell Time + 7 + 7 + true + true + false + true + true + false + true + true + 1229429105 + 1229429105 + Transport dwell time + true + + + 3260 + 743 + 3 + 14 + Total Trip Time + Total Trip Time + 7 + 7 + true + true + false + true + true + false + true + true + 797709877 + 797709877 + Transport total trip time + true + + + 3261 + 743 + 3 + 15 + Trip Progress + Trip Progress + 12 + 12 + true + true + false + false + true + false + true + true + 1170075448 + 1170075448 + Percentage of trip completed + true + + + 3262 + 743 + 3 + 16 + Charter Cost + Charter Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2795 + 2795 + Charter cost of transport + true + + + 3263 + 743 + 3 + 17 + Hub Cost + Hub Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1730527985 + 1730527985 + Cost of using port by gas transport + true + + + 3264 + 743 + 3 + 18 + Path Cost + Path Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1738986864 + 1738986864 + Cost of using the path by the transport + true + + + 3265 + 743 + 3 + 19 + Transport Cost + Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 996 + 996 + Cost of transporting + true + + + 3266 + 743 + 3 + 20 + Total Transport Cost + Total Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 693683315 + 693683315 + Total cost of the trip + true + + + 3267 + 743 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 3268 + 743 + 8 + 22 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the Transport is built in this year + true + + + 3269 + 743 + 8 + 23 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 3270 + 743 + 8 + 24 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the Transport + true + + + 3271 + 743 + 8 + 25 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the Transport is retired in this year + true + + + 3272 + 743 + 8 + 26 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 3273 + 743 + 8 + 27 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the Transport + true + + + 3274 + 743 + 12 + 28 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Pass-through value (summed in summary) + true + + + 3275 + 743 + 12 + 29 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Pass-through value (summed in summary) + true + + + 3276 + 743 + 12 + 30 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Pass-through value (averaged in summary) + true + + + 3277 + 746 + 1 + 1 + Consumption + Consumption + 94 + 94 + true + true + true + false + true + false + true + true + 1437 + 1437 + Amount of Fuel Commodity consumed by the Facility + true + + + 3278 + 746 + 1 + 2 + Idle Consumption + Idle Consumption + 94 + 94 + true + true + true + false + true + false + true + true + 555319858 + 555319858 + Amount of Fuel Commodity consumed by the Facility when dwelling + true + + + 3279 + 748 + 1 + 1 + Exports + Exports + 94 + 94 + true + true + false + true + true + false + true + true + 192 + 192 + Amount of primary commodity exported from the export transport hub by transport + true + + + 3280 + 748 + 1 + 2 + Fuel Exports + Fuel Exports + 94 + 94 + true + true + false + true + true + false + true + true + 1884851777 + 1884851777 + Amount of fuel commodity exported from the export transport hub by transport + true + + + 3281 + 748 + 1 + 3 + Hub Cost + Hub Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1730527985 + 1730527985 + Cost of using the transport hub by the transport + true + + + 3282 + 749 + 1 + 1 + Imports + Imports + 94 + 94 + true + true + false + true + true + false + true + true + 294 + 294 + Amount of primary commodity delivered at the import transport hub by transport + true + + + 3283 + 749 + 1 + 2 + Hub Cost + Hub Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1730527985 + 1730527985 + Cost of using the transport hub by the transport + true + + + 3284 + 750 + 1 + 1 + Path Selected + Path Selected + 0 + 0 + true + true + false + true + true + false + true + true + 1470615411 + 1470615411 + Path selected by the transport + true + + + 3285 + 750 + 1 + 2 + Path Cost + Path Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1738986864 + 1738986864 + Cost of using the transport path by the transport + true + + + 3286 + 760 + 1 + 1 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Constraint activity at optimal solution + true + + + 3287 + 760 + 1 + 2 + Slack + Slack + 0 + 0 + true + true + false + false + true + true + true + true + 748 + 748 + Constraint slack at optimal solution + true + + + 3288 + 760 + 1 + 3 + Violation + Violation + 0 + 0 + true + true + false + false + true + true + true + true + 843 + 843 + Constraint violation at optimal solution + true + + + 3289 + 760 + 1 + 4 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + true + true + true + 276 + 276 + Number of hours the Constraint is binding. + true + + + 3290 + 760 + 1 + 5 + RHS + RHS + 0 + 0 + true + true + false + false + true + true + true + true + 700 + 700 + Constraint RHS constant + true + + + 3291 + 760 + 1 + 6 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Constraint dual variable value at optimal solution + true + + + 3292 + 760 + 1 + 7 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the Constraint is active. + true + + + 3293 + 760 + 1 + 8 + Penalty Cost + Penalty Cost + 14 + 34 + true + true + false + true + true + false + true + true + 603 + 603 + Contribution of penalty violations to the primal objective function + true + + + 3294 + 760 + 1 + 9 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Contribution of activity to the dual objective function + true + + + 3295 + 760 + 12 + 10 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3296 + 760 + 12 + 11 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3297 + 760 + 12 + 12 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3298 + 764 + 1 + 1 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Objective value + true + + + 3299 + 764 + 1 + 2 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Variable part of objective value + true + + + 3300 + 764 + 1 + 3 + Constant + Constant + 0 + 0 + true + true + false + false + true + true + true + true + 2089 + 2089 + Is the constant term in objective a'x +b + true + + + 3301 + 764 + 12 + 4 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3302 + 764 + 12 + 5 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3303 + 764 + 12 + 6 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3304 + 767 + 1 + 1 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Value of generic decision variable + true + + + 3305 + 767 + 1 + 2 + Reduced Cost + Reduced Cost + 14 + 14 + true + true + false + true + true + true + true + true + 1496 + 1496 + Reduced cost of the generic decision variable + true + + + 3306 + 767 + 1 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + true + true + true + 117 + 117 + Total objective function contribution of generic decision variable + true + + + 3307 + 767 + 1 + 4 + Objective Function Coefficient + Objective Function Coefficient + 14 + 14 + true + true + false + false + true + true + true + true + 1351 + 1351 + Objective function value of the generic decision variable + true + + + 3308 + 767 + 1 + 5 + Lower Bound + Lower Bound + 0 + 0 + true + true + false + false + true + true + true + true + 1494 + 1494 + Lower bound of the generic decision variable + true + + + 3309 + 767 + 1 + 6 + Upper Bound + Upper Bound + 0 + 0 + true + true + false + false + true + true + true + true + 1495 + 1495 + Upper bound of the generic decision variable + true + + + 3310 + 767 + 1 + 7 + Min Value + Min Value + 0 + 0 + true + true + false + false + true + true + true + true + 508 + 508 + Minimum value of generic decision variable + true + + + 3311 + 767 + 1 + 8 + Max Value + Max Value + 0 + 0 + true + true + false + false + true + true + true + true + 464 + 464 + Maximum value of generic decision variable + true + + + 3312 + 767 + 12 + 9 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3313 + 767 + 12 + 10 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3314 + 767 + 12 + 11 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3315 + 773 + 1 + 1 + X Value + X Value + 0 + 0 + true + true + false + false + true + false + true + true + 2205 + 2205 + Solution value for the x variable + true + + + 3316 + 773 + 1 + 2 + Y Value + Y Value + 0 + 0 + true + true + false + false + true + false + true + true + 2206 + 2206 + Solution value for the y variable + true + + + 3317 + 773 + 1 + 3 + Function Value + Function Value + 0 + 0 + true + true + false + false + true + false + true + true + 2207 + 2207 + Value of the input function at the current X value + true + + + 3318 + 773 + 12 + 4 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 3319 + 773 + 12 + 5 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 3320 + 773 + 12 + 6 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 3321 + 780 + 1 + 1 + Expected Value + Expected Value + 0 + 0 + true + true + false + false + true + true + true + true + 1493 + 1493 + Expected value + true + + + 3322 + 780 + 1 + 2 + Raw Value + Raw Value + 0 + 0 + true + true + false + false + true + true + true + true + 1090 + 1090 + Raw sample value before application of [Min Value], [Max Value] or lookup table. + true + + + 3323 + 780 + 1 + 3 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Sample value + true + + + 3324 + 780 + 1 + 4 + Error + Error + 0 + 0 + true + true + false + false + true + true + true + true + 182 + 182 + Average sample error + true + + + 3325 + 780 + 1 + 5 + Volatility + Volatility + 0 + 0 + true + true + false + false + true + true + true + true + 1770 + 1770 + GARCH(1,1) volatility metric of sample values + true + + + 3326 + 780 + 1 + 6 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Value of the left hand side of the equation defining the conditional Variable + true + + + 3327 + 786 + 1 + 1 + Hours Included + Hours Included + 6 + 6 + true + true + false + false + true + true + true + true + 279 + 279 + Number of hours the Timeslice is included. + true + + + 3328 + 792 + 1 + 1 + Temperature + Temperature + 77 + 77 + true + true + false + false + true + false + true + true + 2009 + 2009 + Temperature value in each level + true + + + 3329 + 792 + 1 + 2 + Heating Degree Days + Heating Degree Days + 0 + 0 + true + true + false + false + true + false + true + true + 2007 + 2007 + Value for heating degree days + true + + + 3330 + 792 + 1 + 3 + Wind Speed + Wind Speed + 0 + 0 + true + true + false + false + true + false + true + true + 2011 + 2011 + Wind speed value + true + + + 8 + 2 + 1 + true + true + false + false + false + + + 8 + 27 + 1 + false + true + false + false + false + + + 8 + 215 + 1 + false + true + false + false + false + + + 8 + 241 + 1 + false + true + false + false + false + + + 8 + 246 + 1 + false + true + false + false + false + + + 8 + 382 + 1 + false + true + false + false + false + + + 8 + 385 + 1 + false + true + false + false + false + + + 8 + 386 + 1 + true + true + false + false + false + + + 8 + 396 + 1 + false + true + false + false + false + + + 8 + 531 + 1 + true + true + false + false + false + + + 8 + 533 + 1 + true + true + false + false + false + + + 8 + 534 + 1 + true + true + false + false + false + + + 8 + 535 + 1 + true + true + false + false + false + + + 8 + 622 + 1 + false + true + false + false + false + + + 8 + 673 + 1 + true + true + false + false + false + + + 8 + 674 + 1 + true + true + false + false + false + + + 8 + 683 + 1 + true + true + false + false + false + + + 8 + 684 + 1 + true + true + false + false + false + + + 8 + 745 + 1 + true + true + false + false + false + + + 8 + 764 + 1 + true + true + false + false + false + + + 8 + 850 + 1 + true + true + true + true + false + + + 8 + 851 + 1 + true + true + true + true + false + + + 8 + 869 + 1 + true + true + true + true + false + + + 8 + 1012 + 1 + true + true + false + false + false + + + 8 + 1016 + 1 + true + true + false + false + false + + + 8 + 1042 + 1 + true + true + false + false + false + + + 8 + 1046 + 1 + true + true + false + false + false + + + 8 + 1051 + 1 + false + true + false + false + false + + + 8 + 1083 + 1 + true + true + false + false + false + + + 8 + 1143 + 1 + false + true + false + false + false + + + 8 + 1154 + 1 + false + true + false + false + false + + + 8 + 1177 + 1 + false + true + false + false + false + + + 8 + 1250 + 1 + true + true + false + false + false + + + 8 + 1254 + 1 + true + true + false + false + false + + + 8 + 1280 + 1 + true + true + false + false + false + + + 8 + 1284 + 1 + true + true + false + false + false + + + 8 + 1289 + 1 + true + true + false + false + false + + + 8 + 1321 + 1 + true + true + false + false + false + + + 8 + 1351 + 1 + false + true + false + false + false + + + 8 + 1361 + 1 + false + true + false + false + false + + + 8 + 1381 + 1 + false + true + false + false + false + + + 8 + 1520 + 1 + true + true + false + false + false + + + 8 + 1523 + 1 + false + true + false + false + false + + + 8 + 1524 + 1 + false + true + false + false + false + + + 8 + 1748 + 1 + true + true + false + false + false + + + 8 + 1774 + 1 + true + true + false + false + false + + + 8 + 1775 + 1 + true + true + false + false + false + + + 8 + 1798 + 1 + false + true + false + false + false + + + 8 + 1800 + 1 + false + true + false + false + false + + + 8 + 1849 + 1 + false + true + false + false + false + + + 8 + 1850 + 1 + false + true + false + false + false + + + 8 + 1851 + 1 + false + true + false + false + false + + + 8 + 1898 + 1 + false + true + false + false + false + + + 8 + 1945 + 1 + false + true + false + false + false + + + 8 + 1946 + 1 + false + true + false + false + false + + + 8 + 1955 + 1 + false + true + false + false + false + + + 8 + 1956 + 1 + false + true + false + false + false + + + 8 + 1994 + 1 + false + true + false + false + false + + + 8 + 1995 + 1 + false + true + false + false + false + + + 8 + 2013 + 1 + false + true + false + false + false + + + 8 + 2047 + 1 + false + true + false + false + false + + + 8 + 2048 + 1 + false + true + false + false + false + + + 8 + 2072 + 1 + false + true + false + false + false + + + 8 + 2137 + 1 + false + true + false + false + false + + + 8 + 2139 + 1 + false + true + false + false + false + + + 8 + 2142 + 1 + false + true + false + false + false + + + 8 + 2211 + 1 + false + true + false + false + false + + + 8 + 2212 + 1 + false + true + false + false + false + + + 8 + 2213 + 1 + false + true + false + false + false + + + 8 + 2225 + 1 + false + true + false + false + false + + + 8 + 2227 + 1 + false + true + false + false + false + + + 8 + 2231 + 1 + false + true + false + false + false + + + 8 + 2232 + 1 + false + true + false + false + false + + + 8 + 2233 + 1 + false + true + false + false + false + + + 8 + 2241 + 1 + false + true + false + false + false + + + 8 + 2243 + 1 + false + true + false + false + false + + + 8 + 2285 + 1 + false + true + false + false + false + + + 8 + 2286 + 1 + false + true + false + false + false + + + 8 + 2319 + 1 + false + true + false + false + false + + + 8 + 2323 + 1 + false + true + false + false + false + + + 8 + 2331 + 1 + false + true + false + false + false + + + 8 + 2372 + 1 + false + true + false + false + false + + + 8 + 2417 + 1 + false + true + false + false + false + + + 8 + 2440 + 1 + false + true + false + false + false + + + 8 + 2441 + 1 + false + true + false + false + false + + + 8 + 2454 + 1 + false + true + false + false + false + + + 8 + 2468 + 1 + false + true + false + false + false + + + 8 + 2469 + 1 + false + true + false + false + false + + + 8 + 2477 + 1 + false + true + false + false + false + + + 8 + 2495 + 1 + false + true + false + false + false + + + 8 + 2497 + 1 + false + true + false + false + false + + + 8 + 2500 + 1 + false + true + false + false + false + + + 8 + 3008 + 1 + true + true + false + false + false + + + 8 + 3011 + 1 + true + true + false + false + false + + + 8 + 3220 + 1 + true + true + false + false + false + + + 8 + 3221 + 1 + true + true + false + false + false + + + 8 + 3232 + 1 + true + true + false + false + false + + + 8 + 3289 + 1 + true + true + false + false + false + + + 8 + 3291 + 1 + true + true + false + false + false + + + 8 + 3304 + 1 + true + true + false + false + false + + + 8 + 3305 + 1 + true + true + false + false + false + + + 8 + 3323 + 1 + true + true + false + false + false + + + 9 + 2 + 4 + true + true + false + false + false + + + 9 + 7 + 4 + true + false + false + false + false + + + 9 + 119 + 4 + true + true + false + false + false + + + 9 + 152 + 4 + true + true + false + false + false + + + 9 + 164 + 4 + true + true + false + false + false + + + 9 + 168 + 4 + true + true + false + false + false + + + 9 + 382 + 4 + true + true + false + false + false + + + 9 + 385 + 4 + true + true + false + false + false + + + 9 + 386 + 4 + true + true + false + false + false + + + 9 + 396 + 4 + true + true + false + false + false + + + 9 + 531 + 4 + true + true + false + false + false + + + 9 + 533 + 4 + true + true + false + false + false + + + 9 + 534 + 4 + true + true + false + false + false + + + 9 + 535 + 4 + true + true + false + false + false + + + 9 + 673 + 4 + true + true + false + false + false + + + 9 + 674 + 4 + true + true + false + false + false + + + 9 + 683 + 4 + true + true + false + false + false + + + 9 + 684 + 4 + true + true + false + false + false + + + 9 + 745 + 4 + true + true + false + false + false + + + 9 + 764 + 4 + true + true + false + false + false + + + 9 + 850 + 4 + true + true + true + true + false + + + 9 + 851 + 4 + true + true + true + true + false + + + 9 + 869 + 4 + true + true + true + true + false + + + 9 + 1012 + 4 + true + true + false + false + false + + + 9 + 1016 + 4 + true + true + false + false + false + + + 9 + 1042 + 4 + true + true + false + false + false + + + 9 + 1046 + 4 + true + true + false + false + false + + + 9 + 1051 + 4 + true + true + false + false + false + + + 9 + 1083 + 4 + true + true + false + false + false + + + 9 + 1092 + 4 + true + true + false + false + false + + + 9 + 1093 + 4 + true + true + false + false + false + + + 9 + 1095 + 4 + true + true + false + false + false + + + 9 + 1250 + 4 + true + true + false + false + false + + + 9 + 1254 + 4 + true + true + false + false + false + + + 9 + 1280 + 4 + true + true + false + false + false + + + 9 + 1284 + 4 + true + true + false + false + false + + + 9 + 1289 + 4 + true + true + false + false + false + + + 9 + 1321 + 4 + true + true + false + false + false + + + 9 + 1329 + 4 + true + true + false + false + false + + + 9 + 1330 + 4 + true + true + false + false + false + + + 9 + 1332 + 4 + true + true + false + false + false + + + 9 + 1466 + 4 + true + true + false + false + false + + + 9 + 1520 + 4 + true + true + false + false + false + + + 9 + 1523 + 4 + true + true + false + false + false + + + 9 + 1524 + 4 + true + true + false + false + false + + + 9 + 1748 + 4 + true + true + false + false + false + + + 9 + 1774 + 4 + true + true + false + false + false + + + 9 + 1775 + 4 + true + true + false + false + false + + + 9 + 1849 + 4 + true + true + false + false + false + + + 9 + 1850 + 4 + true + true + false + false + false + + + 9 + 1851 + 4 + true + true + false + false + false + + + 9 + 1898 + 4 + true + true + false + false + false + + + 9 + 1945 + 4 + true + true + false + false + false + + + 9 + 1955 + 4 + true + true + false + false + false + + + 9 + 1956 + 4 + true + true + false + false + false + + + 9 + 1994 + 4 + true + true + false + false + false + + + 9 + 1995 + 4 + true + true + false + false + false + + + 9 + 2013 + 4 + true + true + false + false + false + + + 9 + 2047 + 4 + true + true + false + false + false + + + 9 + 2048 + 4 + true + true + false + false + false + + + 9 + 2072 + 4 + true + true + false + false + false + + + 9 + 2137 + 4 + true + true + false + false + false + + + 9 + 2139 + 4 + true + true + false + false + false + + + 9 + 2142 + 4 + true + true + false + false + false + + + 9 + 2211 + 4 + true + true + false + false + false + + + 9 + 2212 + 4 + true + true + false + false + false + + + 9 + 2213 + 4 + true + true + false + false + false + + + 9 + 2225 + 4 + true + true + false + false + false + + + 9 + 2227 + 4 + true + true + false + false + false + + + 9 + 2231 + 4 + true + true + false + false + false + + + 9 + 2232 + 4 + true + true + false + false + false + + + 9 + 2233 + 4 + true + true + false + false + false + + + 9 + 2241 + 4 + true + true + false + false + false + + + 9 + 2243 + 4 + true + true + false + false + false + + + 9 + 2285 + 4 + true + true + false + false + false + + + 9 + 2286 + 4 + true + true + false + false + false + + + 9 + 2319 + 4 + true + true + false + false + false + + + 9 + 2323 + 4 + true + true + false + false + false + + + 9 + 2331 + 4 + true + true + false + false + false + + + 9 + 2372 + 4 + true + true + false + false + false + + + 9 + 2417 + 4 + true + true + false + false + false + + + 9 + 2440 + 4 + true + true + false + false + false + + + 9 + 2441 + 4 + true + true + false + false + false + + + 9 + 2454 + 4 + true + true + false + false + false + + + 9 + 2468 + 4 + true + true + false + false + false + + + 9 + 2469 + 4 + true + true + false + false + false + + + 9 + 2477 + 4 + true + true + false + false + false + + + 9 + 2495 + 4 + true + true + false + false + false + + + 9 + 2497 + 4 + true + true + false + false + false + + + 9 + 2500 + 4 + true + true + false + false + false + + + 9 + 3008 + 4 + true + true + false + false + false + + + 9 + 3011 + 4 + true + true + false + false + false + + + 9 + 3220 + 4 + true + true + false + false + false + + + 9 + 3221 + 4 + true + true + false + false + false + + + 9 + 3232 + 4 + true + true + false + false + false + + + 9 + 3289 + 4 + true + true + false + false + false + + + 9 + 3291 + 4 + true + true + false + false + false + + + 9 + 3304 + 4 + true + true + false + false + false + + + 9 + 3305 + 4 + true + true + false + false + false + + + 9 + 3323 + 4 + true + true + false + false + false + + + 10 + 2 + 4 + true + true + false + false + false + + + 10 + 7 + 4 + true + false + false + false + false + + + 10 + 119 + 4 + true + true + false + false + false + + + 10 + 152 + 4 + true + true + false + false + false + + + 10 + 164 + 4 + true + true + false + false + false + + + 10 + 168 + 4 + true + true + false + false + false + + + 10 + 382 + 4 + true + true + false + false + false + + + 10 + 385 + 4 + true + true + false + false + false + + + 10 + 386 + 4 + true + true + false + false + false + + + 10 + 396 + 4 + true + true + false + false + false + + + 10 + 531 + 4 + true + true + false + false + false + + + 10 + 533 + 4 + true + true + false + false + false + + + 10 + 534 + 4 + true + true + false + false + false + + + 10 + 535 + 4 + true + true + false + false + false + + + 10 + 673 + 4 + true + true + false + false + false + + + 10 + 674 + 4 + true + true + false + false + false + + + 10 + 683 + 4 + true + true + false + false + false + + + 10 + 684 + 4 + true + true + false + false + false + + + 10 + 745 + 4 + true + true + false + false + false + + + 10 + 764 + 4 + true + true + false + false + false + + + 10 + 850 + 4 + true + true + true + true + false + + + 10 + 851 + 4 + true + true + true + true + false + + + 10 + 869 + 4 + true + true + true + true + false + + + 10 + 1012 + 4 + true + true + false + false + false + + + 10 + 1016 + 4 + true + true + false + false + false + + + 10 + 1042 + 4 + true + true + false + false + false + + + 10 + 1046 + 4 + true + true + false + false + false + + + 10 + 1051 + 4 + true + true + false + false + false + + + 10 + 1083 + 4 + true + true + false + false + false + + + 10 + 1092 + 4 + true + true + false + false + false + + + 10 + 1093 + 4 + true + true + false + false + false + + + 10 + 1095 + 4 + true + true + false + false + false + + + 10 + 1250 + 4 + true + true + false + false + false + + + 10 + 1254 + 4 + true + true + false + false + false + + + 10 + 1280 + 4 + true + true + false + false + false + + + 10 + 1284 + 4 + true + true + false + false + false + + + 10 + 1289 + 4 + true + true + false + false + false + + + 10 + 1321 + 4 + true + true + false + false + false + + + 10 + 1329 + 4 + true + true + false + false + false + + + 10 + 1330 + 4 + true + true + false + false + false + + + 10 + 1332 + 4 + true + true + false + false + false + + + 10 + 1520 + 4 + true + true + false + false + false + + + 10 + 1523 + 4 + true + true + false + false + false + + + 10 + 1524 + 4 + true + true + false + false + false + + + 10 + 1748 + 4 + true + true + false + false + false + + + 10 + 1774 + 4 + true + true + false + false + false + + + 10 + 1775 + 4 + true + true + false + false + false + + + 10 + 1849 + 4 + true + true + false + false + false + + + 10 + 1850 + 4 + true + true + false + false + false + + + 10 + 1851 + 4 + true + true + false + false + false + + + 10 + 1898 + 4 + true + true + false + false + false + + + 10 + 1945 + 4 + true + true + false + false + false + + + 10 + 1946 + 4 + true + true + false + false + false + + + 10 + 1955 + 4 + true + true + false + false + false + + + 10 + 1956 + 4 + true + true + false + false + false + + + 10 + 1994 + 4 + true + true + false + false + false + + + 10 + 1995 + 4 + true + true + false + false + false + + + 10 + 2013 + 4 + true + true + false + false + false + + + 10 + 2047 + 4 + true + true + false + false + false + + + 10 + 2048 + 4 + true + true + false + false + false + + + 10 + 2072 + 4 + true + true + false + false + false + + + 10 + 2137 + 4 + true + true + false + false + false + + + 10 + 2139 + 4 + true + true + false + false + false + + + 10 + 2142 + 4 + true + true + false + false + false + + + 10 + 2211 + 4 + true + true + false + false + false + + + 10 + 2212 + 4 + true + true + false + false + false + + + 10 + 2213 + 4 + true + true + false + false + false + + + 10 + 2225 + 4 + true + true + false + false + false + + + 10 + 2227 + 4 + true + true + false + false + false + + + 10 + 2231 + 4 + true + true + false + false + false + + + 10 + 2232 + 4 + true + true + false + false + false + + + 10 + 2233 + 4 + true + true + false + false + false + + + 10 + 2241 + 4 + true + true + false + false + false + + + 10 + 2243 + 4 + true + true + false + false + false + + + 10 + 2285 + 4 + true + true + false + false + false + + + 10 + 2286 + 4 + true + true + false + false + false + + + 10 + 2319 + 4 + true + true + false + false + false + + + 10 + 2323 + 4 + true + true + false + false + false + + + 10 + 2331 + 4 + true + true + false + false + false + + + 10 + 2372 + 4 + true + true + false + false + false + + + 10 + 2417 + 4 + true + true + false + false + false + + + 10 + 2440 + 4 + true + true + false + false + false + + + 10 + 2441 + 4 + true + true + false + false + false + + + 10 + 2454 + 4 + true + true + false + false + false + + + 10 + 2468 + 4 + true + true + false + false + false + + + 10 + 2469 + 4 + true + true + false + false + false + + + 10 + 2477 + 4 + true + true + false + false + false + + + 10 + 2495 + 4 + true + true + false + false + false + + + 10 + 2497 + 4 + true + true + false + false + false + + + 10 + 2500 + 4 + true + true + false + false + false + + + 10 + 3008 + 4 + true + true + false + false + false + + + 10 + 3011 + 4 + true + true + false + false + false + + + 10 + 3220 + 4 + true + true + false + false + false + + + 10 + 3221 + 4 + true + true + false + false + false + + + 10 + 3232 + 4 + true + true + false + false + false + + + 10 + 3289 + 4 + true + true + false + false + false + + + 10 + 3291 + 4 + true + true + false + false + false + + + 10 + 3304 + 4 + true + true + false + false + false + + + 10 + 3305 + 4 + true + true + false + false + false + + + 10 + 3323 + 4 + true + true + false + false + false + + + 11 + 1046 + 4 + false + true + true + true + false + + + 11 + 1462 + 4 + false + true + true + true + false + + + 0 + = + + + 1 + × + + + 2 + ÷ + + + 3 + + + + + 4 + - + + + 5 + ^ + + + 6 + ? + + + 1 + 2 + 1 + 1 + Running in Diagnostic Mode! Execution may be slow and/or excessive disk space may be consumed. + + + 2 + 3 + 3 + + + 3 + 3 + 3 + + + 4 + 3 + 1 + 1 + MT Schedule [New Entry Driver] is enabled but Generator [Max Units Built] is not defined. + + + 5 + 2 + 1 + 1 + Failed to complete solution table indexing {0}. Check the size of the solution database (2GB maximum). + + + 6 + 3 + 1 + 1 + The selected equilibrium model requires the definition of Company objects. + + + 7 + 2 + 1 + 1 + Optimizer returned the status: {0} + + + 8 + 4 + 1 + 1 + Region "{0}" [Capacity Reserves] are below Region [Min Capacity Reserves] by {1} MW. + + + 9 + 3 + 1 + 1 + Transmission [SCUC Enabled] selected but no Contingency objects are defined. + + + 10 + 3 + 3 + + + 11 + 2 + 1 + 1 + Failed to load data into database: {0}. Check the size of the solution database (2GB maximum for Microsoft Access database format). + + + 12 + 3 + 3 + + + 13 + 3 + 3 + + + 14 + 3 + 3 + + + 15 + 3 + 3 + + + 16 + 3 + 3 + + + 17 + 3 + 3 + + + 18 + 2 + 1 + 1 + Constraint "{0}" cannot include more than one Storage object. + + + 19 + 2 + 1 + 1 + Constraint "{0}" [RHS] (period type {1}) is too long for ST Schedule. This Constraint needs to be decomposed by turning on MT Schedule. + + + 20 + 3 + 3 + + + 21 + 3 + 1 + 1 + Constraint "{0}" [RHS] should be defined from the start of the planning horizon. + + + 22 + 4 + 1 + 1 + Reserve "{0}" has all generation below Reserve [Cut-Off Size] in {1} period(s). + + + 23 + 3 + 3 + + + 24 + 3 + 3 + + + 25 + 1 + 0 + 0 + {0} "{1}" {2} From = {2} To ({3}). + + + 26 + 3 + 3 + + + 27 + 3 + 3 + + + 28 + 3 + 3 + + + 29 + 3 + 1 + 1 + {0} "{1}" marginal efficiency is increasing between points {2} ({3} MW, {4}) and {5} ({6} MW, {7}). Consider setting Production [Heat Rate Error Method] = 'Allow Non-convex'. + + + 30 + 3 + 3 + + + 31 + 3 + 3 + + + 32 + 3 + 3 + + + 33 + 3 + 1 + 1 + Generator "{0}" [Offer Quantity] defined without Generator [Offer Price]. The default price of {1} is assumed. + + + 34 + 3 + 1 + 1 + Generator "{0}" [Offer Price] defined without Generator [Offer Quantity]. Zero quantity assumed. + + + 35 + 3 + 3 + + + 36 + 3 + 1 + 1 + Generator "{0}" [Fixed Load] will override Generator [Min Load]. + + + 37 + 3 + 3 + + + 38 + 3 + 3 + + + 39 + 3 + 3 + + + 40 + 3 + 3 + + + 41 + 3 + 3 + + + 42 + 2 + 1 + 1 + Solver {0}. + + + 43 + 3 + 1 + 1 + Line "{0}" [Min Rating] and Line [Max Rating] ({1}) imply {2} <= Line [Flow] <= {3} MW. + + + 44 + 3 + 3 + + + 45 + 2 + 0 + 0 + Variable "{0}" [Value] by {1} referenced but not defined. + + + 46 + 2 + 0 + 0 + RSI "{0}" Lines "{1}" does not import to/from the RSI Region. + + + 47 + 3 + 3 + + + 48 + 1 + 0 + 0 + Source database name not set. + + + 49 + 3 + 3 + + + 50 + 3 + 3 + + + 51 + 3 + 1 + 1 + Generator "{0}" [Pump Units] = {1}, cannot be greater than Generator [Units] = {2}. + + + 52 + 2 + 0 + 0 + Purchaser [Benefit Function Shape] must be set to "Quadratic" for the single-period Nash-Cournot. + + + 53 + 3 + 3 + + + 54 + 3 + 3 + + + 55 + 2 + 1 + 1 + License feature "{0}" is required but not available. + + + 56 + 1 + 0 + 0 + The license server returned the error: {0}. + + + 57 + 3 + 3 + + + 58 + 1 + 1 + 1 + Referenced external text file not found: {0}. + + + 59 + 1 + 0 + 0 + Market "{0}" has memberships to more than one class of object, but a Market can only involve one type. + + + 60 + 2 + 0 + 0 + Region "{0}" implied maximum offer price for dynamic bidding (Region [VoLL] or Region [Price Cap]) - Competition [Epsilon] < 0. + + + 61 + 3 + 3 + + + 62 + 3 + 3 + + + 63 + 3 + 3 + + + 64 + 3 + 3 + + + 65 + 3 + 3 + + + 66 + 3 + 3 + + + 67 + 2 + 0 + 0 + Constraint "{0}" cannot be conditional unless defining Constraint [RHS] of period type = "interval". + + + 68 + 3 + 3 + + + 69 + 3 + 3 + + + 70 + 3 + 3 + + + 71 + 1 + 0 + 0 + Out of Memory Exception reallocating buffer to {0} kB. + + + 72 + 1 + 0 + 0 + MOSEK encountered a fatal internal error and terminated abnormally. + + + 73 + 3 + 0 + 0 + {0} "{1}" initial conditions must include [{2}]. + + + 74 + 3 + 0 + 0 + Generator "{0}" fuel-specific heat rate functions {1} must all have the same form as the general heat rate. + + + 75 + 3 + 0 + 0 + Generator "{0}" fuel-specific heat rate functions {1} must all have the same form. + + + 76 + 3 + 3 + + + 77 + 3 + 3 + + + 78 + 2 + 0 + 0 + Generator "{0}" [Heat Rate] band count does not match Generator [Load Point] band count. + + + 79 + 2 + 0 + 0 + Generator "{0}" [Heat Rate Incr] band count does not match Generator [Load Point] band count. + + + 80 + 2 + 0 + 0 + Generator "{0}" does not define enough bands of Generator [Offer Quantity] for cumulative format (at least two required). + + + 81 + 2 + 0 + 0 + Generator "{0}" [Start Cost Time] must have same number of bands as Generator [Start Cost] and Generator Start Fuels [Offtake at Start] if defined. + + + 82 + 2 + 0 + 0 + Generator "{0}" number of bands for Generator [Rough Running Point] must match that of Generator [Rough Running Range]. + + + 83 + 3 + 3 + + + 84 + 2 + 0 + 0 + Generator "{0}" sum of Generator Fuels [Ratio] must be unity. + + + 85 + 2 + 1 + 1 + {0} "{1}" minimum operating level ({2}) should be less than or equal to maximum operating level ({3}). + + + 86 + 3 + 3 + + + 87 + 2 + 0 + 0 + Errors were detected in the efficiency function for {0} "{1}". Consider changing Production [Heat Rate Error Method]. + + + 88 + 1 + 0 + 0 + Out of Memory Exception reallocating cache to {0} kB. + + + 89 + 3 + 3 + + + 90 + 3 + 3 + + + 91 + 2 + 0 + 0 + Line "{0}" defined with both Line [Reactance] and Line [Susceptance] but only one should be used. + + + 92 + 3 + 3 + + + 93 + 2 + 0 + 0 + Market "{0}" should define equal numbers of bands for Market [Price] and Market [Quantity] points. + + + 94 + 3 + 3 + + + 95 + 2 + 0 + 0 + Solution status = {0}. + + + 96 + 2 + 0 + 0 + MLF "{0}" right-hand side term must be non-negative. + + + 97 + 3 + 3 + + + 98 + 3 + 3 + + + 99 + 3 + 3 + + + 100 + 2 + 0 + 0 + Flow Control "{0}" [Units] property cannot be dynamic in for Transmission [OPF Method] = "Large Scale". + + + 101 + 3 + 3 + + + 102 + 3 + 3 + + + 103 + 3 + 3 + + + 104 + 3 + 3 + + + 105 + 2 + 0 + 0 + Storage "{0}" [Energy Value] defined without Storage [Downstream Efficiency]. + + + 106 + 3 + 3 + + + 107 + 3 + 3 + + + 108 + 2 + 0 + 0 + Variable "{0}" [Profile] property defined with {1} band(s) but expected ≥ {2} when using Variable [Sampling Method] = "Bands As Samples". + + + 109 + 2 + 0 + 0 + Variable "{0}" [Min Value] must be less than or equal to Variable [Max Value]. + + + 110 + 3 + 1 + 1 + {0} "{1}" initial production level ({2}) is outside the feasible operating range ({3} - {4}). + + + 111 + 3 + 1 + 1 + {0} "{1}" initial units operating ({2}) is greater than the number of installed units ({3}). + + + 112 + 3 + 3 + + + 113 + 3 + 3 + + + 114 + 3 + 3 + + + 115 + 3 + 3 + + + 116 + 3 + 3 + + + 117 + 2 + 0 + 0 + Market "{0}" [Quantity] values must be monotonically non-decreasing. + + + 118 + 2 + 0 + 0 + Market "{0}" band count for Generator Heat Markets [Conversion Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 119 + 2 + 0 + 0 + Generator "{0}" band count for Generator Emissions [Production Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 120 + 3 + 3 + + + 121 + 3 + 3 + + + 122 + 3 + 3 + + + 123 + 2 + 0 + 0 + Constraint "{0}" [Decomposition Method] = "Price" cannot be used in combination with a Constraint [Penalty Price]. + + + 124 + 2 + 1 + 1 + MIP license is required, but no license is available for checkout-the linear relaxation will be reported. + + + 125 + 1 + 0 + 0 + Could not interpret the Condition "{0}". + + + 126 + 1 + 0 + 0 + Generator "{0}" cannot receive Generator [Heat Input] from itself. + + + 127 + 1 + 0 + 0 + Condition "{0}" cannot be conditional on itself (a member of its own Conditions collection). + + + 128 + 1 + 0 + 0 + Condition "{0}" conditional on Condition "{1}" which is itself conditional. + + + 129 + 1 + 0 + 0 + Condition "{0}" must not define Condition [Is Active] or a dynamic equation if it is dependent on other conditions. + + + 130 + 3 + 1 + 1 + Stochastic [Risk Sample Count] = {0} but no Variable objects are defined. + + + 131 + 3 + 3 + + + 132 + 3 + 3 + + + 133 + 3 + 1 + 1 + Generator "{0}" [Units Out] > Generator [Units] in {1} periods. + + + 134 + 3 + 1 + 1 + Line "{0}" [Units Out] > Line [Units] in {1} periods. + + + 135 + 2 + 1 + 1 + PASA must be enabled in order to use the MT Schedule capacity expansion algorithm. + + + 136 + 3 + 3 + + + 137 + 3 + 1 + 1 + {0} "{1}" injects at {2} nodes but does not define {0} Nodes [{3}] for Node "{4}". + + + 138 + 3 + 1 + 1 + Purchaser "{0}" offtakes at {1} nodes but does not define Purchaser Nodes [Load Participation Factor] for Node "{2}". + + + 139 + 3 + 3 + + + 140 + 3 + 3 + + + 141 + 1 + 0 + 0 + The chronological Horizon including look-ahead must be a subset of the planning horizon. + + + 142 + 2 + 0 + 0 + Region "{0}" [DSP Bid Quantity] band count ({1}) must be the same as Region [DSP Bid Price] band count ({2}). + + + 143 + 3 + 3 + + + 144 + 2 + 0 + 0 + Constraint "{0}" can define Constraint Generators [Generation Squared Coefficient] (for "{1}") only if it is a dynamic constraint. + + + 145 + 2 + 0 + 0 + Constraint "{0}" can define Constraint Generators [Generation SUM Squared Coefficient] (for "{1}") only if it is a dynamic constraint. + + + 146 + 1 + 0 + 0 + Region "{0}" defines a Region Reference Node "{1}" that is not inside the Region. + + + 147 + 1 + 0 + 0 + Region "{0}" defines a Region Reference Node "{1}" that is out-of-service. + + + 148 + 2 + 0 + 0 + Reserve "{0}" Nested Reserve "{1}" is of a different Reserve [Type], but must be the same type. + + + 149 + 2 + 0 + 0 + Reserve "{0}" Nested Reserve "{1}" must use a subset of the generators in the master reserve class. + + + 150 + 2 + 0 + 0 + Generator "{0}" cannot provide more response to Reserve "{1}" than Reserve "{2}" because the service is nested. + + + 151 + 2 + 0 + 0 + Reserve "{0}" has Nested Reserve "{1}" but is itself nested in Reserve "{2}". + + + 152 + 2 + 0 + 0 + Reserve "{0}" [Is Enabled] property can only be changed by Scenario. + + + 153 + 2 + 0 + 0 + Generator {0} [Start Profile] must have same number of bands as Generator [Start Cost]. + + + 154 + 2 + 0 + 0 + Generator {0} [Run Up Rate] must have same number of bands as Generator [Start Cost]. + + + 155 + 1 + 0 + 0 + The Horizon ({0} years) could not be factored by the given LT Plan [At a Time] ({1}) and LT Plan [Overlap] ({2}). + + + 156 + 2 + 0 + 0 + Constraint "{0}" defines Constraint [RHS] (period type = {1}) but uses coefficients that support Constraint [RHS Year] only. + + + 157 + 2 + 1 + 1 + Node "{0}" shift factors could not be computed due to an infeasibility in the Y-bus matrix. + + + 158 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Export Capacity Built Coefficient] together with Constraint Lines [Import Capacity Built Coefficient]. + + + 159 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Units Built Coefficient] together with Constraint Lines [Units Built in Year Coefficient]. + + + 160 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Units Retired Coefficient] together with Constraint Lines [Units Retired in Year Coefficient]. + + + 161 + 3 + 0 + 0 + Constraint "{0}" Generators "{1}" cannot define both Constraint Generators [Units Built Coefficient] together with Constraint Generators [Units Built in Year Coefficient]. + + + 162 + 3 + 0 + 0 + Constraint "{0}" Generators "{1}" cannot define both Constraint Generators [Units Retired Coefficient] together with Constraint Generators [Units Retired in Year Coefficient]. + + + 163 + 2 + 0 + 0 + Failed to fit polynomial to (x,y) coordinates of heat rate function for Generator "{0}". "{1}". + + + 164 + 3 + 1 + 1 + Non-physical losses detected on Line "{0}" in period ({1}). Flow {2}, Loss {3}. Consider changing Transmission [Detect Non-physical Losses] setting. + + + 165 + 3 + 3 + + + 166 + 3 + 1 + 1 + {0} "{1}" only has {2} of {3} units that define [{4}]. + + + 167 + 3 + 1 + 1 + Generator "{0}" outages were not written to text files because text input does not support multi-unit stations with partial outages. + + + 168 + 3 + 1 + 1 + Non-physical losses detected on Line "{0}" in period ({1}). Flow {2}, Loss {3}. Correction algorithm invoked. + + + 169 + 2 + 1 + 1 + The master solution database is missing. Looked for {0}. Database output has been disabled. + + + 170 + 2 + 1 + 1 + {0} "{1}" band ({2}) defines outage parameters but no outage duration function definition. + + + 171 + 3 + 1 + 1 + Node "{0}" [Phase Angle] is at an upper or lower bound in period {1}. + + + 172 + 3 + 3 + + + 173 + 3 + 1 + 1 + Constraint "{0}" Lines "{1}" has Constraint Lines [Flow Coefficient] and {2} defined. This coefficient will be ignored. + + + 174 + 3 + 1 + 1 + Constraint "{0}" Generators "{1}" has Constraint Generators [Reserve Provision Coefficient], but has no reserve memberships defined. This coefficient will be ignored. + + + 175 + 3 + 3 + + + 176 + 3 + 3 + + + 177 + 2 + 1 + 1 + The input data diagnostic file "{0}" could not be written. + + + 178 + 3 + 3 + + + 179 + 3 + 3 + + + 180 + 3 + 3 + + + 181 + 3 + 3 + + + 182 + 2 + 0 + 0 + Interface "{0}" limits imply Interface [Min Flow] {1} <= Interface [Flow] <= Interface [Max Flow] {2}. + + + 183 + 3 + 1 + 1 + Node "{0}" [Unserved Energy] in period {1} is above limit {2} MW by {3} MW due to a constraint infeasibility. + + + 184 + 1 + 0 + 0 + Region "{0}" must have at least one Node in service. + + + 185 + 1 + 0 + 0 + Generator "{0}" [Start Profile] has been defined as a constant value. Use the Timeslice field to define its start-up stages or use Generator [Run Up Rate] for a constant rate. + + + 186 + 2 + 0 + 0 + Generator "{0}" [Unit Commitment Optimality] = "Rounded Relaxation" is not compatible with Production [Unit Commitment Optimality]. + + + 187 + 1 + 0 + 0 + MT Schedule [Stochastic Method] and LT Plan [Stochastic Method] must both be set to "Deterministic" if either setting is "Deterministic". + + + 188 + 1 + 0 + 0 + ST Schedule [Stochastic Method] and LT Plan [Stochastic Method] must both be set to "Deterministic" if either setting is "Deterministic". + + + 189 + 2 + 0 + 0 + Failed to solve uplift. The solver returned solution status {0}. + + + 190 + 3 + 1 + 1 + Uplift was infeasible but successfully repaired. SMP may be outside the range defined by Region [Price Floor] and Region [Price Cap]. + + + 191 + 3 + 3 + + + 192 + 3 + 3 + + + 193 + 2 + 1 + 1 + Network separation is detected with Contingency "{0}". + + + 194 + 2 + 0 + 0 + {0} "{1}" [Mark-up Point] defined with {2} bands but {0} [Mark-up] is defined with {3} bands. + + + 195 + 2 + 0 + 0 + {0} "{1}" [Mark-up Point] defined with {2} bands but {0} [Bid Cost Mark-up] is defined with {3} bands. + + + 196 + 2 + 0 + 0 + Generator "{0}" defines up to {1} Generator [Units] and is a Reserve Contingency Generators for {2} Reserve objects but this membership is allowed only for single-unit Generator objects. For multi-unit use separate Generator objects. + + + 197 + 3 + 1 + 1 + Region/Zone "{0}" [Maintenance Factor] in step {1} accumulates to {2} but would normally sum to {3} which is the total number of hours in the step. + + + 198 + 3 + 1 + 1 + Node "{0}" [Dump Energy] in period {1} is above limit {2} MW by {3} MW due to a constraint infeasibility. + + + 199 + 3 + 1 + 1 + Multi-fuel CHP Generator "{0}" requires identical heat rate functions. Average heat rate at maximum power across defined fuels will be considered for heat production formulation. + + + 200 + 2 + 0 + 0 + Failed to correct non-physical flows. The solver returned solution status {0}. + + + 201 + 3 + 1 + 1 + Non-physical flow correction was infeasible but successfully repaired. + + + 202 + 3 + 1 + 1 + Constraint "{0}" skipped because its period type is too short for the resolution of {1}. + + + 203 + 3 + 1 + 1 + The Escalator [Compound Start Date] is later than the end of the horizon. The default date will be used ( {0} ). + + + 204 + 3 + 1 + 1 + The Escalator [Compound Start Date] is {0} years outside of the current horizon. + + + 205 + 2 + 1 + 1 + Generator "{0}" defined Generator Head Storage [Efficiency Point] (for "{1}") band={2} value={3} must be less than or equal to band={4} value={5}. + + + 206 + 1 + 0 + 0 + Variable "{0}" definition as a function of other Variable objects implies a circular reference. + + + 207 + 2 + 0 + 0 + Read {0} sample weights but expected {1}. + + + 208 + 2 + 1 + 1 + Line "{0}" flow limits must be defined when using Transmission [Loss Method] = "Piecewise Linear". Loss is turned off for this line. + + + 209 + 2 + 0 + 0 + {0} "{1}" [{2}] definition is ambiguous. The datum is defined both with the Escalator "{3}" and without. + + + 210 + 3 + 1 + 1 + Problem is infeasible. Solution status = {0}. + + + 211 + 1 + 0 + 0 + Failed to repair an infeasible problem. Solution status = {0}. + + + 212 + 2 + 1 + 1 + Failed to set user-defined solver parameter {0}. + + + 213 + 3 + 3 + 3 + Error reporting formulation diagnostics. {0} + + + 214 + 2 + 1 + 1 + No integer feasible solution exists. The linear solution will be reported. Solution status = {0}. + + + 215 + 2 + 1 + 1 + Generator "{0}" [Fuel Offtake] may be inaccurate in {1} periods due to tranche variables clearing out of order. Consider setting Generator [Formulate Non-convex]="Always". + + + 216 + 2 + 1 + 1 + Generator "{0}" [Unit Commitment Optimality] = "Rounded Relaxation" might violate [Min Up Time]/[Min Down Time] because Constraint Generators [Units Generating Coefficient] is defined. + + + 217 + 2 + 1 + 1 + Generator "{0}" defines [Commit] property which is incompatible with [Unit Commitment Optimality] = "Dynamic Program". The Generator will use the global commitment setting. + + + 218 + 1 + 0 + 0 + The "{0}" Region is missing its Reference Node membership, which is compulsory when using the [Aggregate Transmission] option. + + + 219 + 2 + 0 + 0 + {0} LOLP Target{1} might not be guaranteed in {2} of {3} periods. + + + 220 + 4 + 1 + 1 + Solution hierarchy computed {0} solution(s). No more feasible solutions exist. + + + 221 + 2 + 1 + 1 + There was an error writing the solution to the destination drive. The solution has been saved in the following location: {0} + + + 222 + 2 + 1 + 1 + There was a problem writing the zipped solution to the destination drive. The uncompressed solution has been saved in the following location: {0} + + + 223 + 2 + 1 + 1 + Matrix coefficients are badly scaled. Range is [{0}, {1}]. This may result in numerical instability and degraded performance. + + + 224 + 2 + 1 + 1 + Variable objective function coefficients are badly scaled. Range is [{0}, {1}]. This may result in numerical instability and degraded performance. + + + 225 + 2 + 1 + 1 + Variable bounds are badly scaled. Range is [{0}, {1}]. This may result in numerical instability and degraded performance. + + + 226 + 2 + 1 + 1 + Constraint right-hand side values are badly scaled. Range is [{0}, {1}]. This may result in numerical instability and degraded performance. + + + 300 + 2 + 1 + 1 + Invalid token "{0}" in RHS expression for Row "{1}" + + + 301 + 1 + 0 + 0 + Error processing RPN expression for Row "{0}". {1} element(s) required in the stack to use the {2} operator + + + 302 + 2 + 1 + 1 + Expected no more than {0} element(s) to remain in the RPN stack, but found {1} after evaluating the expression for Row "{2}" + + + 3000 + 3 + 3 + + + 3001 + 3 + 3 + + + 3002 + 3 + 3 + + + 3003 + 1 + 1 + 1 + {0} but this collection must have exactly {1} member(s). + + + 3004 + 1 + 1 + 1 + {0} but this collection must have at least {1} member(s). + + + 3005 + 1 + 1 + 1 + {0} but this collection cannot have more than {1} member(s). + + + 3006 + 1 + 1 + 1 + Power Station "{0}" conflicts with a Generator of the same name. + + + 3007 + 4 + 1 + 1 + Skipped checking for missing files. + + + 3008 + 1 + 1 + 1 + File not found: {0} + + + 3009 + 4 + 1 + 1 + Skipped checking of memberships. + + + 3010 + 3 + 3 + + + 3011 + 3 + 3 + + + 3012 + 3 + 3 + + + 3013 + 1 + 1 + 1 + {0} objects are missing their system membership. + + + 3014 + 4 + 1 + 1 + Skipped checking of data against validation rules. + + + 3015 + 1 + 1 + 1 + {0} [{1}] band = {2} is defined multiple times with value {3}. + + + 3016 + 3 + 3 + + + 3017 + 1 + 1 + 1 + {0} [{1}] defined with value {2} but must be {3}. + + + 3018 + 1 + 1 + 1 + {0} [{1}] defined with value {2} and [Date From] = {3} after [Date To] = {4}. + + + 3019 + 1 + 1 + 1 + {0} [{1}] defined with multiple bands but this property cannot be multi-band. + + + 3020 + 1 + 1 + 1 + The input property [{0}] has been associated with the [{1}] collection, but this belongs to the [{2}] collection. Please use the [Check Database] option in the user interface before re-execution. + + + 3021 + 3 + 1 + 1 + {0}.{1} with parent "{2}" and child "{3}" Filename: "{4}" used to define {5} properties for the same object, but must only be used to define one property for any one object. + + + 3022 + 3 + 1 + 1 + {0}.{1} with parent "{2}" and child "{3}" band {4} uses Data File field in combination with Escalator and/or Condition and/or Variable and this is not supported. + + + 3023 + 3 + 3 + + + 3024 + 3 + 3 + + + 3025 + 3 + 3 + + + 3026 + 3 + 1 + 1 + Read {0} records(s) for object "{1}" in band {2}, but expected {3}. Default value of {4} assumed. File: "{5}". + + + 3027 + 3 + 1 + 1 + Profile {0} contains {1} zero values. + + + 3028 + 3 + 1 + 1 + Year ending: {0} skipped because the horizon does not completely span this year. + + + 3029 + 3 + 3 + + + 3030 + 3 + 1 + 1 + Data File [Shape Distortion] increased to: {0}. + + + 3031 + 3 + 1 + 1 + Data File [Energy] mismatch (under target) by {0} = {1}". + + + 3032 + 3 + 1 + 1 + Data File [Energy] mismatch (over target) by {0} = {1}. + + + 3033 + 2 + 1 + 1 + File "{0}" periods per day in file "{1}" must be a multiple of Horizon [Periods per Day] "{2}". + + + 3034 + 1 + 0 + 0 + MOSEK encountered a fatal internal error and terminated abnormally. + + + 3035 + 1 + 0 + 0 + The look-ahead in the chronological phase cannot have a higher resolution than the main horizon. + + + 3036 + 3 + 3 + + + 3037 + 2 + 0 + 0 + No delimiters found in header row of file {0}. + + + 3038 + 2 + 0 + 0 + Data for "{0}" not found in file "{1}" (assumed "Names in Columns" format). + + + 3039 + 1 + 0 + 0 + No header row found, or unable to recognise fields in the header. File "{0}". + + + 3040 + 2 + 0 + 0 + Value "{0}" for object "{1}" at line {2} in file "{3}" must be >= {4} + + + 3041 + 2 + 0 + 0 + Value "{0}" for object "{1}" at line {2} in file "{3}" must be <= {4} + + + 3042 + 2 + 0 + 0 + Viewing of Patterned file data is not currently supported prior to Model compilation. + + + 3043 + 3 + 1 + 1 + Read {0} records(s) for object "{1}" in band {2}, but expected {3}. File: "{4}". + + + 3044 + 1 + 0 + 0 + Error interpreting the header row of {0} "{1}". + + + 3045 + 1 + 0 + 0 + Error reading line {0} of {1} "{2}". + + + 3046 + 1 + 0 + 0 + Out of Memory Exception reading file: {0}. Tried to allocate {1} kB. + + + 3047 + 1 + 0 + 0 + Error interpreting the header row of {0}. + + + 3048 + 1 + 0 + 0 + General error reading line {0} of {1}. Periods per day = {2}. + + + 3049 + 1 + 0 + 0 + EEI File "{0}" has record length {1}, expected 80 or 82. + + + 3050 + 1 + 0 + 0 + Duplicate AM records for {0}. + + + 3051 + 1 + 0 + 0 + Duplicate PM records for {0}. + + + 3052 + 1 + 0 + 0 + {0} contained only {1} lines of data, expected {2}. {3} Check that the file is complete and that the Horizon [Periods per Day] is correct. + + + 3053 + 1 + 0 + 0 + {0}Specified Data File [Base Profile] "{1}" not found. + + + 3054 + 1 + 0 + 0 + {0}Invalid fiscal year range: {1}-{2}. + + + 3055 + 1 + 0 + 0 + Error in Data File [Holiday]. Expected {0} dates per holiday but got {1}. + + + 3056 + 1 + 0 + 0 + Source profile contained too few records. {0}. + + + 3057 + 1 + 0 + 0 + Error interpreting Holiday on band {0}. Could not locate base profile holiday start date. + + + 3058 + 1 + 0 + 0 + Error interpreting Holiday on band {0}. Could not locate holiday start date in year {1}. + + + 3059 + 1 + 0 + 0 + {0}Could not propagate profile year to period {1}. + + + 3060 + 2 + 0 + 0 + Solution status:= {0}. + + + 3061 + 1 + 0 + 0 + Cannot create the profile using the specified parameters. The problem is infeasible. Adjust the parameters and try again. + + + 3062 + 3 + 3 + + + 3063 + 1 + 0 + 0 + Database version number "{0}" does not match engine version number "{1}". + + + 3064 + 1 + 0 + 0 + {0} validation errors were detected. Please correct these errors before running the simulation. + + + 3065 + 1 + 0 + 0 + Selected Model and/or Project objects are not configured with a Horizon object. + + + 3066 + 3 + 3 + + + 3067 + 3 + 3 + + + 3068 + 2 + 0 + 0 + Capacity Factor constraints cannot be defined with period type of interval. + + + 3069 + 3 + 3 + + + 3070 + 3 + 3 + + + 3071 + 2 + 0 + 0 + Power Station "{0}" attempts to aggregate [ {1} ] with {2} bands on [ {3} ("{4}").{5} ("{6}") ] but {7} on the first member. + + + 3072 + 1 + 0 + 0 + ST Schedule must begin inside the planning Horizon. + + + 3073 + 1 + 0 + 0 + ST Schedule must run inside the planning Horizon. + + + 3074 + 1 + 0 + 0 + Horizon [Typical Week] does not support running '{0}' steps. + + + 3075 + 1 + 0 + 0 + For Horizon [Typical Week] mode ST Schedule must span one week, e.g. 1 step of 1 week, 7 steps of 1 day, 168 steps of 1 hour, etc. + + + 3076 + 1 + 0 + 0 + Horizon contained no months with specified typical week index. + + + 3077 + 1 + 0 + 0 + Invalid Horizon [Chrono Period From] option: {0}. Expected an index between 1 and {1}. + + + 3078 + 1 + 0 + 0 + Invalid Horizon [Chrono Period To] option: {0}. Expected an index between 1 and {1}. + + + 3079 + 1 + 0 + 0 + Invalid date range {0} to {1}. + + + 3080 + 2 + 1 + 1 + The step settings for this phase cover {0} intervals out of {1} in the horizon. No results will be calculated for the last {2} intervals. + + + 3081 + 3 + 3 + + + 3082 + 1 + 0 + 0 + Internal Error: ParsePattern() expected result array of rank 1. + + + 3083 + 3 + 3 + + + 3084 + 2 + 0 + 0 + Empty statement found in Timeslice "{0}". + + + 3085 + 2 + 0 + 0 + Timeslice "{0}" statement contains no identifier. + + + 3086 + 2 + 0 + 0 + Invalid month range in Timeslice "{0}". + + + 3087 + 2 + 0 + 0 + Invalid day of month range in Timeslice "{0}". + + + 3088 + 2 + 0 + 0 + Invalid day of week range in Timeslice "{0}". + + + 3089 + 2 + 0 + 0 + Invalid hour range in Timeslice "{0}". + + + 3090 + 2 + 0 + 0 + Invalid period range in Timeslice "{0}". + + + 3091 + 2 + 0 + 0 + Could not parse Timeslice statement "{0}". + + + 3092 + 2 + 0 + 0 + Unknown identifier "{0}" in Timeslice statement "{1}". + + + 3093 + 2 + 0 + 0 + Could not interpret the statement "{0}" in the Timeslice "{1}". + + + 3094 + 1 + 0 + 0 + Could not open: {0} It may be in use by another process. + + + 3095 + 2 + 0 + 0 + File "{0}" contains no data. + + + 3096 + 2 + 0 + 0 + Invalid data found at line {0} of file {1}. + + + 3097 + 2 + 1 + 1 + Cannot aggregate {0} for {1} "{2}" with child "{3}", because only {4} of the {5} components have that type of membership. + + + 3098 + 2 + 1 + 1 + Cannot aggregate {0} for {1} "{2}" with parent "{3}", because only {4} of the {5} components are included in that type of membership. + + + 3099 + 3 + 3 + + + 3100 + 3 + 3 + + + 3101 + 3 + 3 + + + 3102 + 3 + 3 + + + 3103 + 1 + 0 + 0 + The property {0} {1} [{2}] has the Condition "{3}" defined that does not exist. + + + 3104 + 1 + 1 + 1 + The Region "{1}" defines Region Reference Node of "{0}" but this is located in Region "{2}". + + + 3105 + 1 + 0 + 0 + Escalator "{0}" cannot define Escalator [Index] together with Escalator [Compound Index]. + + + 3106 + 2 + 1 + 1 + Data File line {0} contains {1} band(s) of data for object "{2}" but expected {3} bands. File "{4}". + + + 3107 + 1 + 0 + 0 + Escalator "{0}" cannot define Escalator [Compound Index] for both period types "{1}" and "{2}". + + + 3108 + 1 + 1 + 1 + Report "{0}" {1} [{2}] cannot be reported by period. + + + 3109 + 1 + 1 + 1 + Report "{0}" {1} [{2}] cannot be reported in summary. + + + 3110 + 1 + 1 + 1 + Report "{0}" {1} [{2}] is not reported in {3} simulation phase. + + + 3111 + 1 + 0 + 0 + The look-ahead in the chronological phase ({0} periods per day) must divide the planning horizon resolution ({1} periods per day). + + + 3112 + 1 + 0 + 0 + DATETIME field cannot be combined with YEAR, MONTH, DAY, or PERIOD. File "{0}". + + + 3113 + 1 + 0 + 0 + Data File line {0} defines invalid date YEAR={1}, MONTH={2}, DAY={3}. Conversion error message ="{4}". File "{5}". + + + 3114 + 1 + 0 + 0 + {0} [Blocks] = {1} cannot be greater than the number of intervals in a {2} = {3}. + + + 3115 + 1 + 0 + 0 + Generator "{0}" has memberships to more than one enabled Power Station objects. + + + 3116 + 2 + 0 + 0 + Data File line {0} defines an invalid date ( {1} ) with {2} culture settings. File "{3}". + + + 3117 + 2 + 0 + 0 + Failed to interpret the Timeslice "{0}" which appears to have invalid meta-patterns related to Timeslice "{1}". + + + 3118 + 2 + 0 + 0 + Generator "{0}" was not located in the {1} model "{2}". + + + 3119 + 2 + 0 + 0 + The interleaved property {0}.[{1}] is invalid. + + + 3120 + 3 + 3 + + + 3121 + 2 + 1 + 1 + The Model [Random Number Seed] property has not been set. The number {0} will be used. Variable samples and outage patterns in this simulation will repeat only if this same seed is set. + + + 3122 + 2 + 1 + 1 + Timeslice "{0}" is used but does not include any time periods. You should define the Timeslice [Include] property. + + + 3123 + 2 + 0 + 0 + Unable to run the interleave process due to invalid settings. Server stochastic mode [{0}] with {1} sample(s) is not consistent with the client stochastic mode [{2}] with {3} sample(s). + + + 3124 + 2 + 1 + 1 + The marginal unit diagnostic has skipped Region "{0}" because the reference node "{1}" is not a load node. + + + 3128 + 1 + 0 + 0 + Cannot fit {0} periods per {1} while pinning the selected number points. Either increase the number of periods or remove the point pinning. + + + 3129 + 1 + 0 + 0 + Generator "{0}" band count for Generator Fuels [Heat Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 3130 + 1 + 0 + 0 + Decision Variable "{0}" Objective Function Coefficient period type "{1}" is not consistent with Definition "{2}". + + + 3131 + 2 + 1 + 1 + Decision Variable "{0}" Objective Function Coefficient period type {1} is too long for ST Schedule. + + + 3132 + 2 + 1 + 1 + The specified output path and file name are too long. The solution will be written to the following temporary location: {0} + + + 3133 + 2 + 1 + 1 + OpenPLEXOS {0}. + + + 3134 + 2 + 0 + 0 + Conflict detected on Decision Variable {0} bounds, lower bound = {1}, upper bound = {2}, type = {3} + + + 3135 + 2 + 1 + 1 + Branch "{0}" NodeFrom and NodeTo are both defined as "{1}". It is dropped from simulation. + + + 3136 + 1 + 0 + 0 + Cannot connect Storage objects to Water Node objects when using "Energy" Hydro Model setting. + + + 3137 + 2 + 1 + 1 + File "{0}" contains {1} repeated values. + + + 3138 + 1 + 0 + 0 + Line "{0}" has [Max Flow] lower than [Min Flow]; [Max Flow] = "{1}" < [Min Flow] = "{2}". + + + 3139 + 2 + 1 + 1 + Property {0} is dropped because the interval length is set to {1}. + + + 3140 + 2 + 0 + 0 + Could not interpret the statement "{0}" in the Timeslice {1}. + + + 3141 + 2 + 1 + 1 + MT Schedule will run in one step for the Hanging Branches Rolling Horizon solution method. + + + 3142 + 4 + 1 + 1 + Skipped validation of the report selections. + + + 3143 + 1 + 0 + 0 + Horizon [Typical Week] mismatch to the start of the planning horizon. + + + 3144 + 2 + 1 + 1 + Constraint "{0}" Gas Fields "{1}" defines [End Volume Coefficient] and {2}. The latter coefficient will be ignored. + + + 3145 + 1 + 0 + 0 + Unable to formulate constraints for Base Gas Contract "{0}". ST schedule must span 365 days if no LT plan or MT schedule is enabled. + + + 3146 + 2 + 1 + 1 + Unable to formulate constraints for Base Gas Contract "{0}" for {1} phase. Contract will be treated as Swing contract for the current phase. + + + 3147 + 2 + 1 + 1 + Gas Contract "{0}" has memberships with multiple classes. Gas Node memberships will be ignored. + + + 3148 + 2 + 1 + 1 + Generator "{0}" cannot define a transition with itself. This transition membership has been removed. + + + 3149 + 2 + 1 + 1 + Gas Pipelines mapped to Gas Capacity Release Offer "{0}" do not form a path. + + + 3150 + 2 + 1 + 1 + Unable to formulate constraints for Base Gas Capacity Release Offer "{0}" for {1} phase. Release type will be treated as swing for the current phase. + + + 3151 + 2 + 1 + 1 + Gas Capacity Release Offer "{0}" has memberships with multiple classes. Gas pipelines memberships will be used and other memberships will be ignored. + + + 3152 + 2 + 1 + 1 + Gas Capacity Release Offer "{0}" has no memberships assigned to it. + + + 3153 + 2 + 1 + 1 + Maximum daily take for gas contract "{0}" is less than percentage of demand from all demand in this gas contract. + + + 3154 + 2 + 1 + 1 + Internal VoLL for region "{0}" must increase with increasing internal VoLL level. + + + 3155 + 2 + 1 + 1 + Scenario Tree: Globals [Hanging Branches Historical Year Start] is not defined. Hanging Branches Sample Reduction will be run automatically. + + + 3156 + 1 + 0 + 0 + Scenario Tree: Number of Hanging Branches {0} should be less than the number of historical years {1}. + + + 3157 + 1 + 0 + 0 + Scenario Tree: Globals [Hanging Branches Historical Year Start] data are invalid, please try using [Hanging Branches Sample Reduction]. + + + 3159 + 2 + 1 + 1 + Gas Storage has memberships with multiple gas nodes that each gas node has weather station connected. Only first weather station (connected to first gas node) will be used. + + + 3160 + 2 + 1 + 1 + Gas Contract has memberships with multiple gas nodes that each gas node has weather station connected. Only first weather station (connected to first gas node) will be used. + + + 3161 + 1 + 1 + 1 + The Generator [Outage Rating] for "{0}" is larger than or equal to its rated capacity in certain periods. Generator [Units Out] will not be applied to those periods. + + + 3162 + 3 + 1 + 1 + {0} "{1}" doesn't define property {2}. The preschedule for the object will be ignored. + + + 3163 + 1 + 1 + 1 + LT Plan specified [Allow Capacity Sharing] but none of the Regions or Zones have capacity reserve inputs. Capacity will not be shared except as specified in Line [Firm Capacity]. + + + 3164 + 1 + 1 + 1 + Constraint "{0}" RHS Hour is longer than the interval length of {1} hours. The Constraint will be excluded. Try using RHS instead. + + + 3165 + 1 + 0 + 0 + Variable '{0}' is configured for {1} sampling. The sampling method needs to be set to '{2}'. + + + 3200 + 1 + 0 + 0 + Could not interpret Variable "{0}" ML model schema column "{1}". Expected Collection_Name_Property. + + + 3201 + 1 + 0 + 0 + Could not interpret the class name "{0}" in the Variable "{1}" ML model schema column name "{2}" + + + 3202 + 1 + 0 + 0 + Could not interpret the "{0}" object name "{1}" in Variable "{2}" ML model schema column name "{3}" + + + 3203 + 1 + 0 + 0 + Could not interpret the property name "{0}" in Variable "{1}" ML model schema column name "{2}" + + + 3204 + 2 + 1 + 1 + The region {0} cannot belong to two or more decomposition groups. + + + 3205 + 1 + 0 + 0 + Error during the decomposition simulations. Unable to create final solution file. + + + 3206 + 2 + 1 + 1 + Geographical decomposition feature has been disabled. {0} + + + 3207 + 2 + 1 + 1 + Expansion file '{0}' does not exist. + + + 3208 + 2 + 0 + 0 + Gas Storage "{0}" [Injection Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3209 + 2 + 0 + 0 + Gas Storage "{0}" [Withdrawal Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3210 + 2 + 0 + 0 + Gas Storage "{0}" [Dispatch Injection Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3211 + 2 + 0 + 0 + Gas Storage "{0}" [Dispatch Withdrawal Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3212 + 2 + 0 + 0 + Gas Storage "{0}" sum of [Injection Withdrawal Charge Level] bands is "{1}"% but must sum to 100%. + + + 3213 + 2 + 1 + 1 + The value could not be calculated because "{0}" >= "{1}". + + + 3214 + 2 + 1 + 1 + The factorial for "{0}" could not be calculated. + + + 3215 + 2 + 1 + 1 + The total share of a vehicle at any particular interval can not be more than 1. The share is redistributed accordingly, so that the total share is equal to 1. + + + 3216 + 3 + 1 + 1 + Input time series for variable "{0}" is not stationary, PARMA fitting for it might not be accurate! + + + 3219 + 1 + 0 + 0 + The header column {0} in file "{1}" is not a valid column type. + + + 3220 + 1 + 0 + 0 + License unavailable for the following classes: {0}. + + + 3221 + 2 + 1 + 1 + Interleave configuration is ambiguous after generic object compilation. Collection IDs {0} each report "{1}". + + + 3222 + 2 + 1 + 1 + Max Ramp {0} for {1} is not available in Sampled Chronology. + + + 3223 + 3 + 1 + 1 + The total Gas Demand.Gas Node Demand Participation Factor does not sum to 1.0. Gas Demand: {0}, sum of Demand Participation Factor: {1}. + + + 3224 + 2 + 1 + 1 + Scenario Tree: Globals Hanging Branches tree settings are ignored in the following cases: 1) LT/MT phase is not running Stochastic mode, or 2) the horizon is too short for running a multi-stage optimization, or 3) sample reduction is required for the stochastic object. + + + 3226 + 2 + 1 + 1 + Scenario Tree: Globals [Full Branches Sample Reduction] is disabled. Number of Full and Hanging Branches {0} needs to be less than the number of historical years {1}. + + + 3227 + 3 + 1 + 1 + There is a mismatch between the number of offer quantity bands ({0}) and the number of bid-cost mark-up bands ({1}) for {2}. + + + 3228 + 2 + 1 + 1 + Constraint "{0}" is too long for ST Schedule. This constraint will be prorated each step. + + + 3229 + 1 + 0 + 0 + Circular Heat Input memberships detected for the following Generators: {0}, {1}. + + + 3230 + 2 + 1 + 1 + Constraint {0} defines [{1}] for Vehicle {2}. Vehicle [Max Discharge Rate] is zero or does not formulate storage (simple model). Coefficient will be ignored. + + + 3231 + 2 + 1 + 1 + Market "{0}" interacts with multiple classes ({1}). Ensure sales in this market correspond to one physical quantity (electricity, reserve capacity, water etc.). + + + 3232 + 2 + 1 + 1 + Disabling Transmission Aggregation because Kron-reduction has been enabled. + + + 3233 + 2 + 1 + 1 + Global Sampling File has been entered, but file {0} cannot be found. Sample reduction will be performed automatically. + + + 3234 + 1 + 0 + 0 + Invalid inputs for sampled chronology. Sampling interval type, sample type or reduced sample count of the {0} object should match that in the sampling file {1}. + + + 3235 + 2 + 0 + 0 + Property cannot be interleaved: {0}. All Constraints group properties are compiled to constraint objects before execution. + + + 3236 + 2 + 1 + 1 + Line "{0}" is assumed out-of-service because it is an unconstrained DC link. + + + 3237 + 2 + 1 + 1 + Constraint "{0}" cannot have more than one negative Decision Variable [Value Squared Coefficient] defined. + + + 3238 + 2 + 1 + 1 + Constraint "{0}" Decision Variable "{1}" [Value Squared Coefficient] should not be positive when a negative value is defined. + + + 3239 + 2 + 1 + 1 + Constraint "{0}" Decision Variable "{1}" [Lower Bound] should not be negative when its [Value Squared Coefficient] defined as a negative value. + + + 3240 + 2 + 1 + 1 + Constraint "{0}" [Sense] should be "<=" when Decision Variable [Value Squared Coefficient] is defined. + + + 3241 + 2 + 1 + 1 + Constraint "{0}" [LHS Type] should be "SUM" when Decision Variable [Value Squared Coefficient] is defined. + + + 3242 + 2 + 1 + 1 + Constraint "{0}" [RHS] should be zero when a negative Decision Variable [Value Squared Coefficient] is defined. + + + 3243 + 2 + 1 + 1 + Constraint "{0}" should not define a negative Decision Variable [Value Squared Coefficient] when other linear terms are defined. + + + 3244 + 2 + 1 + 1 + Both the Rating Factor and Max Capacity have values that vary over time for unit "{0}". This may cause the sampled available energy to not match expected results when percentage inputs are set to be scaled. + + + 3245 + 2 + 1 + 1 + Charging Station "{0}" defines [Deferrable Load] but no simple [Fixed Load] Vehicles are connected. + + + 3246 + 1 + 0 + 0 + Installed capacity exceeds expansion capacity for expansion candidate {0} "{1}". + + + 3247 + 2 + 1 + 1 + Large number of potential operating units for Generator "{0}" which models unit-by-unit commitment. High memory usage for the optimization may result. + + + 3248 + 1 + 0 + 0 + Scenario Tree: Stochastic [Stages Period Type] = "{0}" is not implemented for Hanging Branch trees. + + + 3249 + 3 + 1 + 1 + Financial coefficient [{0}] defined in non-price prescribed context and will be ignored. Constraint "{1}", object "{2}". + + + 3250 + 2 + 0 + 0 + Reliability {0} risk metric has decreased after Generator removal, no EFC convergence possible. Consider increasing VoLL or decreasing MIP gap. + + + 3251 + 2 + 0 + 0 + Constraint {1} has a period type {0} that is inconsistent with expansion period type {2}. + + + 3252 + 2 + 0 + 0 + Variable {0} is being referenced from its Variables - {1} - expression creating a circular reference error. + + + 3253 + 1 + 0 + 0 + Minimum retirement capacity exceeds capacity available for retirement for {0} "{1}". + + + 3254 + 3 + 1 + 1 + Unable to locate the Variable "{0}". + + + 3255 + 2 + 1 + 1 + Solver ran out of memory during optimize, repair or load of task {0}. + + + 3256 + 2 + 1 + 1 + Nodes* memberships detected with non-Nodal Transmission Detail. Phase: {0}. + + + 3257 + 1 + 0 + 0 + Incorrect use of Planning Horizon Lookahead Count detected. The attribute is intended for use with the MT Schedule Stochastic Methods Rolling Horizon or SDDP. + + + 3258 + 3 + 1 + 1 + Expansion optimality for {0} is Linear. Constraint {1} is dropped because integer builds are required for [Built Coefficient]. + + + 3259 + 3 + 1 + 1 + The required number of LDC blocks cannot be created with the input Global slicing block settings. + + + 3260 + 2 + 1 + 1 + Object "{0}" defines [{1}] without [{2}]. + + + 3261 + 3 + 1 + 1 + LT Plan Decomposition Reduction Factor is not allowed for Fitted Chronology when the Overlap > 0. Decomposition Reduction Factor has been reset to 1. + + + 3262 + 3 + 3 + 3 + Repaired infeasibility. + + + 3263 + 1 + 0 + 0 + Zone "{0}" must have at least one Node in service. + + + 3264 + 2 + 2 + 2 + Simultaneous using of Horizon with [Lookahead] > 0, [Rolling Horizon], and [Sampled Chronology] with N sampled Weeks per Year/Quarter/Month may result in incorrect [EndVolume] values. It is strongly recommended to use [Sampled Chronology] with N*7 Days per Year/Quarter/Month instead. + + + 3265 + 2 + 1 + 1 + Aggregate Transmission on Regions is not recommended because some of the phases are modeled at Zonal/Regional level. + + + 3266 + 3 + 1 + 1 + There are in-service Load objects in this scenario. Node load will be allocated via Load objects instead of Region/Zone/Node inputs. + + + 3267 + 3 + 1 + 1 + The parameter 'Blocks in each Sample' has been reset to 0 because the selected 'Sample Type' for Sampled Chronology is not 'Day' or 'Week' + + + 3268 + 3 + 1 + 1 + LT Plan Decomposition is configured with linear LT Plan Optimality. + + + 3269 + 3 + 1 + 1 + [Rough Running Point] and [Rough Running Range] will be ignored for {0} {1} since it has more than one unit. + + + 3270 + 3 + 1 + 1 + Gas DSM Program "{0}" has a sum of [Gas Demands Share] that is over 100%. The share will be redistributed, so that the total equals to 100%. + + + 3271 + 3 + 1 + 1 + The Planning Horizon ({0} {1}) is not divisible by the {2} Step Size ({3} {4}). The calculated number of steps is fractional ({5}). PLEXOS will solve using a single {6} step covering the full Planning Horizon. Please adjust the Step Size or Planning Horizon to avoid this fallback. + + + 3272 + 3 + 1 + 1 + LT Plan Decomposition Reduction Factor cannot be combined with the Rolling Horizon algorithm. Decomposition Reduction Factor has been reset to 1. + + + 1 + Popular + + + 2 + Ancillary Services + + + 4 + Capacity + + + 8 + Capacity Expansion + + + 16 + CCGT + + + 32 + CHP + + + 64 + Competition + + + 128 + Constraints + + + 256 + Conversions + + + 512 + Decomposition + + + 1024 + Demand + + + 2048 + Diagnostic + + + 4096 + Efficiency + + + 8192 + Emissions + + + 16384 + End Effects + + + 32768 + Fixed Cost + + + 65536 + Geospatial + + + 131072 + Heat + + + 262144 + Hydro + + + 524288 + Initial Conditions + + + 1048576 + Load + + + 2097152 + Losses + + + 4194304 + Offers and Bids + + + 8388608 + On/Off Switches + + + 16777216 + Outages + + + 33554432 + Performance + + + 67108864 + Pricing + + + 134217728 + Pumped Storage + + + 268435456 + Wind + + + 536870912 + Semi-Variable Cost + + + 1073741824 + Shortage + + + 2147483648 + Start + + + 4294967296 + Stochastic + + + 8589934592 + Stop + + + 17179869184 + Storage + + + 34359738368 + Power Flow + + + 68719476736 + Unit Commitment + + + 137438953472 + Variable Cost + + + 274877906944 + Risk + + + 549755813888 + Water + + \ No newline at end of file diff --git a/src/plexosdb/config/master_9.2R6_btu.xml b/src/plexosdb/config/master_9.2R6_btu.xml new file mode 100644 index 0000000..c4eaa08 --- /dev/null +++ b/src/plexosdb/config/master_9.2R6_btu.xml @@ -0,0 +1,186158 @@ + + + 1 + 2 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 2 + 2 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 3 + 4 + 1 + Unit + 0 + 0 + 0;"-";4;"kg";5;"t";6;"kt";7;"Mt";8;"Gt";9;"ton";23;"L";24;"kL";25;"ML";26;"GL";27;"m³";28;"km³";29;"CMD";30;"gal";31;"bbl";32;"ft3";33;"MCF";34;"MMCF";35;"MTPA";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";53;"TOE";54;"kTOE";55;"MTOE";56;"kcal";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT" + true + true + 2367 + Unit the fuel is measured in + true + + + 4 + 4 + 2 + Energy Density + 85 + 0 + true + true + 2368 + Energy per unit of the fuel + true + + + 5 + 7 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 6 + 7 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 7 + 8 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 8 + 8 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 9 + 22 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 10 + 22 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 11 + 33 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 12 + 33 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 13 + 34 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 14 + 34 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 15 + 35 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 16 + 35 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 17 + 36 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 18 + 36 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 19 + 37 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 20 + 37 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 21 + 38 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 22 + 38 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 23 + 38 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 24 + 38 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 25 + 39 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 26 + 39 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 27 + 39 + 3 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 28 + 39 + 4 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 29 + 40 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 30 + 40 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 31 + 41 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 32 + 41 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 33 + 42 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 34 + 42 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 35 + 44 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 36 + 44 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 37 + 45 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 38 + 45 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 39 + 46 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the Gas Path Is Enabled + 800000 + true + + + 40 + 47 + 1 + Unit + 0 + 0 + 0;"-";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT";33;"MCF";34;"MMCF";31;"bbl";53;"TOE";54;"kTOE";55;"MTOE" + true + true + 2367 + Unit the gas is measured in + true + + + 41 + 47 + 2 + Energy Density + 0 + 0 + true + true + 2368 + Energy per unit of the gas + true + + + 42 + 50 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 43 + 50 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 44 + 51 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 45 + 51 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 46 + 60 + 1 + Unit + 0 + 0 + 0;"-";1;"m";2;"km";3;"Gkm";4;"kg";5;"t";6;"kt";7;"Mt";8;"Gt";9;"ton";10;"s";11;"min";12;"hr";13;"day";14;"week";15;"°C";16;"°F";17;"HDD";18;"CDD";19;"m²";20;"ha";21;"kha";22;"km2";23;"L";24;"kL";25;"ML";26;"GL";27;"m³";28;"km³";29;"CMD";30;"gal";31;"bbl";32;"ft3";33;"MCF";34;"MMCF";35;"MTPA";36;"kPa";37;"bar";38;"psi";39;"kW";40;"MW";41;"GW";42;"TW";43;"kJ";44;"MJ";45;"GJ";46;"TJ";47;"PJ";48;"EJ";49;"kWh";50;"MWh";51;"GWh";52;"TWh";53;"TOE";54;"kTOE";55;"MTOE";56;"kcal";57;"MMBTU";58;"BBTU";59;"Dth";60;"MDT" + true + true + 2367 + Unit the Commodity is measured in + true + + + 47 + 60 + 2 + Energy Density + 85 + 0 + true + true + 2368 + Energy per unit of the Commodity + true + + + 48 + 60 + 3 + Unit Type + 0 + 0 + In (0,1) + 0;"Quantity";1;"Rate" + true + true + 2326 + Convention for reporting of Commodity at the interval level + true + + + 49 + 62 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 50 + 62 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 51 + 62 + 3 + Capacity Basis + 0 + 1 + In (0,1) + 0;"Input";1;"Output" + true + true + 2467 + The basis for capacity-related properties where "Input" refers to the Primary Input and "Output" refers to the Primary Output + true + + + 52 + 65 + 1 + Latitude + 11 + 0 + false + false + 343 + Latitude + 10000 + true + + + 53 + 65 + 2 + Longitude + 11 + 0 + false + false + 367 + Longitude + 10000 + true + + + 54 + 69 + 1 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + false + true + 810 + If Market [Buy/Sell Unit] properties act like unit commitment or apply independently every period. + true + + + 55 + 72 + 1 + Type + 0 + 0 + In (0,1,2,3,4) + 0;"Continuous";1;"Integer";2;"Binary";3;"Semi-continuous";4;"Semi-integer" + false + true + 927 + Type of decision variable (continuous or integer). + true + + + 56 + 72 + 2 + Time Lag + 0 + 0 + false + true + 1352 + Time lag for terms in the generic decision variable definition. + true + + + 57 + 72 + 3 + Time Invariant + 0 + 1 + In (0,1,2,3) + 0;"None";1;"Bounds";2;"Cost";3;"All" + false + true + 1498 + Controls which aspects of the generic decision variable represent time-invariant values. + true + + + 58 + 74 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the Data File is enabled for build in the next pass + 800000 + true + + + 59 + 74 + 2 + Growth Period + 0 + 4 + In (1,3,4,7) + 1;"Day";3;"Month";7;"Quarter";4;"Year" + false + true + 877 + Cycle over which the growth algorithm matches energy targets (day, month, year, quarter) + true + + + 60 + 74 + 3 + Method + 0 + 1 + In (0,1,2,3) + 0;"None";1;"Linear";2;"Quadratic";3;"Custom" + false + true + 471 + Method used to align maximum (and minimum if defined) and energy values + true + + + 61 + 74 + 4 + Relative Growth at Min + 12 + 0 + false + true + 675 + Relative growth at the lowest end of the LDC for Method = Quadratic + true + + + 62 + 74 + 5 + Shape Distortion + 0 + 0 + >=0 + false + true + 1287 + Distortion of the original duration curve shape as a function of the difference in maximum and energy growth rates. + true + + + 63 + 74 + 6 + Decimal Places + 0 + 0 + >=0 + false + true + 129 + Number of decimal places in output written to text files + true + + + 64 + 74 + 7 + Missing Value Method + 0 + 0 + In (0,1,2) + 0;"Last Value";1;"Zero";2;"Default Value" + false + true + 928 + Method used to fill missing values when reading Data Files + true + + + 65 + 74 + 8 + Periods per Day + 0 + 0 + Between 0 And 86400 + false + true + 606 + Number of periods per day for Data Files using the Period column + true + + + 66 + 74 + 9 + Upscaling Method + 0 + -1 + In (-1,0,1,2) + -1;"Auto";0;"Step";1;"Interpolate";2;"Boundary Interpolate" + false + true + 1299 + Method used to upscale data e.g. from hourly to 5-minute resolution. + 100 + true + + + 67 + 74 + 10 + Downscaling Method + 0 + -1 + In (-1,0,1,2,3,4) + -1;"Auto";0;"Average";1;"First";2;"Last";3;"Max";4;"Min" + false + true + 1300 + Method used to downscale data e.g. from 5-minute to hourly resolution. + 100 + true + + + 68 + 74 + 11 + Datetime Convention + 0 + 0 + In (0,1) + 0;"Beginning of Period";1;"End of Period" + false + true + 1344 + Convention used when reading DATETIME. + true + + + 69 + 74 + 12 + Locale + 0 + 0 + >=0 + false + true + 1345 + The numeric index of the locale that should be used to read the file. + true + + + 70 + 74 + 13 + Time Shift + 6 + 0 + false + true + 1771 + Number of hours to shift data in time when interpreting dates where a positive value means the data are from a time zone that is behind the 'reference' time zone. + true + + + 71 + 74 + 14 + Week Beginning + 0 + 0 + Between -1 And 7 + false + true + 857 + Start day for mapping file data to weeks (0=automatic, 1-7=weekday, -1=hydro weeks) + true + + + 72 + 74 + 15 + Historical Sampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + false + true + 1906 + Sample data from this file between the Year From and Year To + true + + + 73 + 74 + 16 + Historical Year From + 0 + 0 + >=0 + false + true + 1907 + First year read for historical sampling + true + + + 74 + 74 + 17 + Historical Year To + 0 + 0 + >=0 + false + true + 1908 + Last year read for historical sampling + true + + + 75 + 74 + 18 + Historical Year Start + 0 + 0 + >=0 + false + true + 1909 + Start year for historical sampling within the range Year From and Year To + true + + + 76 + 74 + 19 + Historical Year Ending + 0 + 12 + Between 1 And 12 + false + true + 1917 + Month that years end in the historical data + true + + + 77 + 74 + 20 + Historical Period Type + 0 + 2 + In (2,3) + 2;"Week";3;"Month" + false + true + 1910 + Take samples at each of these period types + true + + + 78 + 74 + 21 + Base Year + 0 + 0 + >=0 + false + true + 1956 + Base year for mapping data from a file with month, day and period but no year + true + + + 79 + 75 + 1 + Compound Type + 0 + 0 + In (0,1) + 0;"Nominal";1;"Annual" + false + true + 937 + Type of compound escalator (nominal or annual equivalent rate) + true + + + 80 + 75 + 2 + Compound Start Date + 0 + -1 + false + true + 938 + Start date for compounding index (-1 means use start of planning horizon) + true + + + 81 + 78 + 1 + Read Order + 0 + 0 + true + true + 907 + Order in which to read scenario data (last read scenario has highest priority) + true + + + 82 + 78 + 2 + Locked + 0 + 0 + In (0,1) + 0;"Unlocked";1;"Locked" + true + true + 1170 + If the Scenario data are locked for editing. + true + + + 83 + 80 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the model is ready to be executed + true + + + 84 + 80 + 2 + Execution Order + 0 + 0 + >=0 + true + true + 1298 + Order in which to execute the Model when running in a batch. + true + + + 85 + 80 + 3 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + true + true + 662 + Random number seed for this model + true + + + 86 + 80 + 4 + Output to Folder + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 594 + If model output should be written to a folder under the source directory, or into the source folder itself + true + + + 87 + 80 + 5 + Make Unique Name + 0 + 0 + In (-1,0,1) + -1;"Yes";0;"No";"1";"Prompt" + true + true + 397 + If model output should be written to a unique filename for each execution + true + + + 88 + 80 + 6 + Write Input + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1221 + If Model input should be written to the output location along with the solution. + true + + + 89 + 80 + 7 + Load Custom Assemblies + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1348 + If the Model should run custom OpenPLEXOS assemblies. + true + + + 90 + 80 + 8 + Run Mode + 0 + 0 + In (0,1) + 0;"Normal";1;"Dry" + true + true + 1772 + Switches between Normal and Dry run modes + true + + + 91 + 80 + 9 + Objective Priority + 0 + 1 + >=0 + true + true + 2100 + Priority of the objective when doing hierarchical multi-objective optimization + true + + + 92 + 80 + 10 + Objective Weight + 0 + 1 + true + true + 2101 + Weight of the objective when doing blended multi-objective optimization + true + + + 93 + 80 + 11 + Objective Relative Tolerance + 0 + 0 + Between 0 And 1 + true + true + 2102 + Allowable relative degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 94 + 80 + 12 + Objective Absolute Tolerance + 0 + 0 + >=0 + true + true + 2103 + Allowable degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 95 + 81 + 1 + Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 167 + If the project is enabled for execution + true + + + 96 + 82 + 1 + Periods per Day + 0 + 24 + Between 1 And 86400 + true + true + 606 + Number of intervals in each trading day + true + + + 97 + 82 + 2 + Compression Factor + 0 + 1 + >=1 + true + true + 2540 + Number of intervals to output per interval simulated + true + + + 98 + 82 + 3 + Date From + 0 + 43831 + >=0 + date + true + true + 125 + Start date of the planning horizon + true + + + 99 + 82 + 4 + Step Type + 0 + 1 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 765 + Planning horizon step type + true + + + 100 + 82 + 5 + Step Count + 0 + 1 + >=1 + true + true + 764 + Number of steps in the planning horizon + true + + + 101 + 82 + 6 + Look-ahead Count + 0 + 0 + >=0 + true + true + 2727 + Number of additional look-ahead steps in the planning horizon + true + + + 102 + 82 + 7 + Day Beginning + 0 + 0 + Between 0 And 23 + true + true + 126 + Start hour of the trading day + true + + + 103 + 82 + 8 + Week Beginning + 0 + 0 + Between -1 And 7 + true + true + 857 + Start day for weekly constraints + true + + + 104 + 82 + 9 + Year Ending + 0 + 0 + Between 0 And 12 + true + true + 865 + Last month of the fiscal year + true + + + 105 + 82 + 10 + Chronology + 0 + 0 + In (0,1) + 0;"Full";1;"Typical Week" + true + true + 79 + Type of chronology used + true + + + 106 + 82 + 11 + Chrono Date From + 0 + 43831 + >=0 + date + true + true + 74 + Start date for the chronological model + true + + + 107 + 82 + 12 + Chrono Period From + 0 + 1 + >=1 + true + true + 75 + Start interval for the chronological model + true + + + 108 + 82 + 13 + Chrono Period To + 0 + 24 + >=1 + true + true + 76 + End interval for the chronological model + true + + + 109 + 82 + 14 + Chrono Step Type + 0 + 2 + In (-1,0,1,2,3) + -1;"Second";0;"Minute";1;"Hour";2;"Day";3;"Week" + true + true + 78 + Chronological model step type + true + + + 110 + 82 + 15 + Chrono At a Time + 0 + 1 + >=1 + true + true + 73 + Number of steps in the chronological model + true + + + 111 + 82 + 16 + Chrono Step Count + 0 + 1 + >=1 + true + true + 77 + Number of step types in each step of the chronological model + true + + + 112 + 82 + 17 + Look-ahead Indicator + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 369 + Flag if chronological model used a look-ahead + true + + + 113 + 82 + 18 + Look-ahead Type + 0 + 1 + In (0,1,2,6) + 0;"Interval(s)";6;"Hour(s)";1;"Day(s)";2;"Week(s)" + true + true + 371 + Step type for look-ahead in chronological model + true + + + 114 + 82 + 19 + Look-ahead At a Time + 0 + 1 + >=1 + true + true + 368 + Number of step types in each step of the chronological model look-ahead + true + + + 115 + 82 + 20 + Look-ahead Periods per Day + 0 + 24 + Between 1 And 86400 + true + true + 370 + Number of intervals in each trading day of the look-ahead + true + + + 116 + 83 + 1 + Write Flat Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 863 + If the solution data are written to plain text files + true + + + 117 + 83 + 2 + Write XML Files + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 864 + If the solution data are written to XML files + true + + + 118 + 83 + 3 + XML Content + 0 + 0 + In (0,1) + 0;"Compact";1;"Full" + true + true + 1177 + Content of the zipped-XML solution files. Compact writes only binary solution tables. Raw writes binary and raw XML solution tables. + true + + + 119 + 83 + 4 + Output Results by Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 589 + If results are written by period + true + + + 120 + 83 + 5 + Output Results by Hour + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1582 + If summary results are written by hour + true + + + 121 + 83 + 6 + Output Results by Day + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 586 + If summary results are written by day + true + + + 122 + 83 + 7 + Output Results by Week + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 591 + If summary results are written by week + true + + + 123 + 83 + 8 + Output Results by Month + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 588 + If summary results are written by month + true + + + 124 + 83 + 9 + Output Results by Quarter + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1818 + If summary results are written by Quarter + true + + + 125 + 83 + 10 + Output Results by Fiscal Year + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 587 + If summary results are written by year + true + + + 126 + 83 + 11 + Output Statistics + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 593 + If statistics are calculated on multi-sample results + true + + + 127 + 83 + 12 + Output Results by Sample + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 590 + If each sample is output + true + + + 128 + 83 + 13 + Filter Objects By Interval + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 959 + If the selection of objects reported on applies to interval output + true + + + 129 + 83 + 14 + Filter Objects In Summary + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 960 + If the selection of objects reported on applies to summary output + true + + + 130 + 83 + 15 + Whole Years Only + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 961 + If reporting should be on whole years only + true + + + 131 + 83 + 16 + Datetime Convention + 0 + 0 + In (0,1) + 0;"Beginning of Period";1;"End of Period" + true + true + 1344 + Convention used when writing DATETIME. + true + + + 132 + 83 + 17 + Locale + 0 + 0 + >=0 + true + true + 1345 + The numeric index of the locale that should be used to write text files. + true + + + 133 + 83 + 18 + Flat File Format + 0 + 0 + In (0,1,2) + 0;"Datetime";1;"Periods in Columns";2;"Names in Columns" + true + true + 1359 + Format for text solution files. + true + + + 134 + 84 + 1 + Outage Pattern Count + 0 + 1 + >=1 + true + true + 521 + Number of outage patterns generated for use in MT and ST Schedule. + true + + + 135 + 84 + 2 + Monte Carlo Method + 0 + 0 + In (0,1) + 0;"Normal";1;"Convergent" + true + true + 520 + Monte-Carlo outage method. + true + + + 136 + 84 + 3 + Weibull Shape + 0 + 3 + >=0 + true + true + 523 + Shape parameter (beta) for the Weibull reliability function. + true + + + 137 + 84 + 4 + Convergent Smoothing + 0 + 5 + >=1 + true + true + 519 + Convergent Monte Carlo number of iterations used in converging outage rates. + true + + + 138 + 84 + 5 + Outage Scope + 0 + 0 + In (0,1,2,3) + 0;"All";1;"Forced Only";2;"Maintenance Only";3;"Planned Only" + true + true + 522 + Scope of preschedule outage pattern generator. + true + + + 139 + 84 + 6 + Convergence Period Type + 0 + 4 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1336 + Convergent Monte Carlo convergence period type. + true + + + 140 + 84 + 7 + Risk Sample Count + 0 + 1 + >=1 + true + true + 708 + Number of random samples generated on each Variable object. + true + + + 141 + 84 + 8 + Reduced Outage Pattern Count + 0 + 0 + >=0 + true + true + 1894 + Statistically reduce the outage patterns to at most this number. + true + + + 142 + 84 + 9 + Reduced Sample Count + 0 + 0 + >=0 + true + true + 1334 + Statistically reduce the [Risk Sample Count] to at most this number of random samples for use in simulation. + true + + + 143 + 84 + 10 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set drops to this level. + true + + + 144 + 84 + 11 + Forced Outages in Look-ahead + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1335 + If forced outages are included in the look-ahead. + true + + + 145 + 84 + 12 + EFOR Maintenance Adjust + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1793 + Adjust EFOR to account for Units Out + true + + + 146 + 84 + 13 + SDDP Iteration Limit + 0 + 20 + >=3 + true + true + 2435 + Maximum number of iterations in SDDP algorithm + true + + + 147 + 84 + 14 + SDDP Convergence Tolerance 1 + 0 + 1 + >=0 + true + true + 2436 + Objective function convergence criteria 1 for SDDP + true + + + 148 + 84 + 15 + SDDP Convergence Tolerance 2 + 0 + 0.2 + >=0 + true + true + 2437 + Objective function convergence criteria 2 for SDDP + true + + + 149 + 84 + 16 + SDDP Convergence Tolerance 2a + 0 + 0.8 + >=0 + true + true + 2438 + Objective function convergence criteria 2 (with adjustment) used in SDDP if simplification applies + true + + + 150 + 84 + 17 + SDDP Cut Sharing + 0 + 0 + In (0,1,2) + 0;"None";1;"Single";2;"Multiple" + true + true + 2642 + Type of cut sharing applied in the SDDP formulation + true + + + 151 + 84 + 18 + SDDP Simplified Chronology + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2439 + If the chronology is simplified to one block per stage during SDDP iterations + true + + + 152 + 84 + 19 + SDDP Head Effects + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2440 + If head effects are accounted for in SDDP iterations + true + + + 153 + 84 + 20 + SDDP Warm Start + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2610 + If the first forward pass of SDDP is replaced by fixed 'warm start' storage levels + true + + + 154 + 84 + 21 + SDDP Warm Start Level + 0 + 0.5 + Between 0 And 1 + true + true + 2611 + The levels to fix the storage in SDDP 'warm start' as a proportion of the distance between minimum and maximum storage levels + true + + + 155 + 84 + 22 + SDDP Replace Samples + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2614 + If the forward pass samples in SDDP should be replaced by user-defined samples + true + + + 156 + 84 + 23 + SDDP Final Pass Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2725 + If a final forward pass is run after the optimal policy iterations of the SDDP algorithm + true + + + 157 + 84 + 24 + FCF Scalar + 0 + 1000000 + true + true + 2441 + Scalar for future cost function objective and constraint terms + true + + + 158 + 84 + 25 + FCF Constant + 0 + 0 + true + true + 1485 + Constant future cost subtracted from the future cost during SDDP iterations + true + + + 159 + 84 + 26 + Simplified Chronology + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2541 + If the chronology is simplified to one block per stage during Rolling Horizon iterations + true + + + 160 + 84 + 27 + Minimum Sample Weight + 0 + 1E-06 + >=0 + true + true + 2442 + Minimum sample weight for rolling horizon iterations + true + + + 161 + 84 + 28 + Deep Branching + 0 + 0 + >=0 + true + true + 2552 + For Rolling Horizon this is the level of additional branching after the end of regular branching + true + + + 162 + 84 + 29 + Rolling Horizon With Other Variables + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2532 + Perform historical sampling for all variable types + true + + + 163 + 84 + 30 + Rolling Stage Increment + 0 + -1 + true + true + 2677 + Number of stages rolled forward each iteration where -1 means this is automatically determined based on the scenario tree + true + + + 164 + 84 + 31 + Rolling Lookahead + 8 + 1 + true + true + 2724 + Number of years modeled after the end of branching in each rolling iteration + true + + + 165 + 84 + 32 + Deterministic Pass Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2726 + If the final deterministic pass is run after iterations of the Rolling Horizon algorithm + true + + + 166 + 84 + 33 + Deterministic Step Type + 0 + 0 + In (0,2,3,4) + 0;"None";2;"Week";3;"Month";4;"Year" + true + true + 2644 + The step type for solving the final deterministic pass of the rolling horizon where "None" solves the entire horizon in one step + true + + + 167 + 84 + 34 + Deterministic Batch Count + 0 + 1 + >=1 + true + true + 2650 + For Deterministic Step Type = "None" the samples in the deterministic phase will be divided into this number of batches + true + + + 168 + 84 + 35 + Deterministic Step Length + 0 + 1 + >=1 + true + true + 2645 + The number of Deterministic Step Type periods in each step of the deterministic pass of the rolling horizon + true + + + 169 + 84 + 36 + PARMA Model Type + 0 + -1 + In (-1,0,1) + -1;"None";0;"SARIMA";1;"PARMA" + true + true + 2534 + PARMA Model Type (-1 = None, 0 = SARIMA model, 1 = PARMA model) + true + + + 170 + 84 + 37 + Historical Full Branches + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2535 + Flag if full branches should be mapped by historical data in the PARMA model + true + + + 171 + 84 + 38 + Brazil Scenario Tree + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2536 + Flag if the PARMA scenario tree is created with non-equiprobability + true + + + 172 + 84 + 39 + SDDP Resampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2591 + Flag if resampling is performed for each SDDP iteration at the beginning of the forward pass (The Scenario Tree must be created with PARMA model using Brazilian Methodology) + true + + + 173 + 86 + 1 + Optimize Expansion + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2714 + If expansion is optimized by this simulation phase + true + + + 174 + 86 + 2 + Bridge Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2722 + If LT Plan should bridge (decompose) constraints for subsequent simulation phases + true + + + 175 + 86 + 3 + Bridge Storage + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2723 + If LT Plan should bridge (decompose) storage for subsequent simulation phases + true + + + 176 + 86 + 4 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 177 + 86 + 5 + Discount Period Type + 0 + 4 + In (1,2,3,4,6,7) + 3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor and expansion decisions will be computed for each of these periods. + true + + + 178 + 86 + 6 + At a Time + 0 + 0 + >=-1 + true + true + 17 + Number of years solved in each step of LT Plan + true + + + 179 + 86 + 7 + Overlap + 0 + 0 + >=-1 + true + true + 595 + Number of years overlap between steps where -1 invokes Rolling Horizon + true + + + 180 + 86 + 8 + Chronology + 0 + 2 + In (2,3,4) + 2;"Partial";3;"Fitted";4;"Sampled" + true + true + 79 + Type of chronology used + true + + + 181 + 86 + 9 + LDC Type + 0 + 3 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 917 + One LDC is created for each period of this type in horizon. + true + + + 182 + 86 + 10 + Block Count + 0 + 12 + >=1 + true + true + 39 + Number of load duration curve blocks in each day/week/month. + true + + + 183 + 86 + 11 + Last Block Count + 0 + 0 + >=0 + true + true + 1702 + Number of load duration curve blocks in the last load duration curve of the horizon, or zero if the same as [Block Count]. + true + + + 184 + 86 + 12 + LDC Slicing Method + 0 + 0 + In (0,1) + 0;"Peak/Off-peak Bias";1;"Weighted Least-squares Fit" + true + true + 1200 + Method used to slice the LDC into blocks. + true + + + 185 + 86 + 13 + LDC Weight a + 0 + 0 + true + true + 1201 + LDC weighting polynomial function 'a' parameter. + true + + + 186 + 86 + 14 + LDC Weight b + 0 + 1 + true + true + 1202 + LDC weighting polynomial function 'b' parameter. + true + + + 187 + 86 + 15 + LDC Weight c + 0 + 0 + true + true + 1203 + LDC weighting polynomial function 'c' parameter. + true + + + 188 + 86 + 16 + LDC Weight d + 0 + 0 + true + true + 1204 + LDC weighting polynomial function 'd' parameter. + true + + + 189 + 86 + 17 + LDC Pin Top + 0 + -1 + >=-1 + true + true + 1205 + Number of points at the top of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 190 + 86 + 18 + LDC Pin Bottom + 0 + -1 + >=-1 + true + true + 1206 + Number of points at the bottom of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 191 + 86 + 19 + Sample Type + 0 + 2 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 1423 + For Chronology = "Sampled", take this type of sample. + true + + + 192 + 86 + 20 + Sampling Interval + 0 + 4 + In (-1,2,3,4,7) + -1;"Step";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1868 + For Chronology = "Sampled", take [Sample Type] samples in each of these intervals of time. + true + + + 193 + 86 + 21 + Sampled Block Count + 0 + 0 + >=0 + true + true + 2762 + Number of blocks modeled in each sample period (day/week) where zero means the original number of intervals + true + + + 194 + 86 + 22 + Sample Year Count + 0 + 0 + >=0 + true + true + 2227 + For [Chronology] = "Sampled", first select this many years then sample within only those years. + true + + + 195 + 86 + 23 + Reduced Sample Count + 0 + 4 + >=1 + true + true + 1334 + Statistically reduce the [Sample Type] periods to at most this number of samples each year. + true + + + 196 + 86 + 24 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set reaches this level. + true + + + 197 + 86 + 25 + Optimality + 0 + 2 + In (0,1,2) + 0;"Linear";2;"Integer" + true + true + 581 + LT Plan integerization scheme. + true + + + 198 + 86 + 26 + Integerization Horizon + 8 + -1 + >=-1 + true + true + 322 + Number of years over which the expansion decisions are integerized + true + + + 199 + 86 + 27 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon effects + true + + + 200 + 86 + 28 + Solution Count + 0 + 1 + >=1 + true + true + 1812 + Maximum number of solutions produced in the solution hierarchy + true + + + 201 + 86 + 29 + Solution Quality + 12 + 0 + Between 0 And 100 + true + true + 1813 + Continue producing solutions up to Solution Count or when Solution Quality falls to this level + true + + + 202 + 86 + 30 + Always Annualize Build Cost + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1957 + If [Build Cost] is always annualized even when an option retires inside the horizon + true + + + 203 + 86 + 31 + Depreciation Method + 0 + 0 + In (0,1,2) + 0;"None";1;"Straight-Line";2;"Declining" + true + true + 144 + Depreciation method for computing annuities + true + + + 204 + 86 + 32 + Tax Rate + 12 + 0 + true + true + 786 + Tax rate used to compute tax credits + true + + + 205 + 86 + 33 + Inflation Rate + 12 + 0 + true + true + 311 + Inflation rate used in depreciation calculations + true + + + 206 + 86 + 34 + Heat Rate Detail + 0 + 2 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 207 + 86 + 35 + Outage Increment + 1 + 10 + >=1 + true + true + 582 + Generator outage bin size in convolution + true + + + 208 + 86 + 36 + Use Effective Load Approach + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 836 + If LT Plan uses the effective load approach + true + + + 209 + 86 + 37 + Maintenance Sculpting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 982 + If LT Plan should sculpt maintenance derating according to the inverse of load. + true + + + 210 + 86 + 38 + Pricing Method + 0 + 0 + In (0,1) + 0;"Average";1;"Marginal" + true + true + 620 + Type of generator pricing used in LT Plan. + true + + + 211 + 86 + 39 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in LT Plan. + false + + + 212 + 86 + 40 + Allow Capacity Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 8 + If regions/zones can share capacity reserves to meet requirements + true + + + 213 + 86 + 41 + Capacity Payments Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1081 + If payments are made for generation capacity + true + + + 214 + 86 + 42 + Co-optimize Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2129 + If unit commitment is co-optimized rather than sequentially optimized with expansion + true + + + 215 + 86 + 43 + Start Cost Amortization Period + 6 + 0 + >=0 + true + true + 885 + Number of hours over which generator start costs are amortized + true + + + 216 + 86 + 44 + Compute Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 88 + Master switch for computation of reliability indices LOLP, LOLE, etc. + true + + + 217 + 86 + 45 + Compute Multi-area Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1734 + Master switch for computation of reliability indices LOLP, LOLE, etc across multiple areas. + true + + + 218 + 86 + 46 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for LT Plan + true + + + 219 + 86 + 47 + Storage Restart + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2769 + If recycled storage should restart from their initial volume at the start of each capacity optimization period + true + + + 220 + 86 + 48 + Write Expansion Plan Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 908 + If expansion plans should be written to text files + true + + + 221 + 87 + 1 + Step Type + 0 + 1 + In (0,1,2) + 0;"Interval";1;"Day";2;"Week" + true + true + 765 + PASA step type: One period is modelled for each period of this type in horizon. + true + + + 222 + 87 + 2 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Definition of maintenance area for PASA. + true + + + 223 + 87 + 3 + Include DSP + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 300 + Include demand-side participation in PASA + true + + + 224 + 87 + 4 + Include Demand Bids + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 299 + Include demand bids are load in PASA + true + + + 225 + 87 + 5 + Include Contract Generation + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 297 + Include physical contract generation capacity in PASA + true + + + 226 + 87 + 6 + Include Contract Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 298 + Include physical contract load capacity in PASA + true + + + 227 + 87 + 7 + Include Market Purchases + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1232 + Include market purchases as generation capacity in PASA + true + + + 228 + 87 + 8 + Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 100 + If transmission line constraints are enabled in PASA. + true + + + 229 + 87 + 9 + Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 324 + If transmission interface constraints are enabled in PASA. + true + + + 230 + 87 + 10 + Maintenance Sculpting + 12 + 0 + Between 0 And 100 + true + true + 982 + Level of sculpting of maintenance outages: Higher sculpting means outages are more concentrated in high reserve periods + true + + + 231 + 87 + 11 + Compute Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 88 + Master switch for computation of reliability indices LOLP, LOLE, etc. + true + + + 232 + 87 + 12 + Compute Multi-area Reliability Indices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1734 + Master switch for computation of reliability indices LOLP, LOLE, etc across multiple areas. + true + + + 233 + 87 + 13 + Reliability Criterion + 0 + 0 + In (0,1) + 0;"LOLP";1;"Capacity Reserves" + true + true + 2705 + Criterion used to select periods for Monte Carlo reliability analysis + true + + + 234 + 87 + 14 + Reliability LOLP Tolerance + 0 + 0.01 + >=0 + true + true + 2673 + For reliability-based sampled chronology using LOLP criterion select intervals with LOLP at or above this level + true + + + 235 + 87 + 15 + Reliability Max Samples + 6 + 1E+30 + >=1 + true + true + 2674 + For reliability-based sampled chronology select no more than this many hours per year + true + + + 236 + 87 + 16 + Write Reliability Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2706 + If the periods selected for Monte Carlo reliability analysis should be written to text files + true + + + 237 + 87 + 17 + Write Outage Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 906 + If outage patterns should be written to text files + true + + + 238 + 87 + 18 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for PASA. + true + + + 239 + 88 + 1 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 240 + 88 + 2 + Discount Period Type + 0 + 2 + In (1,2,3,4,6,7) + 6;"Hour";1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor will be computed for each of these periods. + true + + + 241 + 88 + 3 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon discounting + true + + + 242 + 88 + 4 + Step Type + 0 + 4 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 765 + Each simulation step will span steps of this type. + true + + + 243 + 88 + 5 + At a Time + 0 + 0 + >=0 + true + true + 17 + Number of day/week/months/years in each MT Schedule simulation step. + true + + + 244 + 88 + 6 + Chronology + 0 + 2 + In (2,3,4,5) + 2;"Partial";3;"Fitted";4;"Sampled";5;"Reliability" + true + true + 79 + Type of chronology used + true + + + 245 + 88 + 7 + LDC Type + 0 + 1 + In (1,2,3,4,7) + 1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 917 + Create one LDC for each period of this type in the horizon. + true + + + 246 + 88 + 8 + Block Count + 0 + 3 + >=1 + true + true + 39 + Number of load duration curve blocks in each day/week/month. + true + + + 247 + 88 + 9 + Last Block Count + 0 + 0 + >=0 + true + true + 1702 + Number of load duration curve blocks in the last load duration curve of the horizon, or zero if the same as [Block Count]. + true + + + 248 + 88 + 10 + LDC Slicing Method + 0 + 0 + In (0,1) + 0;"Peak/Off-peak Bias";1;"Weighted Least-squares Fit" + true + true + 1200 + Method used to slice the LDC into blocks. + true + + + 249 + 88 + 11 + LDC Weight a + 0 + 0 + true + true + 1201 + LDC weighting polynomial function 'a' parameter. + true + + + 250 + 88 + 12 + LDC Weight b + 0 + 1 + true + true + 1202 + LDC weighting polynomial function 'b' parameter. + true + + + 251 + 88 + 13 + LDC Weight c + 0 + 0 + true + true + 1203 + LDC weighting polynomial function 'c' parameter. + true + + + 252 + 88 + 14 + LDC Weight d + 0 + 0 + true + true + 1204 + LDC weighting polynomial function 'd' parameter. + true + + + 253 + 88 + 15 + LDC Pin Top + 0 + -1 + >=-1 + true + true + 1205 + Number of points at the top of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 254 + 88 + 16 + LDC Pin Bottom + 0 + -1 + >=-1 + true + true + 1206 + Number of points at the bottom of the LDC that are pinned and cannot be aggregated into blocks. + true + + + 255 + 88 + 17 + Sample Type + 0 + 2 + In (1,2,3,4) + 1;"Day";2;"Week";3;"Month";4;"Year" + true + true + 1423 + For [Chronology] = "Sampled", take this type of sample. + true + + + 256 + 88 + 18 + Sampling Interval + 0 + 4 + In (-1,2,3,4) + -1;"Step";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1868 + For Chronology = "Sampled", take [Sample Type] samples in each of these intervals of time. + true + + + 257 + 88 + 19 + Sampled Block Count + 0 + 0 + >=0 + true + true + 2762 + Number of blocks modeled in each sample period (day/week) where zero means the original number of intervals + true + + + 258 + 88 + 20 + Reduced Sample Count + 0 + 4 + >=1 + true + true + 1334 + Statistically reduce the [Sample Type] periods to at most this number of samples each year. + true + + + 259 + 88 + 21 + Reduction Relative Accuracy + 0 + 1 + Between 0 And 1 + true + true + 1343 + Stop sample reduction when the accuracy of the reduced sample set reaches this level. + true + + + 260 + 88 + 22 + Heat Rate Detail + 0 + 1 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 261 + 88 + 23 + Use Effective Load Approach + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 836 + If MT Schedule uses the effective load approach + true + + + 262 + 88 + 24 + Outage Increment + 1 + 10 + >=1 + true + true + 582 + Generator outage bin size in convolution + true + + + 263 + 88 + 25 + Pricing Method + 0 + 0 + In (0,1) + 0;"Average";1;"Marginal" + true + true + 620 + Type of generator pricing used in MT Schedule + true + + + 264 + 88 + 26 + Transmission Detail + 0 + 0 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in MT Schedule + false + + + 265 + 88 + 27 + New Entry Driver + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Reliability Only";2;"Reliability+Entrepreneurial";3;"Entrepreneurial Only" + true + true + 556 + New entry driver. + true + + + 266 + 88 + 28 + New Entry Capacity Mechanism + 0 + 0 + In (0,1,2) + 0;"None";1;"Capacity Payment";2;"Reserve Trader" + true + true + 555 + Capacity payment mechanism. + true + + + 267 + 88 + 29 + New Entry Time Lag + 55 + 12 + >=0 + true + true + 557 + Lag time for entrepreneurial entry. + true + + + 268 + 88 + 30 + Start Cost Amortization Period + 6 + 0 + >=0 + true + true + 885 + Number of hours over which generator start costs are amortized + true + + + 269 + 88 + 31 + Stochastic Method + 0 + 0 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for MT Schedule + true + + + 270 + 88 + 32 + Stochastic Algorithm + 0 + 0 + In (0,1) + 0;"Rolling Horizon";1;"SDDP" + true + true + 2235 + Algorithm invoked by the Stochastic Method when a scenario tree is present + true + + + 271 + 88 + 33 + Write Bridge Text Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1963 + If bridge information such as constraint decomposition and storage targets should be written to text files + true + + + 272 + 88 + 34 + Step Link Mode + 0 + 0 + In (0,1,2) + 0;"Link";1;"Break";2;"Parallel" + true + true + 1987 + Controls how the solutions of each step are linked together. + true + + + 273 + 88 + 35 + Reliability Min Contiguous Block + 6 + 0 + >=0 + true + true + 2675 + For reliability based sampled chronology ensure sampled periods are contained in contiguous blocks of at least this many hours + true + + + 274 + 89 + 1 + Discount Rate + 12 + 0 + >=0 + true + true + 145 + Discount rate. + true + + + 275 + 89 + 2 + Discount Period Type + 0 + 2 + In (1,2,3,4,6,7) + 6;"Hour";1;"Day";2;"Week";3;"Month";7;"Quarter";4;"Year" + true + true + 1617 + A unique discount factor will be computed for each of these periods. + true + + + 276 + 89 + 3 + End Effects Method + 0 + 1 + In (0,1) + 0;"None";1;"Perpetuity" + true + true + 168 + Method used to account for end of horizon discounting + true + + + 277 + 89 + 4 + Heat Rate Detail + 0 + 0 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling. + false + + + 278 + 89 + 5 + Transmission Detail + 0 + 1 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 796 + Level of detail used in transmission modelling in ST Schedule + false + + + 279 + 89 + 6 + Stochastic Method + 0 + 1 + In (0,1,2,3) + 0;"Deterministic";1;"Sequential Monte Carlo";3;"Parallel Monte Carlo";2;"Stochastic" + true + true + 900 + Stochastic optimization method for ST Schedule + true + + + 280 + 89 + 7 + Step Link Mode + 0 + 0 + In (0,1,2) + 0;"Link";1;"Break";2;"Parallel" + true + true + 1987 + Controls how the solutions of each step are linked together. + true + + + 281 + 89 + 8 + Step Relink Count + 0 + 1 + >=1 + true + true + 2704 + Number of steps that require relinking of initial conditions in parallel Step Link Mode, where 1 means no relinking + true + + + 282 + 89 + 9 + Sequential Steps + 0 + 1 + >=1 + true + true + 2703 + Number of steps run in each sequential block when running in parallel Step Link Mode + true + + + 283 + 90 + 1 + Detail + 0 + 1 + In (0,1,2) + 0;"Regional";2;"Zonal";1;"Nodal" + true + true + 2104 + Level of detail used in transmission modeling + true + + + 284 + 90 + 2 + MVA Base + 0 + 100 + >=0 + true + true + 528 + MVA base for AC line parameters. + true + + + 285 + 90 + 3 + OF Method + 0 + 0 + In (0,1) + 0;"Variable Shift Factor";1;"Fixed Shift Factor" + true + true + 580 + Method for solving optimal power flow. + true + + + 286 + 90 + 4 + Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 100 + If transmission line constraints are enabled. + true + + + 287 + 90 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 976 + If transmission constraints should all be formulated upfront rather than checked iteratively. + true + + + 288 + 90 + 6 + Constraint Voltage Threshold + 4 + 0 + >=0 + true + true + 99 + Voltage level at which thermal limits are modelled. + true + + + 289 + 90 + 7 + Constraint Limit Penalty + 33 + -1 + true + true + 2685 + Penalty for exceeding line and transformer limits. + true + + + 290 + 90 + 8 + Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 324 + If interface constraints are enabled. + true + + + 291 + 90 + 9 + Enforce Limits On Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 178 + If lines and transformers in interfaces should have their limits enforced regardless of voltage + true + + + 292 + 90 + 10 + Interface Limit Penalty + 33 + -1 + true + true + 2686 + Penalty for exceeding interface flow limits. + true + + + 293 + 90 + 11 + Losses Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 387 + If transmission losses are enabled. + true + + + 294 + 90 + 12 + Loss Voltage Threshold + 4 + 0 + >=0 + true + true + 386 + Voltage level at which losses are modelled. + true + + + 295 + 90 + 13 + Loss Method + 0 + 0 + In (0,1,3,4,5) + 0;"Auto";1;"Piecewise Linear";3;"Conic";4;"Successive MLF";5;"Single-pass GPF" + true + true + 384 + Formulation method used to model transmission losses. + true + + + 296 + 90 + 14 + Max Loss Relative Error + 0 + 0 + >=0 + true + true + 379 + Maximum allowed relative error in the piecewise linear loss function. + true + + + 297 + 90 + 15 + Max Loss Absolute Error + 0 + 0 + >=0 + true + true + 1915 + Maximum allowed absolute error in the piecewise linear loss function. + true + + + 298 + 90 + 16 + Max Loss Tranches + 0 + 100 + >=1 + true + true + 438 + Maximum number of tranches in piecewise linear line loss function. + true + + + 299 + 90 + 17 + Loss Tolerance + 0 + 1E-05 + >=0 + true + true + 385 + Relative gap between real and modelled losses. + true + + + 300 + 90 + 18 + Max Loss Iterations + 0 + 50 + >=1 + true + true + 437 + Maximum number of iterations for converging the losses. + true + + + 301 + 90 + 19 + Max Embedded Loss Iterations + 0 + 2 + >=0 + true + true + 422 + Maximum number of iterations for removing embedded losses from load. + true + + + 302 + 90 + 20 + Detect Non-physical Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 890 + If non-physical losses should be detected (in the piecewise linear loss model) and removed via mixed-integer programming + true + + + 303 + 90 + 21 + PTDF Method + 0 + 0 + In (0,1,2,3,4) + 0;"Single Slack Bus";1;"Distributed Slack (Reference Load)";3;"Distributed Slack (Generation Capacity)";4;"Distributed Slack (Reference Generation)" + true + true + 636 + Method for computation of shift factors + true + + + 304 + 90 + 22 + Flow PTDF Threshold + 0 + 0.01 + >=0 + true + true + 637 + Minimum absolute value of PTDF as coefficient in transmission flow constraints. + true + + + 305 + 90 + 23 + Wheeling PTDF Threshold + 0 + 0.05 + >=0 + true + true + 1371 + Minimum absolute value of PTDF as coefficient in wheeling definitions. + true + + + 306 + 90 + 24 + LODF Threshold + 0 + 0.03 + >=0 + true + true + 2237 + Minimum absolute value of LODF to be used in contingency flow constraints. + true + + + 307 + 90 + 25 + Cache Transmission Matrices + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1955 + Cache the transmission matrices to disk for future use. + true + + + 308 + 90 + 26 + Reactance Cut-off + 0 + 0 + true + true + 668 + Smallest allowable reactance before line is removed during the OF. + true + + + 309 + 90 + 27 + Allow Dump Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 9 + Model Dump Energy in OF + true + + + 310 + 90 + 28 + Allow Unserved Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 10 + Model Unserved Energy in OF + true + + + 311 + 90 + 29 + Energy Balance Violation Variables + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2048 + Include violation variables on the transmission system energy balance equations + true + + + 312 + 90 + 30 + Bound Node Phase Angles + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1029 + If the Node [Phase Angle] values are subject to bounds in absolute value. + true + + + 313 + 90 + 31 + Max Absolute Phase Angle + 53 + 6.28 + Between 0 And 6.28318530717958 + true + true + 1030 + Maximum absolute value allowed for any Node [Phase Angle]. + true + + + 314 + 90 + 32 + Internal VoLL + 14 + 100000 + Between 0 And 1E+9 + true + true + 325 + Value of Lost Load used internally + true + + + 315 + 90 + 33 + USE Threshold + 12 + 100 + Between 0 And 100 + true + true + 1479 + Formulates the [Unserved Energy] variables on the top x% nodes (highest load). + true + + + 316 + 90 + 34 + Rental Method + 0 + 0 + In (0,1) + 0;"Point-to-Point";1;"Flow Gate" + true + true + 681 + Method used to calculate transmission rentals + true + + + 317 + 90 + 35 + Interruption Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 328 + If region interruption sharing is activated. + true + + + 318 + 90 + 36 + Report Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 684 + If transmission reporting is enabled. + true + + + 319 + 90 + 37 + Report Voltage Threshold + 4 + 0 + >=0 + true + true + 687 + Voltage level at which transmission reporting begins. + true + + + 320 + 90 + 38 + Report Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 686 + If all flows on lines selected interfaces are reported + true + + + 321 + 90 + 39 + Report All Interregional Flows + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 683 + If line flows between regions should be reported regardless of kV. + true + + + 322 + 90 + 40 + Report All Interzonal Flows + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1512 + If line flows between zones should be reported regardless of kV. + true + + + 323 + 90 + 41 + Report Injection and Load Nodes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 685 + If all injection and load buses (nodes) are reported on (regardless of voltage) + true + + + 324 + 90 + 42 + Convergence Report Level + 0 + 1 + In (0,1,2) + 0;"None";1;"Normal";2;"Verbose" + true + true + 114 + Level of screen reporting during transmission convergence iterations (none, normal, verbose) + true + + + 325 + 90 + 43 + SCUC Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 727 + If security constrained unit commitment (SCUC) is enabled + true + + + 326 + 90 + 44 + SCUC Constraint Voltage Threshold + 4 + 0 + >=0 + true + true + 726 + Voltage level at which SCUC line thermal limits are modelled. + true + + + 327 + 90 + 45 + SCUC Interface Constraints Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1032 + If enabled interface constraints are monitored in SCUC. + true + + + 328 + 90 + 46 + Enforce N-1 Contingencies + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1480 + If N-1 contingencies should be automatically enforced. + true + + + 329 + 90 + 47 + N-1 Contingency Voltage Threshold + 4 + 0 + >=0 + true + true + 1481 + Voltage level at which N-1 contingencies are automatically enforced. + true + + + 330 + 90 + 48 + Contingency Monitoring Threshold + 12 + 100 + Between 0 And 100 + true + true + 1627 + Monitor only this percentage of most affected Line/Transformer/Interface flows. + true + + + 331 + 90 + 49 + Contingency Limit Penalty + 33 + -1 + true + true + 2050 + Penalty for exceeding contingency flow limits. + true + + + 332 + 90 + 50 + Limit Threshold + 0 + 0.95 + Between 0 And 1 + true + true + 728 + Line, Transformer, or Interface flow loading threshold above which limits are added. + true + + + 333 + 90 + 51 + Limit Bootstrap Initial Threshold + 0 + 2 + >=0 + true + true + 1016 + Initial value of [Limit Threshold] during transmission constraint bootstrap phase. + true + + + 334 + 90 + 52 + Limit Bootstrap Threshold Decrement + 0 + 0.25 + Between 0 And 1 + true + true + 1017 + [Limit Threshold] decrement used for each iteration of transmission bootstrap phase. + true + + + 335 + 90 + 53 + Max Limit Iterations + 0 + 1000 + >=0 + true + true + 1018 + Maximum number of iterations during any one call to enforce transmission limits. + true + + + 336 + 90 + 54 + Filter Limits + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2006 + If transmission limits are filtered using extreme flows from MT Schedule + true + + + 337 + 90 + 55 + Zero Limit Treatment + 0 + 0 + In (0,1) + 0;"Out-of-service";1;"Unlimited" + true + true + 2120 + Treatment of AC elements with zero limits + true + + + 338 + 90 + 56 + Calculate Node LPF from Load + 0 + 0 + In (0,1) + 0;"No";1;"Yes" + true + true + 2140 + Automatically calculate Node LPF from input Load property + true + + + 339 + 91 + 1 + Dispatch by Power Station + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 148 + If generators in power stations should be treated in aggregate for dispatch. + true + + + 340 + 91 + 2 + Unit Commitment Optimality + 0 + 0 + In (0,1,2,3) + 0;"Linear";1;"Rounded Relaxation";2;"Integer" + true + true + 811 + Unit commitment integerization scheme. + true + + + 341 + 91 + 3 + Rounding Up Threshold + 0 + 0.5 + Between 0 And 1 + true + true + 711 + Threshold at which non-integers are rounded up. + true + + + 342 + 91 + 4 + Rounded Relaxation Commitment Model + 0 + 0 + In (0,1) + 0;"Central";1;"Self" + true + true + 1891 + Determines if the unit commitment decisions are made centrally or by self-commitment + true + + + 343 + 91 + 5 + Rounded Relaxation Tuning + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1151 + If the Rounded Relaxation method should self-tune the [Rounding Up Threshold]. + true + + + 344 + 91 + 6 + Rounded Relaxation Start Threshold + 0 + 0.25 + >=0 + true + true + 1152 + Start value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 345 + 91 + 7 + Rounded Relaxation End Threshold + 0 + 0.75 + <=1 + true + true + 1153 + End value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 346 + 91 + 8 + Rounded Relaxation Threshold Increment + 0 + 0.05 + >=0.01 + true + true + 1154 + Increment value for [Rounding Up Threshold] when Rounded Relaxation is running self-tune. + true + + + 347 + 91 + 9 + DP Capacity Factor Threshold + 12 + 20 + >=0 + true + true + 910 + Minimum capacity factor for generators to be dispatched by the DP + true + + + 348 + 91 + 10 + DP Capacity Factor Error Threshold + 12 + 20 + >=0 + true + true + 889 + Error in DP capacity factor compared to MT Schedule capacity factor below which the DP solution is accepted + true + + + 349 + 91 + 11 + Capacity Factor Constraint Basis + 0 + 0 + In (0,1) + 0;"Installed Capacity";1;"Rated Capacity" + true + true + 61 + Basis for capacity factor constraints. + true + + + 350 + 91 + 12 + Forced Outage Relaxes Min Down Time + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1860 + If ramp constraints should all be formulated upfront rather than checked iteratively. + true + + + 351 + 91 + 13 + Gas Demand Resolution + 0 + 0 + In (0,1,2) + 0;"Interval";1;"Hour";2;"Day" + true + true + 1964 + Resolution of input gas demands + true + + + 352 + 91 + 14 + Heat Rate Detail + 0 + 0 + In (0,1,2) + 0;"Detailed";1;"Simple";2;"Simplest" + true + true + 1132 + Level of detail for Generator heat rate modelling + true + + + 353 + 91 + 15 + Unit Commitment Heat Rate Detail + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2445 + If modeling fully detailed heat rates for unit commitment. Otherwise perform a two-pass UC/ED. + true + + + 354 + 91 + 16 + Integers in Look-ahead + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + true + true + 1422 + Controls when the look-ahead contains integers for unit commitment and other decisions. + true + + + 355 + 91 + 17 + Cooling States Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2130 + If generator unit cooling states are enabled + true + + + 356 + 91 + 18 + Run Up and Down Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2106 + If generator run up and run down are modeled + true + + + 357 + 91 + 19 + Transitions Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2108 + If generator transitions are modeled + true + + + 358 + 91 + 20 + Start Cost Method + 0 + 0 + In (0,1) + 0;"Optimize";1;"Calculate" + true + true + 993 + Method for handling start costs in the mathematical formulation (integrate into the formulation, or calculate ex-post) + true + + + 359 + 91 + 21 + Start and Stop Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2105 + If generator start up and shut down are modeled + true + + + 360 + 91 + 22 + Pump and Generate + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1943 + If pumped storage/battery is allowed to pump/charge and generate/discharge simultaneously. + true + + + 361 + 91 + 23 + Fuel Use Function Precision + 0 + 0 + >=0 + true + true + 226 + Precision for calculation of linear approximation to fuel function. + true + + + 362 + 91 + 24 + Max Heat Rate Tranches + 0 + 10 + Between 1 And 100 + true + true + 432 + Maximum number of tranches in the fuel function piecewise linear approximation + true + + + 363 + 91 + 25 + Min Heat Rate Tranche Size + 0 + 0 + >=0 + true + true + 2567 + Minimum tranche size in fuel function piecewise linear approximation + true + + + 364 + 91 + 26 + Heat Rate Error Method + 0 + 2 + In (0,1,2,3,4) + 0;"Throw Error";1;"Warn Adjust Report Raw";2;"Warn Adjust Report Adjusted";3;"No Warn Adjust";4;"Allow Non-convex" + true + true + 262 + Method for handling non-convex heat rate functions. + true + + + 365 + 91 + 27 + Formulate Upfront + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 976 + If production constraints should all be formulated upfront rather than checked iteratively. + true + + + 366 + 91 + 28 + Formulate Ramp Upfront + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1370 + If ramp constraints should all be formulated upfront rather than checked iteratively. + true + + + 367 + 91 + 29 + Warm Up Process Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2539 + If modeling of Facility Warm Up Process is enabled + true + + + 368 + 92 + 1 + Equilibrium Model + 0 + 0 + In (0,1,2) + 0;"None";1;"LRMC";2;"Nash-Cournot" + true + true + 179 + Equilibrium Model. Optimizes generation / pricing position of portfolios over the short or medium term. + true + + + 369 + 92 + 2 + Default Elasticity + 56 + -0.2 + <0 + true + true + 132 + Default price elasticity of demand + true + + + 370 + 92 + 3 + Demand Scaling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1447 + If Nash-Cournot result scales input loads to reflect price elasticity of demand. + true + + + 371 + 92 + 4 + Revenue Targeting Method + 0 + 0 + In (0,1,2) + 0;"Increment Only";1;"Decrement Only";2;"Increment or Decrement" + true + true + 699 + Method used in adjusting offers to meet revenue targets. + true + + + 372 + 92 + 5 + Revenue Targeting Iterations + 0 + 1 + >=1 + true + true + 698 + Number of iterations used to recover fixed costs. + true + + + 373 + 92 + 6 + Pricing Strategy + 0 + 0 + In (0,1,2,3) + 0;"Off";1;"No Congestion";2;"Regional";3;"Zonal" + true + true + 621 + The Bertrand Competition strategy used to set offer/bid prices each interval. + true + + + 374 + 92 + 7 + Bertrand Detect Active Ramp Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1416 + If the Bertrand algorithm should detect when generators are constrained due to ramping. + true + + + 375 + 92 + 8 + Bertrand OOMOD Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1417 + If the Bertrand algorithm should seek to maximize profits by out-of-merit-order dispatch. + true + + + 376 + 92 + 9 + Epsilon + 0 + 0.01 + >0 + true + true + 442 + Minimum margin between competing offer prices or between offer prices and the price cap. + true + + + 377 + 92 + 10 + RSI Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 715 + If Residual Supply Index method is used. + true + + + 378 + 92 + 11 + RSI Bid-Cost Mark-up Method + 0 + 0 + In (0,1,2) + 0;"Variable by Merit Order";1;"Variable by Supply Capacity";2;"Uniform" + true + true + 713 + Method used in applying calculated bid cost markups to companies then generating units. + true + + + 379 + 92 + 12 + No Load Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 558 + If marginal cost bid should be adjusted to account for no-load cost + true + + + 380 + 92 + 13 + Mark-up Min Stable Level + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 410 + If mark-up should be applied to the full range of unit output including [Min Stable Level]. + true + + + 381 + 92 + 14 + Start Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1869 + If mark-ups are calculated to recover generator start cost + true + + + 382 + 92 + 15 + Start Cost Mark-up Production Bands + 0 + 100 + >=1 + true + true + 1870 + Number of bands of production used in recovery of a start cost across each window + true + + + 383 + 92 + 16 + Start Cost Mark-up Window + 6 + 24 + true + true + 1871 + Number of hours over which a start cost should be recovered using mark-up on production + true + + + 384 + 92 + 17 + Start Cost Mark-up Method + 0 + 0 + In (0,1) + 0;"Co-optimize";1;"Simple" + true + true + 2565 + Algorithm used to apply start cost mark-ups + true + + + 385 + 92 + 18 + Contracts Optimize Offers + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 112 + If contract position should be considered when offering generation. + true + + + 386 + 92 + 19 + Contracts Settlement Method + 0 + 0 + In (0,1,2) + 0;"Fixed";1;"Pro-rata";2;"Least-cost" + true + true + 113 + Method of calculating contract quantities for settlement + true + + + 387 + 92 + 20 + Contracts Handoff Point + 0 + 0 + In (0,1) + 0;"Purchaser's Price";1;"Generator's Price" + true + true + 111 + Location of hand-off for setting of contract settlement price + true + + + 388 + 92 + 21 + Market Trading Format + 0 + 1 + In (0,1) + 0;"Bilateral";1;"POOLCO" + true + true + 407 + Trading format for Cournot model (Bilateral=No Arbitrage, POOLCO=With Arbitrage). + true + + + 389 + 92 + 22 + Non Price Setting Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2107 + If non-price setting plant should be fixed prior to the final price calculation + true + + + 390 + 93 + 1 + SOLVER + 0 + 4 + In (0,1,2,3,4,6,7) + 0;"MOSEK";1;"CPLEX";2;"Xpress-MP";3;"SoPlex/SCIP";4;"Gurobi";6;"Default";7;"GLPK" + true + true + 755 + SOLVER engine used by PLEXOS. + true + + + 391 + 93 + 2 + Small LP Optimizer + 0 + 0 + Between 0 And 9 + 0;"Auto";1;"Barrier";2;"Conic";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";7;"Mixed Integer";8;"Nonconvex";9;"Concurrent" + true + true + 750 + Optimizer used to solve 'small' liner programming problems. + true + + + 392 + 93 + 3 + Small LP Nonzero Count + 0 + 250000 + >0 + true + true + 749 + Maximum number of non-zeros in a 'small' linear programming problem. + true + + + 393 + 93 + 4 + Cold Start Optimizer 1 + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 83 + First priority optimizer used to solve problems from a cold-start. + true + + + 394 + 93 + 5 + Cold Start Optimizer 2 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 84 + Second priority optimizer used to solve problems from a cold-start. + true + + + 395 + 93 + 6 + Cold Start Optimizer 3 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 85 + Third priority optimizer used to solve problems from a cold-start. + true + + + 396 + 93 + 7 + Hot Start Optimizer 1 + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 271 + First priority optimizer used to solve problems from a hot-start. + true + + + 397 + 93 + 8 + Hot Start Optimizer 2 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 272 + Second priority optimizer used to solve problems from a hot-start. + true + + + 398 + 93 + 9 + Hot Start Optimizer 3 + 0 + 0 + In (0,1,4,5,6) + 0;"None";1;"Barrier";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex" + true + true + 273 + Third priority optimizer used to solve problems from a hot-start. + true + + + 399 + 93 + 10 + Concurrent Mode + 0 + 0 + In (0,1) + 0;"Deterministic";1;"Opportunistic" + true + true + 2693 + Mode for the concurrent optimizer + true + + + 400 + 93 + 11 + Presolve + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2773 + Toggles on/off solver presolve + true + + + 401 + 93 + 12 + Scaling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2774 + Toggles on/off solver problem scaling + true + + + 402 + 93 + 13 + Crossover + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2768 + If crossover is used to transform the interior solution produced by barrier into a basic solution + true + + + 403 + 93 + 14 + Feasibility Tolerance + 0 + 0 + >=0 + true + true + 2446 + Allowable violation of variable bounds (0 = solver default value) + true + + + 404 + 93 + 15 + Optimality Tolerance + 0 + 0 + >=0 + true + true + 2653 + Optimality tolerance (0 = solver default value) + true + + + 405 + 93 + 16 + Objective Scalar + 0 + 1 + >0 + true + true + 2651 + Scale the objective function internally by this factor + true + + + 406 + 93 + 17 + Objective Tolerance + 0 + 0 + >=0 + true + true + 2652 + Smallest allowable objective function coefficient + true + + + 407 + 93 + 18 + Maximum Threads + 0 + -1 + >=-1 + true + true + 468 + Maximum number of threads used simultaneously by all simplex and interior point optimizers, where -1 means all available threads. + true + + + 408 + 93 + 19 + MIP Root Optimizer + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 516 + Optimizer used to solve the linear relaxation of a mixed-integer program. + true + + + 409 + 93 + 20 + MIP Node Optimizer + 0 + 0 + In (0,1,4,5,6,9,10) + 0;"Auto";1;"Barrier";10;"Barrier Homogeneous";4;"Primal Simplex";5;"Dual Simplex";6;"Free Simplex";9;"Concurrent" + true + true + 513 + Optimizer used at the nodes of the branch and bound algorithm. + true + + + 410 + 93 + 21 + MIP Relative Gap + 0 + 0.0001 + >=0 + true + true + 515 + Declare the integer solution optimal when this gap is reached between the current integer solution and best-bound linear relaxation (this is not a measure of optimality). + true + + + 411 + 93 + 22 + MIP Improve Start Gap + 0 + 0 + >=0 + true + true + 1309 + Switch strategy to improving the best integer solution when this gap is reached. + true + + + 412 + 93 + 23 + MIP Absolute Gap + 0 + 0 + >=0 + true + true + 2447 + Absolute tolerance on the gap between the best integer objective and the objective of the best node remaining + true + + + 413 + 93 + 24 + MIP Max Relative Gap + 0 + 0 + >=0 + true + true + 2646 + When set to a value greater than zero, the MIP Max Time is treated as a soft constraint with optimization continuing until the MIP Max Relative Gap is reached. + true + + + 414 + 93 + 25 + MIP Max Time + 5 + -1 + >=-1 + true + true + 511 + Maximum time in mixed integer programming algorithm + true + + + 415 + 93 + 26 + MIP Max Relaxation Repair Time + 5 + -1 + >=-1 + true + true + 1905 + Maximum time allowed in repairing an infeasible mixed integer programming problem + true + + + 416 + 93 + 27 + MIP Maximum Threads + 0 + -1 + >=-1 + true + true + 512 + Maximum number of threads used by the mixed integer optimizer, where -1 means all available threads. + true + + + 417 + 93 + 28 + MIP Start Solution + 0 + 1 + Between 0 And 2 + 0;"Never";1;"Within Step";2;"Within And Between Steps" + true + true + 1945 + MIP solver will be warm started with previous solutions according to this setting. + true + + + 418 + 93 + 29 + MIP Focus + 0 + 0 + In (0,1,2,3) + 0;"Balanced";1;"Feasibility";2;"Optimality";3;"Best Bound" + true + true + 2659 + High-level solution strategy for the MIP solver + true + + + 419 + 93 + 30 + Carry over MIP Time + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2448 + If unused MIP Max Time is carried over to the next MIP solve allowing more time on harder problems + true + + + 420 + 93 + 31 + MIP Max Time with Carry over + 5 + -1 + >=-1 + true + true + 2449 + Maximum time in mixed integer programming algorithm including any unused time carried over + true + + + 421 + 93 + 32 + MIP Hard Stop + 5 + -1 + >=-1 + true + true + 2770 + Hard limit on the mixed integer programming time when using MIP Max Relative Gap and MIP Max Time is a soft limit + true + + + 422 + 93 + 33 + MIP Interrupt + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2802 + If the MIP search can be interrupted by pressing the CTRL-P key combination + true + + + 423 + 93 + 34 + Hint Mode + 0 + 0 + In (0,1,2) + 0;"Start";1;"Hint";2;"Fixed" + true + true + 2772 + Controls how variable hints are used by the solver + true + + + 424 + 93 + 35 + Monitoring Periodic Clearing + 0 + 0 + >=0 + true + true + 2694 + Clear monitored constraints and variables from the formulation periodically (number of steps) + true + + + 425 + 93 + 36 + Monitoring Maximum Threads + 0 + -1 + >=-1 + true + true + 2450 + Maximum number of threads for monitored constraint iterations, where -1 means all available threads. + true + + + 426 + 93 + 37 + Maximum Monitored MIP Iterations + 0 + -1 + true + true + 2045 + Maximum number of monitored row/column iterations with MIP enabled + true + + + 427 + 93 + 38 + Maximum Parallel Tasks + 0 + -1 + >=-1 + true + true + 1918 + Maximum number of parallel optimizations run concurrently, where -1 means one task per CPU. + true + + + 428 + 93 + 39 + Feasibility Repair Failure + 0 + 0 + In (0,1) + 0;"Stop";1;"Continue" + true + true + 1989 + Action to take if an infeasible problem cannot be repaired. + true + + + 429 + 94 + 1 + Clear Existing + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1022 + Clear (delete) existing diagnostic files from the solution folder. + true + + + 430 + 94 + 2 + Task Size + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1023 + Print the size of the optimization task. + true + + + 431 + 94 + 3 + Task Components + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 962 + Print a summary of the formulation elements by class. + true + + + 432 + 94 + 4 + LP Progress + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 391 + Show progress messages from the LP/QP solver + true + + + 433 + 94 + 5 + MIP Progress + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 514 + Show progress messages from the MIP solver + true + + + 434 + 94 + 6 + Solver Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 756 + Print a summary of the solution status, objective function value, etc for each mathematical program solved. + true + + + 435 + 94 + 7 + Solution Status + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1171 + Status of the solution to each mathematical programming problem. + true + + + 436 + 94 + 8 + Times + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1024 + Print the time taken for each activity. + true + + + 437 + 94 + 9 + Sample Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1025 + Print summary for each sample of a multi-sample run. + true + + + 438 + 94 + 10 + Step Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1026 + Print summary for each step of a multi-step run. + true + + + 439 + 94 + 11 + Performance Summary + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1893 + Print performance summary at the completion of each simulation phase. + true + + + 440 + 94 + 12 + Step From + 0 + 1 + >=1 + true + true + 1418 + Limit diagnostic file writing to step numbers starting at this number. + true + + + 441 + 94 + 13 + Step To + 0 + -1 + >=-1 + true + true + 1419 + Limit diagnostic file writing to step numbers ending at this number (-1 means infinity). + true + + + 442 + 94 + 14 + Sample From + 0 + 1 + >=1 + true + true + 1883 + Limit diagnostic file writing to sample numbers starting at this number. + true + + + 443 + 94 + 15 + Sample To + 0 + -1 + >=-1 + true + true + 1884 + Limit diagnostic file writing to sample numbers ending at this number (-1 means infinity). + true + + + 444 + 94 + 16 + LP Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 390 + Write math programs to disk in LP text format + true + + + 445 + 94 + 17 + MPS Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1035 + Write math programs to disk in MPS text format + true + + + 446 + 94 + 18 + Solution Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 754 + Write math program solutions to disk in text format + true + + + 447 + 94 + 19 + Generic Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1033 + Use generic names in math program files + true + + + 448 + 94 + 20 + Binary Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 38 + Write math programs to disk in binary format + true + + + 449 + 94 + 21 + Use Generic Writer + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1895 + Use generic writer for LP and solution files + true + + + 450 + 94 + 22 + Sort Row Column Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1896 + Generic writer will sort row and columns names + true + + + 451 + 94 + 23 + Standardize Names + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1897 + Generic writer will standardize names in LP and SOL files + true + + + 452 + 94 + 24 + Strip Model Name + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1898 + Generic writer will strip out the Model name from LP and SOL files + true + + + 453 + 94 + 25 + Algebraic + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1899 + Write LP files in algebraic format + true + + + 454 + 94 + 26 + Skip Zero Values + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1900 + Generic writer will print only non-zero valued primal and dual variables in SOL files + true + + + 455 + 94 + 27 + Zero Tolerance LP + 0 + 0 + >=0 + true + true + 1901 + Generic writer zero value tolerance for LP file writing + true + + + 456 + 94 + 28 + Zero Tolerance SOL + 0 + 0 + >=0 + true + true + 1902 + Generic writer zero value tolerance for SOL file writing + true + + + 457 + 94 + 29 + Decimal Places LP + 0 + 6 + >=0 + true + true + 1903 + Generic writer decimal places for LP file writing + true + + + 458 + 94 + 30 + Decimal Places SOL + 0 + 6 + >=0 + true + true + 1904 + Generic writer decimal places for SOL file writing + true + + + 459 + 94 + 31 + Infeasibility LP Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2568 + Write infeasible and repaired math programs to disk in text format + true + + + 460 + 94 + 32 + Infeasibility MPS Files + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2569 + Write infeasible and repaired math programs to disk in MPS format + true + + + 461 + 94 + 33 + Max Infeasibility Log Lines + 0 + -1 + >=-1 + true + true + 1421 + Maximum number of infeasibility diagnostic lines written to the screen and log file. + true + + + 462 + 94 + 34 + IIS + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2225 + Compute the irreducibly inconsistent set (IIS) for each infeasibility and write to disk in text format + true + + + 463 + 94 + 35 + Feasibility Repair Weight + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1117 + Write the weights used in feasibility repair for each variable/constraint class + true + + + 464 + 94 + 36 + Database Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1922 + Output the database loading process to log file. + true + + + 465 + 94 + 37 + Licensing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1923 + Writes details of licenses checked out + true + + + 466 + 94 + 38 + Computer Information + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1925 + Output computer information. + true + + + 467 + 94 + 39 + Data File Read + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1924 + Output data file information to log file. + true + + + 468 + 94 + 40 + Monitored Iterations Summary + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2046 + Print a summery message after iterations of row/column monitoring + true + + + 469 + 94 + 41 + Monitored Iterations + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2047 + Print messages for every iteration of row/column monitoring + true + + + 470 + 94 + 42 + Bertrand Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 30 + Write diagnostics for the Bertrand pricing algorithm + true + + + 471 + 94 + 43 + Revenue Recovery + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 697 + Write diagnostics for the LRMC recovery algorithm + true + + + 472 + 94 + 44 + Bid-Cost Mark-up + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 32 + Write diagnostics for RSI bid cost markup calculations + true + + + 473 + 94 + 45 + New Entry + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 554 + Write diagnostics for MT Schedule new entry calculations + true + + + 474 + 94 + 46 + Shift Factors + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 745 + Write the computed shift factors (PTDF) to a diagnostic file + true + + + 475 + 94 + 47 + Unserved Energy + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 825 + Write diagnostics each time USE occurs at a node + true + + + 476 + 94 + 48 + Interruption Sharing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 328 + Write diagnostics for interruption sharing + true + + + 477 + 94 + 49 + Network Traversal + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1944 + Invokes network reduction algorithm which can improve performance on large-scale networks. + true + + + 478 + 94 + 50 + Transmission Topology + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1921 + Write a summary of the transmission topology to the log + true + + + 479 + 94 + 51 + Transmission Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 797 + Write diagnostics for convergence of the quadratic loss method + true + + + 480 + 94 + 52 + Congestion Charges + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 956 + Write diagnostics for Node.[Congestion Charge] calculations + true + + + 481 + 94 + 53 + Marginal Loss Charges + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 957 + Write diagnostics for Node.[Marginal Loss Charge] calculations + true + + + 482 + 94 + 54 + Binding Contingencies + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 958 + Write diagnostics for binding Contingency constraints + true + + + 483 + 94 + 55 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 810 + Write diagnostics for the Rounded Relaxation unit commitment algorithm + true + + + 484 + 94 + 56 + Constraint Decomposition + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 95 + Write diagnostics for constraint decomposition in MT Schedule + true + + + 485 + 94 + 57 + Constraint Rollover + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 98 + Write diagnostics for constraint RHS carry-over in ST Schedule + true + + + 486 + 94 + 58 + Storage Decomposition + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1620 + Write diagnostics for storage decomposition + true + + + 487 + 94 + 59 + Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 804 + Write diagnostics for uplift and Uniform Pricing + true + + + 488 + 94 + 60 + Marginal Unit + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 671 + Execute region marginal unit diagnostic (this is an active diagnostic) + true + + + 489 + 94 + 61 + Marginal Unit Transmission Detail + 0 + 0 + In (0,1) + 0;"Regional";1;"System" + true + true + 1755 + Transmission area for marginal unit diagnostic + true + + + 490 + 94 + 62 + Marginal Unit Increment + 1 + -1 + true + true + 1223 + Increment used for load in the marginal unit diagnostic. + true + + + 491 + 94 + 63 + Marginal Expansion Unit + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1222 + Run algorithm to calculate the marginal generating unit for expansion (LT Plan). + true + + + 492 + 94 + 64 + Marginal Expansion Increment + 1 + 1000 + true + true + 1224 + Increment used for load in the region marginal expansion unit diagnostic. + true + + + 493 + 94 + 65 + Region Supply + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 672 + Execute region supply diagnostic (this is an active diagnostic) + true + + + 494 + 94 + 66 + Annuities + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 15 + Write diagnostics for annuity calculations + true + + + 495 + 94 + 67 + NPV + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1621 + Write diagnostics for LT Plan NPV of optimal plan + true + + + 496 + 94 + 68 + Embedded Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 870 + Write diagnostics for embedded loss iterations + true + + + 497 + 94 + 69 + Outages + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 895 + Write diagnostics for generator and line outages + true + + + 498 + 94 + 70 + Random Number Seed + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 662 + Write out the Random Number Seed used for each Generator and Line + true + + + 499 + 94 + 71 + Interleaved + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1375 + Write diagnostics for Model Interleaved run mode + true + + + 500 + 94 + 72 + Heat Rate + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 260 + Write diagnostics for Generator Heat Rate curve fitting and non-convex corrections. + true + + + 501 + 94 + 73 + Objective Function + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1420 + Write diagnostics for non-zero terms in the objective function. + true + + + 502 + 94 + 74 + Future Cost Function + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1503 + Write diagnostics for the future cost function. + true + + + 503 + 94 + 75 + Historical Sampling + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1906 + Write the historical samples. + true + + + 504 + 94 + 76 + Scenario Tree + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1681 + Write diagnostics for the scenario tree + true + + + 505 + 94 + 77 + Sample Weights + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1682 + Write diagnostics for the sample weights + true + + + 506 + 94 + 78 + SDDP Convergence + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 2434 + Write SDDP convergence diagnostic file + true + + + 507 + 95 + 1 + Report + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1354 + If enabled the list object is passed into the solution file and can be used to build queries in the solution viewer + true + + + 508 + 95 + 2 + Filter + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1355 + If enabled the list object becomes a filter for the input interface. + true + + + 509 + 95 + 3 + Inclusive Empty + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1356 + This means that an empty collection implies all objects are included. + true + + + 510 + 95 + 4 + Transient + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + true + true + 1357 + Transient lists are not saved in the XML but only exist in the current session. + true + + + 6 + 98 + 43831 + + + 6 + 99 + 4 + + + 6 + 100 + 1 + + + 6 + 106 + 43831 + + + 6 + 111 + 366 + + + 7 + 98 + 43831 + + + 7 + 99 + 4 + + + 7 + 100 + 10 + + + 7 + 106 + 43831 + + + 8 + 119 + 0 + + + 11 + 126 + -1 + + + 11 + 127 + -1 + + + 12 + 176 + 10 + + + 15 + 278 + 0 + + + 17 + 285 + 1 + + + 17 + 288 + 230 + + + 17 + 309 + 0 + + + 17 + 310 + 0 + + + 17 + 319 + 230 + + + 18 + 134 + 20 + + + 1 + 1 + 0 + - + + + 2 + 2 + 0 + - + + + 3 + 3 + 0 + - + + + 4 + 4 + 0 + - + + + 5 + 5 + 0 + - + + + 6 + 6 + 0 + - + + + 7 + 7 + 0 + - + + + 8 + 8 + 0 + - + + + 9 + 9 + 0 + - + + + 10 + 10 + 0 + - + + + 11 + 11 + 0 + - + + + 12 + 12 + 0 + - + + + 13 + 13 + 0 + - + + + 14 + 14 + 0 + - + + + 15 + 15 + 0 + - + + + 16 + 16 + 0 + - + + + 17 + 17 + 0 + - + + + 18 + 18 + 0 + - + + + 19 + 19 + 0 + - + + + 20 + 20 + 0 + - + + + 21 + 21 + 0 + - + + + 22 + 22 + 0 + - + + + 23 + 23 + 0 + - + + + 24 + 24 + 0 + - + + + 25 + 25 + 0 + - + + + 26 + 26 + 0 + - + + + 27 + 27 + 0 + - + + + 28 + 28 + 0 + - + + + 29 + 29 + 0 + - + + + 30 + 30 + 0 + - + + + 31 + 31 + 0 + - + + + 32 + 32 + 0 + - + + + 33 + 33 + 0 + - + + + 34 + 34 + 0 + - + + + 35 + 35 + 0 + - + + + 36 + 36 + 0 + - + + + 37 + 37 + 0 + - + + + 38 + 38 + 0 + - + + + 39 + 39 + 0 + - + + + 40 + 40 + 0 + - + + + 41 + 41 + 0 + - + + + 42 + 42 + 0 + - + + + 43 + 43 + 0 + - + + + 44 + 44 + 0 + - + + + 45 + 45 + 0 + - + + + 46 + 46 + 0 + - + + + 47 + 47 + 0 + - + + + 48 + 48 + 0 + - + + + 49 + 49 + 0 + - + + + 50 + 50 + 0 + - + + + 51 + 51 + 0 + - + + + 52 + 52 + 0 + - + + + 53 + 53 + 0 + - + + + 54 + 54 + 0 + - + + + 55 + 55 + 0 + - + + + 56 + 56 + 0 + - + + + 57 + 57 + 0 + - + + + 58 + 58 + 0 + - + + + 59 + 59 + 0 + - + + + 60 + 60 + 0 + - + + + 61 + 61 + 0 + - + + + 62 + 62 + 0 + - + + + 63 + 63 + 0 + - + + + 64 + 64 + 0 + - + + + 65 + 65 + 0 + - + + + 66 + 66 + 0 + - + + + 67 + 67 + 0 + - + + + 68 + 68 + 0 + - + + + 69 + 69 + 0 + - + + + 70 + 70 + 0 + - + + + 71 + 71 + 0 + - + + + 72 + 72 + 0 + - + + + 73 + 73 + 0 + - + + + 74 + 74 + 0 + - + + + 75 + 75 + 0 + - + + + 76 + 76 + 0 + - + + + 77 + 77 + 0 + - + + + 78 + 78 + 0 + - + + + 79 + 79 + 0 + - + + + 80 + 80 + 0 + - + + + 81 + 81 + 0 + - + + + 82 + 82 + 0 + - + + + 83 + 83 + 0 + - + + + 84 + 84 + 0 + - + + + 85 + 85 + 0 + - + + + 86 + 86 + 0 + - + + + 87 + 87 + 0 + - + + + 88 + 88 + 0 + - + + + 89 + 89 + 0 + - + + + 90 + 90 + 0 + - + + + 91 + 91 + 0 + - + + + 92 + 92 + 0 + - + + + 93 + 93 + 0 + - + + + 94 + 94 + 0 + - + + + 95 + 95 + 0 + - + + + 96 + 96 + 0 + - + + + 1 + System + 1 + true + 1 + The integrated energy system + + + 2 + Generator + 2 + true + 22 + Generating unit, or collection of like generating units + + + 3 + Power Station + 2 + false + 23 + Collection of Generators that can be dispatched together + + + 4 + Fuel + 2 + true + 18 + Fuel for a thermal generating unit + + + 5 + Fuel Contract + 2 + false + 24 + Fuel contract + + + 6 + Power2X + 2 + false + 115 + Facility to convert electric power to hydrogen and then gas or other products + + + 7 + Battery + 2 + false + 61 + Battery energy storage system + + + 8 + Storage + 2 + false + 19 + Storage reservoir, head-pond, or tail-pond + + + 9 + Waterway + 2 + false + 20 + Waterway for representing rivers, canals, and spillways + + + 10 + Emission + 2 + false + 21 + Class of generator emission (e.g. NoX, SoX, CO2, etc) + + + 11 + Abatement + 2 + false + 55 + Emission abatement technology + + + 12 + Physical Contract + 2 + false + 25 + Physical contract (import, export, or wheel) + + + 13 + Purchaser + 2 + false + 26 + Demand + + + 14 + Reserve + 2 + false + 16 + Ancillary service + + + 15 + Reliability + 2 + false + 116 + Reliability group + + + 16 + Financial Contract + 2 + false + 4 + Financial contract (e.g. CfD, swap, cap, etc) + + + 17 + Cournot + 2 + false + 6 + Nash-Cournot game + + + 18 + RSI + 2 + false + 7 + Residual supply index analysis + + + 19 + Region + 3 + true + 8 + Transmission region/area + + + 20 + Pool + 3 + false + 75 + Set of transmission regions in a pool + + + 21 + Zone + 3 + true + 9 + Set of transmission buses in a zone + + + 22 + Node + 3 + true + 10 + Transmission node/bus + + + 23 + Load + 3 + false + 121 + Electricity Load + + + 24 + Line + 3 + true + 11 + Transmission line (AC, DC, or notional/entrepreneurial interconnector) + + + 25 + MLF + 3 + false + 12 + Marginal loss factor equation + + + 26 + Transformer + 3 + false + 13 + Voltage transformer + + + 27 + Flow Control + 3 + false + 14 + Flow control + + + 28 + Interface + 3 + false + 15 + Transmission interface + + + 29 + Contingency + 3 + false + 17 + A contingency for use in security constrained economic dispatch + + + 30 + Hub + 3 + false + 59 + A collection of nodes representing a pricing area + + + 31 + Transmission Right + 3 + false + 5 + Transmission right (FTR, SRA) + + + 32 + Heat Plant + 4 + false + 72 + Heat production plant + + + 33 + Heat Node + 4 + false + 73 + Heat connection point + + + 34 + Heat Storage + 4 + false + 118 + Storage where thermal energy can be stored and withdrawn + + + 35 + Gas Field + 5 + false + 49 + Field from which gas is extracted + + + 36 + Gas Plant + 5 + false + 70 + Gas processing plant e.g. converting raw natural gas to pipeline quality + + + 37 + Gas Pipeline + 5 + false + 51 + Pipeline for transporting gas + + + 38 + Gas Node + 5 + false + 52 + Connection point in gas network + + + 39 + Gas Storage + 5 + false + 50 + Storage where gas can be injected and extracted + + + 40 + Gas Demand + 5 + false + 53 + Demand for gas + + + 41 + Gas DSM Program + 5 + false + 109 + Demand side management programs + + + 42 + Gas Basin + 5 + false + 60 + Collection of gas fields in a common basin + + + 43 + Gas Zone + 5 + false + 56 + Set of gas nodes + + + 44 + Gas Contract + 5 + false + 69 + Gas contract + + + 45 + Gas Transport + 5 + false + 71 + Gas shipment + + + 46 + Gas Path + 5 + false + 132 + Gas shipment path + + + 47 + Gas Capacity Release Offer + 5 + false + 110 + The release of available pipeline or storage capacity to another party. + + + 48 + Water Plant + 6 + false + 63 + Water production plant e.g. desalination plant + + + 49 + Water Pipeline + 6 + false + 65 + Water network pipeline + + + 50 + Water Node + 6 + false + 66 + Water network node + + + 51 + Water Storage + 6 + false + 64 + Water storage tank + + + 52 + Water Demand + 6 + false + 67 + Demand for water + + + 53 + Water Zone + 6 + false + 68 + Set of water network nodes + + + 54 + Water Pump Station + 6 + false + 119 + Collection of Pumps that can be dispatched together + + + 55 + Water Pump + 6 + false + 120 + Device to move water upstream using electrical energy + + + 56 + Vehicle + 7 + false + 112 + An electric vehicle (EV, PHEV, etc) + + + 57 + Charging Station + 7 + false + 113 + An electric vehicle charging station + + + 58 + Fleet + 7 + false + 114 + A fleet of vehicles + + + 59 + Company + 8 + false + 2 + Energy utility or other ownership entity + + + 60 + Commodity + 9 + false + 122 + A commodity that can be produced, consumed, stored, transformed, traded, priced and constrained + + + 61 + Process + 9 + false + 123 + A process that transforms one or more input commodities to one or more output commodities + + + 62 + Facility + 9 + false + 124 + A facility that performs one or more processes + + + 63 + Maintenance + 9 + false + 62 + A class of maintenance events to be optimally placed in time + + + 64 + Flow Network + 9 + false + 126 + A network that flows a Commodity + + + 65 + Flow Node + 9 + false + 127 + A node in a flow network + + + 66 + Flow Path + 9 + false + 128 + A path in a flow network + + + 67 + Flow Storage + 9 + false + 129 + A storage located at a Flow Node + + + 68 + Entity + 9 + false + 125 + Ownership and/or strategic entity + + + 69 + Market + 9 + false + 3 + A market that can supply and/or demand a Commodity + + + 70 + Constraint + 10 + false + 27 + Generic constraint + + + 71 + Objective + 10 + false + 111 + Generic objective function + + + 72 + Decision Variable + 10 + false + 57 + Generic decision variable + + + 73 + Nonlinear Constraint + 10 + false + 117 + Generic non-linear constraint + + + 74 + Data File + 11 + true + 29 + Reference to an external text file + + + 75 + Variable + 11 + false + 31 + Stochastic variable + + + 76 + Timeslice + 11 + false + 34 + Timeslice for applying to data and/or reporting + + + 77 + Global + 11 + false + 58 + Data that are global to the simulation + + + 78 + Scenario + 11 + true + 35 + Data scenario + + + 79 + Weather Station + 11 + false + 76 + Collection of all weather events related to local station + + + 80 + Model + 12 + true + 36 + Collection of data scenarios that define a model to be evaluated + + + 81 + Project + 12 + true + 37 + Collection of models saved into single project database + + + 82 + Horizon + 13 + true + 32 + Simulation horizon + + + 83 + Report + 13 + true + 33 + Set of report selections + + + 84 + Stochastic + 14 + true + 46 + Stochastic settings + + + 85 + Preview + 13 + true + 131 + Preview of the input data used + + + 86 + LT Plan + 13 + true + 38 + LT Plan simulation phase + + + 87 + PASA + 13 + true + 39 + PASA simulation phase + + + 88 + MT Schedule + 13 + true + 40 + MT Schedule simulation phase + + + 89 + ST Schedule + 13 + true + 41 + ST Schedule simulation phase + + + 90 + Transmission + 14 + true + 43 + Transmission settings + + + 91 + Production + 14 + true + 44 + Production settings + + + 92 + Competition + 14 + true + 45 + Competition settings + + + 93 + Performance + 14 + true + 47 + Performance settings + + + 94 + Diagnostic + 14 + true + 48 + Diagnostic settings + + + 95 + List + 15 + true + 54 + Generic list of objects + + + 96 + Layout + 15 + true + 130 + A graphical layout + + + 1 + - + 0 + + + 2 + Electric + 1 + + + 3 + Transmission + 2 + + + 4 + Heat + 14 + + + 5 + Gas + 10 + + + 6 + Water + 11 + + + 7 + Transport + 15 + + + 8 + Ownership + 3 + + + 9 + Universal + 16 + + + 10 + Generic + 4 + + + 11 + Data + 5 + + + 12 + Execute + 6 + + + 13 + Simulation + 7 + + + 14 + Settings + 8 + + + 15 + List + 13 + + + 1 + 1 + 2 + Generators + 0 + -1 + true + true + 36 + Generator objects + + + 2 + 2 + 2 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Generator inherits from + Generator objects inheriting from this template + + + 3 + 95 + 2 + Generators + 0 + -1 + Lists + 0 + -1 + true + true + 36 + set of Generator objects in the List + set of Lists containing the Generator + + + 4 + 2 + 2 + Heat Input + 0 + -1 + Heat Output + 0 + -1 + false + false + 40 + set of generators that provide heat input to the generator + generator that receives the waste heat from this generator + + + 5 + 2 + 2 + Transition + 0 + -1 + false + false + 218 + set of generators that can transition + + + 6 + 2 + 3 + Power Station + 0 + -1 + Generators + 0 + -1 + true + false + 76 + power station the generator belongs to + power station the generator is aggregated in to + + + 7 + 2 + 4 + Fuels + 0 + -1 + Generators + 0 + -1 + true + false + 31 + set of fuels used by the generator + set of generators that use the fuel + + + 8 + 2 + 4 + Start Fuels + 0 + -1 + Generators Started + 0 + -1 + true + false + 92 + fuels available for starting units + set of generators that use the fuel to start + + + 9 + 2 + 6 + Source Power2X + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 293 + + + 10 + 2 + 8 + Head Storage + 0 + 1 + Exporting Generators + 0 + -1 + true + false + 38 + head storage for the generator + set of generators that draw water from the storage + + + 11 + 2 + 8 + Tail Storage + 0 + 1 + Importing Generators + 0 + -1 + true + false + 97 + tail storage for the generator + set of generators that release water into the storage + + + 12 + 2 + 22 + Nodes + 1 + -1 + Generators + 0 + -1 + true + false + 70 + set of nodes the generator injects energy at + set of generators injecting at the node + + + 13 + 2 + 22 + Nodes* + 0 + -1 + Generators* + 0 + -1 + false + true + 178 + creates copies of the generator at each node in this collection + create copies of these generators and place at this node + + + 14 + 2 + 33 + Heat Input Nodes + 0 + -1 + Generators Supplied + 0 + -1 + true + false + 223 + set of heat nodes supplying heat to the generator + set of generators supplied by the node + + + 15 + 2 + 33 + Heat Output Nodes + 0 + -1 + Supplying Generators + 0 + -1 + true + false + 224 + set of heat nodes collecting waste heat from the generator + set of generators supplying waste heat to the node + + + 16 + 2 + 35 + Source Gas Fields + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 289 + + + 17 + 2 + 36 + Source Gas Plants + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 292 + + + 18 + 2 + 38 + Gas Node + 0 + -1 + Generators + 0 + -1 + true + false + 117 + set of gas nodes connected to the generator + set of generators connected to the gas node + + + 19 + 2 + 39 + Source Gas Storages + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 290 + + + 20 + 2 + 44 + Source Gas Contracts + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 291 + + + 21 + 2 + 45 + Source Gas Transports + 0 + -1 + Generators Supplied + 0 + -1 + true + true + 299 + + + 22 + 2 + 50 + Water Node + 0 + 1 + Generators + 0 + -1 + true + false + 200 + Water Node the Generator connects to + set of Generators connected to the Water Node + + + 23 + 2 + 59 + Companies + 0 + -1 + Generators + 0 + -1 + true + false + 9 + set of companies that own the generator + set of generators the company owns + + + 24 + 2 + 60 + Commodities Consumed + 0 + -1 + Consuming Generators + 0 + -1 + true + false + 274 + set of Commodities consumed by the Generator + set of Generators that consume the Commodity + + + 25 + 2 + 60 + Commodities Produced + 0 + -1 + Producing Generators + 0 + -1 + true + false + 275 + set of Commodities produced by the Generator + set of Generators that produce the Commodity + + + 26 + 2 + 63 + Maintenances + 0 + -1 + Generators + 0 + -1 + true + false + 179 + set of maintenance events on the generator + set of generators taken out on maintenance + + + 27 + 2 + 65 + Flow Nodes + 0 + -1 + Generators + 0 + -1 + true + false + 279 + set of Flow Nodes the Generator connects to + set of Generators connected to the Flow Node + + + 28 + 2 + 69 + Capacity Markets + 0 + -1 + Capacity Generators + 0 + -1 + true + true + 4 + set of capacity markets the generator sells into + set of generators that sell capacity into the market + + + 29 + 2 + 69 + Heat Markets + 0 + -1 + Heat Generators + 0 + -1 + true + true + 286 + set of markets the generator sell heat-based products into + set of generators providing heat-based products to the market + + + 30 + 2 + 69 + Mark-to-Markets + 0 + -1 + Generators + 0 + -1 + false + false + 228 + market used to mark-to-market energy and reserves + generators using this market to mark-to-market + + + 31 + 2 + 70 + Constraints + 0 + -1 + Generators + 0 + -1 + true + true + 12 + set of Constraints on the Generator + set of Generators in the Constraint + + + 32 + 2 + 71 + Objectives + 0 + -1 + Generators + 0 + -1 + true + true + 240 + set of Objectives on the Generator + set of Generators in the Objective + + + 33 + 2 + 72 + Decision Variables + 0 + -1 + Generators + 0 + -1 + true + true + 166 + set of generators whose equations include the decision variable + Decision Variables included in the Generator formulation + + + 34 + 2 + 75 + Conditions + 0 + -1 + Generators + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Generator + set of Generator objects that define when the Variable is active + + + 35 + 1 + 3 + Power Stations + 0 + -1 + true + true + 77 + Power Station objects + + + 36 + 3 + 3 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Power Station inherits from + Power Station objects inheriting from this template + + + 37 + 95 + 3 + Power Stations + 0 + -1 + Lists + 0 + -1 + true + true + 77 + set of Power Station objects in the List + set of Lists containing the Power Station + + + 38 + 3 + 22 + Nodes + 0 + -1 + true + false + 70 + (optional) set of nodes the power station injects at + + + 39 + 1 + 4 + Fuels + 0 + -1 + true + true + 31 + Fuel objects + + + 40 + 4 + 4 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fuel inherits from + Fuel objects inheriting from this template + + + 41 + 95 + 4 + Fuels + 0 + -1 + Lists + 0 + -1 + true + true + 31 + set of Fuel objects in the List + set of Lists containing the Fuel + + + 42 + 4 + 6 + Source Power2X + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 293 + + + 43 + 4 + 35 + Source Gas Fields + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 289 + + + 44 + 4 + 36 + Source Gas Plants + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 292 + + + 45 + 4 + 38 + Gas Nodes + 0 + -1 + Fuels + 0 + -1 + true + false + 115 + set of gas nodes the fuel is delivered through + set of fuels delivered from the gas node + + + 46 + 4 + 39 + Source Gas Storages + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 290 + + + 47 + 4 + 44 + Source Gas Contracts + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 291 + + + 48 + 4 + 45 + Source Gas Transports + 0 + -1 + Fuels Supplied + 0 + -1 + true + true + 299 + + + 49 + 4 + 59 + Companies + 0 + -1 + Fuels + 0 + -1 + true + false + 9 + set of companies that own the fuel + set of fuels the company owns + + + 50 + 4 + 62 + Facilities + 0 + -1 + Fuels + 0 + -1 + true + true + 267 + set of Facilities that consume the Fuel + set of Fuels the Facility consumes + + + 51 + 4 + 65 + Flow Nodes + 0 + -1 + Fuels + 0 + -1 + true + false + 279 + set of Flow Nodes the Fuel connects to + set of Fuels connected to the Flow Node + + + 52 + 4 + 69 + Markets + 0 + -1 + Fuels + 0 + -1 + true + false + 61 + set of markets the fuel is bought/sold from/to + set of fuels in the market + + + 53 + 4 + 70 + Constraints + 0 + -1 + Fuels + 0 + -1 + true + true + 12 + set of Constraints on the Fuel + set of Fuels in the Constraint + + + 54 + 4 + 71 + Objectives + 0 + -1 + Fuels + 0 + -1 + true + true + 240 + set of Objectives on the Fuel + set of Fuels in the Objective + + + 55 + 4 + 75 + Conditions + 0 + -1 + Fuels + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Fuel + set of Fuel objects that define when the Variable is active + + + 56 + 1 + 5 + Fuel Contracts + 0 + -1 + true + true + 30 + Fuel Contract objects + + + 57 + 5 + 5 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fuel Contract inherits from + Fuel Contract objects inheriting from this template + + + 58 + 95 + 5 + Fuel Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 30 + set of Fuel Contract objects in the List + set of Lists containing the Fuel Contract + + + 59 + 5 + 2 + Generators + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 36 + set of generators whose fuel use is subject to the contract + set of fuel contracts associated with supply to the generator + + + 60 + 5 + 4 + Fuel + 1 + 1 + Fuel Contracts + 0 + -1 + true + false + 29 + fuel in the contract + set of fuel contracts on the fuel + + + 61 + 5 + 59 + Companies + 0 + -1 + Fuel Contracts + 0 + -1 + true + false + 9 + set of companies that own the fuel contract + set of fuel contracts owned by the company + + + 62 + 5 + 70 + Constraints + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Fuel Contract + set of Fuel Contracts in the Constraint + + + 63 + 5 + 71 + Objectives + 0 + -1 + Fuel Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Fuel Contract + set of Fuel Contracts in the Objective + + + 64 + 1 + 6 + Power2X + 0 + -1 + true + true + 244 + Power2X objects + + + 65 + 6 + 6 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Power2X inherits from + Power2X objects inheriting from this template + + + 66 + 95 + 6 + Power2X + 0 + -1 + Lists + 0 + -1 + true + true + 244 + set of Power2X objects in the List + set of Lists containing the Power2X + + + 67 + 6 + 4 + Fuels + 0 + 1 + Power2X + 0 + -1 + true + false + 31 + The set of fuels produced by the facility + The set of Power2X facilities that produce the fuel + + + 68 + 6 + 22 + Nodes + 1 + -1 + Power2X + 0 + -1 + true + false + 70 + The set of electric nodes the facility draws load from + The set of Power2X facilities at the node + + + 69 + 6 + 33 + Heat Nodes + 0 + -1 + Power2X + 0 + 1 + true + true + 220 + The set of heat nodes the facility supplies + The Power2X facility at the heat node + + + 70 + 6 + 34 + Heat Storages + 0 + -1 + Power2X + 0 + 1 + true + true + 253 + The set of Heat Storages connected to Power2X + The Power2X facility that is connected to Heat Storage + + + 71 + 6 + 38 + Gas Nodes + 0 + -1 + Power2X + 0 + -1 + true + true + 115 + The set of gas nodes the facility supplies + The Power2X facility at the gas node + + + 72 + 6 + 39 + Gas Storages + 0 + -1 + Power2X + 0 + 1 + true + true + 113 + The set of Gas Storages connected to Power2X + The Power2X facility connected to Gas Storage + + + 73 + 6 + 50 + Water Nodes + 0 + -1 + Power2X + 0 + 1 + true + true + 191 + The set of water nodes the facility draws water from + The Power2X facility at the water node + + + 74 + 6 + 59 + Companies + 0 + -1 + Power2X + 0 + -1 + true + false + 9 + set of companies that own the Power2X + set of Power2X the company owns + + + 75 + 6 + 60 + Commodities + 0 + -1 + Power2X + 0 + -1 + true + false + 260 + set of Commodities produced by the Power2X facility + The set of Power2X facilities that produce the Commodity + + + 76 + 6 + 65 + Flow Nodes + 0 + -1 + Power2X + 0 + -1 + true + false + 279 + set of Flow Nodes the Power2X connects to + set of Power2X objects connected to the Flow Node + + + 77 + 6 + 70 + Constraints + 0 + -1 + Power2X + 0 + -1 + true + true + 12 + set of Constraints on the Power2X + set of Power2X in the Constraint + + + 78 + 6 + 71 + Objectives + 0 + -1 + Power2X + 0 + -1 + true + true + 240 + set of Objectives on the Power2X + set of Power2X in the Objective + + + 79 + 1 + 7 + Batteries + 0 + -1 + true + true + 176 + Battery objects + + + 80 + 7 + 7 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Battery inherits from + Battery objects inheriting from this template + + + 81 + 95 + 7 + Batteries + 0 + -1 + Lists + 0 + -1 + true + true + 176 + set of Battery objects in the List + set of Lists containing the Battery + + + 82 + 7 + 22 + Nodes + 1 + -1 + Batteries + 0 + -1 + true + false + 70 + set of nodes the battery is connected to + set of batteries connected to the node + + + 83 + 7 + 22 + Nodes* + 0 + -1 + Batteries* + 0 + -1 + false + true + 178 + creates copies of the battery at each node in this collection + create copies of these batteries and place at this node + + + 84 + 7 + 59 + Companies + 0 + -1 + Batteries + 0 + -1 + true + false + 9 + set of companies that own the battery + set of batteries the company owns + + + 85 + 7 + 60 + Commodities Consumed + 0 + -1 + Consuming Batteries + 0 + -1 + true + false + 274 + set of Commodities consumed by the Battery + set of Batteries that consume the Commodity + + + 86 + 7 + 60 + Commodities Produced + 0 + -1 + Producing Batteries + 0 + -1 + true + false + 275 + set of Commodities produced by the Battery + set of Batteries that produce the Commodity + + + 87 + 7 + 65 + Flow Nodes + 0 + -1 + Batteries + 0 + -1 + true + false + 279 + set of Flow Nodes the Battery connects to + set of Batteries connected to the Flow Node + + + 88 + 7 + 69 + Capacity Markets + 0 + -1 + Capacity Batteries + 0 + -1 + true + true + 4 + set of capacity markets the battery sells into + set of batteries that sell capacity into the market + + + 89 + 7 + 70 + Constraints + 0 + -1 + Batteries + 0 + -1 + true + true + 12 + set of Constraints on the Battery + set of Batteries in the Constraint + + + 90 + 7 + 71 + Objectives + 0 + -1 + Batteries + 0 + -1 + true + true + 240 + set of Objectives on the Battery + set of Batteries in the Objective + + + 91 + 1 + 8 + Storages + 0 + -1 + true + true + 96 + Storage objects + + + 92 + 8 + 8 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Storage inherits from + Storage objects inheriting from this template + + + 93 + 95 + 8 + Storages + 0 + -1 + Lists + 0 + -1 + true + true + 96 + set of Storage objects in the List + set of Lists containing the Storage + + + 94 + 8 + 50 + Water Nodes + 0 + -1 + Storages + 0 + 1 + true + false + 191 + water nodes the water storage connects to + water storage the water nodes connect to + + + 95 + 8 + 70 + Constraints + 0 + -1 + Storages + 0 + -1 + true + true + 12 + set of Constraints on the Storage + set of Storages in the Constraint + + + 96 + 8 + 71 + Objectives + 0 + -1 + Storages + 0 + -1 + true + true + 240 + set of Objectives on the Storage + set of Storages in the Objective + + + 97 + 8 + 75 + Conditions + 0 + -1 + Storages + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Storage + set of Storage objects that define when the Variable is active + + + 98 + 8 + 77 + Globals + 0 + -1 + Storages + 0 + -1 + true + true + 167 + set of Globals defining data for the Storage + set of Storage objects defining Global data + + + 99 + 1 + 9 + Waterways + 0 + -1 + true + true + 104 + Waterway objects + + + 100 + 9 + 9 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Waterway inherits from + Waterway objects inheriting from this template + + + 101 + 95 + 9 + Waterways + 0 + -1 + Lists + 0 + -1 + true + true + 104 + set of Waterway objects in the List + set of Lists containing the Waterway + + + 102 + 9 + 8 + Storage From + 0 + 1 + Exporting Waterways + 0 + -1 + true + false + 94 + storage the waterway takes water from + set of exporting waterways + + + 103 + 9 + 8 + Storage To + 0 + 1 + Importing Waterways + 0 + -1 + true + false + 95 + storage the waterway takes water to + set of importing waterways + + + 104 + 9 + 70 + Constraints + 0 + -1 + Waterways + 0 + -1 + true + true + 12 + set of Constraints on the Waterway + set of Waterways in the Constraint + + + 105 + 9 + 71 + Objectives + 0 + -1 + Waterways + 0 + -1 + true + true + 240 + set of Objectives on the Waterway + set of Waterways in the Objective + + + 106 + 1 + 10 + Emissions + 0 + -1 + true + true + 20 + Emission objects + + + 107 + 10 + 10 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Emission inherits from + Emission objects inheriting from this template + + + 108 + 95 + 10 + Emissions + 0 + -1 + Lists + 0 + -1 + true + true + 20 + set of Emission objects in the List + set of Lists containing the Emission + + + 109 + 10 + 2 + Generators + 0 + -1 + Emissions + 0 + -1 + true + true + 36 + set of generators that produce the emission + set of emissions produced by the generator + + + 110 + 10 + 4 + Fuels + 0 + -1 + Emissions + 0 + -1 + true + true + 31 + set of fuels that produce the emission + set of emissions produced by the fuel + + + 111 + 10 + 6 + Power2X + 0 + -1 + Emissions + 0 + -1 + true + true + 244 + set of Power2X objects that produce the Emission + set of Emissions produced by the Power2X object + + + 112 + 10 + 35 + Gas Fields + 0 + -1 + Emissions + 0 + -1 + true + true + 112 + set of Gas Fields that produce the Emission + set of Emissions produced by the Gas Field + + + 113 + 10 + 36 + Gas Plants + 0 + -1 + Emissions + 0 + -1 + true + true + 210 + set of Gas Plants that produce the Emission + set of Emissions produced by the Gas Plant + + + 114 + 10 + 38 + Gas Nodes + 0 + -1 + Emissions + 0 + -1 + true + true + 115 + set of gas nodes that produce the emission + set of emissions produced by the gas node + + + 115 + 10 + 40 + Gas Demands + 0 + -1 + Emissions + 0 + -1 + true + true + 116 + set of Gas Demands that produce the Emission + set of Emissions produced by the Gas Demand + + + 116 + 10 + 44 + Gas Contracts + 0 + -1 + Emissions + 0 + -1 + true + true + 207 + set of Gas Contracts that produce the Emission + set of Emissions produced by the Gas Contract + + + 117 + 10 + 45 + Gas Transports + 0 + -1 + Emissions + 0 + -1 + true + true + 211 + set of Gas Transports that produce the Emission + set of Emissions produced by the Gas Transport + + + 118 + 10 + 48 + Water Plants + 0 + -1 + Emissions + 0 + -1 + true + true + 188 + set of Water Plants that produce the Emission + set of Emissions produced by the Water Plant + + + 119 + 10 + 56 + Vehicles + 0 + -1 + Emissions + 0 + -1 + true + true + 241 + set of Vehicles that produce the Emission + set of Emissions produced by the Vehicle + + + 120 + 10 + 60 + Commodities + 0 + -1 + Emissions + 0 + -1 + true + true + 260 + set of Commodities co-produced with the Emission + set of Emissions co-producing the Commodity + + + 121 + 10 + 62 + Facilities + 0 + -1 + Emissions + 0 + -1 + true + true + 267 + set of Facilities that produce or remove the Emission + set of Emissions the Facility produces + + + 122 + 10 + 69 + Markets + 0 + -1 + Emissions + 0 + -1 + true + false + 61 + set of markets the emission is bought/sold from/to + set of emissions in the market + + + 123 + 10 + 70 + Constraints + 0 + -1 + Emissions + 0 + -1 + true + true + 12 + set of Constraints on the Emission + set of Emissions in the Constraint + + + 124 + 10 + 71 + Objectives + 0 + -1 + Emissions + 0 + -1 + true + true + 240 + set of Objectives on the Emission + set of Emissions in the Objective + + + 125 + 1 + 11 + Abatements + 0 + -1 + true + true + 157 + Abatement objects + + + 126 + 11 + 11 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Abatement inherits from + Abatement objects inheriting from this template + + + 127 + 95 + 11 + Abatements + 0 + -1 + Lists + 0 + -1 + true + true + 157 + set of Abatement objects in the List + set of Lists containing the Abatement + + + 128 + 11 + 2 + Generators + 0 + -1 + Abatements + 0 + -1 + true + true + 36 + set of generators the abatement technology is connected to + set of abatements connected to the generator + + + 129 + 11 + 4 + Consumables + 0 + -1 + Abatements + 0 + -1 + true + true + 158 + set of consumables that are used by the abatement technology + set of abatements that consume the fuel + + + 130 + 11 + 10 + Emissions + 0 + -1 + Abatements + 0 + -1 + true + true + 20 + set of emissions that are removed by this abatement technology + set of abatements applied to the emission + + + 131 + 11 + 35 + Gas Fields + 0 + -1 + Abatements + 0 + -1 + true + true + 112 + set of gas fields the abatement technology is connected to + set of abatements connected to the gas field + + + 132 + 11 + 36 + Gas Plants + 0 + -1 + Abatements + 0 + -1 + true + true + 210 + set of gas plants the abatement technology is connected to + set of abatements connected to the gas plant + + + 133 + 11 + 38 + Gas Nodes + 0 + -1 + Abatements + 0 + -1 + true + true + 115 + set of gas nodes the abatement technology is connected to + set of abatements connected to the gas node + + + 134 + 11 + 40 + Gas Demands + 0 + -1 + Abatements + 0 + -1 + true + true + 116 + set of gas demands the abatement technology is connected to + set of abatements connected to the gas demand + + + 135 + 11 + 44 + Gas Contracts + 0 + -1 + Abatements + 0 + -1 + true + true + 207 + set of gas contracts the abatement technology is connected to + set of abatements connected to the gas contract + + + 136 + 11 + 70 + Constraints + 0 + -1 + Abatements + 0 + -1 + true + true + 12 + set of Constraints on the Abatement + set of Abatements in the Constraint + + + 137 + 11 + 71 + Objectives + 0 + -1 + Abatements + 0 + -1 + true + true + 240 + set of Objectives on the Abatement + set of Abatements in the Objective + + + 138 + 1 + 12 + Physical Contracts + 0 + -1 + true + true + 75 + Physical Contract objects + + + 139 + 12 + 12 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Physical Contract inherits from + Physical Contract objects inheriting from this template + + + 140 + 95 + 12 + Physical Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 75 + set of Physical Contract objects in the List + set of Lists containing the Physical Contract + + + 141 + 12 + 22 + Generation Node + 0 + 1 + Generation Contracts + 0 + -1 + true + false + 34 + node for generation in the contract + set of generation contracts at the node + + + 142 + 12 + 22 + Load Node + 0 + 1 + Load Contracts + 0 + -1 + true + false + 59 + node for load in the contract + set of load contracts at the node + + + 143 + 12 + 59 + Companies + 0 + -1 + Physical Contracts + 0 + -1 + true + false + 9 + set of companies that own the physical contract + set of physical contracts owned by the company + + + 144 + 12 + 70 + Constraints + 0 + -1 + Physical Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Physical Contract + set of Physical Contracts in the Constraint + + + 145 + 12 + 71 + Objectives + 0 + -1 + Physical Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Physical Contract + set of Physical Contracts in the Objective + + + 146 + 1 + 13 + Purchasers + 0 + -1 + true + true + 81 + Purchaser objects + + + 147 + 13 + 13 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Purchaser inherits from + Purchaser objects inheriting from this template + + + 148 + 95 + 13 + Purchasers + 0 + -1 + Lists + 0 + -1 + true + true + 81 + set of Purchaser objects in the List + set of Lists containing the Purchaser + + + 149 + 13 + 22 + Nodes + 1 + -1 + Purchasers + 0 + -1 + true + false + 70 + set of nodes the purchaser withdraws energy from + set of purchasers at the node + + + 150 + 13 + 22 + Nodes* + 0 + -1 + Purchasers* + 0 + -1 + false + true + 178 + creates copies of the Purchaser at each node in this collection + create copies of these Purchasers and place at this node + + + 151 + 13 + 59 + Companies + 0 + -1 + Purchasers + 0 + -1 + true + false + 9 + set of companies that own the purchaser + set of purchasers owned by the company + + + 152 + 13 + 70 + Constraints + 0 + -1 + Purchasers + 0 + -1 + true + true + 12 + set of Constraints on the Purchaser + set of Purchasers in the Constraint + + + 153 + 13 + 71 + Objectives + 0 + -1 + Purchasers + 0 + -1 + true + true + 240 + set of Objectives on the Purchaser + set of Purchasers in the Objective + + + 154 + 1 + 14 + Reserves + 0 + -1 + true + true + 88 + Reserve objects + + + 155 + 14 + 14 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Reserve inherits from + Reserve objects inheriting from this template + + + 156 + 95 + 14 + Reserves + 0 + -1 + Lists + 0 + -1 + true + true + 88 + set of Reserve objects in the List + set of Lists containing the Reserve + + + 157 + 14 + 2 + Generators + 0 + -1 + Reserves + 0 + -1 + true + true + 36 + set of generators that provide the reserve + set of reserves provided by the generator + + + 158 + 14 + 2 + Generator Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 35 + set of generators that are contingencies + set of reserves the generator is a contingency for + + + 159 + 14 + 2 + Generator Cost Allocation + 0 + -1 + Reserve Costs Allocated + 0 + -1 + false + true + 110 + set of generators over which the cost of the reserve is allocated + set of reserves whose costs are allocated to the generator + + + 160 + 14 + 6 + Power2X + 0 + -1 + Reserves + 0 + -1 + true + true + 244 + The set of Power2X facilities that provide the reserve + The set of reserves provided by the Power2X facility + + + 161 + 14 + 7 + Batteries + 0 + -1 + Reserves + 0 + -1 + true + true + 176 + set of batteries that provide the reserve + set of reserves provided by the battery + + + 162 + 14 + 7 + Battery Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 301 + set of batteries that are contingencies + set of reserves the battery is a contingency for + + + 163 + 14 + 13 + Purchasers + 0 + -1 + Reserves + 0 + -1 + true + true + 81 + set of purchasers that provide the reserve + set of reserve the purchaser provides interruptible load for + + + 164 + 14 + 14 + Nested Reserves + 0 + -1 + Master Reserves + 0 + -1 + false + false + 66 + reserves nested inside this reserve class + reserves this class is nested inside + + + 165 + 14 + 19 + Regions + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 85 + set of regions that set the load risk + set of reserves the region is a contingency for + + + 166 + 14 + 24 + Line Contingencies + 0 + -1 + Contingency Reserves + 0 + -1 + false + true + 56 + set of lines that are contingencies + set of reserves the line is a contingency for + + + 167 + 14 + 69 + Markets + 0 + -1 + Reserves + 0 + -1 + true + false + 61 + set of markets the reserve is bought/sold from/to + set of reserves in the market + + + 168 + 14 + 70 + Constraints + 0 + -1 + Reserves + 0 + -1 + true + true + 12 + set of Constraints on the Reserve + set of Reserves in the Constraint + + + 169 + 14 + 71 + Objectives + 0 + -1 + Reserves + 0 + -1 + true + true + 240 + set of Objectives on the Reserve + set of Reserves in the Objective + + + 170 + 14 + 75 + Conditions + 0 + -1 + Reserves + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Reserve + set of Reserve objects that define when the Variable is active + + + 171 + 1 + 15 + Reliability + 0 + -1 + true + true + 249 + Reliability objects + + + 172 + 15 + 15 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Reliability inherits from + Reliability objects inheriting from this template + + + 173 + 95 + 15 + Reliability + 0 + -1 + Lists + 0 + -1 + true + true + 249 + set of Reliability objects in the List + set of Lists containing the Reliability + + + 174 + 15 + 2 + Generators + 0 + -1 + Reliability + 0 + -1 + true + true + 36 + set of generators in the reliability group + set of reliability groups for the generator + + + 175 + 15 + 19 + Region + 1 + 1 + Reliability + 0 + -1 + true + true + 84 + reference region for the reliability group + set of reliability groups referencing the region + + + 176 + 1 + 16 + Financial Contracts + 0 + -1 + true + true + 28 + Financial Contract objects + + + 177 + 16 + 16 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Financial Contract inherits from + Financial Contract objects inheriting from this template + + + 178 + 95 + 16 + Financial Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 28 + set of Financial Contract objects in the List + set of Lists containing the Financial Contract + + + 179 + 16 + 2 + Generators + 0 + -1 + Financial Contracts + 0 + -1 + true + true + 36 + set of generators involved in the financial contract + set of financial contracts associated with the generator + + + 180 + 16 + 19 + Region + 0 + 1 + Financial Contracts + 0 + -1 + true + false + 84 + region the contract is settled in + set of financial contracts settled in the region + + + 181 + 16 + 19 + Regions + 0 + -1 + true + true + 85 + + + 182 + 16 + 59 + Generating Companies + 0 + -1 + Generation Contracts + 0 + -1 + true + false + 32 + generating party or parties + set of financial contracts the company is a generating party to + + + 183 + 16 + 59 + Purchasing Companies + 0 + -1 + Purchase Contracts + 0 + -1 + true + false + 82 + purchasing party or parties + set of financial contracts the company is a purchasing party to + + + 184 + 16 + 75 + Conditions + 0 + -1 + Financial Contracts + 0 + -1 + true + true + 11 + set of conditions that apply to the financial contract + set of financial contracts the condition applies to + + + 185 + 1 + 17 + Cournots + 0 + -1 + true + true + 15 + Cournot objects + + + 186 + 17 + 17 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Cournot inherits from + Cournot objects inheriting from this template + + + 187 + 95 + 17 + Cournots + 0 + -1 + Lists + 0 + -1 + true + true + 15 + set of Cournot objects in the List + set of Lists containing the Cournot + + + 188 + 17 + 19 + Region + 1 + 1 + true + false + 84 + region associated with the Cournot game + + + 189 + 1 + 18 + RSIs + 0 + -1 + true + true + 89 + RSI objects + + + 190 + 18 + 18 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the RSI inherits from + RSI objects inheriting from this template + + + 191 + 95 + 18 + RSIs + 0 + -1 + Lists + 0 + -1 + true + true + 89 + set of RSI objects in the List + set of Lists containing the RSI + + + 192 + 18 + 19 + Region + 1 + 1 + true + false + 84 + region associated with the RSI + + + 193 + 18 + 24 + Lines + 0 + -1 + true + true + 57 + set of lines included in import capacity calculations + + + 194 + 18 + 28 + Interfaces + 0 + -1 + true + true + 50 + set of interfaces included in import capacity calculations + + + 195 + 18 + 59 + Companies + 0 + -1 + true + true + 9 + + + 196 + 1 + 19 + Regions + 0 + -1 + true + true + 85 + Region objects + + + 197 + 19 + 19 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Region inherits from + Region objects inheriting from this template + + + 198 + 95 + 19 + Regions + 0 + -1 + Lists + 0 + -1 + true + true + 85 + set of Region objects in the List + set of Lists containing the Region + + + 199 + 19 + 2 + Generators + 0 + -1 + Regions + 0 + -1 + false + true + 36 + + + 200 + 19 + 7 + Batteries + 0 + -1 + Regions + 0 + -1 + false + true + 176 + + + 201 + 19 + 10 + Emissions + 0 + -1 + Regions + 0 + -1 + true + true + 20 + set of emissions in the region + set of Regions that produce the emission + + + 202 + 19 + 12 + Generation Contracts + 0 + -1 + false + true + 33 + + + 203 + 19 + 12 + Load Contracts + 0 + -1 + false + true + 58 + + + 204 + 19 + 13 + Purchasers + 0 + -1 + Regions + 0 + -1 + false + true + 81 + + + 205 + 19 + 19 + Regions + 0 + -1 + false + true + 85 + set of regions the region connects to + + + 206 + 19 + 20 + Pool + 0 + 1 + Regions + 0 + -1 + true + false + 231 + pool the region is in (for transmission) + set of regions in the pool + + + 207 + 19 + 22 + Reference Node + 0 + 1 + false + false + 83 + the reference node for the region + + + 208 + 19 + 24 + Exporting Lines + 0 + -1 + false + true + 25 + + + 209 + 19 + 24 + Importing Lines + 0 + -1 + false + true + 47 + + + 210 + 19 + 24 + Interregional Lines + 0 + -1 + false + true + 51 + + + 211 + 19 + 24 + Intraregional Lines + 0 + -1 + false + true + 53 + + + 212 + 19 + 26 + Exporting Transformers + 0 + -1 + false + true + 181 + + + 213 + 19 + 26 + Importing Transformers + 0 + -1 + false + true + 182 + + + 214 + 19 + 26 + Interregional Transformers + 0 + -1 + false + true + 183 + + + 215 + 19 + 26 + Intraregional Transformers + 0 + -1 + false + true + 185 + + + 216 + 19 + 59 + Utilities + 0 + -1 + true + true + 102 + set of utility-owned companies (competitive fringe in RSI) + + + 217 + 19 + 69 + Markets + 0 + -1 + false + true + 61 + + + 218 + 19 + 70 + Constraints + 0 + -1 + Regions + 0 + -1 + true + true + 12 + set of Constraints on the Region + set of Regions in the Constraint + + + 219 + 19 + 71 + Objectives + 0 + -1 + Regions + 0 + -1 + true + true + 240 + set of Objectives on the Region + set of Regions in the Objective + + + 220 + 19 + 75 + Conditions + 0 + -1 + Regions + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Region + set of Region objects that define when the Variable is active + + + 221 + 1 + 20 + Pools + 0 + -1 + true + true + 230 + Pool objects + + + 222 + 20 + 20 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Pool inherits from + Pool objects inheriting from this template + + + 223 + 95 + 20 + Pools + 0 + -1 + Lists + 0 + -1 + true + true + 230 + set of Pool objects in the List + set of Lists containing the Pool + + + 224 + 20 + 14 + ORDC Reserves + 0 + -1 + Pools + 0 + 1 + false + true + 300 + Specifies Raise and Operational Reserves for ORDC calculations + Pool the Reserve belongs to (for ORDC calculations) + + + 225 + 20 + 20 + Pools + 0 + -1 + false + true + 230 + set of Pools the Pool transacts with + + + 226 + 20 + 59 + Companies + 0 + -1 + Pools + 0 + 1 + false + true + 9 + set of companies in the pool + pool the company is in (for energy balancing) + + + 227 + 1 + 21 + Zones + 0 + -1 + true + true + 106 + Zone objects + + + 228 + 21 + 21 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Zone inherits from + Zone objects inheriting from this template + + + 229 + 95 + 21 + Zones + 0 + -1 + Lists + 0 + -1 + true + true + 106 + set of Zone objects in the List + set of Lists containing the Zone + + + 230 + 21 + 2 + Generators + 0 + -1 + Zones + 0 + -1 + false + true + 36 + + + 231 + 21 + 2 + Capacity Generators + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 2 + + + 232 + 21 + 7 + Batteries + 0 + -1 + Zones + 0 + -1 + false + true + 176 + + + 233 + 21 + 7 + Capacity Batteries + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 226 + + + 234 + 21 + 10 + Emissions + 0 + -1 + Zones + 0 + -1 + true + true + 20 + set of emissions in the zone + + + 235 + 21 + 12 + Capacity Generation Contracts + 0 + -1 + false + true + 1 + + + 236 + 21 + 12 + Capacity Load Contracts + 0 + -1 + false + true + 3 + + + 237 + 21 + 12 + Generation Contracts + 0 + -1 + false + true + 33 + + + 238 + 21 + 12 + Load Contracts + 0 + -1 + false + true + 58 + + + 239 + 21 + 13 + Purchasers + 0 + -1 + Zones + 0 + -1 + false + true + 81 + + + 240 + 21 + 13 + Capacity Purchasers + 0 + -1 + Capacity Zones + 0 + -1 + false + true + 6 + + + 241 + 21 + 19 + Region + 0 + 1 + Zones + 0 + -1 + true + false + 84 + the region the zone belongs to + set of zones in the region + + + 242 + 21 + 21 + Zones + 0 + -1 + true + true + 106 + set of zones the zone connects to + + + 243 + 21 + 22 + Reference Node + 0 + 1 + false + false + 83 + the reference node for the zone + + + 244 + 21 + 24 + Exporting Capacity Lines + 0 + -1 + false + true + 23 + + + 245 + 21 + 24 + Exporting Lines + 0 + -1 + false + true + 25 + + + 246 + 21 + 24 + Importing Capacity Lines + 0 + -1 + false + true + 45 + + + 247 + 21 + 24 + Importing Lines + 0 + -1 + false + true + 47 + + + 248 + 21 + 24 + Interzonal Lines + 0 + -1 + false + true + 52 + + + 249 + 21 + 24 + Intrazonal Lines + 0 + -1 + false + true + 54 + + + 250 + 21 + 26 + Exporting Capacity Transformers + 0 + -1 + false + true + 164 + + + 251 + 21 + 26 + Exporting Transformers + 0 + -1 + false + true + 181 + + + 252 + 21 + 26 + Importing Capacity Transformers + 0 + -1 + false + true + 165 + + + 253 + 21 + 26 + Importing Transformers + 0 + -1 + false + true + 182 + + + 254 + 21 + 26 + Interzonal Transformers + 0 + -1 + false + true + 184 + + + 255 + 21 + 26 + Intrazonal Transformers + 0 + -1 + false + true + 186 + + + 256 + 21 + 69 + Markets + 0 + -1 + false + true + 61 + + + 257 + 21 + 69 + Capacity Markets + 0 + -1 + false + true + 4 + + + 258 + 21 + 70 + Constraints + 0 + -1 + Zones + 0 + -1 + true + true + 12 + set of Constraints on the Zone + set of Zones in the Constraint + + + 259 + 21 + 71 + Objectives + 0 + -1 + Zones + 0 + -1 + true + true + 240 + set of Objectives on the Zone + set of Zones in the Objective + + + 260 + 21 + 75 + Conditions + 0 + -1 + Zones + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Zone + set of Zone objects that define when the Variable is active + + + 261 + 1 + 22 + Nodes + 0 + -1 + true + true + 70 + Node objects + + + 262 + 22 + 22 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Node inherits from + Node objects inheriting from this template + + + 263 + 95 + 22 + Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 70 + set of Node objects in the List + set of Lists containing the Node + + + 264 + 22 + 19 + Region + 1 + 1 + Nodes + 0 + -1 + true + false + 84 + the region the node belongs to + set of nodes in the region + + + 265 + 22 + 21 + Zone + 0 + 1 + Nodes + 0 + -1 + true + false + 105 + zone the node is in (for transmission) + set of nodes in the zone + + + 266 + 22 + 21 + Capacity Zones + 0 + -1 + Capacity Nodes + 0 + -1 + true + true + 7 + capacity zones the node belongs to + set of nodes in the capacity zone + + + 267 + 22 + 30 + Hubs + 0 + -1 + Nodes + 0 + -1 + true + false + 170 + hub the node belongs to + set of nodes in the hub + + + 268 + 22 + 59 + Companies + 0 + -1 + Nodes + 0 + -1 + true + true + 9 + set of companies that own the nodes + set of nodes the company owns + + + 269 + 22 + 62 + Facilities + 0 + -1 + Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Node + set of Nodes the Facility connects to + + + 270 + 22 + 66 + Exporting Flow Paths + 0 + -1 + Node From + 0 + 1 + true + true + 297 + set of flow paths exporting from the node + node the flow path exports from + + + 271 + 22 + 66 + Importing Flow Paths + 0 + -1 + Node To + 0 + 1 + true + true + 298 + set of flow paths importing to the node + node the flow path imports to + + + 272 + 22 + 69 + Markets + 0 + -1 + Nodes + 0 + 1 + true + true + 61 + external markets connected to the node + node the market can buy and sell energy at + + + 273 + 22 + 70 + Constraints + 0 + -1 + Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Node + set of Nodes in the Constraint + + + 274 + 22 + 71 + Objectives + 0 + -1 + Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Node + set of Nodes in the Objective + + + 275 + 22 + 72 + Decision Variables + 0 + -1 + Nodes + 0 + -1 + true + true + 166 + set of nodes whose equations include the decision variable + Decision Variables included in the Node formulation + + + 276 + 22 + 75 + Conditions + 0 + -1 + Nodes + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Node + set of Node objects that define when the Variable is active + + + 277 + 22 + 79 + Weather Stations + 0 + 1 + Nodes + 0 + -1 + true + false + 233 + weather station the node is in + set of nodes in the weather station + + + 278 + 1 + 23 + Loads + 0 + -1 + true + true + 259 + Electricity Loads + + + 279 + 23 + 23 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Load inherits from + Load objects inheriting from this template + + + 280 + 95 + 23 + Loads + 0 + -1 + Lists + 0 + -1 + true + true + 259 + set of Load objects in the List + set of Lists containing the Load + + + 281 + 23 + 22 + Node + 1 + 1 + Loads + 0 + -1 + true + false + 67 + the node the load belongs to + set of loads at the node + + + 282 + 23 + 59 + Company + 0 + 1 + Loads + 0 + -1 + true + false + 285 + the company the load belongs to + set of loads owned by the company + + + 283 + 1 + 24 + Lines + 0 + -1 + true + true + 57 + Line objects + + + 284 + 24 + 24 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Line inherits from + Line objects inheriting from this template + + + 285 + 95 + 24 + Lines + 0 + -1 + Lists + 0 + -1 + true + true + 57 + set of Line objects in the List + set of Lists containing the Line + + + 286 + 24 + 22 + Node From + 1 + 1 + Exporting Lines + 0 + -1 + true + false + 68 + node that the line notionally exports from + set of exporting lines + + + 287 + 24 + 22 + Node To + 1 + 1 + Importing Lines + 0 + -1 + true + false + 69 + node that the line notionally imports to + set of importing lines + + + 288 + 24 + 59 + Companies + 0 + -1 + Lines + 0 + -1 + true + false + 9 + set of companies that owns the line + set of lines owned by the company + + + 289 + 24 + 63 + Maintenances + 0 + -1 + Lines + 0 + -1 + true + false + 179 + set of maintenance events on the line + set of lines taken out on maintenance + + + 290 + 24 + 70 + Constraints + 0 + -1 + Lines + 0 + -1 + true + true + 12 + set of Constraints on the Line + set of Lines in the Constraint + + + 291 + 24 + 71 + Objectives + 0 + -1 + Lines + 0 + -1 + true + true + 240 + set of Objectives on the Line + set of Lines in the Objective + + + 292 + 24 + 75 + Conditions + 0 + -1 + Lines + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Line + set of Line objects that define when the Variable is active + + + 293 + 1 + 25 + MLFs + 0 + -1 + true + true + 63 + MLF objects + + + 294 + 25 + 25 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the MLF inherits from + MLF objects inheriting from this template + + + 295 + 95 + 25 + MLFs + 0 + -1 + Lists + 0 + -1 + true + true + 63 + set of MLF objects in the List + set of Lists containing the MLF + + + 296 + 25 + 19 + Regions + 0 + -1 + true + true + 85 + set of regions whose demand appears in the MLF equation + + + 297 + 25 + 22 + Node + 1 + 1 + true + false + 67 + reference node for the MLF equation + + + 298 + 25 + 24 + Line + 1 + 1 + true + false + 55 + interregional notional interconnector whose losses are determined by the MLF equation + + + 299 + 1 + 26 + Transformers + 0 + -1 + true + true + 99 + Transformer objects + + + 300 + 26 + 26 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Transformer inherits from + Transformer objects inheriting from this template + + + 301 + 95 + 26 + Transformers + 0 + -1 + Lists + 0 + -1 + true + true + 99 + set of Transformer objects in the List + set of Lists containing the Transformer + + + 302 + 26 + 22 + Node From + 1 + 1 + Exporting Transformers + 0 + -1 + true + false + 68 + node that the transformer takes power from + set of exporting transformers + + + 303 + 26 + 22 + Node To + 1 + 1 + Importing Transformers + 0 + -1 + true + false + 69 + node that the transformer takes power to + set of importing transformers + + + 304 + 26 + 70 + Constraints + 0 + -1 + Transformers + 0 + -1 + true + true + 12 + set of Constraints on the Transformer + set of Transformers in the Constraint + + + 305 + 26 + 71 + Objectives + 0 + -1 + Transformers + 0 + -1 + true + true + 240 + set of Objectives on the Transformer + set of Transformers in the Objective + + + 306 + 1 + 27 + Flow Controls + 0 + -1 + true + true + 74 + Flow Control objects + + + 307 + 27 + 27 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Control inherits from + Flow Control objects inheriting from this template + + + 308 + 95 + 27 + Flow Controls + 0 + -1 + Lists + 0 + -1 + true + true + 74 + set of Flow Control objects in the List + set of Lists containing the Flow Control + + + 309 + 27 + 24 + Line + 1 + 1 + Flow Controls + 0 + -1 + true + false + 55 + line the flow control operates on + flow control associated with the line + + + 310 + 27 + 24 + Lines* + 0 + -1 + Flow Controls* + 0 + -1 + false + true + 187 + creates copies of the flow control at each line in this collection + create copies of these flow controls and place at this line + + + 311 + 27 + 70 + Constraints + 0 + -1 + Flow Controls + 0 + -1 + true + true + 12 + set of Constraints on the Flow Control + set of Flow Controls in the Constraint + + + 312 + 27 + 71 + Objectives + 0 + -1 + Flow Controls + 0 + -1 + true + true + 240 + set of Objectives on the Flow Control + set of Flow Controls in the Objective + + + 313 + 1 + 28 + Interfaces + 0 + -1 + true + true + 50 + Interface objects + + + 314 + 28 + 28 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Interface inherits from + Interface objects inheriting from this template + + + 315 + 95 + 28 + Interfaces + 0 + -1 + Lists + 0 + -1 + true + true + 50 + set of Interface objects in the List + set of Lists containing the Interface + + + 316 + 28 + 24 + Lines + 0 + -1 + Interfaces + 0 + -1 + true + true + 57 + set of lines in the interface + interfaces the line is in + + + 317 + 28 + 26 + Transformers + 0 + -1 + Interfaces + 0 + -1 + true + true + 99 + set of transformers in the interface + set of interfaces defined on the transformer + + + 318 + 28 + 70 + Constraints + 0 + -1 + Interfaces + 0 + -1 + true + true + 12 + set of Constraints on the Interface + set of Interfaces in the Constraint + + + 319 + 28 + 71 + Objectives + 0 + -1 + Interfaces + 0 + -1 + true + true + 240 + set of Objectives on the Interface + set of Interfaces in the Objective + + + 320 + 28 + 75 + Conditions + 0 + -1 + Interfaces + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Interface + set of Interface objects that define when the Variable is active + + + 321 + 1 + 29 + Contingencies + 0 + -1 + true + true + 13 + Contingency objects + + + 322 + 29 + 29 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Contingency inherits from + Contingency objects inheriting from this template + + + 323 + 95 + 29 + Contingencies + 0 + -1 + Lists + 0 + -1 + true + true + 13 + set of Contingency objects in the List + set of Lists containing the Contingency + + + 324 + 29 + 2 + Generators + 0 + -1 + Contingencies + 0 + -1 + true + false + 36 + set of generators that form the contingency + set of contingencies the generator defines + + + 325 + 29 + 24 + Lines + 0 + -1 + Contingencies + 0 + -1 + true + false + 57 + set of lines that form the contingency + set of contingencies the line defines + + + 326 + 29 + 24 + Monitored Lines + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 107 + set of lines whose limits are monitored under the contingency + set of contingencies the line is monitored under + + + 327 + 29 + 26 + Transformers + 0 + -1 + Contingencies + 0 + -1 + true + false + 99 + set of transformers that form the contingency + set of contingencies the transformer defines + + + 328 + 29 + 26 + Monitored Transformers + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 108 + set of transformers whose limits are monitored under the contingency + set of contingencies the transformer is monitored under + + + 329 + 29 + 28 + Monitored Interfaces + 0 + -1 + Monitoring Contingencies + 0 + -1 + true + true + 109 + set of interfaces whose limits are monitored under the contingency + set of contingencies the interface is monitored under + + + 330 + 1 + 30 + Hubs + 0 + -1 + true + true + 170 + Hub objects + + + 331 + 30 + 30 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Hub inherits from + Hub objects inheriting from this template + + + 332 + 95 + 30 + Hubs + 0 + -1 + Lists + 0 + -1 + true + true + 170 + set of Hub objects in the List + set of Lists containing the Hub + + + 333 + 30 + 70 + Constraints + 0 + -1 + Hubs + 0 + -1 + true + true + 12 + set of Constraints on the Hub + set of Hubs in the Constraint + + + 334 + 30 + 71 + Objectives + 0 + -1 + Hubs + 0 + -1 + true + true + 240 + set of Objectives on the Hub + set of Hubs in the Objective + + + 335 + 1 + 31 + Transmission Rights + 0 + -1 + true + true + 101 + Transmission Right objects + + + 336 + 31 + 31 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Transmission Right inherits from + Transmission Right objects inheriting from this template + + + 337 + 95 + 31 + Transmission Rights + 0 + -1 + Lists + 0 + -1 + true + true + 101 + set of Transmission Right objects in the List + set of Lists containing the Transmission Right + + + 338 + 31 + 21 + Zone From + 0 + 1 + true + false + 171 + zone for generation in the transmission right + + + 339 + 31 + 21 + Zone To + 0 + 1 + true + false + 172 + zone for load in the transmission right + + + 340 + 31 + 22 + Node From + 0 + 1 + true + false + 68 + node for generation in the transmission right + + + 341 + 31 + 22 + Node To + 0 + 1 + true + false + 69 + node for load in the transmission right + + + 342 + 31 + 24 + Line + 0 + 1 + true + false + 55 + line whose rentals are involved in the transmission right + + + 343 + 31 + 30 + Hub From + 0 + 1 + true + false + 173 + hub for generation in the transmission right + + + 344 + 31 + 30 + Hub To + 0 + 1 + true + false + 174 + hub for load in the transmission right + + + 345 + 31 + 59 + Companies + 0 + -1 + Transmission Rights + 0 + -1 + true + false + 9 + companies that own the transmission right + transmissions rights owned by the company + + + 346 + 1 + 32 + Heat Plants + 0 + -1 + true + true + 219 + Heat Plant objects + + + 347 + 32 + 32 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Plant inherits from + Heat Plant objects inheriting from this template + + + 348 + 95 + 32 + Heat Plants + 0 + -1 + Lists + 0 + -1 + true + true + 219 + set of Heat Plant objects in the List + set of Lists containing the Heat Plant + + + 349 + 32 + 4 + Fuels + 0 + -1 + Heat Plants + 0 + -1 + true + false + 31 + set of fuels consumed + set of heat plants that consume the fuel + + + 350 + 32 + 4 + Start Fuels + 0 + -1 + Heat Plants Started + 0 + -1 + true + false + 92 + fuels available for starting units + set of heat plants that use the fuel to start + + + 351 + 32 + 22 + Nodes + 0 + -1 + Heat Plants + 0 + -1 + true + false + 70 + set of nodes injected at + set of heat plants connected to the node + + + 352 + 32 + 33 + Heat Input Nodes + 0 + -1 + Input Heat Plants + 0 + -1 + true + false + 223 + set of heat nodes the heat plant injects to + set of heat plants connected to the heat node + + + 353 + 32 + 33 + Heat Output Nodes + 0 + -1 + Output Heat Plants + 0 + -1 + true + false + 224 + set of heat nodes the heat plant receives from + set of heat plants connected to the heat node + + + 354 + 32 + 38 + Gas Nodes + 0 + -1 + Heat Plants + 0 + -1 + true + true + 115 + set of source gas nodes for the heat plant + set of heat plants connected to the gas node + + + 355 + 32 + 70 + Constraints + 0 + -1 + Heat Plants + 0 + -1 + true + true + 12 + set of Constraints on the Heat Plant + set of Heat Plants in the Constraint + + + 356 + 32 + 71 + Objectives + 0 + -1 + Heat Plants + 0 + -1 + true + true + 240 + set of Objectives on the Heat Plant + set of Heat Plants in the Objective + + + 357 + 32 + 75 + Conditions + 0 + -1 + Heat Plants + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Heat Plant + set of Heat Plant objects that define when the Variable is active + + + 358 + 1 + 33 + Heat Nodes + 0 + -1 + true + true + 220 + Heat Node objects + + + 359 + 33 + 33 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Node inherits from + Heat Node objects inheriting from this template + + + 360 + 95 + 33 + Heat Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 220 + set of Heat Node objects in the List + set of Lists containing the Heat Node + + + 361 + 33 + 33 + Heat Export Nodes + 0 + -1 + Heat Import Nodes + 0 + -1 + true + false + 225 + set of node heat is exported to + set of heat nodes importing to node + + + 362 + 33 + 48 + Water Plants + 0 + -1 + Heat Nodes + 0 + -1 + true + false + 188 + set of water plants supplied + set of nodes supplying heat + + + 363 + 33 + 62 + Facilities + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Heat Node + set of Heat Nodes the Facility connects to + + + 364 + 33 + 69 + Markets + 0 + -1 + Heat Nodes + 0 + 1 + true + true + 61 + external heat markets connected to the heat node + heat node the market can by and sell heat at + + + 365 + 33 + 70 + Constraints + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Heat Node + set of Heat Nodes in the Constraint + + + 366 + 33 + 71 + Objectives + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Heat Node + set of Heat Nodes in the Objective + + + 367 + 33 + 75 + Conditions + 0 + -1 + Heat Nodes + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Heat Node + set of Heat Node objects that define when the Variable is active + + + 368 + 1 + 34 + Heat Storages + 0 + -1 + true + true + 253 + Heat Storage objects + + + 369 + 34 + 34 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Heat Storage inherits from + Heat Storage objects inheriting from this template + + + 370 + 95 + 34 + Heat Storages + 0 + -1 + Lists + 0 + -1 + true + true + 253 + set of Heat Storage objects in the List + set of Lists containing the Heat Storage + + + 371 + 34 + 33 + Heat Nodes + 1 + 1 + Heat Storages + 0 + 1 + true + false + 220 + set of heat nodes the heat storage injects to and withdraws from + set of heat storages connected to the heat node + + + 372 + 34 + 70 + Constraints + 0 + -1 + Heat Storages + 0 + -1 + true + true + 12 + set of Constraints on the Heat Storage + set of Heat Storages in the Constraint + + + 373 + 34 + 71 + Objectives + 0 + -1 + Heat Storages + 0 + -1 + true + true + 240 + set of Objectives on the Heat Storage + set of Heat Storages in the Objective + + + 374 + 1 + 35 + Gas Fields + 0 + -1 + true + true + 112 + Gas Field objects + + + 375 + 35 + 35 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Field inherits from + Gas Field objects inheriting from this template + + + 376 + 95 + 35 + Gas Fields + 0 + -1 + Lists + 0 + -1 + true + true + 112 + set of Gas Field objects in the List + set of Lists containing the Gas Field + + + 377 + 35 + 38 + Gas Node + 0 + -1 + Gas Fields + 0 + -1 + true + true + 117 + gas node the gas field connects to + set of gas fields connected to the gas node + + + 378 + 35 + 42 + Gas Basin + 0 + -1 + Gas Fields + 0 + -1 + true + true + 177 + gas basins the gas field belongs to + set of gas fields in the gas basin + + + 379 + 35 + 59 + Companies + 0 + -1 + Gas Fields + 0 + -1 + true + false + 9 + Set of companies that own the gas field + set of gas fields the company owns + + + 380 + 35 + 63 + Maintenances + 0 + -1 + Gas Fields + 0 + -1 + true + false + 179 + set of maintenance events on the gas field + set of gas fields taken out by the maintenance event + + + 381 + 35 + 70 + Constraints + 0 + -1 + Gas Fields + 0 + -1 + true + true + 12 + set of Constraints on the Gas Field + set of Gas Fields in the Constraint + + + 382 + 35 + 71 + Objectives + 0 + -1 + Gas Fields + 0 + -1 + true + true + 240 + set of Objectives on the Gas Field + set of Gas Fields in the Objective + + + 383 + 1 + 36 + Gas Plants + 0 + -1 + true + true + 210 + Gas Plant objects + + + 384 + 36 + 36 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Plant inherits from + Gas Plant objects inheriting from this template + + + 385 + 95 + 36 + Gas Plants + 0 + -1 + Lists + 0 + -1 + true + true + 210 + set of Gas Plant objects in the List + set of Lists containing the Gas Plant + + + 386 + 36 + 22 + Node + 0 + 1 + Gas Plants + 0 + -1 + true + false + 67 + Electric Node the Gas Plant connects to + set of Gas Plants connected to the Electric Node + + + 387 + 36 + 38 + Input Node + 0 + 1 + Gas Plants Supplied + 0 + -1 + true + false + 208 + Gas Node the Gas Plant imports gas from + set of Gas Plants the Gas Node supplies + + + 388 + 36 + 38 + Output Node + 1 + 1 + Supplying Gas Plants + 0 + -1 + true + false + 209 + Gas Node the Gas Plant exports gas to + set of Gas Plants that supply the Gas Node + + + 389 + 36 + 63 + Maintenances + 0 + -1 + Gas Plants + 0 + -1 + true + false + 179 + set of maintenance events on the gas plant + set of gas plants taken out by the maintenance event + + + 390 + 36 + 70 + Constraints + 0 + -1 + Gas Plants + 0 + -1 + true + true + 12 + set of Constraints on the Gas Plant + set of Gas Plants in the Constraint + + + 391 + 36 + 71 + Objectives + 0 + -1 + Gas Plants + 0 + -1 + true + true + 240 + set of Objectives on the Gas Plant + set of Gas Plants in the Objective + + + 392 + 36 + 72 + Decision Variables + 0 + -1 + Gas Plants + 0 + -1 + true + true + 166 + set of gas plants whose equations include the decision variable + Decision Variables included in the Gas Plant formulation + + + 393 + 1 + 37 + Gas Pipelines + 0 + -1 + true + true + 114 + Gas Pipeline objects + + + 394 + 37 + 37 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Pipeline inherits from + Gas Pipeline objects inheriting from this template + + + 395 + 95 + 37 + Gas Pipelines + 0 + -1 + Lists + 0 + -1 + true + true + 114 + set of Gas Pipeline objects in the List + set of Lists containing the Gas Pipeline + + + 396 + 37 + 38 + Gas Node From + 1 + 1 + Exporting Gas Pipelines + 0 + -1 + true + false + 118 + gas node the gas pipeline exports from + set of gas pipelines exporting from the gas node + + + 397 + 37 + 38 + Gas Node To + 1 + 1 + Importing Gas Pipelines + 0 + -1 + true + false + 119 + gas node the gas pipeline imports to + set of gas pipelines importing to the gas node + + + 398 + 37 + 63 + Maintenances + 0 + -1 + Gas Pipelines + 0 + -1 + true + false + 179 + set of maintenance events on the gas pipeline + set of gas pipelines taken out by the maintenance event + + + 399 + 37 + 70 + Constraints + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 12 + set of Constraints on the Gas Pipeline + set of Gas Pipelines in the Constraint + + + 400 + 37 + 71 + Objectives + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 240 + set of Objectives on the Gas Pipeline + set of Gas Pipelines in the Objective + + + 401 + 37 + 75 + Conditions + 0 + -1 + Gas Pipelines + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Gas Pipeline + set of Gas Pipeline objects that define when the Variable is active + + + 402 + 1 + 38 + Gas Nodes + 0 + -1 + true + true + 115 + Gas Node objects + + + 403 + 38 + 38 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Node inherits from + Gas Node objects inheriting from this template + + + 404 + 95 + 38 + Gas Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 115 + set of Gas Node objects in the List + set of Lists containing the Gas Node + + + 405 + 38 + 43 + Gas Zones + 0 + -1 + Gas Nodes + 0 + -1 + true + false + 159 + set of gas zones the gas node belongs to + set of gas nodes in the gas zone + + + 406 + 38 + 45 + Gas Transports + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 211 + + + 407 + 38 + 46 + Gas Paths + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 303 + set of Gas paths that the gas node is a part of + set of gas nodes that are in the gas path + + + 408 + 38 + 62 + Facilities + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Gas Node + set of Gas Nodes the Facility connects to + + + 409 + 38 + 69 + Markets + 0 + -1 + Gas Nodes + 0 + 1 + true + true + 61 + external gas market connected to the gas node + gas node the market can buy and sell gas at + + + 410 + 38 + 70 + Constraints + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Gas Node + set of Gas Nodes in the Constraint + + + 411 + 38 + 71 + Objectives + 0 + -1 + Gas Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Gas Node + set of Gas Nodes in the Objective + + + 412 + 1 + 39 + Gas Storages + 0 + -1 + true + true + 113 + Gas Storage objects + + + 413 + 39 + 39 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Storage inherits from + Gas Storage objects inheriting from this template + + + 414 + 95 + 39 + Gas Storages + 0 + -1 + Lists + 0 + -1 + true + true + 113 + set of Gas Storage objects in the List + set of Lists containing the Gas Storage + + + 415 + 39 + 6 + Source Power2X + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 293 + + + 416 + 39 + 35 + Source Gas Fields + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 289 + + + 417 + 39 + 36 + Source Gas Plants + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 292 + + + 418 + 39 + 38 + Gas Nodes + 1 + -1 + Gas Storages + 0 + -1 + true + true + 115 + gas node the gas storage connects to + set of gas storages connected to the gas node + + + 419 + 39 + 39 + Source Gas Storages + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 290 + + + 420 + 39 + 44 + Source Gas Contracts + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 291 + + + 421 + 39 + 45 + Source Gas Transports + 0 + -1 + Gas Storages Supplied + 0 + -1 + true + true + 299 + + + 422 + 39 + 63 + Maintenances + 0 + -1 + Gas Storages + 0 + -1 + true + false + 179 + set of maintenance events on the gas storage + set of gas storages taken out by the maintenance event + + + 423 + 39 + 70 + Constraints + 0 + -1 + Gas Storages + 0 + -1 + true + true + 12 + set of Constraints on the Gas Storage + set of Gas Storages in the Constraint + + + 424 + 39 + 71 + Objectives + 0 + -1 + Gas Storages + 0 + -1 + true + true + 240 + set of Objectives on the Gas Storage + set of Gas Storages in the Objective + + + 425 + 1 + 40 + Gas Demands + 0 + -1 + true + true + 116 + Gas Demand objects + + + 426 + 40 + 40 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Demand inherits from + Gas Demand objects inheriting from this template + + + 427 + 95 + 40 + Gas Demands + 0 + -1 + Lists + 0 + -1 + true + true + 116 + set of Gas Demand objects in the List + set of Lists containing the Gas Demand + + + 428 + 40 + 6 + Source Power2X + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 293 + + + 429 + 40 + 35 + Source Gas Fields + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 289 + + + 430 + 40 + 36 + Source Gas Plants + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 292 + + + 431 + 40 + 38 + Gas Nodes + 1 + -1 + Gas Demands + 0 + -1 + true + true + 115 + set of gas nodes the demand occurs at + set of gas demands at this gas node + + + 432 + 40 + 39 + Source Gas Storages + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 290 + + + 433 + 40 + 44 + Linked Gas Contracts + 0 + -1 + Linked Gas Demands + 0 + -1 + true + true + 288 + gas contracts linked to the gas demand + set of gas demands linked with the gas contract + + + 434 + 40 + 44 + Source Gas Contracts + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 291 + + + 435 + 40 + 45 + Source Gas Transports + 0 + -1 + Gas Demands Supplied + 0 + -1 + true + true + 299 + + + 436 + 40 + 59 + Companies + 0 + -1 + Gas Demands + 0 + -1 + true + false + 9 + set of companies that own the gas demand + set of gas demands the company owns + + + 437 + 1 + 41 + Gas DSM Programs + 0 + -1 + true + true + 235 + Gas DSM Program objects + + + 438 + 41 + 41 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas DSM Program inherits from + Gas DSM Program objects inheriting from this template + + + 439 + 95 + 41 + Gas DSM Programs + 0 + -1 + Lists + 0 + -1 + true + true + 235 + set of Gas DSM Program objects in the List + set of Lists containing the Gas DSM Program + + + 440 + 41 + 40 + Gas Demands + 1 + 1 + Gas DSM Programs + 0 + -1 + true + false + 116 + set of gas demand for the DSM program + set of gas DSM programs for the gas demand + + + 441 + 41 + 70 + Constraints + 0 + -1 + Gas DSM Programs + 0 + -1 + true + true + 12 + set of Constraints on the Gas DSM Program + set of Gas DSM Programs in the Constraint + + + 442 + 41 + 71 + Objectives + 0 + -1 + Gas DSM Programs + 0 + -1 + true + true + 240 + set of Objectives on the Gas DSM Program + set of Gas DSM Programs in the Objective + + + 443 + 1 + 42 + Gas Basins + 0 + -1 + true + true + 175 + Gas Basin objects + + + 444 + 42 + 42 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Basin inherits from + Gas Basin objects inheriting from this template + + + 445 + 95 + 42 + Gas Basins + 0 + -1 + Lists + 0 + -1 + true + true + 175 + set of Gas Basin objects in the List + set of Lists containing the Gas Basin + + + 446 + 42 + 70 + Constraints + 0 + -1 + Gas Basins + 0 + -1 + true + true + 12 + set of Constraints on the Gas Basin + set of Gas Basins in the Constraint + + + 447 + 42 + 71 + Objectives + 0 + -1 + Gas Basins + 0 + -1 + true + true + 240 + set of Objectives on the Gas Basin + set of Gas Basins in the Objective + + + 448 + 1 + 43 + Gas Zones + 0 + -1 + true + true + 159 + Gas Zone objects + + + 449 + 43 + 43 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Zone inherits from + Gas Zone objects inheriting from this template + + + 450 + 95 + 43 + Gas Zones + 0 + -1 + Lists + 0 + -1 + true + true + 159 + set of Gas Zone objects in the List + set of Lists containing the Gas Zone + + + 451 + 43 + 2 + Generators + 0 + -1 + false + true + 36 + + + 452 + 43 + 35 + Gas Fields + 0 + -1 + false + true + 112 + + + 453 + 43 + 36 + Gas Plants + 0 + -1 + false + true + 210 + + + 454 + 43 + 37 + Exporting Gas Pipelines + 0 + -1 + false + true + 160 + + + 455 + 43 + 37 + Importing Gas Pipelines + 0 + -1 + false + true + 161 + + + 456 + 43 + 37 + Interzonal Gas Pipelines + 0 + -1 + false + true + 162 + + + 457 + 43 + 37 + Intrazonal Gas Pipelines + 0 + -1 + false + true + 163 + + + 458 + 43 + 39 + Gas Storages + 0 + -1 + false + true + 113 + + + 459 + 43 + 40 + Gas Demands + 0 + -1 + false + true + 116 + + + 460 + 43 + 44 + Gas Contracts + 0 + -1 + false + true + 207 + + + 461 + 43 + 45 + Exporting Gas Transports + 0 + -1 + false + true + 214 + + + 462 + 43 + 45 + Importing Gas Transports + 0 + -1 + false + true + 215 + + + 463 + 43 + 45 + Interzonal Gas Transports + 0 + -1 + false + true + 216 + + + 464 + 43 + 45 + Intrazonal Gas Transports + 0 + -1 + false + true + 217 + + + 465 + 1 + 44 + Gas Contracts + 0 + -1 + true + true + 207 + Gas Contract objects + + + 466 + 44 + 44 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Contract inherits from + Gas Contract objects inheriting from this template + + + 467 + 95 + 44 + Gas Contracts + 0 + -1 + Lists + 0 + -1 + true + true + 207 + set of Gas Contract objects in the List + set of Lists containing the Gas Contract + + + 468 + 44 + 35 + Gas Fields + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 112 + gas fields that have a contract to produce gas + set of gas contracts associated with gas field production + + + 469 + 44 + 37 + Gas Pipelines + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 114 + gas pipelines that have a contract to transport gas + set of gas contracts associated with gas transportation + + + 470 + 44 + 38 + Gas Nodes + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 115 + gas nodes that have a contract to deliver gas + set of gas contracts associated with gas nodes + + + 471 + 44 + 45 + Gas Transports + 0 + -1 + Gas Contracts + 0 + -1 + true + false + 211 + gas transports that have a contract to deliver gas + set of gas contracts associated with gas transport + + + 472 + 44 + 59 + Companies + 0 + 1 + Gas Contracts + 0 + 1 + true + false + 9 + company that have a contract to supply gas + set of gas contract supplying to the company + + + 473 + 44 + 70 + Constraints + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 12 + set of Constraints on the Gas Contract + set of Gas Contracts in the Constraint + + + 474 + 44 + 71 + Objectives + 0 + -1 + Gas Contracts + 0 + -1 + true + true + 240 + set of Objectives on the Gas Contract + set of Gas Contracts in the Objective + + + 475 + 1 + 45 + Gas Transports + 0 + -1 + true + true + 211 + Gas Transport objects + + + 476 + 45 + 45 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Transport inherits from + Gas Transport objects inheriting from this template + + + 477 + 95 + 45 + Gas Transports + 0 + -1 + Lists + 0 + -1 + true + true + 211 + set of Gas Transport objects in the List + set of Lists containing the Gas Transport + + + 478 + 45 + 6 + Source Power2X + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 293 + + + 479 + 45 + 35 + Source Gas Fields + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 289 + + + 480 + 45 + 36 + Source Gas Plants + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 292 + + + 481 + 45 + 38 + Export Node + 0 + 1 + Exporting Gas Transports + 0 + -1 + true + false + 212 + gas node the gas transport exports from + set of gas transports exporting from the gas node + + + 482 + 45 + 38 + Import Node + 0 + 1 + Importing Gas Transports + 0 + -1 + true + false + 213 + gas node the gas transport imports to + set of gas transports importing to the gas node + + + 483 + 45 + 39 + Source Gas Storages + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 290 + + + 484 + 45 + 44 + Source Gas Contracts + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 291 + + + 485 + 45 + 45 + Source Gas Transports + 0 + -1 + Gas Transports Supplied + 0 + -1 + true + true + 299 + + + 486 + 45 + 46 + Gas Paths + 0 + -1 + Gas Transports + 0 + -1 + true + true + 303 + set of gas paths that the gas transport can take + set of gas transports that can travel along a gas path + + + 487 + 45 + 63 + Maintenances + 0 + -1 + Gas Transports + 0 + -1 + true + false + 179 + set of maintenance events on the gas transport + set of gas transports taken out by the maintenance event + + + 488 + 45 + 70 + Constraints + 0 + -1 + Gas Transports + 0 + -1 + true + true + 12 + set of Constraints on the Gas Transport + set of Gas Transports in the Constraint + + + 489 + 45 + 71 + Objectives + 0 + -1 + Gas Transports + 0 + -1 + true + true + 240 + set of Objectives on the Gas Transport + set of Gas Transports in the Objective + + + 490 + 1 + 46 + Gas Paths + 0 + -1 + true + true + 303 + Gas Path objects + + + 491 + 46 + 46 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Path inherits from + Gas Path objects inheriting from this template + + + 492 + 95 + 46 + Gas Paths + 0 + -1 + Lists + 0 + -1 + true + true + 303 + set of Gas Path objects in the List + set of Lists containing the Gas Path + + + 493 + 1 + 47 + Gas Capacity Release Offers + 0 + -1 + true + true + 239 + Gas Capacity Release Offer objects + + + 494 + 47 + 47 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Gas Capacity Release Offer inherits from + Gas Capacity Release Offer objects inheriting from this template + + + 495 + 95 + 47 + Gas Capacity Release Offers + 0 + -1 + Lists + 0 + -1 + true + true + 239 + set of Gas Capacity Release Offer objects in the List + set of Lists containing the Gas Capacity Release Offer + + + 496 + 47 + 37 + Gas Pipelines + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + false + 114 + set of gas pipelines for the gas capacity release offers + set of gas capacity release offers for gas pipelines + + + 497 + 47 + 39 + Gas Storages + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + false + 113 + set of gas storages for the gas capacity release offers + set of gas capacity release offers for gas storages + + + 498 + 47 + 70 + Constraints + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + true + 12 + set of Constraints on the Gas Capacity Release Offer + set of Gas Capacity Release Offers in the Constraint + + + 499 + 47 + 71 + Objectives + 0 + -1 + Gas Capacity Release Offers + 0 + -1 + true + true + 240 + set of Objectives on the Gas Capacity Release Offer + set of Gas Capacity Release Offers in the Objective + + + 500 + 1 + 48 + Water Plants + 0 + -1 + true + true + 188 + Water Plant objects + + + 501 + 48 + 48 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Plant inherits from + Water Plant objects inheriting from this template + + + 502 + 95 + 48 + Water Plants + 0 + -1 + Lists + 0 + -1 + true + true + 188 + set of Water Plant objects in the List + set of Lists containing the Water Plant + + + 503 + 48 + 22 + Node + 0 + 1 + Water Plants + 0 + -1 + true + false + 67 + Electric Node the Water Plant connects to + set of Water Plants connected to the Electric Node + + + 504 + 48 + 50 + Input Node + 0 + 1 + Water Plant Supplied + 0 + -1 + true + false + 208 + Water Node the Water Plant imports water from (or 'the sea' if none is defined) + set of Water Plants the Water Node supplies + + + 505 + 48 + 50 + Output Node + 1 + 1 + Supplying Water Plants + 0 + -1 + true + false + 209 + Water Node the Water Plant exports water to + set of Water Plants that supply the Water Node + + + 506 + 48 + 63 + Maintenances + 0 + -1 + Water Plants + 0 + -1 + true + false + 179 + set of maintenance events on the water plant + set of water plants taken out by the maintenance event + + + 507 + 48 + 70 + Constraints + 0 + -1 + Water Plants + 0 + -1 + true + true + 12 + set of Constraints on the Water Plant + set of Water Plants in the Constraint + + + 508 + 48 + 71 + Objectives + 0 + -1 + Water Plants + 0 + -1 + true + true + 240 + set of Objectives on the Water Plant + set of Water Plants in the Objective + + + 509 + 48 + 72 + Decision Variables + 0 + -1 + Water Plants + 0 + -1 + true + true + 166 + set of water plants whose equations include the decision variable + Decision Variables included in the Water Plant formulation + + + 510 + 1 + 49 + Water Pipelines + 0 + -1 + true + true + 190 + Water Pipeline objects + + + 511 + 49 + 49 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pipeline inherits from + Water Pipeline objects inheriting from this template + + + 512 + 95 + 49 + Water Pipelines + 0 + -1 + Lists + 0 + -1 + true + true + 190 + set of Water Pipeline objects in the List + set of Lists containing the Water Pipeline + + + 513 + 49 + 50 + Water Node From + 1 + 1 + Exporting Water Pipelines + 0 + -1 + true + false + 201 + Water Node the Water Pipeline exports from + set of Water Pipelines exporting from the Water Node + + + 514 + 49 + 50 + Water Node To + 1 + 1 + Importing Water Pipelines + 0 + -1 + true + false + 202 + Water Node the Water Pipeline imports to + set of Water Pipelines importing to the Water Node + + + 515 + 49 + 63 + Maintenances + 0 + -1 + Water Pipelines + 0 + -1 + true + false + 179 + set of maintenance events on the water pipeline + set of water pipelines taken out by the maintenance event + + + 516 + 49 + 70 + Constraints + 0 + -1 + Water Pipelines + 0 + -1 + true + true + 12 + set of Constraints on the Water Pipeline + set of Water Pipelines in the Constraint + + + 517 + 49 + 71 + Objectives + 0 + -1 + Water Pipelines + 0 + -1 + true + true + 240 + set of Objectives on the Water Pipeline + set of Water Pipelines in the Objective + + + 518 + 1 + 50 + Water Nodes + 0 + -1 + true + true + 191 + Water Node objects + + + 519 + 50 + 50 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Node inherits from + Water Node objects inheriting from this template + + + 520 + 95 + 50 + Water Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 191 + set of Water Node objects in the List + set of Lists containing the Water Node + + + 521 + 50 + 22 + Node + 0 + 1 + Water Nodes + 0 + -1 + true + false + 67 + Node the Water Node connects to + set of Water Nodes connected to the Electric Node + + + 522 + 50 + 53 + Water Zones + 0 + -1 + Water Nodes + 0 + -1 + true + true + 193 + set of Water Zones the Water node belongs to + set of Water Nodes in the Water Zone + + + 523 + 50 + 62 + Facilities + 0 + -1 + Water Nodes + 0 + -1 + true + true + 267 + set of Facility objects connected to the Water Node + set of Water Nodes the Facility connects to + + + 524 + 50 + 69 + Markets + 0 + -1 + Water Nodes + 0 + 1 + true + true + 61 + external water market connected to the water node + water node the market can buy and sell water at + + + 525 + 50 + 70 + Constraints + 0 + -1 + Water Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Water Node + set of Water Nodes in the Constraint + + + 526 + 50 + 71 + Objectives + 0 + -1 + Water Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Water Node + set of Water Nodes in the Objective + + + 527 + 1 + 51 + Water Storages + 0 + -1 + true + true + 189 + Water Storage objects + + + 528 + 51 + 51 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Storage inherits from + Water Storage objects inheriting from this template + + + 529 + 95 + 51 + Water Storages + 0 + -1 + Lists + 0 + -1 + true + true + 189 + set of Water Storage objects in the List + set of Lists containing the Water Storage + + + 530 + 51 + 50 + Water Node + 1 + 1 + Water Storages + 0 + -1 + true + false + 200 + Water Node the Water Storage connects to + set of Water Storages connected to the Water Node + + + 531 + 51 + 63 + Maintenances + 0 + -1 + Water Storages + 0 + -1 + true + false + 179 + set of maintenance events on the water storage + set of water storages taken out by the maintenance event + + + 532 + 51 + 70 + Constraints + 0 + -1 + Water Storages + 0 + -1 + true + true + 12 + set of Constraints on the Water Storage + set of Water Storages in the Constraint + + + 533 + 51 + 71 + Objectives + 0 + -1 + Water Storages + 0 + -1 + true + true + 240 + set of Objectives on the Water Storage + set of Water Storages in the Objective + + + 534 + 1 + 52 + Water Demands + 0 + -1 + true + true + 192 + Water Demand objects + + + 535 + 52 + 52 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Demand inherits from + Water Demand objects inheriting from this template + + + 536 + 95 + 52 + Water Demands + 0 + -1 + Lists + 0 + -1 + true + true + 192 + set of Water Demand objects in the List + set of Lists containing the Water Demand + + + 537 + 52 + 50 + Water Nodes + 1 + -1 + Water Demands + 0 + -1 + true + false + 191 + set of Water Nodes the Water Demand occurs at + set of Water Demands at this Water Node + + + 538 + 1 + 53 + Water Zones + 0 + -1 + true + true + 193 + Water Zone objects + + + 539 + 53 + 53 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Zone inherits from + Water Zone objects inheriting from this template + + + 540 + 95 + 53 + Water Zones + 0 + -1 + Lists + 0 + -1 + true + true + 193 + set of Water Zone objects in the List + set of Lists containing the Water Zone + + + 541 + 53 + 48 + Water Plants + 0 + -1 + false + true + 188 + + + 542 + 53 + 49 + Exporting Water Pipelines + 0 + -1 + false + true + 203 + + + 543 + 53 + 49 + Importing Water Pipelines + 0 + -1 + false + true + 204 + + + 544 + 53 + 49 + Interzonal Water Pipelines + 0 + -1 + false + true + 205 + + + 545 + 53 + 49 + Intrazonal Water Pipelines + 0 + -1 + false + true + 206 + + + 546 + 53 + 51 + Water Storages + 0 + -1 + false + true + 189 + + + 547 + 53 + 52 + Water Demands + 0 + -1 + false + true + 192 + + + 548 + 1 + 54 + Water Pump Stations + 0 + -1 + true + true + 254 + Water Pump Station objects + + + 549 + 54 + 54 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pump Station inherits from + Water Pump Station objects inheriting from this template + + + 550 + 95 + 54 + Water Pump Stations + 0 + -1 + Lists + 0 + -1 + true + true + 254 + set of Water Pump Station objects in the List + set of Lists containing the Water Pump Station + + + 551 + 54 + 49 + Water Pipeline + 0 + 1 + true + false + 256 + Water Pipeline connected to the water pump station + + + 552 + 54 + 51 + Downstream Water Storage + 0 + 1 + true + false + 258 + Water Storage situated downstream to the pump station + + + 553 + 54 + 51 + Upstream Water Storage + 0 + 1 + true + false + 257 + Water Storage situated upstream to the water pump station + + + 554 + 54 + 55 + Water Pumps + 0 + -1 + Water Pump Stations + 0 + 1 + true + true + 255 + Collection of water pumps associated with the water pump station + Water pump stations associated with a water pump + + + 555 + 54 + 70 + Constraints + 0 + -1 + Water Pump Stations + 0 + -1 + true + true + 12 + set of Constraints on the Water Pump Station + set of Water Pump Stations in the Constraint + + + 556 + 54 + 71 + Objectives + 0 + -1 + Water Pump Stations + 0 + -1 + true + true + 240 + set of Objectives on the Water Pump Station + set of Water Pump Stations in the Objective + + + 557 + 1 + 55 + Water Pumps + 0 + -1 + true + true + 255 + Water Pump objects + + + 558 + 55 + 55 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Water Pump inherits from + Water Pump objects inheriting from this template + + + 559 + 95 + 55 + Water Pumps + 0 + -1 + Lists + 0 + -1 + true + true + 255 + set of Water Pump objects in the List + set of Lists containing the Water Pump + + + 560 + 55 + 70 + Constraints + 0 + -1 + Water Pumps + 0 + -1 + true + true + 12 + set of Constraints on the Water Pumps + set of Water Pumps in the Constraint + + + 561 + 1 + 56 + Vehicles + 0 + -1 + true + true + 241 + Vehicle objects + + + 562 + 56 + 56 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Vehicle inherits from + Vehicle objects inheriting from this template + + + 563 + 95 + 56 + Vehicles + 0 + -1 + Lists + 0 + -1 + true + true + 241 + set of Vehicle objects in the List + set of Lists containing the Vehicle + + + 564 + 56 + 57 + Charging Stations + 0 + -1 + Vehicles + 0 + -1 + true + true + 242 + set of Charging Stations used by the Vehicle + set of Vehicles that use the Charging Station + + + 565 + 56 + 58 + Fleets + 0 + -1 + Vehicles + 0 + -1 + true + false + 243 + set of Fleets the Vehicle belongs to + set of Vehicles in the Fleet + + + 566 + 56 + 60 + Commodities + 0 + -1 + Vehicles + 0 + -1 + true + false + 260 + set of Commodities consumed by the Vehicle + set of Vehicles consuming the Commodity + + + 567 + 56 + 70 + Constraints + 0 + -1 + Vehicles + 0 + -1 + true + true + 12 + set of Constraints on the Vehicle + set of Vehicles in the Constraint + + + 568 + 56 + 71 + Objectives + 0 + -1 + Vehicles + 0 + -1 + true + true + 240 + set of Objectives on the Vehicle + set of Vehicles in the Objective + + + 569 + 1 + 57 + Charging Stations + 0 + -1 + true + true + 242 + Charging Station objects + + + 570 + 57 + 57 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Charging Station inherits from + Charging Station objects inheriting from this template + + + 571 + 95 + 57 + Charging Stations + 0 + -1 + Lists + 0 + -1 + true + true + 242 + set of Charging Station objects in the List + set of Lists containing the Charging Station + + + 572 + 57 + 14 + Reserves + 0 + -1 + Charging Stations + 0 + -1 + true + true + 88 + set of Reserves provided by the Charging Station + set of Charging Stations providing the Reserve + + + 573 + 57 + 22 + Node + 1 + 1 + Charging Stations + 0 + -1 + true + false + 67 + Charging Station connection point in the electric network + set of Charging Stations connected to the electric Node + + + 574 + 57 + 60 + Commodities + 0 + -1 + Charging Stations + 0 + -1 + true + false + 260 + set of Commodities consumed by the Charging Station + set of Charging Stations consuming the Commodity + + + 575 + 1 + 58 + Fleets + 0 + -1 + true + true + 243 + Fleet objects + + + 576 + 58 + 58 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Fleet inherits from + Fleet objects inheriting from this template + + + 577 + 95 + 58 + Fleets + 0 + -1 + Lists + 0 + -1 + true + true + 243 + set of Fleet objects in the List + set of Lists containing the Fleet + + + 578 + 58 + 59 + Companies + 0 + -1 + Fleets + 0 + -1 + true + false + 9 + set of Companies that own the Fleet + set of Fleets owned by the Company + + + 579 + 1 + 59 + Companies + 0 + -1 + true + true + 9 + Company objects + + + 580 + 59 + 59 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Company inherits from + Company objects inheriting from this template + + + 581 + 95 + 59 + Companies + 0 + -1 + Lists + 0 + -1 + true + true + 9 + set of Company objects in the List + set of Lists containing the Company + + + 582 + 59 + 4 + Fuels + 0 + -1 + true + true + 31 + + + 583 + 59 + 10 + Emissions + 0 + -1 + Companies + 0 + -1 + true + true + 20 + set of emissions produced by the company + set of companies that produce the emission + + + 584 + 59 + 14 + Reserves + 0 + -1 + true + true + 88 + + + 585 + 59 + 19 + Regions + 0 + -1 + Companies + 0 + -1 + true + true + 85 + set of regions the company has load responsibilities in + set of companies that are responsible for the load in the region + + + 586 + 59 + 56 + Vehicles + 0 + -1 + true + true + 241 + + + 587 + 59 + 59 + Companies + 0 + -1 + false + true + 9 + set of Companies the Company connects to + + + 588 + 59 + 60 + Commodities + 0 + -1 + true + true + 260 + + + 589 + 59 + 62 + Facilities + 0 + -1 + Companies + 0 + -1 + true + true + 267 + set of Facilities owned by the Company + Companies that own the Facility + + + 590 + 59 + 69 + Markets + 0 + -1 + Companies + 0 + -1 + true + true + 61 + Markets the Company own trades in + Companies that own the trades in the Market + + + 591 + 59 + 70 + Constraints + 0 + -1 + Companies + 0 + -1 + true + true + 12 + set of Constraints on the Company + set of Companies in the Constraint + + + 592 + 59 + 71 + Objectives + 0 + -1 + Companies + 0 + -1 + true + true + 240 + set of Objectives on the Company + set of Companies in the Objective + + + 593 + 1 + 60 + Commodities + 0 + -1 + true + true + 260 + Commodity objects + + + 594 + 60 + 60 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Commodity inherits from + Commodity objects inheriting from this template + + + 595 + 95 + 60 + Commodities + 0 + -1 + Lists + 0 + -1 + true + true + 260 + set of Commodity objects in the List + set of Lists containing the Commodity + + + 596 + 60 + 69 + Markets + 0 + -1 + Commodities + 0 + 1 + true + false + 61 + Markets the Commodity is traded in + Commodity traded in the Market + + + 597 + 60 + 70 + Constraints + 0 + -1 + Commodities + 0 + -1 + true + true + 12 + set of Constraints on the Commodity + set of Commodities in the Constraint + + + 598 + 60 + 71 + Objectives + 0 + -1 + Commodities + 0 + -1 + true + true + 240 + set of Objectives on the Commodity + set of Commodities in the Objective + + + 599 + 1 + 61 + Processes + 0 + -1 + true + true + 261 + Process objects + + + 600 + 61 + 61 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Process inherits from + Process objects inheriting from this template + + + 601 + 95 + 61 + Processes + 0 + -1 + Lists + 0 + -1 + true + true + 261 + set of Process objects in the List + set of Lists containing the Process + + + 602 + 61 + 60 + Primary Input + 0 + 1 + Primary Consumers + 0 + -1 + true + true + 263 + the primary input Commodity to the Process + set of Processes for which this Commodity is the primary input + + + 603 + 61 + 60 + Primary Output + 0 + 1 + Primary Producers + 0 + -1 + true + true + 265 + the primary output Commodity of the Process + set of Processes for which this Commodity is the primary output + + + 604 + 61 + 60 + Secondary Inputs + 0 + -1 + Secondary Consumers + 0 + -1 + true + true + 264 + the set of secondary input Commodities to the Process + set of Processes for which this Commodity is a secondary input + + + 605 + 61 + 60 + Secondary Outputs + 0 + -1 + Secondary Producers + 0 + -1 + true + true + 266 + the set of secondary output Commodities of the Process + set of Processes for which this Commodity is a secondary output + + + 606 + 61 + 70 + Constraints + 0 + -1 + Processes + 0 + -1 + true + true + 12 + set of Constraints on the Process + set of Processes in the Constraint + + + 607 + 61 + 71 + Objectives + 0 + -1 + Processes + 0 + -1 + true + true + 240 + set of Objectives on the Process + set of Processes in the Objective + + + 608 + 1 + 62 + Facilities + 0 + -1 + true + true + 267 + Facility objects + + + 609 + 62 + 62 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Facility inherits from + Facility objects inheriting from this template + + + 610 + 95 + 62 + Facilities + 0 + -1 + Lists + 0 + -1 + true + true + 267 + set of Facility objects in the List + set of Lists containing the Facility + + + 611 + 62 + 60 + Primary Inputs + 0 + -1 + Primary Consuming Facilities + 0 + -1 + true + true + 268 + + + 612 + 62 + 60 + Primary Outputs + 0 + -1 + Primary Producing Facilities + 0 + -1 + true + true + 270 + + + 613 + 62 + 60 + Secondary Inputs + 0 + -1 + Secondary Consuming Facilities + 0 + -1 + true + true + 264 + + + 614 + 62 + 60 + Secondary Outputs + 0 + -1 + Secondary Producing Facilities + 0 + -1 + true + true + 266 + + + 615 + 62 + 61 + Primary Process + 0 + 1 + Primary Facilities + 0 + -1 + true + false + 276 + the primary Process performed by the Facility + set of Facilities where this is the primary Process + + + 616 + 62 + 61 + Secondary Processes + 0 + -1 + Secondary Facilities + 0 + -1 + true + true + 277 + set of secondary Processes performed by the Facility + set of Facilities where this is a secondary Process + + + 617 + 62 + 61 + Warm Up Process + 0 + 1 + Facilities Warmed Up + 0 + -1 + true + false + 295 + the Process that runs during the Facility warm up time + set of Facilities where this is the Warm Up Process + + + 618 + 62 + 63 + Maintenances + 0 + -1 + Facilities + 0 + -1 + true + false + 179 + set of maintenance events on the facility + set of Facilities taken out on maintenance + + + 619 + 62 + 65 + Flow Nodes + 0 + -1 + Facilities + 0 + -1 + true + true + 279 + Set of Flow Nodes the Facility connects to + set of Facilities connected to the Flow Node + + + 620 + 62 + 68 + Entities + 0 + -1 + Facilities + 0 + -1 + true + true + 273 + set of Entities associated with the Facility + set of Facilities associated with the Entity + + + 621 + 62 + 70 + Constraints + 0 + -1 + Facilities + 0 + -1 + true + true + 12 + set of Constraints on the Facility + set of Facilities in the Constraint + + + 622 + 62 + 71 + Objectives + 0 + -1 + Facilities + 0 + -1 + true + true + 240 + set of Objectives on the Facility + set of Facilities in the Objective + + + 623 + 62 + 75 + Conditions + 0 + -1 + Facilities + 0 + -1 + true + true + 11 + set of conditional Variable objects involving the Facility + set of Facilities that define when the Variable is active + + + 624 + 1 + 63 + Maintenances + 0 + -1 + true + true + 179 + Maintenance objects + + + 625 + 63 + 63 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Maintenance inherits from + Maintenance objects inheriting from this template + + + 626 + 95 + 63 + Maintenances + 0 + -1 + Lists + 0 + -1 + true + true + 179 + set of Maintenance objects in the List + set of Lists containing the Maintenance + + + 627 + 63 + 63 + Prerequisites + 0 + -1 + Dependencies + 0 + -1 + true + false + 180 + set of maintenance events that must precede this event + set of maintenance events that depend on the completion of this event + + + 628 + 63 + 70 + Constraints + 0 + -1 + Maintenances + 0 + -1 + true + true + 12 + set of Constraints on the Maintenance + set of Maintenances in the Constraint + + + 629 + 63 + 71 + Objectives + 0 + -1 + Maintenances + 0 + -1 + true + true + 240 + set of Objectives on the Maintenance + set of Maintenances in the Objective + + + 630 + 1 + 64 + Flow Networks + 0 + -1 + true + true + 278 + Flow Network objects + + + 631 + 64 + 64 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Network inherits from + Flow Network objects inheriting from this template + + + 632 + 95 + 64 + Flow Networks + 0 + -1 + Lists + 0 + -1 + true + true + 278 + set of Flow Network objects in the List + set of Lists containing the Flow Network + + + 633 + 64 + 60 + Commodity + 1 + 1 + Flow Networks + 0 + -1 + true + true + 287 + Commodity flowing on the Flow Network + set of Flow Networks flowing the Commodity + + + 634 + 64 + 62 + Facilities + 0 + -1 + Flow Networks + 0 + -1 + true + true + 267 + + + 635 + 64 + 65 + Flow Nodes + 0 + -1 + Flow Network + 0 + 1 + true + true + 279 + Set of Flow Nodes in the Flow Network + Flow Network the Flow Node belongs to + + + 636 + 64 + 67 + Flow Storages + 0 + -1 + Flow Network + 0 + -1 + true + true + 294 + + + 637 + 64 + 70 + Constraints + 0 + -1 + Flow Networks + 0 + -1 + true + true + 12 + set of Constraints on the Flow Network + set of Flow Networks in the Constraint + + + 638 + 64 + 71 + Objectives + 0 + -1 + Flow Networks + 0 + -1 + true + true + 240 + set of Objectives on the Flow Network + set of Flow Networks in the Objective + + + 639 + 1 + 65 + Flow Nodes + 0 + -1 + true + true + 279 + Flow Node objects + + + 640 + 65 + 65 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Node inherits from + Flow Node objects inheriting from this template + + + 641 + 95 + 65 + Flow Nodes + 0 + -1 + Lists + 0 + -1 + true + true + 279 + set of Flow Node objects in the List + set of Lists containing the Flow Node + + + 642 + 65 + 69 + Markets + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 61 + set of Markets connected to the Flow Node + Flow Nodes the Market is connected to + + + 643 + 65 + 70 + Constraints + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 12 + set of Constraints on the Flow Node + set of Flow Nodes in the Constraint + + + 644 + 65 + 71 + Objectives + 0 + -1 + Flow Nodes + 0 + -1 + true + true + 240 + set of Objectives on the Flow Node + set of Flow Nodes in the Objective + + + 645 + 1 + 66 + Flow Paths + 0 + -1 + true + true + 280 + Flow Path objects + + + 646 + 66 + 66 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Path inherits from + Flow Path objects inheriting from this template + + + 647 + 95 + 66 + Flow Paths + 0 + -1 + Lists + 0 + -1 + true + true + 280 + set of Flow Path objects in the List + set of Lists containing the Flow Path + + + 648 + 66 + 65 + Flow Node From + 0 + 1 + Exporting Flow Paths + 0 + -1 + true + false + 282 + Flow Node the Flow Path exports from + set of Flow Paths exporting from the Flow Node + + + 649 + 66 + 65 + Flow Node To + 0 + 1 + Importing Flow Paths + 0 + -1 + true + false + 283 + Flow Node the Flow Path imports to + set of Flow Paths importing to the Flow Node + + + 650 + 66 + 70 + Constraints + 0 + -1 + Flow Paths + 0 + -1 + true + true + 12 + set of Constraints on the Flow Path + set of Flow Paths in the Constraint + + + 651 + 66 + 71 + Objectives + 0 + -1 + Flow Paths + 0 + -1 + true + true + 240 + set of Objectives on the Flow Path + set of Flow Paths in the Objective + + + 652 + 1 + 67 + Flow Storages + 0 + -1 + true + true + 294 + Flow Storage objects + + + 653 + 67 + 67 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Flow Storage inherits from + Flow Storage objects inheriting from this template + + + 654 + 95 + 67 + Flow Storages + 0 + -1 + Lists + 0 + -1 + true + true + 294 + set of Flow Storage objects in the List + set of Lists containing the Flow Storage + + + 655 + 67 + 65 + Flow Node + 1 + 1 + Flow Storages + 0 + -1 + true + false + 284 + Flow Node the Flow Storage connects to + set of Flow Storages connected to the Flow Node + + + 656 + 67 + 70 + Constraints + 0 + -1 + Flow Storages + 0 + -1 + true + true + 12 + set of Constraints on the Flow Storage + set of Flow Storages in the Constraint + + + 657 + 67 + 71 + Objectives + 0 + -1 + Flow Storages + 0 + -1 + true + true + 240 + set of Objectives on the Flow Storage + set of Flow Storages in the Objective + + + 658 + 1 + 68 + Entities + 0 + -1 + true + true + 273 + Entity objects + + + 659 + 68 + 68 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Entity inherits from + Entity objects inheriting from this template + + + 660 + 95 + 68 + Entities + 0 + -1 + Lists + 0 + -1 + true + true + 273 + set of Entity objects in the List + set of Lists containing the Entity + + + 661 + 68 + 60 + Commodities + 0 + -1 + true + true + 260 + + + 662 + 68 + 70 + Constraints + 0 + -1 + Entities + 0 + -1 + true + true + 12 + set of Constraints on the Entity + set of Entities in the Constraint + + + 663 + 68 + 71 + Objectives + 0 + -1 + Entities + 0 + -1 + true + true + 240 + set of Objectives on the Entity + set of Entities in the Objective + + + 664 + 1 + 69 + Markets + 0 + -1 + true + true + 61 + Market objects + + + 665 + 69 + 69 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Market inherits from + Market objects inheriting from this template + + + 666 + 95 + 69 + Markets + 0 + -1 + Lists + 0 + -1 + true + true + 61 + set of Market objects in the List + set of Lists containing the Market + + + 667 + 69 + 68 + Entities + 0 + -1 + Markets + 0 + -1 + true + true + 273 + Entities that own the trades in the Market + Markets the Entity trades in + + + 668 + 69 + 70 + Constraints + 0 + -1 + Markets + 0 + -1 + true + true + 12 + set of Constraints on the Market + set of Markets in the Constraint + + + 669 + 69 + 71 + Objectives + 0 + -1 + Markets + 0 + -1 + true + true + 240 + set of Objectives on the Market + set of Markets in the Objective + + + 670 + 1 + 70 + Constraints + 0 + -1 + true + true + 12 + Constraint objects + + + 671 + 70 + 70 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Constraint inherits from + Constraint objects inheriting from this template + + + 672 + 95 + 70 + Constraints + 0 + -1 + Lists + 0 + -1 + true + true + 12 + set of Constraint objects in the List + set of Lists containing the Constraint + + + 673 + 70 + 75 + Conditions + 0 + -1 + Conditional Constraints + 0 + -1 + true + true + 11 + set of switching variables for this constraint + set of constraints switched by this variable + + + 674 + 1 + 71 + Objectives + 0 + -1 + true + true + 240 + Objective + + + 675 + 71 + 71 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Objective inherits from + Objective objects inheriting from this template + + + 676 + 95 + 71 + Objectives + 0 + -1 + Lists + 0 + -1 + true + true + 240 + set of Objective objects in the List + set of Lists containing the Objective + + + 677 + 1 + 72 + Decision Variables + 0 + -1 + true + true + 166 + Decision Variable objects + + + 678 + 72 + 72 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Decision Variable inherits from + Decision Variable objects inheriting from this template + + + 679 + 95 + 72 + Decision Variables + 0 + -1 + Lists + 0 + -1 + true + true + 166 + set of Decision Variable objects in the List + set of Lists containing the Decision Variable + + + 680 + 72 + 70 + Constraints + 0 + -1 + Decision Variables + 0 + -1 + true + true + 12 + set of Constraints on the Decision Variable + set of Decision Variables in the Constraint + + + 681 + 72 + 70 + Definition + 0 + 1 + Definitions + 0 + 1 + true + false + 168 + Constraint that defines the Decision Variable value + Decision Variable defined by this Constraint + + + 682 + 72 + 71 + Objectives + 0 + -1 + Decision Variables + 0 + -1 + true + true + 240 + set of Objectives on the Decision Variable + set of Decision Variables in the Objective + + + 683 + 1 + 73 + Nonlinear Constraints + 0 + -1 + true + true + 250 + Nonlinear Constraint objects + + + 684 + 73 + 73 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Nonlinear Constraint inherits from + Nonlinear Constraint objects inheriting from this template + + + 685 + 95 + 73 + Nonlinear Constraints + 0 + -1 + Lists + 0 + -1 + true + true + 250 + set of Nonlinear Constraint objects in the List + set of Lists containing the Nonlinear Constraint + + + 686 + 73 + 72 + Decision Variable X + 1 + 1 + true + false + 251 + Decision Variable object specifying "X" for the Nonlinear Constraint + + + 687 + 73 + 72 + Decision Variable Y + 1 + 1 + true + false + 252 + Decision Variable object specifying "Y" for the Nonlinear Constraint + + + 688 + 1 + 74 + Data Files + 0 + -1 + true + true + 16 + Data File objects + + + 689 + 95 + 74 + Data Files + 0 + -1 + Lists + 0 + -1 + true + true + 16 + set of Data File objects in the List + set of Lists containing the Data File + + + 690 + 1 + 75 + Variables + 0 + -1 + true + true + 103 + Variable objects + + + 691 + 95 + 75 + Variables + 0 + -1 + Lists + 0 + -1 + true + true + 103 + set of Variable objects in the List + set of Lists containing the Variable + + + 692 + 75 + 70 + Constraints + 0 + -1 + Variables + 0 + -1 + true + true + 12 + set of Constraints on the Variable + set of Variables in the Constraint + + + 693 + 75 + 71 + Objectives + 0 + -1 + Variables + 0 + -1 + true + true + 240 + set of Objectives on the Variable + set of Variables in the Objective + + + 694 + 75 + 75 + Variables + 0 + -1 + true + true + 103 + correlation matrix + + + 695 + 75 + 75 + Conditions + 0 + -1 + true + true + 11 + set of conditions the condition depends on + + + 696 + 1 + 76 + Timeslices + 0 + -1 + true + true + 98 + Timeslice objects + + + 697 + 95 + 76 + Timeslices + 0 + -1 + Lists + 0 + -1 + true + true + 98 + set of Timeslice objects in the List + set of Lists containing the Timeslice + + + 698 + 1 + 77 + Globals + 0 + -1 + true + true + 167 + Global objects + + + 699 + 95 + 77 + Globals + 0 + -1 + Lists + 0 + -1 + true + true + 167 + set of Global objects in the List + set of Lists containing the Global + + + 700 + 1 + 78 + Scenarios + 0 + -1 + true + true + 90 + Scenario objects + + + 701 + 95 + 78 + Scenarios + 0 + -1 + Lists + 0 + -1 + true + true + 90 + set of Scenario objects in the List + set of Lists containing the Scenario + + + 702 + 1 + 79 + Weather Stations + 0 + -1 + true + true + 233 + Weather station objects + + + 703 + 95 + 79 + Weather Stations + 0 + -1 + Lists + 0 + -1 + true + true + 233 + set of Weather Station objects in the List + set of Lists containing the Weather Station + + + 704 + 79 + 38 + Gas Node + 1 + -1 + Weather Stations + 0 + 1 + true + false + 117 + gas node the weather station connects to + set of weather stations connected to the gas node + + + 705 + 79 + 39 + Gas Storages + 0 + -1 + false + true + 113 + + + 706 + 79 + 40 + Gas Demands + 0 + -1 + false + true + 116 + + + 707 + 1 + 80 + Models + 0 + -1 + true + true + 64 + Model objects + + + 708 + 80 + 78 + Scenarios + 0 + -1 + Models + 0 + -1 + true + true + 90 + set of scenarios used by the model + set of models that use the scenario + + + 709 + 80 + 15 + Reliability + 0 + 1 + Models + 0 + -1 + true + false + 249 + Reliability object evaluated in the model + set of models that run this Reliability object + + + 710 + 80 + 82 + Horizon + 1 + 1 + Models + 0 + -1 + true + false + 43 + horizon for the model + set of models that run this Horizon + + + 711 + 80 + 83 + Report + 1 + 1 + Models + 0 + -1 + true + false + 86 + report for the model + set of models that use these Report settings + + + 712 + 80 + 85 + Preview + 0 + 1 + Models + 0 + -1 + true + false + 302 + Preview settings for the model + set of models that run this Preview + + + 713 + 80 + 86 + LT Plan + 0 + 1 + Models + 0 + -1 + true + false + 60 + LT Plan settings for the model + set of models that run this LT Plan + + + 714 + 80 + 87 + PASA + 0 + 1 + Models + 0 + -1 + true + false + 71 + PASA settings for the model + set of models that run the this PASA + + + 715 + 80 + 88 + MT Schedule + 0 + 1 + Models + 0 + -1 + true + false + 65 + MT Schedule settings for the model + set of models that run this MT Schedule + + + 716 + 80 + 89 + ST Schedule + 0 + 1 + Models + 0 + -1 + true + false + 91 + ST Schedule settings for the model + set of models that run this ST Schedule + + + 717 + 80 + 84 + Stochastic + 0 + 1 + Models + 0 + -1 + true + false + 93 + Stochastic settings for the model + set of models using these Stochastic settings + + + 718 + 80 + 90 + Transmission + 0 + 1 + Models + 0 + -1 + true + false + 100 + Transmission settings for Model + set of Models using these Transmission settings + + + 719 + 80 + 91 + Production + 0 + 1 + Models + 0 + -1 + true + false + 78 + Production settings for Model + set of Models using these Production settings + + + 720 + 80 + 92 + Competition + 0 + 1 + Models + 0 + -1 + true + false + 10 + Competition settings for Model + set of Models using these Competition settings + + + 721 + 80 + 93 + Performance + 0 + 1 + Models + 0 + -1 + true + false + 72 + Performance settings for Model + set of Models using these Performance settings + + + 722 + 80 + 94 + Diagnostic + 0 + 1 + Models + 0 + -1 + true + false + 18 + Diagnostic settings for Model + set of Models using these Diagnostic settings + + + 723 + 80 + 80 + Interleaved + 0 + 1 + true + false + 155 + model run interleaved with this model + + + 724 + 1 + 81 + Projects + 0 + -1 + true + true + 79 + Project objects + + + 725 + 81 + 80 + Models + 1 + -1 + Projects + 0 + -1 + true + true + 64 + set of models included in the project + set of projects the model is included in + + + 726 + 81 + 82 + Horizon + 1 + 1 + Projects + 0 + -1 + true + false + 43 + horizon for the project + set of projects that run this Horizon + + + 727 + 81 + 83 + Report + 1 + 1 + Projects + 0 + -1 + true + false + 86 + report for the project + set of projects using these Report settings + + + 728 + 1 + 82 + Horizons + 0 + -1 + true + true + 44 + Horizon objects + + + 729 + 1 + 83 + Reports + 0 + -1 + true + true + 87 + Report objects + + + 730 + 83 + 75 + Master Filter + 0 + 1 + Master Filtered Reports + 0 + -1 + true + true + 236 + master conditional filter that defines which periods will be reported + Report object which the master filter condition belongs to + + + 731 + 83 + 75 + Object Filter + 0 + -1 + Object Filtered Reports + 0 + -1 + true + true + 237 + set of filter conditions that define which objects will be reported + Report object which the condition belongs to + + + 732 + 83 + 95 + Lists + 0 + -1 + Reports + 0 + -1 + true + true + 120 + set of Lists in the Report + set of Report objects containing the List + + + 733 + 1 + 84 + Stochastic + 0 + -1 + true + true + 93 + Stochastic objects + + + 734 + 1 + 85 + Preview + 0 + -1 + true + true + 302 + Preview objects + + + 735 + 1 + 86 + LT Plan + 0 + -1 + true + true + 60 + LT Plan objects + + + 736 + 86 + 75 + Variables + 0 + -1 + LT Plans + 0 + -1 + true + true + 103 + Variables providing profiles for chronological slicing, fitting or sampling + set of LT Plans using the Variable profile for chronological slicing, fitting or sampling + + + 737 + 86 + 90 + Transmission + 0 + 1 + LT Plans + 0 + -1 + true + false + 100 + Transmission settings for LT Plan + set of LT Plans using these Transmission settings + + + 738 + 86 + 91 + Production + 0 + 1 + LT Plans + 0 + -1 + true + false + 78 + Production settings for LT Plan + set of LT Plans using these Production settings + + + 739 + 86 + 92 + Competition + 0 + 1 + LT Plans + 0 + -1 + true + false + 10 + Competition settings for LT Plan + set of LT Plans using these Competition settings + + + 740 + 86 + 93 + Performance + 0 + 1 + LT Plans + 0 + -1 + true + false + 72 + Performance settings for LT Plan + set of LT Plans using these Performance settings + + + 741 + 86 + 94 + Diagnostic + 0 + 1 + LT Plans + 0 + -1 + true + false + 18 + Diagnostic settings for LT Plan + set of LT Plans using these Diagnostic settings + + + 742 + 1 + 87 + PASA + 0 + -1 + true + true + 71 + PASA objects + + + 743 + 87 + 90 + Transmission + 0 + 1 + PASAs + 0 + -1 + true + false + 100 + Transmission settings for PASA + set of PASAs using these Transmission settings + + + 744 + 87 + 91 + Production + 0 + 1 + PASAs + 0 + -1 + true + false + 78 + Production settings for PASA + set of PASAs using these Production settings + + + 745 + 87 + 92 + Competition + 0 + 1 + PASAs + 0 + -1 + true + false + 10 + Competition settings for PASA + set of PASAs using these Competition settings + + + 746 + 87 + 93 + Performance + 0 + 1 + PASAs + 0 + -1 + true + false + 72 + Performance settings for PASA + set of PASAs using these Performance settings + + + 747 + 87 + 94 + Diagnostic + 0 + 1 + PASAs + 0 + -1 + true + false + 18 + Diagnostic settings for PASA + set of PASAs using these Diagnostic settings + + + 748 + 1 + 88 + MT Schedule + 0 + -1 + true + true + 65 + MT Schedule objects + + + 749 + 88 + 75 + Variables + 0 + -1 + MT Schedules + 0 + -1 + true + true + 103 + Variables providing profiles for chronological slicing, fitting or sampling + set of MT Schedules using the Variable profile for chronological slicing, fitting or sampling + + + 750 + 88 + 90 + Transmission + 0 + 1 + MT Schedules + 0 + -1 + true + false + 100 + Transmission settings for MT Schedule + set of MT Schedules using these Transmission settings + + + 751 + 88 + 91 + Production + 0 + 1 + MT Schedules + 0 + -1 + true + false + 78 + Production settings for MT Schedule + set of MT Schedules using these Production settings + + + 752 + 88 + 92 + Competition + 0 + 1 + MT Schedules + 0 + -1 + true + false + 10 + Competition settings for MT Schedule + set of MT Schedules using these Competition settings + + + 753 + 88 + 93 + Performance + 0 + 1 + MT Schedules + 0 + -1 + true + false + 72 + Performance settings for MT Schedule + set of MT Schedules using these Performance settings + + + 754 + 88 + 94 + Diagnostic + 0 + 1 + MT Schedules + 0 + -1 + true + false + 18 + Diagnostic settings for MT Schedule + set of MT Schedules using these Diagnostic settings + + + 755 + 1 + 89 + ST Schedule + 0 + -1 + true + true + 91 + ST Schedule objects + + + 756 + 89 + 90 + Transmission + 0 + 1 + ST Schedules + 0 + -1 + true + false + 100 + Transmission settings for ST Schedule + set of ST Schedules using these Transmission settings + + + 757 + 89 + 91 + Production + 0 + 1 + ST Schedules + 0 + -1 + true + false + 78 + Production settings for ST Schedule + set of ST Schedules using these Production settings + + + 758 + 89 + 92 + Competition + 0 + 1 + ST Schedules + 0 + -1 + true + false + 10 + Competition settings for ST Schedule + set of ST Schedules using these Competition settings + + + 759 + 89 + 93 + Performance + 0 + 1 + ST Schedules + 0 + -1 + true + false + 72 + Performance settings for ST Schedule + set of ST Schedules using these Performance settings + + + 760 + 89 + 94 + Diagnostic + 0 + 1 + ST Schedules + 0 + -1 + true + false + 18 + Diagnostic settings for ST Schedule + set of ST Schedules using these Diagnostic settings + + + 761 + 1 + 90 + Transmission + 0 + -1 + true + true + 100 + Transmission objects + + + 762 + 1 + 91 + Production + 0 + -1 + true + true + 78 + Production objects + + + 763 + 1 + 92 + Competition + 0 + -1 + true + true + 10 + Competition objects + + + 764 + 1 + 93 + Performance + 0 + -1 + true + true + 72 + Performance objects + + + 765 + 1 + 94 + Diagnostics + 0 + -1 + true + true + 19 + Diagnostic objects + + + 766 + 1 + 95 + Lists + 0 + -1 + true + true + 120 + List objects + + + 767 + 95 + 95 + Lists + 0 + -1 + true + true + 120 + set of List objects in the List + + + 768 + 1 + 96 + Layouts + 0 + -1 + true + true + 296 + Layout objects + + + 769 + 96 + 96 + Template + 0 + 1 + Inheritors + 0 + -1 + true + true + 156 + template the Layout inherits from + Layout objects inheriting from this template + + + 770 + 95 + 96 + Layouts + 0 + -1 + Lists + 0 + -1 + true + true + 296 + set of Layout objects in the List + set of Lists containing the Layout + + + 771 + 96 + 8 + Storages + 0 + -1 + Layouts + 0 + -1 + true + true + 96 + set of Storage objects in the Layout + set of Layouts containing the Storage + + + 772 + 96 + 22 + Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 70 + set of Node objects in the Layout + set of Layouts containing the Node + + + 773 + 96 + 33 + Heat Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 220 + set of Heat Node objects in the Layout + set of Layouts containing the Heat Node + + + 774 + 96 + 38 + Gas Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 115 + set of Gas Node objects in the Layout + set of Layouts containing the Gas Node + + + 775 + 96 + 50 + Water Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 191 + set of Water Node objects in the Layout + set of Layouts containing the Water Node + + + 776 + 96 + 65 + Flow Nodes + 0 + -1 + Layouts + 0 + -1 + true + true + 279 + set of FlowNode objects in the Layout + set of Layouts containing the Flow Node + + + 109 + 7 + 110 + + + 109 + 8 + 110 + + + 181 + 176 + 196 + + + 195 + 189 + 579 + + + 199 + 12 + 264 + + + 200 + 82 + 264 + + + 201 + 196 + 106 + + + 202 + 141 + 264 + + + 203 + 142 + 264 + + + 204 + 149 + 264 + + + 205 + 196 + 196 + + + 208 + 286 + 264 + 287 + 264 + 1 + + + 209 + 287 + 264 + 286 + 264 + 1 + + + 210 + 286 + 264 + 287 + 264 + 1 + + + 210 + 287 + 264 + 286 + 264 + 1 + + + 211 + 286 + 264 + 287 + 264 + 0 + + + 211 + 287 + 264 + 286 + 264 + 0 + + + 212 + 302 + 264 + 303 + 264 + 1 + + + 213 + 303 + 264 + 302 + 264 + 1 + + + 214 + 302 + 264 + 303 + 264 + 1 + + + 214 + 303 + 264 + 302 + 264 + 1 + + + 215 + 302 + 264 + 303 + 264 + 0 + + + 215 + 303 + 264 + 302 + 264 + 0 + + + 217 + 264 + 272 + + + 230 + 12 + 265 + + + 231 + 12 + 266 + + + 232 + 82 + 265 + + + 233 + 82 + 266 + + + 234 + 227 + 106 + + + 235 + 141 + 266 + + + 236 + 142 + 266 + + + 237 + 141 + 265 + + + 238 + 142 + 265 + + + 239 + 149 + 265 + + + 240 + 149 + 266 + + + 242 + 227 + 227 + + + 244 + 286 + 266 + 287 + 266 + 1 + + + 245 + 286 + 265 + 287 + 265 + 1 + + + 246 + 287 + 266 + 286 + 266 + 1 + + + 247 + 287 + 265 + 286 + 265 + 1 + + + 248 + 286 + 265 + 287 + 265 + 1 + + + 248 + 287 + 265 + 286 + 265 + 1 + + + 249 + 286 + 265 + 287 + 265 + 0 + + + 249 + 287 + 265 + 286 + 265 + 0 + + + 250 + 302 + 266 + 303 + 266 + 1 + + + 251 + 302 + 265 + 303 + 265 + 1 + + + 252 + 303 + 266 + 302 + 266 + 1 + + + 253 + 303 + 265 + 302 + 265 + 1 + + + 254 + 302 + 265 + 303 + 265 + 1 + + + 254 + 303 + 265 + 302 + 265 + 1 + + + 255 + 302 + 265 + 303 + 265 + 0 + + + 255 + 303 + 265 + 302 + 265 + 0 + + + 256 + 265 + 272 + + + 257 + 266 + 272 + + + 451 + 18 + 405 + + + 452 + 377 + 405 + + + 453 + 388 + 405 + + + 454 + 396 + 405 + 397 + 405 + 1 + + + 455 + 397 + 405 + 396 + 405 + 1 + + + 456 + 396 + 405 + 397 + 405 + 1 + + + 456 + 397 + 405 + 396 + 405 + 1 + + + 457 + 396 + 405 + 397 + 405 + 0 + + + 457 + 397 + 405 + 396 + 405 + 0 + + + 458 + 418 + 405 + + + 459 + 431 + 405 + + + 460 + 470 + 405 + + + 461 + 481 + 405 + 482 + 405 + 1 + + + 462 + 482 + 405 + 481 + 405 + 1 + + + 463 + 481 + 405 + 482 + 405 + 1 + + + 463 + 482 + 405 + 481 + 405 + 1 + + + 464 + 481 + 405 + 482 + 405 + 0 + + + 464 + 482 + 405 + 481 + 405 + 0 + + + 541 + 505 + 522 + + + 542 + 513 + 522 + 514 + 522 + 1 + + + 543 + 514 + 522 + 513 + 522 + 1 + + + 544 + 513 + 522 + 514 + 522 + 1 + + + 544 + 514 + 522 + 513 + 522 + 1 + + + 545 + 513 + 522 + 514 + 522 + 0 + + + 545 + 514 + 522 + 513 + 522 + 0 + + + 546 + 530 + 522 + + + 547 + 537 + 522 + + + 582 + 23 + 7 + + + 583 + 579 + 106 + + + 584 + 579 + 154 + + + 585 + 579 + 196 + + + 586 + 578 + 565 + + + 588 + 589 + 612 + + + 588 + 589 + 614 + + + 611 + 602 + 615 + + + 612 + 603 + 615 + + + 613 + 604 + 616 + + + 614 + 605 + 616 + + + 634 + 619 + 635 + + + 636 + 655 + 635 + + + 661 + 620 + 612 + + + 661 + 620 + 614 + + + Dynamic + 0 + + + Hydro Model + Energy + + + Interface + 5 + + + Language + 9 + + + Lock Attributes + 0 + + + Lock Configuration + 0 + + + Lock Memberships + 0 + + + Lock Objects + 0 + + + Lock Properties + 0 + + + Revision + 150 + + + Units + Metric + + + Validated + 0 + + + Version + 9.200 + + + Saved With + PLEXOS 9.200 R06 x64 Edition + + + Culture + en-US English (United States) + + + UICulture + en-US English (United States) + + + Decimal + . + + + DBID + 7d279306-ff8a-4911-a567-f9fe3924b032 + + + 1 + 1 + 1 + 707 + 80 + 2 + + + 2 + 1 + 1 + 707 + 80 + 3 + + + 3 + 1 + 1 + 707 + 80 + 4 + + + 4 + 1 + 1 + 707 + 80 + 5 + + + 5 + 1 + 1 + 728 + 82 + 6 + + + 6 + 1 + 1 + 728 + 82 + 7 + + + 7 + 1 + 1 + 729 + 83 + 8 + + + 8 + 1 + 1 + 729 + 83 + 9 + + + 9 + 1 + 1 + 729 + 83 + 10 + + + 10 + 1 + 1 + 729 + 83 + 11 + + + 11 + 1 + 1 + 735 + 86 + 12 + + + 12 + 1 + 1 + 742 + 87 + 13 + + + 13 + 1 + 1 + 748 + 88 + 14 + + + 14 + 1 + 1 + 755 + 89 + 15 + + + 15 + 1 + 1 + 755 + 89 + 16 + + + 16 + 1 + 1 + 761 + 90 + 17 + + + 17 + 1 + 1 + 733 + 84 + 18 + + + 18 + 80 + 3 + 710 + 82 + 6 + + + 19 + 80 + 4 + 710 + 82 + 6 + + + 20 + 80 + 2 + 710 + 82 + 7 + + + 21 + 80 + 5 + 710 + 82 + 6 + + + 22 + 80 + 3 + 711 + 83 + 9 + + + 23 + 80 + 4 + 711 + 83 + 10 + + + 24 + 80 + 2 + 711 + 83 + 8 + + + 25 + 80 + 5 + 711 + 83 + 11 + + + 26 + 80 + 2 + 713 + 86 + 12 + + + 27 + 80 + 3 + 714 + 87 + 13 + + + 28 + 80 + 4 + 714 + 87 + 13 + + + 29 + 80 + 5 + 714 + 87 + 13 + + + 30 + 80 + 3 + 715 + 88 + 14 + + + 31 + 80 + 4 + 715 + 88 + 14 + + + 32 + 80 + 5 + 715 + 88 + 14 + + + 33 + 80 + 3 + 716 + 89 + 15 + + + 34 + 80 + 4 + 716 + 89 + 16 + + + 35 + 80 + 5 + 716 + 89 + 16 + + + 36 + 80 + 4 + 718 + 90 + 17 + + + 37 + 80 + 5 + 717 + 84 + 18 + + + 38 + 1 + 1 + 764 + 93 + 19 + + + 39 + 80 + 2 + 721 + 93 + 19 + + + 40 + 80 + 3 + 721 + 93 + 19 + + + 41 + 80 + 4 + 721 + 93 + 19 + + + 42 + 80 + 5 + 721 + 93 + 19 + + + 1 + 1 + System + 1 + the system object + 98bd24fd-e92b-4738-92d4-3f03a8a09cc3 + + + 2 + 80 + Long Term + 80 + Long Term model with LT Plan + 8ac14ba8-c29d-4805-a7c4-185199e7fe8b + + + 3 + 80 + Regional + 80 + Regional model with MT and ST Schedule + d4b86f02-f545-4369-9b15-7f9fd90bcb77 + + + 4 + 80 + Nodal + 80 + Nodal model with MT and ST Schedule + 480a9f72-97d2-47fc-bcd2-1e4e8d6dc089 + + + 5 + 80 + Reliability + 80 + Reliability study with MT and ST Schedule + d463d7cb-8038-4071-9b99-ee5970a45c2a + + + 6 + 82 + 2020 + 82 + The year 2020 + fc5f8da4-3567-44c9-aa2b-57434d2095c0 + + + 7 + 82 + 2020-29 + 82 + The 10-year study period 2020-29 + 459b3309-93ee-49b9-9272-7fb9a1329ea9 + + + 8 + 83 + Long Term + 83 + Reporting for Long Term model + 7b86dc77-6df9-4029-a7c9-a959bfc2dcb6 + + + 9 + 83 + Regional + 83 + Reporting for Regional model + b72a94d3-ba54-402e-8391-52855d8aa49a + + + 10 + 83 + Nodal + 83 + Reporting for Nodal model + 5ea40b2b-5b80-4523-ac3b-cda13d882afb + + + 11 + 83 + Reliability + 83 + Reporting for Reliability model + 606146e3-cbc4-4b78-bca4-70ae44a133bc + + + 12 + 86 + LDC r=10 + 86 + LT Plan for capacity expansion planning using LDC and discount rate of 10% + 72dd0286-9f68-4d74-bb24-c191c159e0d6 + + + 13 + 87 + Regional + 87 + PASA for maintenance scheduling + 45297721-62a1-457e-8891-0d644b7c3733 + + + 14 + 88 + Regional + 88 + MT Schedule for constraint decomposition in regional mode + 40f2a2ef-50fa-40dd-8779-885e4bde2cf6 + + + 15 + 89 + Regional + 89 + ST Schedule chronological simulation in regional mode + fbc7fb10-1173-4412-a0b7-0a64a178a59d + + + 16 + 89 + Nodal + 89 + ST Schedule chronological simulation in nodal mode + b1e6d38e-4b17-4b24-aec2-65ab7f1826ff + + + 17 + 90 + Large-scale 230kV + 90 + Transmission options for large-scale networks + e943f5d6-8907-468c-80f6-49e35620f1d9 + + + 18 + 84 + Monte Carlo s=20 + 84 + Monte Carlo simulation with a sample size of 20 + c217c361-f9b5-4434-9994-4514a249a0b8 + + + 19 + 93 + Gurobi + 93 + bb2917d7-545e-4de0-b95c-af1e9d373382 + + + 1 + 1 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the generator must be reported even if it is out-of-service + 800000 + true + + + 2 + 1 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the generator for the generation of outages + 101000000 + true + + + 3 + 1 + 2 + 3 + Max Heat Rate Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 432 + Maximum number of tranches in the fuel function piecewise linear approximation. + 1000 + true + + + 4 + 1 + 2 + 4 + Formulate Non-convex + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order. + 1000 + true + + + 5 + 1 + 2 + 5 + Hydro Efficiency Optimality + 0 + -1 + In (-1,0,2) + -1;"Auto";0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2763 + Controls when integers are used to enforce multi-band hydro efficiency functions to dispatch in order + true + + + 6 + 1 + 2 + 6 + Head Effects Method + 0 + 0 + In (0,1) + 0;"Backward Looking";1;"Dynamic" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1920 + Method used to account for the effects of storage head on efficiency + 41000 + true + + + 7 + 1 + 2 + 7 + Min Down Time Mode + 0 + 1 + In (0,1) + 0;"Relaxed";1;"Enforced" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1652 + Controls how [Min Down Time] is applied after outages. + 1000000080 + true + + + 8 + 1 + 2 + 8 + Forced Outage Rate Denominator + 0 + 0 + In (0,1) + 0;"Time";1;"Operating Time" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1819 + Denominator for Forced Outage Rate calculations + 100000000 + true + + + 9 + 1 + 2 + 9 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 100000000 + true + + + 10 + 1 + 2 + 10 + Fixed Load Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 202 + Method of interpreting zero values of the [Fixed Load] property. + 80 + true + + + 11 + 1 + 2 + 11 + Fixed Load Global + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2465 + If [Fixed Load] applies across all units or unit-by-unit + true + + + 12 + 1 + 2 + 12 + Min Load Global + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2321 + If [Min Load] applies across all units or unit-by-unit + true + + + 13 + 1 + 2 + 13 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the generator can set price + 4000000 + true + + + 14 + 1 + 2 + 14 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 400000 + true + + + 15 + 1 + 2 + 15 + Offers Must Clear in Order + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 576 + Flag to control ordering of clearing of user-defined generator offers. + 400000 + true + + + 16 + 1 + 2 + 16 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the generator. + 1000000000 + true + + + 17 + 1 + 2 + 17 + Unit Commitment Period + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2389 + Period between unit commitment (on/off) decisions. + 1000000000 + true + + + 18 + 1 + 2 + 18 + Unit Commitment Aggregation + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2412 + Flag if the generator is aggregated into an equivalent single unit for the purpose of unit commitment + 1000000000 + true + + + 19 + 1 + 2 + 19 + Rounding Up Threshold + 0 + -1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 711 + Threshold at which non-integers are rounded up. + 1000000000 + true + + + 20 + 1 + 2 + 20 + Include in Rounded Relaxation Merit Order + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1792 + Flag if Generator is included in the Region merit order for Rounded Relaxation unit commitment. + 1000000000 + true + + + 21 + 1 + 2 + 21 + Start Profile Range + 0 + 0 + In (0,1) + 0;"Min Stable Level";1;"Max Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1615 + Maximum range for [Start Profile] + 1000000000 + true + + + 22 + 1 + 2 + 22 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 23 + 1 + 2 + 23 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 24 + 1 + 2 + 24 + Declining Depreciation Balance + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 130 + Balance applied to declining depreciation method + 8 + true + + + 25 + 1 + 2 + 25 + Production Decomposition Method + 0 + 0 + In (0,1) + 0;"Optimized";1;"Fixed" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 931 + Method used to decompose generator production from MT to ST Schedule + 200 + true + + + 26 + 1 + 2 + 26 + Include in Uplift + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1362 + If this generator's costs are included in the uplift calculations. + 4000000 + true + + + 27 + 1 + 2 + 27 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this generator receives capacity payments. + 8 + true + + + 28 + 1 + 2 + 28 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 29 + 1 + 2 + 29 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 20 + true + + + 30 + 1 + 2 + 30 + End Effects Method + 0 + 2 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period heat volumes. + 20 + true + + + 31 + 1 + 2 + 31 + Recycle Penalty + 61 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 20 + true + + + 32 + 1 + 2 + 32 + Pump Timeframe + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2545 + Maximum hours to pump after generation + false + + + 33 + 1 + 2 + 33 + Controllable Inflow + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2779 + Proportion of Natural Inflow that is controllable + 40000 + true + + + 34 + 1 + 2 + 34 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 20 + true + + + 35 + 1 + 2 + 35 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 20 + true + + + 36 + 1 + 2 + 36 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 20 + true + + + 37 + 1 + 2 + 37 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 20 + true + + + 38 + 1 + 2 + 38 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 20 + true + + + 39 + 1 + 2 + 39 + Decomposition Bound Penalty + 61 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 20 + true + + + 40 + 1 + 2 + 40 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 20 + true + + + 41 + 1 + 2 + 41 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the generator's capacity acts strategically + 40 + true + + + 42 + 1 + 2 + 42 + Transition Type + 0 + 0 + In (0,1) + 0;"Individual";1;"Group" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1881 + If the generator can transition between a single generator or to a group of generators. + 1000000000 + true + + + 43 + 1 + 2 + 43 + Simultaneous Pump and Generation + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2628 + Pumped storage can pump and generate simultaneously + 80 + true + + + 44 + 1 + 2 + 44 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 45 + 1 + 2 + 45 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 46 + 1 + 3 + 46 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 47 + 1 + 3 + 47 + Max Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 414 + Maximum generating capacity of each unit + 5 + true + + + 48 + 1 + 3 + 48 + Min Stable Level + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 501 + Minimum stable generation level + 1000000081 + true + + + 49 + 1 + 3 + 49 + Min Stable Level Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2629 + Penalty applied to violation of min stable level. + 1000000081 + true + + + 50 + 1 + 3 + 50 + Min Stable Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1372 + Minimum stable generation level as a proportion of [Max Capacity] + 1000000080 + true + + + 51 + 1 + 3 + 51 + Fuel Price + 29 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 225 + Fuel price (when not using Fuels collection) + 2000000000 + true + + + 52 + 1 + 3 + 52 + Load Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate. + 1000 + true + + + 53 + 1 + 3 + 53 + Heat Rate + 36 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 260 + Average heat rate (total fuel divided by total generation) + 1001 + true + + + 54 + 1 + 3 + 54 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 55 + 1 + 3 + 55 + Heat Rate Incr + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 56 + 1 + 3 + 56 + Heat Rate Incr2 + 38 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 264 + Second-order polynomial term in unit fuel use function + 1000 + true + + + 57 + 1 + 3 + 57 + Heat Rate Incr3 + 44 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 265 + Third-order polynomial term in unit fuel use function + 1000 + true + + + 58 + 1 + 3 + 58 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 59 + 1 + 3 + 59 + Pump VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2626 + Variable operation and maintenance charge for pump + 2000000001 + false + + + 60 + 1 + 3 + 60 + Generating VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2627 + Variable operation and maintenance charge for generating + 2000000001 + false + + + 61 + 1 + 3 + 61 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 62 + 1 + 3 + 62 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge for generation + 2000000000 + true + + + 63 + 1 + 3 + 63 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running a generating unit when on-line + 20000000 + true + + + 64 + 1 + 3 + 64 + Generation Credit + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2764 + Credit received for generation + 2000000000 + true + + + 65 + 1 + 3 + 65 + Generation Credit Start Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2765 + Year to start applying Generation Credits + 1000000080 + true + + + 66 + 1 + 3 + 66 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 67 + 1 + 3 + 67 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 68 + 1 + 3 + 68 + Run Up Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while running the unit up from zero to [Min Stable Level]. + 80000000 + true + + + 69 + 1 + 3 + 69 + Start Profile + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for running the unit up from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 70 + 1 + 3 + 70 + Start Profile Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2639 + Penalty for violation of [Start Profile]. + 80 + true + + + 71 + 1 + 3 + 71 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 72 + 1 + 3 + 72 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 73 + 1 + 3 + 73 + Run Down Rate + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1020 + Ramp rate that applies while running the unit down from [Min Stable Level] to zero. + 200000000 + true + + + 74 + 1 + 3 + 74 + Shutdown Profile + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 933 + Detailed regime for running the unit down from [Min Stable Level] when [Run Down Rate] is non-constant. + 200000000 + true + + + 75 + 1 + 3 + 75 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 76 + 1 + 3 + 76 + Rolling Planning Bonus + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2519 + Bonus for remaining online at the end of the look-ahead + 1000000000 + true + + + 77 + 1 + 3 + 77 + Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 665 + Rated capacity of units + 81 + true + + + 78 + 1 + 3 + 78 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + true + + + 79 + 1 + 3 + 79 + Rating Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2631 + Penalty for violation of Rating + true + + + 80 + 1 + 3 + 80 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 81 + 1 + 3 + 81 + Min Up Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2592 + Penalty for violation of min up time + 1000000080 + true + + + 82 + 1 + 3 + 82 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 83 + 1 + 3 + 83 + Min Down Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2593 + Penalty for violation of min down time + 1000000080 + true + + + 84 + 1 + 3 + 84 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 85 + 1 + 3 + 85 + Max Up Time Penalty + 48 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2594 + Penalty for violation of max up time + 1000000080 + true + + + 86 + 1 + 3 + 86 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 87 + 1 + 3 + 87 + Max Down Time Penalty + 48 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2620 + Penalty for violation of max down time + 1000000080 + true + + + 88 + 1 + 3 + 88 + Generating Units + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2531 + Number of generating units + 1000000080 + true + + + 89 + 1 + 3 + 89 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 90 + 1 + 3 + 90 + Fixed Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 200 + Fixed load + 10000080 + true + + + 91 + 1 + 3 + 91 + Fixed Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1092 + Penalty for violation of [Fixed Load]. + 80 + true + + + 92 + 1 + 3 + 92 + Min Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 486 + Minimum level of station load (must run/run of river) + 80 + true + + + 93 + 1 + 3 + 93 + Min Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1093 + Penalty for violation of [Min Load]. + 80 + true + + + 94 + 1 + 3 + 94 + Max Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 436 + Maximum level of unit load (unit may provide spinning reserve with remainder of spare capacity) + 80 + true + + + 95 + 1 + 3 + 95 + Max Load Penalty + 33 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2595 + Penalty for violation of [Max Load]. + 80 + true + + + 96 + 1 + 3 + 96 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Number of units that should be committed + 1000000080 + true + + + 97 + 1 + 3 + 97 + Fuel Mix Penalty + 29 + 0 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 222 + Penalty applied to violations of fuel mixing constraints + 1000 + true + + + 98 + 1 + 3 + 98 + Ramp Up Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Load point for use with multi-band Max Ramp Up constraints + 80 + true + + + 99 + 1 + 3 + 99 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate that applies at the given load point + 80 + true + + + 100 + 1 + 3 + 100 + Ramp Up Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 101 + 1 + 3 + 101 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 102 + 1 + 3 + 102 + Ramp Down Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Load point for use with multi-band Max Ramp Down constraints + 80 + true + + + 103 + 1 + 3 + 103 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate that applies at the given load point + 80 + true + + + 104 + 1 + 3 + 104 + Ramp Down Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 105 + 1 + 3 + 105 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 106 + 1 + 3 + 106 + Rough Running Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 709 + Start point of rough running range + 80 + true + + + 107 + 1 + 3 + 107 + Rough Running Range + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 710 + Length of rough running range (must be paired with Rough Running Point) + 80 + true + + + 108 + 1 + 3 + 108 + Regulation Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 673 + Start point of regulation reserve range + 2 + true + + + 109 + 1 + 3 + 109 + Regulation Range + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 674 + Length of regulation reserve range (must be paired with Regulation Point) + 2 + true + + + 110 + 1 + 3 + 110 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of capacity + 2 + true + + + 111 + 1 + 3 + 111 + Aux Fixed + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 112 + 1 + 3 + 112 + Aux Base + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 113 + 1 + 3 + 113 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of generation + 200000 + true + + + 114 + 1 + 3 + 114 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) + 600000 + true + + + 115 + 1 + 3 + 115 + Natural Inflow + 25 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 530 + Natural inflow to the generator (controllable and uncontrolled) + 40000 + true + + + 116 + 1 + 3 + 116 + Efficiency Base + 119 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 887 + Flow rate at notional zero load for hydro unit + 41000 + true + + + 117 + 1 + 3 + 117 + Efficiency Incr + 120 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Efficiency of hydro generation + 41000 + true + + + 118 + 1 + 3 + 118 + Efficiency Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1831 + Annual degradation in generating efficiency with age + 1000 + false + + + 119 + 1 + 3 + 119 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 639 + Efficiency of pumping + 8041001 + true + + + 120 + 1 + 3 + 120 + Pump Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 642 + Load drawn by a unit in pumping mode + 8040001 + true + + + 121 + 1 + 3 + 121 + Pump Load Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2736 + A multiplier (percentage) on the pump load + 80 + true + + + 122 + 1 + 3 + 122 + Pump Load Penalty + 33 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2596 + Penalty for violation of Pump Load. + 8040080 + true + + + 123 + 1 + 3 + 123 + Pump Units + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 645 + Number of pump units + 8040004 + true + + + 124 + 1 + 3 + 124 + Min Pump Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 490 + Minimum unit load while pumping + 8040080 + true + + + 125 + 1 + 3 + 125 + Must Pump Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 915 + Number of pump units that must be running in pump mode + 1008040080 + true + + + 126 + 1 + 3 + 126 + Max Units Pumping + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1145 + Maximum number of units allowed to be running in pump mode. + 1008040080 + true + + + 127 + 1 + 3 + 127 + Fixed Pump Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1328 + Fixed pump load + 8040080 + true + + + 128 + 1 + 3 + 128 + Fixed Pump Load Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1329 + Penalty for violation of [Fixed Pump Load]. + 8040080 + true + + + 129 + 1 + 3 + 129 + Pump UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1229 + Use of system charge for pump load + 2008040000 + true + + + 130 + 1 + 3 + 130 + Min Pump Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1802 + Minimum number of hours a unit must be run in pump mode after being started + 1000000080 + true + + + 131 + 1 + 3 + 131 + Min Pump Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1829 + Minimum number of hours a unit must be off after being shut down from pump mode + 1000000080 + true + + + 132 + 1 + 3 + 132 + Generation Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1932 + Minimum time between operating in generation mode and pump mode + 8000000 + true + + + 133 + 1 + 3 + 133 + Pump Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1933 + Minimum time between operating in pump mode and generation mode + 8000000 + true + + + 134 + 1 + 3 + 134 + Reserves VO&M Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 690 + Variable O&M cost associated with providing spinning reserve + 2000000002 + true + + + 135 + 1 + 3 + 135 + Sync Cond Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 775 + Maximum number of synchronous condenser units + 40006 + true + + + 136 + 1 + 3 + 136 + Must-run Sync Cond Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 526 + Number of must-run synchronous condenser units + 40082 + true + + + 137 + 1 + 3 + 137 + Sync Cond Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 772 + Load drawn by a unit in synchronous condenser mode + 40002 + true + + + 138 + 1 + 3 + 138 + Sync Cond VO&M Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 776 + Variable O&M cost associated with running a unit in synchronous condenser mode + 2000040002 + true + + + 139 + 1 + 3 + 139 + Reserve Share + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 689 + Proportion of maximum capacity that must be set aside for reserves + 2 + true + + + 140 + 1 + 3 + 140 + Initial Generation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 313 + Generation at time zero + 80000 + true + + + 141 + 1 + 3 + 141 + Initial Units Generating + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 317 + Number of units generating at time zero + 1000080000 + true + + + 142 + 1 + 3 + 142 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the unit has been up for at time zero + 1000080000 + true + + + 143 + 1 + 3 + 143 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the unit has been down for at time zero + 1000080000 + true + + + 144 + 1 + 3 + 144 + Initial Pumping + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1827 + Generator pump load at time zero + 80000 + false + + + 145 + 1 + 3 + 145 + Initial Units Pumping + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1828 + Number of units pumping at time zero + 1000080000 + true + + + 146 + 1 + 3 + 146 + Initial Hours Pumping + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1931 + Hours the unit has been pumping for at time zero + 1000080000 + true + + + 147 + 1 + 3 + 147 + Last Start State + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 934 + Number of hours the unit had been down before the last start + 1000080000 + true + + + 148 + 1 + 3 + 148 + Reference Generation + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 669 + Generation level for generation slack PTDF calculation + 800000000 + true + + + 149 + 1 + 3 + 149 + Load Subtracter + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1296 + Generation subtracted from the System load duration curve prior to slicing. + 10100000 + true + + + 150 + 1 + 3 + 150 + Price Following + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1775 + Proportion of energy optimized, where the remainder is proportional load following + 40000 + true + + + 151 + 1 + 3 + 151 + Load Following Profile + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1773 + Profile to follow for proportional load following + 40000 + true + + + 152 + 1 + 3 + 152 + Load Following Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1774 + Regression factor for proportional load following + 40000 + true + + + 153 + 1 + 3 + 153 + Boiler Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 40 + Efficiency of the boiler component of a combined-cycle plant + 10 + true + + + 154 + 1 + 3 + 154 + Heat Load + 15 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 255 + Waste heat that must be extracted for exogenous loads (CCGT) + 30 + true + + + 155 + 1 + 3 + 155 + Power to Heat Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 611 + Ratio of heat production to electric production + 20 + true + + + 156 + 1 + 3 + 156 + CHP Electric Heat Rate Incr + 36 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 71 + Incremental electric heat rate in heating mode + 20 + true + + + 157 + 1 + 3 + 157 + CHP Heat Surrogate Rate Incr + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 72 + Notional value for heat fuel offtake estimation. + 20 + true + + + 158 + 1 + 3 + 158 + Boiler Heat Rate Incr + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 42 + Incremental heat rate for heat production from boiler + 20 + true + + + 159 + 1 + 3 + 159 + Max Boiler Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 413 + Maximum heat production from ancillary boiler + 20 + true + + + 160 + 1 + 3 + 160 + Max Heat + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1514 + Maximum heat allowed in storage + 400020000 + true + + + 161 + 1 + 3 + 161 + Min Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1515 + Minimum heat allowed in storage + 400020000 + true + + + 162 + 1 + 3 + 162 + Max Heat Penalty + 29 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2597 + Adds a penalty to the max heat constraint to allow for relaxation + 2000000000 + true + + + 163 + 1 + 3 + 163 + Opening Heat + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1513 + Initial heat in the storage + 400020000 + true + + + 164 + 1 + 3 + 164 + Heat Withdrawal Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1518 + Incremental cost of withdrawing heat from the storage + 400020000 + true + + + 165 + 1 + 3 + 165 + Heat Injection Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1519 + Incremental cost of injecting heat into the storage + 400020000 + true + + + 166 + 1 + 3 + 166 + Fixed Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1338 + Generic annual fixed charge + 8008 + true + + + 167 + 1 + 3 + 167 + Heat Loss + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1516 + Rate at which heat is lost from storage + 400020000 + true + + + 168 + 1 + 3 + 168 + Water Offtake + 68 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1801 + Water recycled through the generator (e.g. for cooling) + 8000000000 + true + + + 169 + 1 + 3 + 169 + Water Consumption + 68 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1803 + Water consumed by the generator (e.g. evaporative cooling losses) + 8000000000 + true + + + 170 + 1 + 3 + 170 + Max Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 451 + Maximum rate of release from each unit + 40080 + true + + + 171 + 1 + 9 + 171 + Max Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 423 + Maximum energy + 80 + true + + + 172 + 1 + 9 + 171 + Max Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1548 + Maximum energy in hour + 80 + true + + + 173 + 1 + 9 + 171 + Max Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 424 + Maximum energy in day + 80 + true + + + 174 + 1 + 9 + 171 + Max Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 426 + Maximum energy in week + 80 + true + + + 175 + 1 + 9 + 171 + Max Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 425 + Maximum energy in month + 80 + true + + + 176 + 1 + 9 + 171 + Max Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 427 + Maximum energy in year + 80 + true + + + 177 + 1 + 9 + 172 + Min Energy + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1110 + Minimum energy + 80 + true + + + 178 + 1 + 9 + 172 + Min Energy Hour + 1 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1549 + Minimum energy in hour + 80 + true + + + 179 + 1 + 9 + 172 + Min Energy Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1111 + Minimum energy in day + 80 + true + + + 180 + 1 + 9 + 172 + Min Energy Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1112 + Minimum energy in week + 80 + true + + + 181 + 1 + 9 + 172 + Min Energy Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1113 + Minimum energy in month + 80 + true + + + 182 + 1 + 9 + 172 + Min Energy Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1114 + Minimum energy in year + 80 + true + + + 183 + 1 + 9 + 173 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor (energy constraint) + 80 + true + + + 184 + 1 + 9 + 173 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 185 + 1 + 9 + 173 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 186 + 1 + 9 + 173 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 187 + 1 + 9 + 173 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 188 + 1 + 9 + 173 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 189 + 1 + 9 + 174 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor + 80 + true + + + 190 + 1 + 9 + 174 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 191 + 1 + 9 + 174 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 192 + 1 + 9 + 174 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 193 + 1 + 9 + 174 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 194 + 1 + 9 + 174 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 195 + 1 + 9 + 175 + Max Energy Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1190 + Penalty applied to violations of [Max Energy] and [Max Capacity Factor] constraints. + 80 + true + + + 196 + 1 + 9 + 176 + Min Energy Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1191 + Penalty applied to violations of [Min Energy] and [Min Capacity Factor] constraints. + 80 + true + + + 197 + 1 + 9 + 177 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 198 + 1 + 9 + 177 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 199 + 1 + 9 + 177 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 200 + 1 + 9 + 177 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 201 + 1 + 9 + 177 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 202 + 1 + 9 + 177 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 203 + 1 + 9 + 178 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints. + 1080000080 + true + + + 204 + 1 + 9 + 179 + Energy Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 868 + Scalar applied to generator energy limits and energy implied by capacity factor constraints + 80 + true + + + 205 + 1 + 9 + 180 + Max Heat Withdrawal + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1520 + Maximum amount of heat that can be withdrawn from the storage + 400020000 + true + + + 206 + 1 + 9 + 180 + Max Heat Withdrawal Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1553 + Maximum amount of heat that can be withdrawn from the storage in a hour + 400020000 + true + + + 207 + 1 + 9 + 180 + Max Heat Withdrawal Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1521 + Maximum amount of heat that can be withdrawn from the storage in a day + 400020000 + true + + + 208 + 1 + 9 + 180 + Max Heat Withdrawal Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1522 + Maximum amount of heat that can be withdrawn from the storage in a week + 400020000 + true + + + 209 + 1 + 9 + 180 + Max Heat Withdrawal Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1523 + Maximum amount of heat that can be withdrawn from the storage in a month + 400020000 + true + + + 210 + 1 + 9 + 180 + Max Heat Withdrawal Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1524 + Maximum amount of heat that can be withdrawn from the storage in a year + 400020000 + true + + + 211 + 1 + 9 + 181 + Max Heat Injection + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1525 + Maximum amount of heat that can be injected into the storage + 400020000 + true + + + 212 + 1 + 9 + 181 + Max Heat Injection Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1554 + Maximum amount of heat that can be injected into the storage in a hour + 400020000 + true + + + 213 + 1 + 9 + 181 + Max Heat Injection Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1526 + Maximum amount of heat that can be injected into the storage in a day + 400020000 + true + + + 214 + 1 + 9 + 181 + Max Heat Injection Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1527 + Maximum amount of heat that can be injected into the storage in a week + 400020000 + true + + + 215 + 1 + 9 + 181 + Max Heat Injection Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1528 + Maximum amount of heat that can be injected into the storage in a month + 400020000 + true + + + 216 + 1 + 9 + 181 + Max Heat Injection Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1529 + Maximum amount of heat that can be injected into the storage in a year + 400020000 + true + + + 217 + 1 + 9 + 182 + Min Heat Withdrawal + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1530 + Amount of heat that must be withdrawn from storage + 400020000 + true + + + 218 + 1 + 9 + 182 + Min Heat Withdrawal Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1555 + Amount of heat that must be withdrawn from storage each hour + 400020000 + true + + + 219 + 1 + 9 + 182 + Min Heat Withdrawal Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1531 + Amount of heat that must be withdrawn from storage each day + 400020000 + true + + + 220 + 1 + 9 + 182 + Min Heat Withdrawal Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1532 + Amount of heat that must be withdrawn from storage each week + 400020000 + true + + + 221 + 1 + 9 + 182 + Min Heat Withdrawal Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1533 + Amount of heat that must be withdrawn from storage each month + 400020000 + true + + + 222 + 1 + 9 + 182 + Min Heat Withdrawal Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1534 + Amount of heat that must be withdrawn from storage each year + 400020000 + true + + + 223 + 1 + 9 + 183 + Min Heat Injection + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1535 + Amount of heat that must be injected into the storage + 400020000 + true + + + 224 + 1 + 9 + 183 + Min Heat Injection Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1556 + Amount of heat that must be injected into the storage each hour + 400020000 + true + + + 225 + 1 + 9 + 183 + Min Heat Injection Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1536 + Amount of heat that must be injected into the storage each day + 400020000 + true + + + 226 + 1 + 9 + 183 + Min Heat Injection Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1537 + Amount of heat that must be injected into the storage each week + 400020000 + true + + + 227 + 1 + 9 + 183 + Min Heat Injection Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1538 + Amount of heat that must be injected into the storage each month + 400020000 + true + + + 228 + 1 + 9 + 183 + Min Heat Injection Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1539 + Amount of heat that must be injected into the storage each year + 400020000 + true + + + 229 + 1 + 4 + 184 + Offer Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for incr/decr style offer + 400000 + true + + + 230 + 1 + 4 + 185 + Offer No Load Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 568 + Fixed dispatch cost component of generator offer. + 400000 + true + + + 231 + 1 + 4 + 186 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band + 400001 + true + + + 232 + 1 + 4 + 187 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400001 + true + + + 233 + 1 + 4 + 188 + Offer Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1368 + Scalar applied to the [Offer Quantity] property + 400000 + true + + + 234 + 1 + 4 + 189 + Offer Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1386 + Adder applied to the [Offer Price] property + 400000 + true + + + 235 + 1 + 4 + 190 + Offer Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1365 + Scalar applied to the [Offer Price] property + 400000 + true + + + 236 + 1 + 4 + 191 + Mark-up + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 408 + Mark-up above marginal cost + 400040 + true + + + 237 + 1 + 4 + 192 + Bid-Cost Mark-up + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + 400040 + true + + + 238 + 1 + 4 + 193 + Mark-up Point + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1091 + Load point for use with multi-point [Mark-up] or [Bid-Cost Mark-up]. + 400040 + true + + + 239 + 1 + 4 + 194 + Pump Bid Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1301 + Base pump load for balancing bid + 8400000 + true + + + 240 + 1 + 4 + 195 + Pump Bid Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1303 + Pump load bid quantity in band + 8400000 + true + + + 241 + 1 + 4 + 196 + Pump Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1302 + Bid price of pump load in band + 8400000 + true + + + 242 + 1 + 4 + 197 + Pump Bid Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1369 + Scalar applied to the [Pump Bid Quantity] property + 8400000 + true + + + 243 + 1 + 4 + 198 + Pump Bid Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1387 + Adder applied to the [Pump Bid Price] property + 8400000 + true + + + 244 + 1 + 4 + 199 + Pump Bid Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1367 + Scalar applied to the [Pump Bid Price] property + 8400000 + true + + + 245 + 1 + 4 + 200 + Strategic Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1009 + Generating unit rating for application in RSI capacity calculations + 40 + true + + + 246 + 1 + 4 + 201 + Strategic Reference Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1031 + Sent-out marginal generation reference price for RSI markup application. + 40 + true + + + 247 + 1 + 4 + 202 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Pumping unit/Anti-generation rating for application in RSI capacity calculations. + 40 + true + + + 248 + 1 + 4 + 203 + Economic Maximum + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2240 + Unit maximum generation economically available + 40 + true + + + 249 + 1 + 4 + 204 + Economic Minimum + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2241 + Unit minimum generation economically available + 40 + true + + + 250 + 1 + 5 + 205 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 251 + 1 + 5 + 206 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 252 + 1 + 5 + 207 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 253 + 1 + 6 + 208 + Initial Age + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Average age of units at the start of the simulation horizon + 80000 + true + + + 254 + 1 + 6 + 209 + Power Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1830 + Annual degradation of power with age + 4 + true + + + 255 + 1 + 6 + 210 + Capacity Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1960 + Annual degradation in storage capacity with age + 4 + false + + + 256 + 1 + 6 + 211 + Equity Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 180 + Annual required return on equity + 8000 + true + + + 257 + 1 + 6 + 212 + Debt Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 127 + Annual debt charge + 8000 + true + + + 258 + 1 + 6 + 213 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the generator to capacity reserves + C + true + + + 259 + 1 + 6 + 214 + Firm Capacity Unit Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2664 + The total number of units installed in band corresponding to the same band of [Firm Capacity] + C + true + + + 260 + 1 + 7 + 215 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 261 + 1 + 7 + 216 + Effective Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2672 + Effective forced outage rate for use in calculation of reliability indices + true + + + 262 + 1 + 7 + 217 + Forced Outage + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 263 + 1 + 7 + 218 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 264 + 1 + 7 + 219 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 265 + 1 + 7 + 220 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 266 + 1 + 7 + 221 + Min Time Between Maintenance + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2506 + Minimum time between maintenance events + 1000000 + true + + + 267 + 1 + 7 + 222 + Min Total Maintenance Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2543 + Minimum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 268 + 1 + 7 + 223 + Max Total Maintenance Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2544 + Maximum percent of total maintenance scheduled within the time frame + 1000000 + true + + + 269 + 1 + 7 + 224 + Maintenance + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 392 + Capacity lost to maintenance + 1000000 + false + + + 270 + 1 + 7 + 225 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Unit rating during outage + 1000000 + true + + + 271 + 1 + 7 + 226 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 272 + 1 + 7 + 227 + Outage Pump Load + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1402 + Load drawn by a unit in pumping mode + 1000000 + true + + + 273 + 1 + 7 + 228 + Initial Operating Hours + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1820 + Hours the unit has been operating since the last forced outage + 1000080000 + true + + + 274 + 1 + 7 + 229 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 275 + 1 + 7 + 230 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 276 + 1 + 7 + 231 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 277 + 1 + 7 + 232 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 278 + 1 + 7 + 233 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 279 + 1 + 8 + 234 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 280 + 1 + 8 + 235 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 281 + 1 + 8 + 236 + One-time Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1958 + One-time cost associated with the project + 8 + true + + + 282 + 1 + 8 + 237 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 283 + 1 + 8 + 238 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning. + 8 + true + + + 284 + 1 + 8 + 239 + Commission Date + 0 + 1 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the generator was commissioned for use with [Technical Life] + 8 + true + + + 285 + 1 + 8 + 240 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 286 + 1 + 8 + 241 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 287 + 1 + 8 + 242 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 288 + 1 + 8 + 243 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered). + 9 + true + + + 289 + 1 + 8 + 244 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 290 + 1 + 8 + 245 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 291 + 1 + 8 + 246 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 292 + 1 + 8 + 247 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 293 + 1 + 8 + 248 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 294 + 1 + 8 + 249 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 295 + 1 + 8 + 250 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 296 + 1 + 8 + 251 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 297 + 1 + 8 + 252 + Build Set Size + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1453 + Expansion must occur in sets of this many units where zero indicates any set size + 88 + true + + + 298 + 1 + 8 + 253 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 299 + 1 + 8 + 254 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the generator for capacity + 4000008 + true + + + 300 + 1 + 8 + 255 + Recovery Price Adder + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Recovery price adder to include for MT/ST optimization + 8008 + false + + + 301 + 1 + 8 + 256 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Field production + 8009 + false + + + 302 + 1 + 11 + 257 + Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 968 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 303 + 1 + 11 + 258 + Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 969 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 1100000000 + true + + + 304 + 1 + 11 + 259 + Pump Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1394 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 305 + 1 + 11 + 260 + Pump Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1395 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 1100000000 + true + + + 306 + 1 + 11 + 261 + Generation Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1608 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 307 + 1 + 11 + 262 + Generation Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1609 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 308 + 1 + 11 + 263 + Pump Load Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1610 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 309 + 1 + 11 + 264 + Pump Load Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1611 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 310 + 1 + 11 + 265 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 311 + 1 + 11 + 266 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 312 + 1 + 12 + 267 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 313 + 1 + 12 + 268 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 314 + 1 + 12 + 269 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 315 + 5 + 1 + 1 + Transition Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1139 + Cost required for a Generator transition + 1000000000 + true + + + 316 + 7 + 1 + 1 + Transport Charge + 29 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 800 + Transport charge (added to base fuel price) + 2000000000 + true + + + 317 + 7 + 1 + 2 + Mutually Exclusive + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 998 + If the Fuel cannot be mixed with other Fuels associated with this Generator. + 80 + true + + + 318 + 7 + 1 + 3 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Fixed fuel mix ratio + 80 + true + + + 319 + 7 + 1 + 4 + Min Ratio + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 494 + Minimum fuel mix ratio + 80 + true + + + 320 + 7 + 1 + 5 + Max Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 450 + Maximum fuel mix ratio + 80 + true + + + 321 + 7 + 1 + 6 + Max Input + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 433 + Maximum amount of fuel input to generator + 80 + true + + + 322 + 7 + 1 + 7 + Rating + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 665 + Rating of generating units when running this fuel + 80 + true + + + 323 + 7 + 1 + 8 + Is Available + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 332 + If the fuel is available for use by the generator + 800000 + true + + + 324 + 7 + 1 + 9 + Heat Rate Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 266 + Scalar on base generator heat rate function + 1000 + true + + + 325 + 7 + 1 + 10 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 326 + 7 + 1 + 11 + Heat Rate + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Heat-rate at load point (used with Load Point) or 'b' in the heat input function + 1000 + true + + + 327 + 7 + 1 + 12 + Heat Rate Incr + 36 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + Average marginal heat-rate in band + 1000 + true + + + 328 + 7 + 1 + 13 + Heat Rate Incr2 + 38 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 264 + Second-order polynomial term in unit fuel use function + 1000 + true + + + 329 + 7 + 1 + 14 + Heat Rate Incr3 + 44 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 265 + Third-order polynomial term in unit fuel use function + 1000 + true + + + 330 + 7 + 1 + 15 + Transition Cost Down + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1134 + Cost required for Fuel Transition shutdown process (surplus over Production Offtake). + 1000000000 + true + + + 331 + 7 + 1 + 16 + Transition Cost Up + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1135 + Cost required for Fuel Transition start-up process (surplus over Production Offtake). + 1000000000 + true + + + 332 + 7 + 1 + 17 + Decoupling Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1136 + Number of hours Fuel can’t be used for Generation after a shutdown + 1000000000 + true + + + 333 + 7 + 1 + 18 + Coupling Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1137 + Number of hours Fuel has to be used after a start-up + 1000000000 + true + + + 334 + 7 + 1 + 19 + Emission Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 165 + Scalar on emissions from this generator and fuel combination + 2000 + true + + + 335 + 7 + 1 + 20 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + MW offer in band + 400000 + true + + + 336 + 7 + 1 + 21 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400000 + true + + + 337 + 8 + 1 + 1 + Offtake at Start + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 578 + Fuel required to start a unit + 1080000000 + true + + + 338 + 8 + 1 + 2 + Transport Charge + 29 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 800 + Cost of transporting the fuel to the generator + 1080000000 + true + + + 339 + 8 + 1 + 3 + Emission Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 165 + Scalar on emissions from this generator and start fuel combination + 80002000 + true + + + 340 + 10 + 1 + 1 + Flow Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 210 + Units of storage received per unit of generation + 40000 + true + + + 341 + 10 + 1 + 2 + Flow at Start + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1208 + The amount of water released when starting a generating unit. + 1080040000 + true + + + 342 + 10 + 1 + 3 + Efficiency Point + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1340 + Storage percentage full associated with [Efficiency Scalar] + 41000 + true + + + 343 + 10 + 1 + 4 + Efficiency Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1341 + Generation efficiency scalar at the given [Efficiency Point] + 41000 + true + + + 344 + 11 + 1 + 1 + Flow Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 210 + Units of storage received per unit of generation + 40000 + true + + + 345 + 12 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator output injected at the node + true + + + 346 + 12 + 1 + 2 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of pump load at the node + true + + + 347 + 15 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 348 + 18 + 1 + 1 + Enable Co-optimization + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2558 + If the gas node is available for use by the generator + true + + + 349 + 23 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 350 + 24 + 3 + 1 + Generation Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity consumed per unit of generation + true + + + 351 + 24 + 3 + 2 + Pump Load Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity consumed per unit of pump load + true + + + 352 + 24 + 3 + 3 + Fuel Offtake Coefficient + 106 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity consumed per unit of fuel used + true + + + 353 + 24 + 8 + 4 + Capacity Built Coefficient + 107 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Amount of the Commodity consumed per unit of capacity built + true + + + 354 + 24 + 8 + 5 + Capacity Retired Coefficient + 107 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Amount of the Commodity consumed per unit of capacity retired + true + + + 355 + 25 + 2 + 1 + Mutually Exclusive Production + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2756 + If the energy used for producing commodities and serving load are mutually exclusive + 800000 + true + + + 356 + 25 + 3 + 2 + Generation Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity produced per unit of generation + true + + + 357 + 25 + 3 + 3 + Pump Load Coefficient + 105 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity produced per unit of pump load + true + + + 358 + 25 + 3 + 4 + Fuel Offtake Coefficient + 106 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity produced per unit of fuel used + true + + + 359 + 26 + 1 + 1 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 585 + Unit rating during outage + 4 + true + + + 360 + 26 + 1 + 2 + Outage Rating Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1715 + Proportion of [Rating] during outage + 4 + true + + + 361 + 26 + 1 + 3 + Outage Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1716 + Unit [Firm Capacity] during outage + 4 + true + + + 362 + 26 + 1 + 4 + Outage Firm Capacity Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1717 + Proportion of [Firm Capacity] during outage + 4 + true + + + 363 + 27 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of generation + true + + + 364 + 27 + 3 + 2 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 643 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of pump load + true + + + 365 + 27 + 3 + 3 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of fuel offtake + true + + + 366 + 28 + 4 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for capacity market + true + + + 367 + 28 + 4 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band for capacity market + true + + + 368 + 29 + 1 + 1 + Conversion Rate + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 115 + Conversion rate of generator heat input to waste heat input. + 1000 + true + + + 369 + 31 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 370 + 31 + 3 + 2 + Generation Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 239 + Coefficient of the square of generation + true + + + 371 + 31 + 3 + 3 + Generation SUM Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 240 + Coefficient of the square of the summed generation + true + + + 372 + 31 + 3 + 4 + Generation Sent Out Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1147 + Coefficient of generation measured at the station gate + true + + + 373 + 31 + 3 + 5 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor. + true + + + 374 + 31 + 3 + 6 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation. + 1000000000 + true + + + 375 + 31 + 3 + 7 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + 1000000000 + true + + + 376 + 31 + 3 + 8 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 377 + 31 + 3 + 9 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 378 + 31 + 3 + 10 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the generating unit has been off + 1000000000 + true + + + 379 + 31 + 3 + 11 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 380 + 31 + 3 + 12 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of committed capacity + 1000000004 + true + + + 381 + 31 + 3 + 13 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + 1000 + true + + + 382 + 31 + 3 + 14 + Waste Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1887 + Coefficient of waste heat + 20000 + true + + + 383 + 31 + 3 + 15 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of emission production + 2000 + true + + + 384 + 31 + 3 + 16 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + 20 + true + + + 385 + 31 + 3 + 17 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 643 + Coefficient of pump load + 8040000 + true + + + 386 + 31 + 3 + 18 + Pump Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1645 + Coefficient of number of hours the generating unit is running in pump mode + 8040000 + true + + + 387 + 31 + 3 + 19 + Units Pumping Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1148 + Coefficient on the number of units pumping + 1008040000 + true + + + 388 + 31 + 3 + 20 + Pump Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1323 + Coefficient on the number of pump units started + 1088040000 + true + + + 389 + 31 + 3 + 21 + Sync Cond Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1646 + Coefficient of synchronous condenser load + 1000000002 + true + + + 390 + 31 + 3 + 22 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + 1000000002 + true + + + 391 + 31 + 3 + 23 + Sync Cond Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1648 + Coefficient of number of hours the generating unit is running in synchronous condenser mode + 1000000002 + true + + + 392 + 31 + 3 + 24 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 393 + 31 + 3 + 25 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 394 + 31 + 3 + 26 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 395 + 31 + 3 + 27 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 396 + 31 + 3 + 28 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 397 + 31 + 3 + 29 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 398 + 31 + 3 + 30 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + 2 + true + + + 399 + 31 + 3 + 31 + Sync Cond Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 774 + Coefficient of synchronous condenser reserve provision + 2 + true + + + 400 + 31 + 3 + 32 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + 2 + true + + + 401 + 31 + 3 + 33 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 402 + 31 + 3 + 34 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 403 + 31 + 3 + 35 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 404 + 31 + 3 + 36 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 405 + 31 + 3 + 37 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 406 + 31 + 3 + 38 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + 2 + true + + + 407 + 31 + 3 + 39 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + 2 + true + + + 408 + 31 + 3 + 40 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + 2 + true + + + 409 + 31 + 3 + 41 + Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1469 + Coefficient of flexibility up + 2 + true + + + 410 + 31 + 3 + 42 + Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1470 + Coefficient of flexibility down + 2 + true + + + 411 + 31 + 3 + 43 + Ramp Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1471 + Coefficient of ramp flexibility up + 2 + true + + + 412 + 31 + 3 + 44 + Ramp Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1472 + Coefficient of ramp flexibility down + 2 + true + + + 413 + 31 + 3 + 45 + Withdrawal Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of generator heat withdrawal + 20000 + true + + + 414 + 31 + 3 + 46 + Injection Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of generator heat injection + 20000 + true + + + 415 + 31 + 3 + 47 + Water Offtake Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1804 + Coefficient of generator water offtake + 8000000000 + true + + + 416 + 31 + 3 + 48 + Water Consumption Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1805 + Coefficient of generator water consumption + 8000000000 + true + + + 417 + 31 + 5 + 49 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 418 + 31 + 5 + 50 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 419 + 31 + 5 + 51 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 420 + 31 + 5 + 52 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 421 + 31 + 5 + 53 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 422 + 31 + 5 + 54 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 423 + 31 + 6 + 55 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 424 + 31 + 6 + 56 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 425 + 31 + 6 + 57 + Rated Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 664 + Coefficient of capacity as measured by Rating + C + true + + + 426 + 31 + 6 + 58 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + 4 + true + + + 427 + 31 + 6 + 59 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the average age of units + 8 + true + + + 428 + 31 + 6 + 60 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of generator contribution to capacity reserves + C + true + + + 429 + 31 + 7 + 61 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 430 + 31 + 7 + 62 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 431 + 31 + 8 + 63 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 432 + 31 + 8 + 64 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 433 + 31 + 8 + 65 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 434 + 31 + 8 + 66 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 435 + 31 + 8 + 67 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 436 + 31 + 8 + 68 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 437 + 31 + 8 + 69 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 438 + 31 + 8 + 70 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 439 + 31 + 8 + 71 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 440 + 32 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation measured at the generator-terminal + true + + + 441 + 32 + 3 + 2 + Generation Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 239 + Coefficient of the square of generation measured at the generator terminal + true + + + 442 + 32 + 3 + 3 + Generation SUM Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 240 + Coefficient of the square of the summed generation measured at the generator terminal + true + + + 443 + 32 + 3 + 4 + Generation Sent Out Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1147 + Coefficient of generation measured at the station gate + true + + + 444 + 32 + 3 + 5 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor. + true + + + 445 + 32 + 3 + 6 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation. + true + + + 446 + 32 + 3 + 7 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 447 + 32 + 3 + 8 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + true + + + 448 + 32 + 3 + 9 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + true + + + 449 + 32 + 3 + 10 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the generating unit has been off + true + + + 450 + 32 + 3 + 11 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + true + + + 451 + 32 + 3 + 12 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of committed capacity + true + + + 452 + 32 + 3 + 13 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + true + + + 453 + 32 + 3 + 14 + Waste Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1887 + Coefficient of waste heat + true + + + 454 + 32 + 3 + 15 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of emission production + true + + + 455 + 32 + 3 + 16 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + true + + + 456 + 32 + 3 + 17 + Pump Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 643 + Coefficient of pump load + true + + + 457 + 32 + 3 + 18 + Pump Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1645 + Coefficient of number of hours the generating unit is running in pump mode + true + + + 458 + 32 + 3 + 19 + Units Pumping Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1148 + Coefficient on the number of units pumping + true + + + 459 + 32 + 3 + 20 + Pump Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1323 + Coefficient on the number of pump units started + true + + + 460 + 32 + 3 + 21 + Sync Cond Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1646 + Coefficient of synchronous condenser load + true + + + 461 + 32 + 3 + 22 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + true + + + 462 + 32 + 3 + 23 + Sync Cond Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1648 + Coefficient of number of hours the generating unit is running in synchronous condenser mode + true + + + 463 + 32 + 3 + 24 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 464 + 32 + 3 + 25 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 465 + 32 + 3 + 26 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 466 + 32 + 3 + 27 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 467 + 32 + 3 + 28 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 468 + 32 + 3 + 29 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + true + + + 469 + 32 + 3 + 30 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + true + + + 470 + 32 + 3 + 31 + Sync Cond Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 774 + Coefficient of synchronous condenser reserve provision + true + + + 471 + 32 + 3 + 32 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + true + + + 472 + 32 + 3 + 33 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + true + + + 473 + 32 + 3 + 34 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + true + + + 474 + 32 + 3 + 35 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + true + + + 475 + 32 + 3 + 36 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + true + + + 476 + 32 + 3 + 37 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + true + + + 477 + 32 + 3 + 38 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 478 + 32 + 3 + 39 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + true + + + 479 + 32 + 3 + 40 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + true + + + 480 + 32 + 3 + 41 + Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1469 + Coefficient of flexibility up + true + + + 481 + 32 + 3 + 42 + Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1470 + Coefficient of flexibility down + true + + + 482 + 32 + 3 + 43 + Ramp Flexibility Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1471 + Coefficient of ramp flexibility up + true + + + 483 + 32 + 3 + 44 + Ramp Flexibility Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1472 + Coefficient of ramp flexibility down + true + + + 484 + 32 + 3 + 45 + Withdrawal Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of generator heat withdrawal + true + + + 485 + 32 + 3 + 46 + Injection Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of generator heat injection + true + + + 486 + 32 + 3 + 47 + Water Offtake Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1804 + Coefficient of generator water offtake + true + + + 487 + 32 + 3 + 48 + Water Consumption Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1805 + Coefficient of generator water consumption + true + + + 488 + 32 + 5 + 49 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 489 + 32 + 5 + 50 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 490 + 32 + 5 + 51 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 491 + 32 + 5 + 52 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 492 + 32 + 5 + 53 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 493 + 32 + 5 + 54 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 494 + 32 + 6 + 55 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 495 + 32 + 6 + 56 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 496 + 32 + 6 + 57 + Rated Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 664 + Coefficient of capacity as measured by Rating + true + + + 497 + 32 + 6 + 58 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 498 + 32 + 6 + 59 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + true + + + 499 + 32 + 6 + 60 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of generator contribution to capacity reserves + true + + + 500 + 32 + 7 + 61 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 501 + 32 + 7 + 62 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 502 + 32 + 8 + 63 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 503 + 32 + 8 + 64 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 504 + 32 + 8 + 65 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 505 + 32 + 8 + 66 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 506 + 32 + 8 + 67 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 507 + 32 + 8 + 68 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 508 + 32 + 8 + 69 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 509 + 32 + 8 + 70 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 510 + 32 + 8 + 71 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 511 + 33 + 1 + 1 + Heat Input Definition Coefficient + 17 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1885 + Coefficient of the Decision Variable in the Generator Heat Input definition equation + true + + + 512 + 34 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation in condition + true + + + 513 + 34 + 3 + 2 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 514 + 34 + 3 + 3 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit starts + true + + + 515 + 34 + 3 + 4 + Units Sync Cond Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1647 + Coefficient of number of units running in synchronous condenser mode + true + + + 516 + 34 + 3 + 5 + Efficiency Coefficient + 120 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2643 + Coefficient of generator efficiency + true + + + 517 + 34 + 3 + 6 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + true + + + 518 + 34 + 6 + 7 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 519 + 34 + 6 + 8 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 520 + 34 + 7 + 9 + Outage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2563 + Coefficient of capacity on outage + 4 + true + + + 521 + 34 + 7 + 10 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 4 + true + + + 522 + 34 + 8 + 11 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 523 + 34 + 8 + 12 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 524 + 34 + 8 + 13 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 525 + 34 + 8 + 14 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 526 + 34 + 8 + 15 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 527 + 34 + 8 + 16 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 528 + 34 + 8 + 17 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 529 + 34 + 8 + 18 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 530 + 35 + 1 + 1 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + false + false + false + 1 + 335 + Flag if the Power Station is enabled + 800000 + true + + + 531 + 38 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator load injected at the node + true + + + 532 + 39 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 533 + 39 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 534 + 39 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal stockpile trajectory from one simulation phase to the next. + 400000000 + true + + + 535 + 39 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition stockpile target penalty function 'a' term. + 400000000 + true + + + 536 + 39 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition stockpile target penalty function 'b' term. + 400000000 + true + + + 537 + 39 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition stockpile target penalty function 'c' term. + 400000000 + true + + + 538 + 39 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition stockpile target penalty function 'x' term. + 400000000 + true + + + 539 + 39 + 2 + 8 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of stockpile bounds when the decomposition implies possible violations. + 400000000 + true + + + 540 + 39 + 3 + 9 + Units + 0 + 1 + In (0,1) + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 812 + Flag if fuel exists + 800000 + true + + + 541 + 39 + 3 + 10 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Fuel price + 2000000001 + true + + + 542 + 39 + 3 + 11 + Tax + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 785 + Fuel tax + 2000000000 + true + + + 543 + 39 + 3 + 12 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 905 + Increment to the price of the fuel + 2000000000 + true + + + 544 + 39 + 3 + 13 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Multiplier on the price of the fuel + 2000000000 + true + + + 545 + 39 + 3 + 14 + Heat Value + 37 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of fuel + 100 + false + + + 546 + 39 + 3 + 15 + Shadow Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 742 + Shadow price of fuel (if defined as input, sets the internal price for fuel) + 2000000000 + true + + + 547 + 39 + 3 + 16 + Shadow Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1082 + Increment to the shadow price of the fuel (use only when Shadow Price is defined) + 2000000000 + true + + + 548 + 39 + 3 + 17 + Shadow Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 896 + Multiplier on the shadow price of the fuel (use only when Shadow Price is defined) + 2000000000 + true + + + 549 + 39 + 3 + 18 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 550 + 39 + 10 + 19 + Max Inventory + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1589 + Maximum fuel allowed in stockpile + 400000000 + true + + + 551 + 39 + 10 + 20 + Min Inventory + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum fuel required in stockpile + 400000000 + true + + + 552 + 39 + 10 + 21 + Opening Inventory + 87 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1591 + Initial fuel in the stockpile + 400000000 + true + + + 553 + 39 + 10 + 22 + Delivery + 87 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Fuel delivered to the stockpile + 400000000 + true + + + 554 + 39 + 10 + 23 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of delivering fuel to the stockpile + 400000000 + true + + + 555 + 39 + 10 + 24 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost applied to closing inventory in the stockpile + 400000000 + true + + + 556 + 39 + 10 + 25 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity in the stockpile + 400000000 + true + + + 557 + 39 + 10 + 26 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Incremental cost of taking fuel from stockpile + 400000000 + true + + + 558 + 39 + 9 + 27 + Max Offtake + 86 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 939 + Maximum fuel offtake per interval + 80 + true + + + 559 + 39 + 9 + 27 + Max Offtake Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1557 + Maximum fuel offtake in hour + 80 + true + + + 560 + 39 + 9 + 27 + Max Offtake Day + 87 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 940 + Maximum fuel offtake in day + 80 + true + + + 561 + 39 + 9 + 27 + Max Offtake Week + 87 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 941 + Maximum fuel offtake in week + 80 + true + + + 562 + 39 + 9 + 27 + Max Offtake Month + 87 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 942 + Maximum fuel offtake in month + 80 + true + + + 563 + 39 + 9 + 27 + Max Offtake Year + 87 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 943 + Maximum fuel offtake in year + 80 + true + + + 564 + 39 + 9 + 28 + Min Offtake + 86 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 944 + Minimum fuel offtake per interval + 80 + true + + + 565 + 39 + 9 + 28 + Min Offtake Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1558 + Minimum fuel offtake in hour + 80 + true + + + 566 + 39 + 9 + 28 + Min Offtake Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 945 + Minimum fuel offtake in day + 80 + true + + + 567 + 39 + 9 + 28 + Min Offtake Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 946 + Minimum fuel offtake in week + 80 + true + + + 568 + 39 + 9 + 28 + Min Offtake Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 947 + Minimum fuel offtake in month + 80 + true + + + 569 + 39 + 9 + 28 + Min Offtake Year + 87 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 948 + Minimum fuel offtake in year + 80 + true + + + 570 + 39 + 9 + 29 + Max Offtake Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2426 + Penalty applied to violations of [Max Offtake]constraints + 80 + true + + + 571 + 39 + 9 + 30 + Min Offtake Penalty + 88 + 1000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2427 + Penalty applied to violations of [Min Offtake] constraints + 80 + true + + + 572 + 39 + 9 + 31 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of fuel that can be taken from stockpile + 400000000 + true + + + 573 + 39 + 9 + 31 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of fuel that can be taken from stockpile in a hour + 400000000 + true + + + 574 + 39 + 9 + 31 + Max Withdrawal Day + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of fuel that can be taken from stockpile in a day + 400000000 + true + + + 575 + 39 + 9 + 31 + Max Withdrawal Week + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of fuel that can be taken from stockpile in a week + 400000000 + true + + + 576 + 39 + 9 + 31 + Max Withdrawal Month + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of fuel that can be taken from stockpile in a month + 400000000 + true + + + 577 + 39 + 9 + 31 + Max Withdrawal Year + 87 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of fuel that can be taken from stockpile in a year + 400000000 + true + + + 578 + 39 + 9 + 32 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1258 + Amount of fuel that must be taken from stockpile + 400000000 + true + + + 579 + 39 + 9 + 32 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of fuel that must be taken from stockpile each hour + 400000000 + true + + + 580 + 39 + 9 + 32 + Min Withdrawal Day + 87 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of fuel that must be taken from stockpile each day + 400000000 + true + + + 581 + 39 + 9 + 32 + Min Withdrawal Week + 87 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of fuel that must be taken from stockpile each week + 400000000 + true + + + 582 + 39 + 9 + 32 + Min Withdrawal Month + 87 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of fuel that must be taken from stockpile each month + 400000000 + true + + + 583 + 39 + 9 + 32 + Min Withdrawal Year + 87 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of fuel that must be taken from stockpile each year + 400000000 + true + + + 584 + 39 + 12 + 33 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 585 + 39 + 12 + 34 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 586 + 39 + 12 + 35 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 587 + 49 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 588 + 50 + 3 + 1 + Consumption Rate + 113 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2752 + Fuel consumed per unit of the Primary Output from the Facility + true + + + 589 + 53 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 590 + 53 + 1 + 2 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of fuel emission + 2000 + true + + + 591 + 53 + 1 + 3 + In Use Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1382 + Boolean value (1 if the Fuel is in use, 0 otherwise) + 1000000000 + true + + + 592 + 53 + 1 + 4 + Closing Inventory Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of fuel stockpile closing inventory. + 400000000 + true + + + 593 + 53 + 1 + 5 + Inventory Change Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in fuel stockpile level. + 400000000 + true + + + 594 + 53 + 1 + 6 + Delivery Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of delivery to fuel stockpile. + 400000000 + true + + + 595 + 53 + 1 + 7 + Withdrawal Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal from fuel stockpile. + 400000000 + true + + + 596 + 53 + 1 + 8 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation with given fuel + true + + + 597 + 54 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 598 + 54 + 1 + 2 + Emission Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 164 + Coefficient of fuel emission + true + + + 599 + 54 + 1 + 3 + In Use Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1382 + Boolean value (1 if the Fuel is in use, 0 otherwise) + true + + + 600 + 54 + 1 + 4 + Closing Inventory Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of fuel stockpile closing inventory + true + + + 601 + 54 + 1 + 5 + Inventory Change Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in fuel stockpile level + true + + + 602 + 54 + 1 + 6 + Delivery Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of delivery to fuel stockpile + true + + + 603 + 54 + 1 + 7 + Withdrawal Coefficient + 87 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal from fuel stockpile + true + + + 604 + 54 + 1 + 8 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation with given fuel + true + + + 605 + 55 + 3 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel offtake + true + + + 606 + 56 + 9 + 1 + Quantity + 86 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 650 + Contract quantity + 80 + true + + + 607 + 56 + 9 + 1 + Quantity Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + true + 1 + 1559 + Total contract quantity in hour + 80 + true + + + 608 + 56 + 9 + 1 + Quantity Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + true + 1 + 651 + Total contract quantity in day + 80 + true + + + 609 + 56 + 9 + 1 + Quantity Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + true + 1 + 653 + Total contract quantity in week + 80 + true + + + 610 + 56 + 9 + 1 + Quantity Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + true + 1 + 652 + Total contract quantity in month + 80 + true + + + 611 + 56 + 9 + 1 + Quantity Year + 87 + 0 + 1 + 0 + 0 + 4 + false + false + true + true + 1 + 654 + Total contract quantity in year + 80 + true + + + 612 + 56 + 3 + 2 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 612 + Contract price + 2000000001 + true + + + 613 + 56 + 3 + 3 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 905 + Increment to the price of the fuel contract. + 2000000000 + true + + + 614 + 56 + 3 + 4 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Multiplier on the price of the fuel contract. + 2000000000 + true + + + 615 + 56 + 3 + 5 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed charge for the fuel contract + 8000 + true + + + 616 + 56 + 9 + 6 + Take-or-Pay Quantity + 86 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 778 + Contract take-or-pay quantity + 80 + true + + + 617 + 56 + 9 + 6 + Take-or-Pay Quantity Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1560 + Contract take-or-pay quantity in hour + 80 + true + + + 618 + 56 + 9 + 6 + Take-or-Pay Quantity Day + 87 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 779 + Contract take-or-pay quantity in day + 80 + true + + + 619 + 56 + 9 + 6 + Take-or-Pay Quantity Week + 87 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 781 + Contract take-or-pay quantity in week + 80 + true + + + 620 + 56 + 9 + 6 + Take-or-Pay Quantity Month + 87 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 780 + Contract take-or-pay quantity in month + 80 + true + + + 621 + 56 + 9 + 6 + Take-or-Pay Quantity Year + 87 + 0 + 1 + 0 + 0 + 4 + false + true + true + false + 1 + 782 + Contract take-or-pay quantity in year + 80 + true + + + 622 + 56 + 9 + 7 + Take-or-Pay Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 777 + Contract take-or-pay price + 80 + true + + + 623 + 56 + 12 + 8 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 624 + 56 + 12 + 9 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 625 + 56 + 12 + 10 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 626 + 61 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of fuel contract + 40 + true + + + 627 + 62 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel contract offtake + true + + + 628 + 63 + 1 + 1 + Offtake Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 579 + Coefficient of fuel contract offtake + true + + + 629 + 64 + 2 + 1 + Max Efficiency Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2443 + Maximum number of tranches in the efficiency piecewise linear approximation + 1000 + true + + + 630 + 64 + 2 + 2 + Formulate Non-convex + 0 + 1 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order + 1000 + true + + + 631 + 64 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 632 + 64 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 633 + 64 + 2 + 5 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 634 + 64 + 3 + 6 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 635 + 64 + 3 + 7 + Max Load + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 436 + Maximum load of each unit + 5 + true + + + 636 + 64 + 3 + 8 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 637 + 64 + 3 + 9 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 638 + 64 + 3 + 10 + Load Point + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point efficiency + 1000 + true + + + 639 + 64 + 3 + 11 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1209 + Efficiency of energy conversion process + 1000 + true + + + 640 + 64 + 3 + 12 + Water Consumption + 68 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1803 + Water consumed by the Power2X facility + 1000 + true + + + 641 + 64 + 3 + 13 + Ramp Up Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Load point for use with multi-band Max Ramp Up constraints + 80 + true + + + 642 + 64 + 3 + 14 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate that applies at the given load point + 80 + true + + + 643 + 64 + 3 + 15 + Ramp Up Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 644 + 64 + 3 + 16 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 645 + 64 + 3 + 17 + Ramp Down Point + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Load point for use with multi-band Max Ramp Down constraints + 80 + true + + + 646 + 64 + 3 + 18 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate that applies at the given load point + 80 + true + + + 647 + 64 + 3 + 19 + Ramp Down Charge + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 648 + 64 + 3 + 20 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 656 + Penalty for violating [Max Ramp Down] constraint. + 80 + true + + + 649 + 64 + 3 + 21 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 650 + 64 + 3 + 22 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 651 + 64 + 3 + 23 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 652 + 64 + 3 + 24 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 653 + 64 + 3 + 25 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 654 + 64 + 3 + 26 + Min Stable Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1372 + Minimum stable operation level as a proportion of [Max Load] + 1000000080 + true + + + 655 + 64 + 3 + 27 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Power2X object + 100 + true + + + 656 + 64 + 3 + 28 + Bid Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2547 + Base load for balancing bid + true + + + 657 + 64 + 3 + 29 + Bid Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + true + + + 658 + 64 + 3 + 30 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Energy bid price + true + + + 659 + 64 + 9 + 31 + Max Production + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum production + 80 + true + + + 660 + 64 + 9 + 31 + Max Production Hour + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production in hour + 80 + true + + + 661 + 64 + 9 + 31 + Max Production Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production in day + 80 + true + + + 662 + 64 + 9 + 31 + Max Production Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production in week + 80 + true + + + 663 + 64 + 9 + 31 + Max Production Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production in month + 80 + true + + + 664 + 64 + 9 + 31 + Max Production Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production in year + 80 + true + + + 665 + 64 + 9 + 32 + Min Production + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1275 + Minimum production + 80 + true + + + 666 + 64 + 9 + 32 + Min Production Hour + 15 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production in hour + 80 + true + + + 667 + 64 + 9 + 32 + Min Production Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production in day + 80 + true + + + 668 + 64 + 9 + 32 + Min Production Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production in week + 80 + true + + + 669 + 64 + 9 + 32 + Min Production Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production in month + 80 + true + + + 670 + 64 + 9 + 32 + Min Production Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production in year + 80 + true + + + 671 + 64 + 9 + 33 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor (production constraint) + 80 + true + + + 672 + 64 + 9 + 33 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 673 + 64 + 9 + 33 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 674 + 64 + 9 + 33 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 675 + 64 + 9 + 33 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 676 + 64 + 9 + 33 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 677 + 64 + 9 + 34 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor + 80 + true + + + 678 + 64 + 9 + 34 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 679 + 64 + 9 + 34 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 680 + 64 + 9 + 34 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 681 + 64 + 9 + 34 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 682 + 64 + 9 + 34 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 683 + 64 + 9 + 35 + Max Production Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1361 + Penalty applied to violations of [Max Production] and [Max Capacity Factor] constraints. + 80 + true + + + 684 + 64 + 9 + 36 + Min Production Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2292 + Penalty applied to violations of [Min Production] and [Min Capacity Factor] constraints. + 80 + true + + + 685 + 64 + 9 + 37 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 686 + 64 + 9 + 37 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 687 + 64 + 9 + 37 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 688 + 64 + 9 + 37 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 689 + 64 + 9 + 37 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 690 + 64 + 9 + 37 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 691 + 64 + 9 + 38 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints. + 1080000080 + true + + + 692 + 64 + 6 + 39 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the Power2X to capacity reserves + C + true + + + 693 + 64 + 7 + 40 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 694 + 64 + 7 + 41 + Forced Outage + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 695 + 64 + 7 + 42 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 696 + 64 + 7 + 43 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 697 + 64 + 7 + 44 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 698 + 64 + 7 + 45 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 699 + 64 + 7 + 46 + Outage Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Unit rating during outage + 1000000 + true + + + 700 + 64 + 7 + 47 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 701 + 64 + 7 + 48 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 702 + 64 + 7 + 49 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 703 + 64 + 7 + 50 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull, lognormal) + 1000000 + true + + + 704 + 64 + 7 + 51 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential, Weibull, lognormal, SEV, LEV) + 1000000 + true + + + 705 + 64 + 8 + 52 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 706 + 64 + 8 + 53 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning. + 8 + true + + + 707 + 64 + 8 + 54 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 708 + 64 + 8 + 55 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 709 + 64 + 8 + 56 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered). + 9 + true + + + 710 + 64 + 8 + 57 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 711 + 64 + 8 + 58 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 712 + 64 + 8 + 59 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 713 + 64 + 8 + 60 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 714 + 64 + 8 + 61 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 715 + 64 + 11 + 62 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 716 + 64 + 11 + 63 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 717 + 64 + 12 + 64 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 718 + 64 + 12 + 65 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 719 + 64 + 12 + 66 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 720 + 67 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this fuel produced + true + + + 721 + 68 + 1 + 1 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of facility load at the node + true + + + 722 + 69 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Heat Node + true + + + 723 + 70 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Heat Storage + true + + + 724 + 71 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Gas Node + true + + + 725 + 71 + 1 + 2 + Min Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by Power2X in the blend + 100 + true + + + 726 + 71 + 1 + 3 + Max Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by Power2X in the blend + 100 + true + + + 727 + 72 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's output that gets injected to this Gas Storage + true + + + 728 + 73 + 1 + 1 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Proportion of this facility's water consumption that gets drawn from this Water Node + true + + + 729 + 74 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 730 + 75 + 1 + 1 + Ratio + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 666 + Amount of the Commodity produced per unit of input energy to the facility + true + + + 731 + 76 + 3 + 1 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 626 + Amount of the Power2X production on the Flow Node injected(positive)/withdrawn(negative) per unit of production + true + + + 732 + 77 + 3 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 733 + 77 + 3 + 2 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 734 + 77 + 3 + 3 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 735 + 77 + 3 + 4 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load drawn by the facility + true + + + 736 + 77 + 3 + 5 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of facility production + false + + + 737 + 77 + 3 + 6 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 738 + 77 + 3 + 7 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 739 + 77 + 3 + 8 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 740 + 77 + 3 + 9 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 741 + 77 + 3 + 10 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 742 + 77 + 3 + 11 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 743 + 77 + 3 + 12 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 744 + 77 + 5 + 13 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 745 + 77 + 5 + 14 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 746 + 77 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 747 + 77 + 5 + 16 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 748 + 77 + 5 + 17 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 749 + 77 + 5 + 18 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 750 + 77 + 6 + 19 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 751 + 77 + 8 + 20 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built constraint + 8 + true + + + 752 + 77 + 8 + 21 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 753 + 77 + 8 + 22 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 754 + 77 + 8 + 23 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 755 + 77 + 8 + 24 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 756 + 77 + 8 + 25 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 757 + 78 + 3 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 758 + 78 + 3 + 2 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 759 + 78 + 3 + 3 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 760 + 78 + 3 + 4 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load drawn by the facility + true + + + 761 + 78 + 3 + 5 + Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of facility production + false + + + 762 + 78 + 3 + 6 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 763 + 78 + 3 + 7 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 764 + 78 + 3 + 8 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 765 + 78 + 3 + 9 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 766 + 78 + 3 + 10 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 767 + 78 + 3 + 11 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 768 + 78 + 3 + 12 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 769 + 78 + 5 + 13 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 770 + 78 + 5 + 14 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 771 + 78 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 772 + 78 + 5 + 16 + Start & Shutdown Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1507 + Coefficient of start and shutdown cost + true + + + 773 + 78 + 5 + 17 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 774 + 78 + 5 + 18 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 775 + 78 + 6 + 19 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 776 + 78 + 8 + 20 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 777 + 78 + 8 + 21 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 778 + 78 + 8 + 22 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 779 + 78 + 8 + 23 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 780 + 78 + 8 + 24 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 781 + 78 + 8 + 25 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 782 + 79 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the generator for the generation of outages + 101000000 + true + + + 783 + 79 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 100000000 + true + + + 784 + 79 + 2 + 3 + End Effects Method + 0 + 2 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period energy. + 20 + true + + + 785 + 79 + 2 + 4 + Recharge Timeframe + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2546 + Maximum hours to recharge after discharge + true + + + 786 + 79 + 2 + 5 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the battery can set price + 4000000 + true + + + 787 + 79 + 2 + 6 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal state-of-charge from one simulation phase to the next + 400000000 + true + + + 788 + 79 + 2 + 7 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition state-of-charge target penalty function 'a' term + 400000000 + true + + + 789 + 79 + 2 + 8 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition state-of-charge target penalty function 'b' term + 400000000 + true + + + 790 + 79 + 2 + 9 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition state-of-charge target penalty function 'c' term + 400000000 + true + + + 791 + 79 + 2 + 10 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition state-of-charge target penalty function 'x' term + 400000000 + true + + + 792 + 79 + 2 + 11 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of state-of-charge bounds when the decomposition implies possible violations + 400000000 + true + + + 793 + 79 + 2 + 12 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 794 + 79 + 2 + 13 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 795 + 79 + 2 + 14 + Declining Depreciation Balance + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 130 + Balance applied to declining depreciation method + 8 + true + + + 796 + 79 + 2 + 15 + Build Cost Multiplier + 0 + 1 + In (0,1,2) + 0;"None";1;"Production Capacity";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 797 + 79 + 2 + 16 + Simultaneous Charge and Discharge + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2632 + Battery can charge and discharge simultaneously + 80 + true + + + 798 + 79 + 2 + 17 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the battery. + 1000000000 + true + + + 799 + 79 + 2 + 18 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the battery acts strategically + 40 + true + + + 800 + 79 + 2 + 19 + LCCR Apply Discounting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2811 + If the discount rate should be applied to the LCCR + true + + + 801 + 79 + 3 + 20 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of BESS units installed + 800001 + true + + + 802 + 79 + 3 + 21 + Capacity + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of the BESS + 5 + true + + + 803 + 79 + 3 + 22 + Max Power + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1756 + Power at full discharge + 5 + true + + + 804 + 79 + 3 + 23 + Max Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 436 + Power at full charge including inverter losses + 5 + true + + + 805 + 79 + 3 + 24 + Max SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1666 + Allowable maximum State of Charge + 5 + true + + + 806 + 79 + 3 + 25 + Min SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1667 + Allowable minimum state of charge + 5 + true + + + 807 + 79 + 3 + 26 + Initial SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1670 + Initial State of Charge + 5 + true + + + 808 + 79 + 3 + 27 + Charge Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 809 + 79 + 3 + 28 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 810 + 79 + 3 + 29 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 811 + 79 + 3 + 30 + Charging VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2624 + Variable operation and maintenance charge for charging + 2000000001 + true + + + 812 + 79 + 3 + 31 + Discharging VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2625 + Variable operation and maintenance charge for discharging + 2000000001 + true + + + 813 + 79 + 3 + 32 + FO&M Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Fixed operations and maintenance charge + 8000 + true + + + 814 + 79 + 3 + 33 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge for generation + 2000000000 + true + + + 815 + 79 + 3 + 34 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 816 + 79 + 3 + 35 + Max Ramp Up Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 660 + Penalty for violating [Max Ramp Up] constraint. + 80 + true + + + 817 + 79 + 3 + 36 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 818 + 79 + 3 + 37 + Max Ramp Down Penalty + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 656 + Penalty for violating Max Ramp Down constraint. + 80 + true + + + 819 + 79 + 3 + 38 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 820 + 79 + 3 + 39 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Battery marginal loss factor (MLF or TLF) + 600000 + true + + + 821 + 79 + 3 + 40 + Min Discharge Level + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2553 + Minimum discharge level when discharging + 80 + true + + + 822 + 79 + 3 + 41 + Min Charge Level + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2554 + Minimum unit charge level when charging + 80 + true + + + 823 + 79 + 3 + 42 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a battery must discharge after discharging starts + 1000000080 + true + + + 824 + 79 + 3 + 43 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a battery must have zero discharge after discharging stops + 1000000080 + true + + + 825 + 79 + 3 + 44 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a battery can discharge after discharging starts + 1000000080 + true + + + 826 + 79 + 3 + 45 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a battery can have zero discharge after discharging stops + 1000000080 + true + + + 827 + 79 + 3 + 46 + Discharge Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2657 + Minimum time between operating in discharge mode and charge mode + 80 + true + + + 828 + 79 + 3 + 47 + Charge Transition Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2658 + Minimum time between operating in charge mode and discharge mode + 80 + true + + + 829 + 79 + 3 + 48 + Self Discharge Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2710 + Percentage of stored energy lost per hour due to self-discharge. + 200000 + true + + + 830 + 79 + 9 + 49 + Max Cycles + 62 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1832 + Number of cycles allowed each interval + 80 + true + + + 831 + 79 + 9 + 49 + Max Cycles Hour + 62 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1833 + Number of cycles allowed each hour + 80 + true + + + 832 + 79 + 9 + 49 + Max Cycles Day + 62 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1834 + Number of cycles allowed each day + 80 + true + + + 833 + 79 + 9 + 49 + Max Cycles Week + 62 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1835 + Number of cycles allowed each week + 80 + true + + + 834 + 79 + 9 + 49 + Max Cycles Month + 62 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1836 + Number of cycles allowed each month + 80 + true + + + 835 + 79 + 9 + 49 + Max Cycles Year + 62 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1837 + Number of cycles allowed each year + 80 + true + + + 836 + 79 + 9 + 50 + Energy Target + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1861 + Battery stored energy target + 80 + true + + + 837 + 79 + 9 + 50 + Energy Target Hour + 3 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1862 + end of hour battery stored energy target + 80 + true + + + 838 + 79 + 9 + 50 + Energy Target Day + 3 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1863 + end of day battery stored energy target + 80 + true + + + 839 + 79 + 9 + 50 + Energy Target Week + 3 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1864 + end of week battery stored energy target + 80 + true + + + 840 + 79 + 9 + 50 + Energy Target Month + 3 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1865 + end of month battery stored energy target + 80 + true + + + 841 + 79 + 9 + 50 + Energy Target Year + 3 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1866 + end of year battery stored energy target + 80 + true + + + 842 + 79 + 9 + 51 + Energy Target Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1867 + Penalty for violating the battery stored energy target. + 80 + true + + + 843 + 79 + 11 + 52 + Non-anticipativity + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 844 + 79 + 11 + 53 + Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1858 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 845 + 79 + 4 + 54 + Offer Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for incr/decr style offer + 400000 + true + + + 846 + 79 + 4 + 55 + Offer No Load Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 568 + Fixed dispatch cost component of generator offer. + 400000 + true + + + 847 + 79 + 4 + 56 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band + 400001 + true + + + 848 + 79 + 4 + 57 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band + 400001 + true + + + 849 + 79 + 4 + 58 + Offer Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1368 + Scalar applied to the [Offer Quantity] property + 400000 + true + + + 850 + 79 + 4 + 59 + Offer Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1386 + Adder applied to the [Offer Price] property + 400000 + true + + + 851 + 79 + 4 + 60 + Offer Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1365 + Scalar applied to the [Offer Price] property + 400000 + true + + + 852 + 79 + 4 + 61 + Bid Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2547 + Base load for balancing bid + 400400000 + true + + + 853 + 79 + 4 + 62 + Bid Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 34 + load bid quantity in band + 400400000 + true + + + 854 + 79 + 4 + 63 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 33 + Bid price of load in band + 400400000 + true + + + 855 + 79 + 4 + 64 + Bid Quantity Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2548 + Scalar applied to the [Bid Quantity] property + 400400000 + true + + + 856 + 79 + 4 + 65 + Bid Price Incr + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2549 + Adder applied to the [Bid Price] property + 400400000 + true + + + 857 + 79 + 4 + 66 + Bid Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2550 + Scalar applied to the [Bid Price] property + 400400000 + true + + + 858 + 79 + 4 + 67 + Strategic Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1009 + Generating unit rating for application in RSI capacity calculations + 40 + true + + + 859 + 79 + 4 + 68 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Pumping unit rating for application in RSI capacity calculations. + 40 + true + + + 860 + 79 + 6 + 69 + Initial Age + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1856 + Age of the battery in number of cycles at the start of the simulation horizon + 80000 + true + + + 861 + 79 + 6 + 70 + Power Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1830 + Degradation of battery power with cycles + 4 + true + + + 862 + 79 + 6 + 71 + Capacity Degradation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1960 + Degradation in capacity with age in number of cycles + 4 + true + + + 863 + 79 + 6 + 72 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 64 + Contribution of the battery to capacity reserves + C + true + + + 864 + 79 + 6 + 73 + Firm Capacity Unit Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2664 + The total number of units installed in band corresponding to the same band of [Firm Capacity] + C + true + + + 865 + 79 + 7 + 74 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 866 + 79 + 7 + 75 + Effective Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2672 + Effective forced outage rate for use in calculation of reliability indices + true + + + 867 + 79 + 7 + 76 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 868 + 79 + 7 + 77 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 869 + 79 + 7 + 78 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 870 + 79 + 6 + 79 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 871 + 79 + 6 + 80 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 872 + 79 + 6 + 81 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 873 + 79 + 6 + 82 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 874 + 79 + 6 + 83 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 875 + 79 + 8 + 84 + Max Units Built + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of BESS units that can be built + 89 + true + + + 876 + 79 + 8 + 85 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 877 + 79 + 8 + 86 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + First date at which a BESS unit can be built + 8 + true + + + 878 + 79 + 8 + 87 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of a BESS unit + 8 + true + + + 879 + 79 + 8 + 88 + Build Cost + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a BESS unit + 8009 + true + + + 880 + 79 + 8 + 89 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 881 + 79 + 8 + 90 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of a BESS unit (period over which fixed costs are recovered) + 9 + true + + + 882 + 79 + 8 + 91 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 883 + 79 + 8 + 92 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of BESS units that can be built in a year + 88 + true + + + 884 + 79 + 8 + 93 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units allowed to be constructed in any single year of the planning horizon + 88 + true + + + 885 + 79 + 8 + 94 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units allowed to be retired in aggregate over the planning horizon + 88 + true + + + 886 + 79 + 8 + 95 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a BESS unit + 8 + true + + + 887 + 79 + 8 + 96 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 888 + 79 + 8 + 97 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 889 + 79 + 8 + 98 + Min Units Retired in Year + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units allowed to be retired in any single year of the planning horizon + 88 + true + + + 890 + 79 + 8 + 99 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 891 + 79 + 8 + 100 + Levelized Capital Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1973 + Levelized capital carrying rate + 9 + true + + + 892 + 79 + 11 + 101 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 893 + 79 + 11 + 102 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 894 + 79 + 12 + 103 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 895 + 79 + 12 + 104 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 896 + 79 + 12 + 105 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 897 + 82 + 1 + 1 + Distribution Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2713 + Proportion of battery charge and discharge at the node + true + + + 898 + 84 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 899 + 85 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity consumed per unit of generation + true + + + 900 + 85 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Amount of the Commodity consumed per unit of load + true + + + 901 + 85 + 8 + 3 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Amount of the Commodity consumed per unit of capacity built + true + + + 902 + 85 + 8 + 4 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Amount of the Commodity consumed per unit of capacity retired + true + + + 903 + 86 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity produced per unit of generation + true + + + 904 + 86 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Amount of the Commodity produced per unit of load + true + + + 905 + 87 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 81 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of generation + true + + + 906 + 87 + 3 + 2 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 80 + Amount of the Commodity on the Flow Node injected(positive)/withdrawn(negative) per unit of load + true + + + 907 + 88 + 4 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for capacity market + true + + + 908 + 88 + 4 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price of energy in band for capacity market + true + + + 909 + 89 + 3 + 1 + Energy Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1859 + Coefficient of energy stored in the BESS + true + + + 910 + 89 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 911 + 89 + 3 + 3 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load consumption (charging) in the constraint + true + + + 912 + 89 + 3 + 4 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 913 + 89 + 3 + 5 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 914 + 89 + 3 + 6 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 915 + 89 + 3 + 7 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 916 + 89 + 3 + 8 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 917 + 89 + 3 + 9 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + 2 + true + + + 918 + 89 + 3 + 10 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + 2 + true + + + 919 + 89 + 3 + 11 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + 2 + true + + + 920 + 89 + 3 + 12 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + 2 + true + + + 921 + 89 + 3 + 13 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + 2 + true + + + 922 + 89 + 3 + 14 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + 2 + true + + + 923 + 89 + 3 + 15 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + 2 + true + + + 924 + 89 + 3 + 16 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + 2 + true + + + 925 + 89 + 3 + 17 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 926 + 89 + 3 + 18 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + 2 + true + + + 927 + 89 + 3 + 19 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + 2 + true + + + 928 + 89 + 6 + 20 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 929 + 89 + 6 + 21 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 930 + 89 + 6 + 22 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 931 + 89 + 6 + 23 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of battery contribution to capacity reserves + C + true + + + 932 + 89 + 6 + 24 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 933 + 89 + 6 + 25 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + 8 + true + + + 934 + 89 + 5 + 26 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 935 + 89 + 5 + 27 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 936 + 89 + 5 + 28 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 937 + 89 + 5 + 29 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 938 + 89 + 5 + 30 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 939 + 89 + 7 + 31 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 940 + 89 + 7 + 32 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 941 + 89 + 8 + 33 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 942 + 89 + 8 + 34 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 943 + 89 + 8 + 35 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + 8 + true + + + 944 + 89 + 8 + 36 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + 8 + true + + + 945 + 89 + 8 + 37 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 946 + 89 + 8 + 38 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 947 + 89 + 8 + 39 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 948 + 89 + 8 + 40 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + 8 + true + + + 949 + 89 + 8 + 41 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + 8 + true + + + 950 + 90 + 3 + 1 + Energy Coefficient + 3 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1859 + Coefficient of energy stored in the BESS + true + + + 951 + 90 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of generation + true + + + 952 + 90 + 3 + 3 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of load obligation + true + + + 953 + 90 + 3 + 4 + Ramp Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 954 + 90 + 3 + 5 + Ramp Up Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 955 + 90 + 3 + 6 + Ramp Down Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 956 + 90 + 3 + 7 + Ramp Up Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 957 + 90 + 3 + 8 + Ramp Down Violation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 958 + 90 + 3 + 9 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of total reserve provision (from all types) + true + + + 959 + 90 + 3 + 10 + Spinning Reserve Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 757 + Coefficient of reserve provided by spare capacity + true + + + 960 + 90 + 3 + 11 + Pump Dispatchable Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 641 + Coefficient of pump dispatchable load reserve + true + + + 961 + 90 + 3 + 12 + Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 999 + Coefficient of raise reserve provision + true + + + 962 + 90 + 3 + 13 + Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1000 + Coefficient of lower reserve provision + true + + + 963 + 90 + 3 + 14 + Regulation Raise Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1001 + Coefficient of regulation raise reserve provision + true + + + 964 + 90 + 3 + 15 + Regulation Lower Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1002 + Coefficient of regulation lower reserve provision + true + + + 965 + 90 + 3 + 16 + Replacement Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1003 + Coefficient of replacement reserve provision + true + + + 966 + 90 + 3 + 17 + Inertia Provision Coefficient + 97 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2517 + Coefficient of inertia provision + true + + + 967 + 90 + 3 + 18 + Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1962 + Coefficient of the number of units providing reserves + true + + + 968 + 90 + 3 + 19 + Operating Reserve Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1961 + Coefficient of the number of units providing operating reserves + true + + + 969 + 90 + 6 + 20 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 970 + 90 + 6 + 21 + Installed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 971 + 90 + 6 + 22 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of capacity as measured by [Firm Capacity] + true + + + 972 + 90 + 6 + 23 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of battery contribution to capacity reserves + C + true + + + 973 + 90 + 6 + 24 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 2 + 1838 + Coefficient of cycles + true + + + 974 + 90 + 6 + 25 + Age Coefficient + 8 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1855 + Coefficient on the number of years since the expansion candidate was built + true + + + 975 + 90 + 5 + 26 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 976 + 90 + 5 + 27 + Pool Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1505 + Coefficient of pool revenue + true + + + 977 + 90 + 5 + 28 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 978 + 90 + 5 + 29 + Fixed Costs Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1508 + Coefficient of fixed costs + true + + + 979 + 90 + 5 + 30 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 980 + 90 + 7 + 31 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + true + + + 981 + 90 + 7 + 32 + Maintenance Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + true + + + 982 + 90 + 8 + 33 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 983 + 90 + 8 + 34 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 984 + 90 + 8 + 35 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 985 + 90 + 8 + 36 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 986 + 90 + 8 + 37 + Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 987 + 90 + 8 + 38 + Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 988 + 90 + 8 + 39 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 989 + 90 + 8 + 40 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any battery capacity is built to date + true + + + 990 + 90 + 8 + 41 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any battery capacity is built in the year + true + + + 991 + 91 + 2 + 1 + Model + 0 + 0 + In (0,1,2,3) + 0;"Auto";1;"Energy";3;"Volume";2;"Level" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1079 + Model used to define and model storage volumes (used to override the file-level Hydro Model setting). + 40000 + true + + + 992 + 91 + 2 + 2 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 993 + 91 + 2 + 3 + Internal Volume Scalar + 0 + 1000 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 994 + 91 + 2 + 4 + End Effects Method + 0 + 0 + In (0,1,2) + 0;"Auto";1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 168 + Method used to handle end-of-period storage. + 4000 + true + + + 995 + 91 + 2 + 5 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 996 + 91 + 2 + 6 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 997 + 91 + 2 + 7 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 998 + 91 + 2 + 8 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 999 + 91 + 2 + 9 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 1000 + 91 + 2 + 10 + Decomposition Bound Penalty + 46 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 1001 + 91 + 2 + 11 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 40080 + true + + + 1002 + 91 + 2 + 12 + Spill Penalty + 46 + 0.0001 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1238 + Penalty applied to spill from the storage to "the sea" in the last period of each simulation step. + 40000 + true + + + 1003 + 91 + 2 + 13 + Non-physical Inflow Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1130 + Penalty applied to non-physical inflow to the storage. A value of -1 means none are allowed. + 40000 + true + + + 1004 + 91 + 2 + 14 + Non-physical Spill Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1131 + Penalty applied to non-physical spill from the storage. A value of -1 means none are allowed. + 40000 + true + + + 1005 + 91 + 3 + 15 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Number of units of the storage + 840000 + true + + + 1006 + 91 + 3 + 16 + Max Volume + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 466 + Maximum volume + 40001 + true + + + 1007 + 91 + 3 + 17 + Max Volume Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2716 + Penalty for violatiog the Max Volume constraint + 40000 + true + + + 1008 + 91 + 3 + 18 + Initial Volume + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Storage volume at the start of the period + C0001 + true + + + 1009 + 91 + 3 + 19 + Min Volume + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 510 + Minimum volume + 40000 + true + + + 1010 + 91 + 3 + 20 + Min Volume Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2717 + Penalty for violatiog the Min Volume constraint + 40000 + true + + + 1011 + 91 + 3 + 21 + Max Level + 23 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 435 + Maximum level + 40000 + true + + + 1012 + 91 + 3 + 22 + Initial Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 316 + Initial level + 40000 + true + + + 1013 + 91 + 3 + 23 + Min Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 485 + Minimum level + 40000 + true + + + 1014 + 91 + 3 + 24 + Low Ref Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 389 + Low reference level for volume calculation + 40000 + true + + + 1015 + 91 + 3 + 25 + Low Ref Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 388 + Area of surface at low reference level + 40000 + true + + + 1016 + 91 + 3 + 26 + High Ref Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 269 + High reference level for volume calculation + 40000 + true + + + 1017 + 91 + 3 + 27 + High Ref Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 268 + Area of surface at high reference level + 40000 + true + + + 1018 + 91 + 3 + 28 + Natural Inflow + 25 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 530 + Rate of natural inflow + 40001 + true + + + 1019 + 91 + 3 + 29 + Natural Inflow Incr + 25 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1396 + Increment to [Natural Inflow] + 40000 + true + + + 1020 + 91 + 3 + 30 + Natural Inflow Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1397 + Multiplier on [Natural Inflow] + 40000 + true + + + 1021 + 91 + 3 + 31 + Water Value + 46 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 855 + Incremental price of water released from storage + 40000 + true + + + 1022 + 91 + 3 + 32 + Water Value Point + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 856 + Volume associated with [Water Value] in multiple bands + 40000 + true + + + 1023 + 91 + 3 + 33 + Energy Value + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 176 + Incremental price of energy generated from storage + 40000 + true + + + 1024 + 91 + 3 + 34 + Energy Value Point + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2538 + Energy associated with [Energy Value] in multiple bands + 40000 + true + + + 1025 + 91 + 3 + 35 + Downstream Efficiency + 120 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 153 + Aggregate efficiency of generation down the river chain + 40000 + true + + + 1026 + 91 + 3 + 36 + Loss Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to evaporation, leakage, etc + 240000 + true + + + 1027 + 91 + 3 + 37 + Recycle Penalty + 46 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 1028 + 91 + 3 + 38 + Rolling Planning Bonus + 46 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2519 + Bonus for storage contents at the end of the look-ahead + true + + + 1029 + 91 + 9 + 39 + Min Release + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 497 + Minimum rate of release from the storage + 40080 + true + + + 1030 + 91 + 9 + 40 + Max Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 451 + Maximum rate of release from the storage + 40080 + true + + + 1031 + 91 + 9 + 41 + Max Generator Release + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1210 + Maximum rate of release for generation from the storage + 40080 + true + + + 1032 + 91 + 9 + 42 + Min Release Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1947 + Penalty for violation of minimum rate of release constraints + 40080 + true + + + 1033 + 91 + 9 + 43 + Max Release Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1948 + Penalty for violation of maximum rate of release constraints + 40080 + true + + + 1034 + 91 + 9 + 44 + Max Spill + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 457 + Maximum allowable spill from the storage to "the sea" + 40080 + true + + + 1035 + 91 + 9 + 45 + Max Ramp + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in storage + 40080 + true + + + 1036 + 91 + 9 + 45 + Max Ramp Hour + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum change in storage across each hour. + 40080 + true + + + 1037 + 91 + 9 + 45 + Max Ramp Day + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum of change in storage across each day. + 40080 + true + + + 1038 + 91 + 9 + 45 + Max Ramp Week + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum of change in storage across each week. + 40080 + true + + + 1039 + 91 + 9 + 45 + Max Ramp Month + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum of change in storage across each month. + 40080 + true + + + 1040 + 91 + 9 + 45 + Max Ramp Year + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum of change in storage across each year. + 40080 + true + + + 1041 + 91 + 9 + 46 + Max Ramp Penalty + 54 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 285 + Penalty for violating the [Max Ramp Day/Week/Month/Year] constraint. + 40080 + true + + + 1042 + 91 + 9 + 47 + Target + 24 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 40080 + true + + + 1043 + 91 + 9 + 47 + Target Hour + 24 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 40080 + true + + + 1044 + 91 + 9 + 47 + Target Day + 24 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 40080 + true + + + 1045 + 91 + 9 + 47 + Target Week + 24 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of weekly storage target + 40080 + true + + + 1046 + 91 + 9 + 47 + Target Month + 24 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 40080 + true + + + 1047 + 91 + 9 + 47 + Target Year + 24 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 40080 + true + + + 1048 + 91 + 9 + 47 + Target Custom + 24 + 0 + >=0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2542 + end of horizon storage target + 40080 + true + + + 1049 + 91 + 9 + 48 + Target Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1703 + storage target + 40080 + true + + + 1050 + 91 + 9 + 48 + Target Level Hour + 23 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1704 + end of hour storage target + 40080 + true + + + 1051 + 91 + 9 + 48 + Target Level Day + 23 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1705 + end of day storage target + 40080 + true + + + 1052 + 91 + 9 + 48 + Target Level Week + 23 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1706 + end of week storage target + 40080 + true + + + 1053 + 91 + 9 + 48 + Target Level Month + 23 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1707 + end of month storage target + 40080 + true + + + 1054 + 91 + 9 + 48 + Target Level Year + 23 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1708 + end of year storage target + 40080 + true + + + 1055 + 91 + 9 + 49 + Target Penalty + 46 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 40080 + true + + + 1056 + 91 + 11 + 50 + Trajectory Non-anticipativity + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100040000 + true + + + 1057 + 91 + 11 + 51 + Trajectory Non-anticipativity Volume + 24 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100040000 + true + + + 1058 + 91 + 11 + 52 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100040000 + true + + + 1059 + 91 + 11 + 53 + Trajectory Lower Bound Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2504 + Price for running the storage below the stochastic optimal storage trajectory + 100040000 + true + + + 1060 + 91 + 11 + 54 + Trajectory Upper Bound Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2505 + Price for running the storage above the stochastic optimal storage trajectory + 100040000 + true + + + 1061 + 91 + 12 + 55 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + 40000 + true + + + 1062 + 91 + 12 + 56 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + 40000 + true + + + 1063 + 91 + 12 + 57 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + 40000 + true + + + 1064 + 95 + 1 + 1 + Initial Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2566 + Coefficient of storage initial volume. + 40000 + true + + + 1065 + 95 + 1 + 2 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + 40000 + true + + + 1066 + 95 + 1 + 3 + End Level Coefficient + 23 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1720 + Coefficient of storage end level. + 40000 + true + + + 1067 + 95 + 1 + 4 + Ramp Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in storage end volume. + 40000 + true + + + 1068 + 95 + 1 + 5 + Natural Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + 40000 + true + + + 1069 + 95 + 1 + 6 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow. + 40000 + true + + + 1070 + 95 + 1 + 7 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release. + 40000 + true + + + 1071 + 95 + 1 + 8 + Generator Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1124 + Coefficient of generator release. + 40000 + true + + + 1072 + 95 + 1 + 9 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill. + 40000 + true + + + 1073 + 95 + 1 + 10 + Hours Full Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1712 + Coefficient of the number of hours the storage is full. + 40000 + true + + + 1074 + 95 + 1 + 11 + Loss Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1942 + Coefficient of the loss from the storage. + 40000 + true + + + 1075 + 96 + 1 + 1 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 1076 + 96 + 1 + 2 + End Level Coefficient + 23 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1720 + Coefficient of storage end level + true + + + 1077 + 96 + 1 + 3 + Ramp Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in storage end volume + true + + + 1078 + 96 + 1 + 4 + Natural Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + true + + + 1079 + 96 + 1 + 5 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow + true + + + 1080 + 96 + 1 + 6 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release + true + + + 1081 + 96 + 1 + 7 + Generator Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1124 + Coefficient of generator release + true + + + 1082 + 96 + 1 + 8 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill + true + + + 1083 + 96 + 1 + 9 + Hours Full Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1712 + Coefficient of the number of hours the storage is full + true + + + 1084 + 96 + 1 + 10 + Loss Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1942 + Coefficient of the loss from the storage + true + + + 1085 + 97 + 1 + 1 + Initial Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2566 + Coefficient of the initial volume in storage in the condition equation + true + + + 1086 + 97 + 1 + 2 + End Volume Coefficient + 24 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of the end volume in storage in the condition equation + true + + + 1087 + 97 + 1 + 3 + Initial Potential Energy Coefficient + 2 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2612 + Coefficient of the initial potential energy in storage in the condition equation + true + + + 1088 + 97 + 1 + 4 + End Potential Energy Coefficient + 2 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2613 + Coefficient of the end potential energy in storage in the condition equation + true + + + 1089 + 97 + 1 + 5 + Inflow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of inflow in the condition equation + true + + + 1090 + 97 + 1 + 6 + Release Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of release in the condition equation + true + + + 1091 + 97 + 1 + 7 + Spill Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1123 + Coefficient of spill in the condition equation + true + + + 1092 + 98 + 1 + 1 + FCF Shadow Price + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1486 + Shadow price of water in storage in Future Cost Function + true + + + 1093 + 99 + 2 + 1 + Traversal Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 801 + Time taken for flows to traverse the waterway + 40000 + true + + + 1094 + 99 + 2 + 2 + Flow Control + 0 + 0 + In (0,1) + 0;"Economic";1;"Spill Only" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 899 + Waterway flow optimization method (0=economic, 1=flow when spilling only) + 40000 + true + + + 1095 + 99 + 3 + 3 + Max Flow + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow limit + 40001 + true + + + 1096 + 99 + 3 + 4 + Min Flow + 25 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 481 + Minimum flow limit + 40000 + true + + + 1097 + 99 + 3 + 5 + Initial Flow + 25 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1174 + Initial flow on the waterway for use in enforcing first period ramp constraint. + 40000 + true + + + 1098 + 99 + 3 + 6 + Max Ramp + 25 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 446 + Maximum change in flow (MW or cumecs per hour) + 40000 + true + + + 1099 + 99 + 3 + 7 + Max Flow Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1164 + Penalty for violating the [Max Flow] constraint. + 40000 + true + + + 1100 + 99 + 3 + 8 + Min Flow Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 286 + Penalty for violating the [Min Flow] constraint. + 40000 + true + + + 1101 + 99 + 3 + 9 + Max Ramp Penalty + 54 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 285 + Penalty for violating the [Max Ramp] constraint. + 40000 + true + + + 1102 + 99 + 3 + 10 + Input Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 319 + Input flow scalar + 40000 + true + + + 1103 + 99 + 3 + 11 + Output Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 592 + Output flow scalar + 40000 + true + + + 1104 + 99 + 12 + 12 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + 40000 + true + + + 1105 + 99 + 12 + 13 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + 40000 + true + + + 1106 + 99 + 12 + 14 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + 40000 + true + + + 1107 + 104 + 1 + 1 + Flow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of waterway flow. + 40000 + true + + + 1108 + 104 + 1 + 2 + Ramp Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in waterway flow. + 40000 + true + + + 1109 + 104 + 1 + 3 + Hours Flowing Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1713 + Coefficient of the number of hours the waterway is flowing + 40000 + true + + + 1110 + 105 + 1 + 1 + Flow Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of waterway flow + true + + + 1111 + 105 + 1 + 2 + Ramp Coefficient + 25 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in waterway flow + true + + + 1112 + 105 + 1 + 3 + Hours Flowing Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1713 + Coefficient of the number of hours the waterway is flowing + true + + + 1113 + 106 + 3 + 1 + Price + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 612 + Price charged per unit of emission (accounting only) + 2000002000 + true + + + 1114 + 106 + 3 + 2 + Shadow Price + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 742 + Shadow price (marginal cost) of emissions + 2000002000 + true + + + 1115 + 106 + 9 + 3 + Max Production + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum emission production per interval + 2080 + true + + + 1116 + 106 + 9 + 3 + Max Production Hour + 19 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum emission production in hour + 2080 + true + + + 1117 + 106 + 9 + 3 + Max Production Day + 20 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum emission production in day + 2080 + true + + + 1118 + 106 + 9 + 3 + Max Production Week + 20 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum emission production in week + 2080 + true + + + 1119 + 106 + 9 + 3 + Max Production Month + 20 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum emission production in month + 2080 + true + + + 1120 + 106 + 9 + 3 + Max Production Year + 20 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum emission production in year + 2080 + true + + + 1121 + 106 + 9 + 4 + Max Production Penalty + 30 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1361 + Penalty for violation of [Max Production] constraints. + 2080 + true + + + 1122 + 106 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1123 + 106 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1124 + 106 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1125 + 109 + 1 + 1 + Production Rate + 40 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 627 + Emissions produced per MWh of generation + 2001 + true + + + 1126 + 109 + 1 + 2 + Removal Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 677 + Proportion of emissions removed (scrubbed) + 2000 + true + + + 1127 + 109 + 1 + 3 + Removal Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 911 + Incremental cost of emissions abatement + 2000 + true + + + 1128 + 109 + 1 + 4 + Production at Start + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 625 + Emissions produced at each unit start up + 80002000 + true + + + 1129 + 109 + 1 + 5 + Shadow Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 896 + Scalar on the incremental cost of generation for this emission + 2000002000 + true + + + 1130 + 109 + 1 + 6 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 904 + Scalar on the accounting cost of generation for this emission + 2000002000 + true + + + 1131 + 109 + 1 + 7 + Allocation + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3 + Emission rights allocation + 2080 + true + + + 1132 + 109 + 1 + 7 + Allocation Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1581 + Emission rights allocation + 2080 + true + + + 1133 + 109 + 1 + 7 + Allocation Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 4 + Emission rights allocation + 2080 + true + + + 1134 + 109 + 1 + 7 + Allocation Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 6 + Emission rights allocation + 2080 + true + + + 1135 + 109 + 1 + 7 + Allocation Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 5 + Emission rights allocation + 2080 + true + + + 1136 + 109 + 1 + 7 + Allocation Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 7 + Emission rights allocation + 2080 + true + + + 1137 + 109 + 1 + 8 + Fuel Production Rate + 39 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2036 + Emissions produced per unit of fuel usage + 2001 + true + + + 1138 + 110 + 1 + 1 + Production Rate + 39 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of energy + 2001 + true + + + 1139 + 111 + 1 + 1 + Production Rate + 63 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the Power2X object + 2000 + true + + + 1140 + 112 + 1 + 1 + Production Rate + 102 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the gas field + 2000 + true + + + 1141 + 113 + 1 + 1 + Production Rate + 102 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of gas + 2000 + true + + + 1142 + 114 + 1 + 1 + Production Rate + 102 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of fuel processed + 2000 + true + + + 1143 + 115 + 1 + 1 + Production Rate + 102 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas produced from the gas demand + 2000 + true + + + 1144 + 116 + 1 + 1 + Production Rate + 102 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced from one unit of gas procured from the gas contract + 2000 + true + + + 1145 + 117 + 1 + 1 + Production Rate + 102 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of gas + 2000 + true + + + 1146 + 118 + 1 + 1 + Production Rate + 71 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of water + 2000 + true + + + 1147 + 119 + 1 + 1 + Distance Coefficient + 91 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2458 + Emissions produced per unit distance travelled + 2000 + true + + + 1148 + 119 + 1 + 2 + Charging Coefficient + 92 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2459 + Emissions produced per unit of charging + 2000 + true + + + 1149 + 120 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 626 + Amount of the Commodity produced (positive value) or consumed (negative value) per unit of the emission produced + 2000 + true + + + 1150 + 120 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Amount of the Commodity consumed (positive value) or produced (negative value) per unit of the emission abated + 2000 + true + + + 1151 + 121 + 1 + 1 + Production Rate + 114 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 627 + Emissions produced per unit of the Primary Output of the Facility + 2001 + true + + + 1152 + 121 + 1 + 2 + Removal Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 677 + Proportion of emissions removed (scrubbed) + 2000 + true + + + 1153 + 122 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Emissions produced for each unit sold to the market + 2000 + true + + + 1154 + 122 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Emissions produced for each unit purchased from the market + 2000 + true + + + 1155 + 123 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of emission production + 2000 + true + + + 1156 + 123 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1157 + 124 + 1 + 1 + Production Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of emissions produced + 2000 + true + + + 1158 + 124 + 1 + 2 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1159 + 125 + 3 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Flag if emission abatement technology is installed + 802000 + true + + + 1160 + 125 + 3 + 2 + Abatement Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1426 + Cost per unit of emission removed + 2000002000 + true + + + 1161 + 125 + 3 + 3 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running emission abatement when generators are on-line + 20002000 + true + + + 1162 + 125 + 3 + 4 + VO&M Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 849 + Cost per unit of generation + 2000002000 + true + + + 1163 + 125 + 3 + 5 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1209 + Efficiency of emission abatement + 3000 + true + + + 1164 + 125 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed charge for emission abatement technology + A000 + true + + + 1165 + 125 + 7 + 7 + Units Out + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 818 + Flag if emission abatement technology is out-of-service + 1002000 + true + + + 1166 + 125 + 9 + 8 + Max Abatement + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1427 + Maximum emission abatement rate + 2080 + true + + + 1167 + 125 + 9 + 8 + Max Abatement Hour + 19 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2746 + Maximum abatement in an hour + 2080 + true + + + 1168 + 125 + 9 + 8 + Max Abatement Day + 20 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2747 + Maximum abatement in a day + 2080 + true + + + 1169 + 125 + 9 + 8 + Max Abatement Week + 20 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2748 + Maximum abatement in a week + 2080 + true + + + 1170 + 125 + 9 + 8 + Max Abatement Month + 20 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2749 + Maximum abatement in a month + 2080 + true + + + 1171 + 125 + 9 + 8 + Max Abatement Year + 20 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2750 + Maximum abatement in a year + 2080 + true + + + 1172 + 125 + 12 + 9 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1173 + 125 + 12 + 10 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1174 + 125 + 12 + 11 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1175 + 128 + 1 + 1 + Generation Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator emissions that feed into the abatement technology + 2000 + true + + + 1176 + 129 + 1 + 1 + Consumption Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1428 + Consumption at notional zero generation level + 2000 + true + + + 1177 + 129 + 1 + 2 + Consumption Incr + 36 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1429 + Incremental consumption as a function of generation + 2000 + true + + + 1178 + 130 + 1 + 1 + Abatement Cost + 30 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1426 + Cost per unit of emission removed for this emission + 2000 + true + + + 1179 + 130 + 1 + 2 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Efficiency of emission abatement for this emission + 2000 + true + + + 1180 + 130 + 1 + 3 + Max Abatement + 19 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1427 + Maximum emission abatement rate for this emission + 2000 + true + + + 1181 + 131 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas field emissions that feed into the abatement technology + 2000 + true + + + 1182 + 132 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas plant emissions that feed into the abatement technology + 2000 + true + + + 1183 + 133 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas node emissions that feed into the abatement technology + 2000 + true + + + 1184 + 134 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas demand emissions that feed into the abatement technology + 2000 + true + + + 1185 + 135 + 1 + 1 + Production Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2737 + Proportion of gas contracts emissions that feed into the abatement technology + 2000 + true + + + 1186 + 136 + 1 + 1 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + 2000 + true + + + 1187 + 136 + 1 + 2 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours the emission abatement technology is running + 2000 + true + + + 1188 + 137 + 1 + 1 + Abatement Coefficient + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1430 + Coefficient of emissions abated + true + + + 1189 + 137 + 1 + 2 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours the emission abatement technology is running + true + + + 1190 + 138 + 2 + 1 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer/Bid Quantity] and [Offer/Bid Price] + 100 + true + + + 1191 + 138 + 2 + 2 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Physical Contract can set price + 4000000 + true + + + 1192 + 138 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Physical Contract is in service + 800000 + true + + + 1193 + 138 + 3 + 4 + Max Generation + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 431 + Maximum generation cleared on physical contract + 5 + true + + + 1194 + 138 + 3 + 5 + Max Load + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 436 + Maximum load cleared on physical contract + 5 + true + + + 1195 + 138 + 3 + 6 + Min Generation + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 483 + Minimum generation cleared on physical contract + 80 + true + + + 1196 + 138 + 3 + 7 + Min Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 486 + Minimum load cleared on physical contract + 80 + true + + + 1197 + 138 + 4 + 8 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 572 + MW offer in band + 400000 + true + + + 1198 + 138 + 4 + 9 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 569 + Price of energy in band + 400000 + true + + + 1199 + 138 + 4 + 10 + Bid Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 34 + MW bid in band + 400000 + true + + + 1200 + 138 + 4 + 11 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 33 + Value of energy in band + 400000 + true + + + 1201 + 138 + 6 + 12 + Firm Capacity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the generation to capacity reserves. + C + true + + + 1202 + 138 + 6 + 13 + Load Obligation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Load obligation for capacity reserves. + C + true + + + 1203 + 138 + 8 + 14 + Capacity Charge + 47 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 199 + Hourly fixed charge for contract capacity + 8008 + true + + + 1204 + 138 + 8 + 14 + Capacity Charge Hour + 52 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1564 + Hourly fixed charge for contract capacity + 8008 + true + + + 1205 + 138 + 8 + 14 + Capacity Charge Day + 51 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 201 + Daily fixed charge for contract capacity + 8008 + true + + + 1206 + 138 + 8 + 14 + Capacity Charge Week + 50 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 871 + Weekly fixed charge for contract capacity + 8008 + true + + + 1207 + 138 + 8 + 14 + Capacity Charge Month + 49 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 872 + Monthly fixed charge for contract capacity + 8008 + true + + + 1208 + 138 + 8 + 14 + Capacity Charge Year + 31 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 873 + Annual fixed charge for contract capacity + 8008 + true + + + 1209 + 138 + 8 + 15 + Max Generation Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 874 + Maximum generation capacity that can be contracted (LT Plan) + 8 + true + + + 1210 + 138 + 8 + 16 + Max Load Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 875 + Maximum load capacity that can be contracted (LT Plan) + 8 + true + + + 1211 + 138 + 8 + 17 + Min Generation Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 973 + Minimum generation capacity contracted (LT Plan) + 8 + true + + + 1212 + 138 + 8 + 18 + Min Load Units + 1 + 0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 974 + Minimum load capacity contracted (LT Plan) + 8 + true + + + 1213 + 138 + 11 + 19 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1214 + 138 + 12 + 20 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1215 + 138 + 12 + 21 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1216 + 138 + 12 + 22 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1217 + 143 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of physical contract + 40 + true + + + 1218 + 144 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of cleared load bids + 400000 + true + + + 1219 + 144 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of cleared generation offers + 400000 + true + + + 1220 + 144 + 3 + 3 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient of 0,1 value indicating if the physical contracting is generating. + 1000000000 + true + + + 1221 + 144 + 3 + 4 + Units Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1118 + Coefficient of 0,1 value indicating if the physical contracting is a load. + 1000000000 + true + + + 1222 + 144 + 6 + 5 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity contracted (LT Plan) + 4 + true + + + 1223 + 144 + 6 + 6 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of total load obligation contracted (LT Plan) + 4 + true + + + 1224 + 144 + 8 + 7 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 1225 + 145 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of cleared load bids + true + + + 1226 + 145 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of cleared generation offers + true + + + 1227 + 145 + 3 + 3 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient of 0,1 value indicating if the physical contracting is generating + true + + + 1228 + 145 + 3 + 4 + Units Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1118 + Coefficient of 0,1 value indicating if the physical contracting is a load + true + + + 1229 + 145 + 6 + 5 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity contracted + true + + + 1230 + 145 + 6 + 6 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of total load obligation contracted + true + + + 1231 + 145 + 8 + 7 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 1232 + 146 + 2 + 1 + Benefit Function Shape + 0 + 1 + In (0,1) + 0;"Linear";1;"Quadratic" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 29 + Shape of the benefit function. + 100 + true + + + 1233 + 146 + 2 + 2 + Max Benefit Function Tranches + 0 + 10 + >=1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 412 + Maximum number of tranches in the piecewise linear benefit function. + 100 + true + + + 1234 + 146 + 2 + 3 + Interruptible Load Logic + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 13 + If the interruptible load supplied by the Purchaser is limited by the amount of cleared load bids. + 2 + true + + + 1235 + 146 + 2 + 4 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Purchaser can set price + 4000000 + true + + + 1236 + 146 + 2 + 5 + Load Settlement Source + 0 + 0 + In (0,1) + 0;"Node";1;"Region"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2728 + Source used to determine price paid by loads. + 4000000 + true + + + 1237 + 146 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Purchaser is in service + 800000 + true + + + 1238 + 146 + 3 + 7 + Min Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 486 + Minimum load if any load is cleared. + 100480 + true + + + 1239 + 146 + 3 + 8 + Max Load + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 436 + Maximum load (sum of cleared demand bids) + 100480 + true + + + 1240 + 146 + 3 + 9 + Fixed Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 200 + Fixed load + 100480 + true + + + 1241 + 146 + 3 + 10 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 480 + true + + + 1242 + 146 + 3 + 11 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 480 + true + + + 1243 + 146 + 9 + 12 + Max Energy + 3 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 423 + Maximum energy + 480 + true + + + 1244 + 146 + 9 + 12 + Max Energy Hour + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1548 + Maximum energy in hour + 480 + true + + + 1245 + 146 + 9 + 12 + Max Energy Day + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 424 + Maximum energy in day + 480 + true + + + 1246 + 146 + 9 + 12 + Max Energy Week + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 426 + Maximum energy in week + 480 + true + + + 1247 + 146 + 9 + 12 + Max Energy Month + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 425 + Maximum energy in month + 480 + true + + + 1248 + 146 + 9 + 12 + Max Energy Year + 2 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 427 + Maximum energy in year + 480 + true + + + 1249 + 146 + 9 + 13 + Min Energy + 3 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1110 + Minimum energy + 480 + true + + + 1250 + 146 + 9 + 13 + Min Energy Hour + 1 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1549 + Minimum energy in hour + 480 + true + + + 1251 + 146 + 9 + 13 + Min Energy Day + 2 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1111 + Minimum energy in day + 480 + true + + + 1252 + 146 + 9 + 13 + Min Energy Week + 2 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1112 + Minimum energy in week + 480 + true + + + 1253 + 146 + 9 + 13 + Min Energy Month + 2 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1113 + Minimum energy in month + 480 + true + + + 1254 + 146 + 9 + 13 + Min Energy Year + 2 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1114 + Minimum energy in year + 480 + true + + + 1255 + 146 + 9 + 14 + Max Load Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1100 + Maximum load factor + 480 + true + + + 1256 + 146 + 9 + 14 + Max Load Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1567 + Maximum load factor in hour + 480 + true + + + 1257 + 146 + 9 + 14 + Max Load Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1101 + Maximum load factor in day + 480 + true + + + 1258 + 146 + 9 + 14 + Max Load Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1102 + Maximum load factor in week + 480 + true + + + 1259 + 146 + 9 + 14 + Max Load Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1103 + Maximum load factor in month + 480 + true + + + 1260 + 146 + 9 + 14 + Max Load Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1104 + Maximum load factor in year + 480 + true + + + 1261 + 146 + 9 + 15 + Min Load Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1105 + Minimum load factor + 480 + true + + + 1262 + 146 + 9 + 15 + Min Load Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1568 + Minimum load factor in hour + 480 + true + + + 1263 + 146 + 9 + 15 + Min Load Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1106 + Minimum load factor in day + 480 + true + + + 1264 + 146 + 9 + 15 + Min Load Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1107 + Minimum load factor in week + 480 + true + + + 1265 + 146 + 9 + 15 + Min Load Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1108 + Minimum load factor in month + 480 + true + + + 1266 + 146 + 9 + 15 + Min Load Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1109 + Minimum load factor in year + 480 + true + + + 1267 + 146 + 9 + 16 + Max Energy Penalty + 41 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1190 + Penalty applied to violations of [Max Energy] and [Max Load Factor] constraints. + 480 + true + + + 1268 + 146 + 9 + 17 + Min Energy Penalty + 41 + 10000000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1191 + Penalty applied to violations of [Min Energy] and [Min Load Factor] constraints. + 480 + true + + + 1269 + 146 + 3 + 18 + Marginal Loss Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) + 600000 + true + + + 1270 + 146 + 4 + 19 + Bid Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 34 + Quantity bid in band + 401 + true + + + 1271 + 146 + 4 + 20 + Bid Price + 33 + -10000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 33 + Value of energy in band + 401 + true + + + 1272 + 146 + 4 + 21 + Strategic Load Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2008 + Purchaser Load rating for application in RSI capacity calculations. + 40 + true + + + 1273 + 146 + 3 + 22 + Tariff + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 784 + Price paid by customers for load bid cleared + 2000000000 + true + + + 1274 + 146 + 3 + 23 + Demand Fn Slope + 33 + 0 + <=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 138 + Demand function slope + 400 + true + + + 1275 + 146 + 3 + 24 + Demand Fn Intercept + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 137 + Demand function vertical intercept + 400 + true + + + 1276 + 146 + 6 + 25 + Load Obligation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Load obligation for capacity reserves. + 404 + true + + + 1277 + 146 + 12 + 26 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1278 + 146 + 12 + 27 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1279 + 146 + 12 + 28 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1280 + 149 + 1 + 1 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of purchaser load taken at the node + 40 + true + + + 1281 + 151 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 1282 + 152 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of purchaser demand + 400 + true + + + 1283 + 152 + 1 + 2 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of load obligation in the constraint + 404 + true + + + 1284 + 152 + 1 + 3 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of reserve provision + 2 + true + + + 1285 + 153 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of purchaser demand + true + + + 1286 + 153 + 1 + 2 + Load Obligation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 970 + Coefficient of load obligation + true + + + 1287 + 153 + 1 + 3 + Reserve Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 688 + Coefficient of interruptible load provision + true + + + 1288 + 154 + 2 + 1 + Type + 0 + 1 + In (1,2,3,4,5,6,7,8) + 1;"Raise";2;"Lower";7;"Regulation";3;"Regulation Raise";4;"Regulation Lower";5;"Replacement";6;"Operational";8;"Inertia" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 927 + Reserve type + 3 + true + + + 1289 + 154 + 2 + 2 + Mutually Exclusive + 0 + 0 + In (0,1,2) + 0;"Auto";1;"Yes";2;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 998 + If generation capacity providing this reserve is mutually exclusive to other reserves + 82 + true + + + 1290 + 154 + 2 + 3 + Dynamic Risk + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 12 + If elements in the Generator Contingencies and Line Contingencies collections are considered for dynamic risk calculations + 2 + true + + + 1291 + 154 + 2 + 4 + Cost Allocation Model + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Runway";2;"Probabilistic Runway";3;"Prorata" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 11 + Reserve cost allocation method. + 2 + true + + + 1292 + 154 + 2 + 5 + Is Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 335 + Flag if the reserve is enabled + 800002 + true + + + 1293 + 154 + 2 + 6 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 301 + If the reserve is modelled in the LT Plan phase. + 800002 + true + + + 1294 + 154 + 2 + 7 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 302 + If the reserve is modelled in the MT Schedule phase. + 800002 + true + + + 1295 + 154 + 2 + 8 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 305 + If the reserve is modelled in the ST Schedule phase. + 800002 + true + + + 1296 + 154 + 2 + 9 + Unit Commitment + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 810 + If the set of Generators providing the Reserve is optimized or always includes all members of the Reserve Generators collection. + 1000000002 + true + + + 1297 + 154 + 2 + 10 + Sharing Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1384 + If sharing of reserve across the transmission network is enabled. + 800000002 + true + + + 1298 + 154 + 2 + 11 + Sharing Losses Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1385 + If sharing of reserve accounts for transmission losses. + 800000002 + true + + + 1299 + 154 + 2 + 12 + Energy Usage For Replacement + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2145 + If Reserve energy usage is used for replacement reserve. + 40002 + true + + + 1300 + 154 + 3 + 13 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 489 + Minimum required reserve + 82 + true + + + 1301 + 154 + 3 + 14 + Static Risk + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1004 + Additional static risk over and above dynamic risk + 82 + true + + + 1302 + 154 + 3 + 15 + Timeframe + 5 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 788 + Timeframe in which the reserve is required + 2 + true + + + 1303 + 154 + 3 + 16 + Duration + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1476 + Time over which the required response must be maintained + 2 + true + + + 1304 + 154 + 3 + 17 + Max Provision + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 443 + Maximum provision allowed for reserve class + 82 + true + + + 1305 + 154 + 3 + 18 + Risk Adjustment Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 707 + Proportion of contingency size (MW reserve/MW contingency) + 2 + true + + + 1306 + 154 + 3 + 19 + Energy Usage + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Percentage of reserve dispatched in energy market + 40002 + true + + + 1307 + 154 + 3 + 20 + VoRS + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 851 + Value of reserve shortage (-1 sets hard constraint) + 40000002 + true + + + 1308 + 154 + 3 + 21 + Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on Reserve Price for settlement + 4000002 + true + + + 1309 + 154 + 3 + 22 + Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on Reserve Price for settlement + 4000002 + true + + + 1310 + 154 + 3 + 23 + Cut-off Size + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 124 + The size below which a generator will not be considered for a share in reserve costs + 2 + true + + + 1311 + 154 + 3 + 24 + Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 612 + Price + 4000002 + true + + + 1312 + 154 + 12 + 25 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1313 + 154 + 12 + 26 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1314 + 154 + 12 + 27 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1315 + 157 + 1 + 1 + Initial Pump Load Raise Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1934 + Pump load raise reserve provision at time zero + 82 + true + + + 1316 + 157 + 1 + 2 + Initial Raise Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1935 + Generator raise reserve provision at time zero + 82 + true + + + 1317 + 157 + 1 + 3 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum spinning reserve response + 82 + true + + + 1318 + 157 + 1 + 4 + Max Sync Cond Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 458 + Maximum synchronous condenser reserve response + 82 + true + + + 1319 + 157 + 1 + 5 + Max Pump Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 444 + Maximum dispatchable pump load reserve response + 82 + true + + + 1320 + 157 + 1 + 6 + Max Replacement + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 452 + Maximum replacement (non-spinning) reserve capability + 82 + true + + + 1321 + 157 + 1 + 7 + Max Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1318 + Maximum spinning reserve response as a proportion of generation capacity + 82 + true + + + 1322 + 157 + 1 + 8 + Max Sync Cond Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1319 + Maximum synchronous condenser reserve response as a proportion of generation capacity + 82 + true + + + 1323 + 157 + 1 + 9 + Max Pump Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1320 + Maximum dispatchable pump load reserve response as a proportion of pump load + 82 + true + + + 1324 + 157 + 1 + 10 + Max Replacement Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1321 + Maximum replacement (non-spinning) reserve capability as a proportion of generation capacity + 82 + true + + + 1325 + 157 + 1 + 11 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 489 + Minimum reserve provision when generator is available + 82 + true + + + 1326 + 157 + 1 + 12 + Min Spinning Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1376 + Minimum spinning reserve provision when units are generating + 82 + true + + + 1327 + 157 + 1 + 13 + Min Regulation Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1377 + Minimum regulation reserve provision when units are in the regulation range + 82 + true + + + 1328 + 157 + 1 + 14 + Min Replacement Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1742 + Minimum replacement reserve provision when units are off-line + 82 + true + + + 1329 + 157 + 1 + 15 + Effectiveness + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 162 + Estimated reserve effectiveness (MW/MW) + 82 + true + + + 1330 + 157 + 1 + 16 + Response Ratio + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 694 + Ratio that converts energy ramping to units comparable to reserve ramping units + 82 + true + + + 1331 + 157 + 1 + 17 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Reserve offer quantity in offer band + 400002 + true + + + 1332 + 157 + 1 + 18 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Reserve offer price in offer band + 400002 + true + + + 1333 + 157 + 1 + 19 + Sync Cond Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 773 + Synchronous condenser reserve offer price + 440002 + true + + + 1334 + 157 + 1 + 20 + Pump Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 644 + Dispatchable pump load reserve offer price + 8440002 + true + + + 1335 + 157 + 1 + 21 + Replacement Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1731 + Replacement reserve offer quantity in offer band + 400002 + true + + + 1336 + 157 + 1 + 22 + Replacement Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1732 + Replacement reserve offer price in offer band + 400002 + true + + + 1337 + 160 + 1 + 1 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum reserve response + 82 + true + + + 1338 + 161 + 1 + 1 + Max Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 453 + Maximum reserve response + 82 + true + + + 1339 + 161 + 1 + 2 + Max Charge Response + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2385 + Maximum dispatchable charging load reserve response + 82 + true + + + 1340 + 161 + 1 + 3 + Max Replacement + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 452 + Maximum replacement (non-spinning) reserve capability + 82 + true + + + 1341 + 161 + 1 + 4 + Max Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1318 + Maximum reserve response as a proportion of generation capacity + 82 + true + + + 1342 + 161 + 1 + 5 + Max Charge Response Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2386 + Maximum dispatchable charging load reserve response as a proportion of charge load + 82 + true + + + 1343 + 161 + 1 + 6 + Max Replacement Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1321 + Maximum replacement (non-spinning) reserve capability as a proportion of generation capacity + 82 + true + + + 1344 + 161 + 1 + 7 + Min Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 489 + Minimum reserve provision when generator is available + 82 + true + + + 1345 + 161 + 1 + 8 + Min Spinning Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1376 + Minimum spinning reserve provision when units are generating + 82 + true + + + 1346 + 161 + 1 + 9 + Min Regulation Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1377 + Minimum regulation reserve provision when units are in the regulation range + 82 + true + + + 1347 + 161 + 1 + 10 + Min Replacement Provision + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1742 + Minimum replacement reserve provision when units are off-line + 82 + true + + + 1348 + 161 + 1 + 11 + Effectiveness + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 162 + Estimated reserve effectiveness (MW/MW) + 82 + true + + + 1349 + 161 + 1 + 12 + Response Ratio + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 694 + Ratio that converts energy ramping to units comparable to reserve ramping units + 82 + true + + + 1350 + 161 + 1 + 13 + Offer Quantity + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Reserve offer quantity in offer band + 400002 + true + + + 1351 + 161 + 1 + 14 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Reserve offer price in offer band + 400002 + true + + + 1352 + 161 + 1 + 15 + Charge Offer Price + 32 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2226 + Charging reserve offer price + 400002 + true + + + 1353 + 163 + 1 + 1 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Interruptible load offer price + 400002 + true + + + 1354 + 163 + 1 + 2 + Offer Price + 32 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Interruptible load offer quantity + 400002 + true + + + 1355 + 164 + 1 + 1 + Cascading + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2229 + If the relationship between the reserves is cascading or not + 2 + true + + + 1356 + 165 + 1 + 1 + Load Risk + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 140 + Percentage of region's load at risk + 2 + true + + + 1357 + 165 + 1 + 2 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this region + 82 + true + + + 1358 + 166 + 1 + 1 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Multiplier on line flow in the reference direction in setting the contingency size (Risk >= Coefficient * Flow Forward) + 2 + true + + + 1359 + 166 + 1 + 2 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Multiplier on line flow in the counter reference direction in setting the contingency size (Risk >= Coefficient * Flow Back) + 2 + true + + + 1360 + 168 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + 2 + true + + + 1361 + 168 + 1 + 2 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + 2 + true + + + 1362 + 168 + 1 + 3 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + 40000002 + true + + + 1363 + 169 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + true + + + 1364 + 169 + 1 + 2 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + true + + + 1365 + 169 + 1 + 3 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + true + + + 1366 + 170 + 1 + 1 + Provision Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 635 + Coefficient of reserve provision + true + + + 1367 + 170 + 1 + 2 + Risk Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 916 + Coefficient of reserve requirement + true + + + 1368 + 170 + 1 + 3 + Shortage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1176 + Coefficient of reserve shortage + true + + + 1369 + 171 + 2 + 1 + Perform EFC Evaluation + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2218 + Flag indicating if the EFC should be evaluated for the Reliability object. + true + + + 1370 + 171 + 2 + 2 + EFC Risk Metric + 0 + 0 + In (0,1) + 0;"LOLE Hours";1;"EENS" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2160 + Risk Metric for EFC evaluation. + true + + + 1371 + 171 + 2 + 3 + Max EFC Iterations + 0 + 20 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2216 + Maximum number of ST Schedule iterations for EFC evaluation. + true + + + 1372 + 171 + 2 + 4 + EFC Convergence Threshold + 12 + 1 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2217 + Convergence criteria for Reliability evaluation. + true + + + 1373 + 171 + 2 + 5 + EFC Initial Estimate + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2215 + Initial Firm Capacity Estimate for the set of generators associated with the Reliability object. + true + + + 1374 + 171 + 3 + 6 + Simplify Generator Properties + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2219 + Flag indicating if Generator properties should be ignored for the model. + true + + + 1375 + 171 + 3 + 7 + Skip Steps + 13 + 0 + In (0,1) + 0;"No";1;"Yes" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2220 + Indicates steps that should be skipped. + true + + + 1376 + 171 + 12 + 8 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to a solution. + true + + + 1377 + 171 + 12 + 9 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to a solution + true + + + 1378 + 171 + 12 + 10 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to a solution + true + + + 1379 + 176 + 2 + 1 + Is Physical + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1295 + If the contract quantity must be matched by physical generation/load. + 4000000 + true + + + 1380 + 176 + 3 + 2 + Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 650 + Contract quantity + 5 + true + + + 1381 + 176 + 3 + 3 + Floor Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 204 + Contract floor price + 4000001 + true + + + 1382 + 176 + 3 + 4 + Cap Price + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 53 + Contract cap price + 4000001 + true + + + 1383 + 179 + 1 + 1 + Generation Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 237 + Proportion of generator load that is settled in the contract + 40 + true + + + 1384 + 180 + 1 + 1 + Load Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of region load that is settled in the contract + 40 + true + + + 1385 + 182 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of contract + 40 + true + + + 1386 + 183 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of contract + 40 + true + + + 1387 + 185 + 1 + 1 + Demand Intercept + 33 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 139 + Demand function vertical intercept + 40 + true + + + 1388 + 185 + 1 + 2 + Demand Slope + 56 + 0 + <0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 142 + Long-run demand function slope + 40 + true + + + 1389 + 189 + 2 + 1 + Allow Negative Mark-ups + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 980 + Flag if negative calculated markups are allowed or truncated at zero + 4000040 + true + + + 1390 + 189 + 1 + 2 + RSI + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 712 + Residual Supply Index + 4000040 + true + + + 1391 + 189 + 1 + 3 + Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 344 + Lerner Index (P-C)/P + 4000040 + true + + + 1392 + 189 + 1 + 4 + Bounded Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 43 + Lerner Index (P-C)/P + 4000040 + true + + + 1393 + 189 + 1 + 5 + Intercept + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 323 + Intercept in LI equation + 4000040 + true + + + 1394 + 189 + 1 + 6 + RSI Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 714 + RSI Coefficient in LI equation + 4000040 + true + + + 1395 + 189 + 1 + 7 + RSI-squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 717 + RSI-squared Coefficient in LI equation + 4000040 + true + + + 1396 + 189 + 1 + 8 + Load Unhedged Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 361 + Load Unhedged Coefficient in LI equation + 4000040 + true + + + 1397 + 189 + 1 + 9 + RSI Inverse Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 716 + RSI Inverse Coefficient + 4000040 + true + + + 1398 + 189 + 1 + 10 + Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Load Coefficient in LI equation + 4000040 + true + + + 1399 + 189 + 1 + 11 + Load Capacity Ratio Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 351 + Load Capacity Ratio Coefficient in LI equation + 4000040 + true + + + 1400 + 189 + 1 + 12 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Capacity Factor Coefficient in LI equation + 4000040 + true + + + 1401 + 189 + 1 + 13 + Load Variation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 363 + Load Variation Coefficient in LI equation + 4000040 + true + + + 1402 + 189 + 1 + 14 + Summer Period Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 769 + Summer Period Coefficient in LI equation + 4000040 + true + + + 1403 + 189 + 1 + 15 + Peak Period Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 601 + Peak Period Coefficient + 4000040 + true + + + 1404 + 189 + 1 + 16 + Average Load + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 26 + Average Load used in computation of Load Variation + 4000040 + true + + + 1405 + 189 + 1 + 17 + Lerner Index t-statistic + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 347 + T-statistic applied in low/high LI scenarios. + 4000040 + true + + + 1406 + 189 + 1 + 18 + Lerner Index Std Dev + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 346 + Standard deviation applied in low/high LI scenarios. + 4000040 + true + + + 1407 + 189 + 1 + 19 + Lerner Index Calibration Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 345 + Calibration factor added to Lerner Index + 4000040 + true + + + 1408 + 189 + 1 + 20 + Min Lerner Index + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 484 + Lower bound on Lerner Index + 40000C0 + true + + + 1409 + 189 + 1 + 21 + Max Lerner Index + 0 + 0.9 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 434 + Upper bound on Lerner Index + 40000C0 + true + + + 1410 + 196 + 2 + 1 + Generator Settlement Model + 0 + 0 + In (0,1,2,3,4,5,6,7) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average";3;"Pay-as-Bid";4;"Uniform";5;"None";6;"Custom";7;"Most Expensive Dispatched" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 252 + Model used to determine price paid to generators. + 4000000 + true + + + 1411 + 196 + 2 + 2 + Load Settlement Model + 0 + 2 + In (0,1,2,3,4,5,6,7) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average";3;"Pay-as-Bid";4;"Uniform";5;"None";6;"Custom";7;"Most Expensive Dispatched" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 359 + Model used to determine price paid by loads. + 4000000 + true + + + 1412 + 196 + 2 + 3 + Uniform Pricing Pumped Storage Price Setting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 805 + If pumped storage can set the SMP + 4000000 + true + + + 1413 + 196 + 2 + 4 + Uniform Pricing Relax Transmission Limits + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 809 + If transmission limits are relaxed in calculating SMP + 4000000 + true + + + 1414 + 196 + 2 + 5 + Uniform Pricing Relax Generic Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 808 + If other generic constraints are relaxed in calculating SMP + 4000000 + true + + + 1415 + 196 + 2 + 6 + Uniform Pricing Relax Generator Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 807 + If generator non-technical constraints are relaxed in calculating SMP + 4000000 + true + + + 1416 + 196 + 2 + 7 + Uniform Pricing Relax Ancillary Services + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 806 + If ancillary service requirements are relaxed in calculating SMP + 4000000 + true + + + 1417 + 196 + 2 + 8 + Uplift Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 833 + If uplift is added to market prices + 4000000 + true + + + 1418 + 196 + 2 + 9 + Uplift Cost Basis + 0 + 1 + In (1,2) + 1;"Cost-based";2;"Bid-based" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 830 + Basis for calculating generation cost for uplift calculations (cost-based or bid-base) + 4000000 + true + + + 1419 + 196 + 2 + 10 + Uplift Compatibility + 0 + 1 + In (1,2,3) + 1;"CBP";2;"SEM";3;"Custom" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 829 + Uplift calculation compatibility (match to market being modelled) + 4000000 + true + + + 1420 + 196 + 2 + 11 + Uplift Alpha + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 827 + Alpha parameter for SEM-style uplift payment (weight on total generation revenues) + 4000000 + true + + + 1421 + 196 + 2 + 12 + Uplift Beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 828 + Beta parameter for SEM-style uplift payment (weight on squared deviations from shadow price) + 4000000 + true + + + 1422 + 196 + 2 + 13 + Uplift Delta + 0 + 5 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1080 + Delta parameter for SEM-style uplift payment (proportion of shadow total system revenues after uplift) + 4000000 + true + + + 1423 + 196 + 2 + 14 + Uplift Include Start Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 835 + If the uplift calculation should include recovery of start costs + 4000000 + true + + + 1424 + 196 + 2 + 15 + Uplift Include No-Load Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 834 + If the uplift calculation should include recovery of no-load costs + 4000000 + true + + + 1425 + 196 + 2 + 16 + Uplift Detect Active Min Stable Level Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 831 + If the uplift calculation should exclude units running at min stable level + 4000000 + true + + + 1426 + 196 + 2 + 17 + Uplift Detect Active Ramp Constraints + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 832 + If the uplift calculation should exclude generators on ramp limits + 4000000 + true + + + 1427 + 196 + 2 + 18 + Include in Marginal Unit + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1446 + Flag if the region is included in the Region Marginal Unit Diagnostic + 800 + true + + + 1428 + 196 + 2 + 19 + Include in Uplift + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1362 + If uplift is allowed in the period + 4000000 + true + + + 1429 + 196 + 2 + 20 + Include in Kron Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2699 + A flag indicating if the selected region should be included in the Kron-reduction algorithm + true + + + 1430 + 196 + 2 + 21 + Constraint Payments Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 97 + Constraint payments compatibility (match to market being modelled) + 4000000 + true + + + 1431 + 196 + 2 + 22 + Constraint Payments Compatibility + 0 + 1 + In (1,2) + 1;"CBP";2;"SEM" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 96 + Constraint payments compatibility (match to market being modeled) + 4000000 + true + + + 1432 + 196 + 2 + 23 + Load Metering Point + 0 + 0 + In (0,1) + 0;"Generator Terminal";1;"Sent Out" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 930 + Metering point for input loads in the region + 200000 + true + + + 1433 + 196 + 2 + 24 + Load Includes Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 353 + Flag if input load includes transmission losses + 200000 + true + + + 1434 + 196 + 2 + 25 + Aggregate Transmission + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2 + If transmission should be aggregated to the region level + 2000000 + true + + + 1435 + 196 + 2 + 26 + Pool Type + 0 + 0 + In (0,1) + 0;"Gross Pool";1;"Net Pool" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 610 + Gross or Net Pool for settlement of Financial Contracts in the Region. + 4000000 + true + + + 1436 + 196 + 2 + 27 + MLF Adjusts Offer Price + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1196 + If Generator [Marginal Loss Factor] adjusts [Offer Price]. + 600000 + true + + + 1437 + 196 + 2 + 28 + MLF Adjusts Bid Price + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1197 + If Purchaser [Marginal Loss Factor] adjusts [Bid Price]. + 200000 + true + + + 1438 + 196 + 2 + 29 + MLF Adjusts No Load Cost + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1198 + If Generator [Marginal Loss Factor] adjusts [Offer No Load Cost]. + 200000 + true + + + 1439 + 196 + 2 + 30 + MLF Adjusts Start Cost + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1199 + If Generator [Marginal Loss Factor] adjusts [Start Cost]. + 200000 + true + + + 1440 + 196 + 2 + 31 + Include in Region Supply + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 304 + Flag if the region is included in the Region Supply Diagnostic + 800 + true + + + 1441 + 196 + 2 + 32 + Transmission Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1673 + If transmission line constraints are enabled in this region. + 80 + true + + + 1442 + 196 + 2 + 33 + Transmission Constraint Voltage Threshold + 4 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1674 + Voltage level at which thermal limits are modeled in this region. + 80 + true + + + 1443 + 196 + 2 + 34 + Transmission Interface Constraints Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1675 + If interface constraints are enabled in this region. + 80 + true + + + 1444 + 196 + 2 + 35 + Enforce Transmission Limits On Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1676 + If lines in interfaces should have their limits enforced regardless of voltage in this region. + 80 + true + + + 1445 + 196 + 2 + 36 + Transmission Report Enabled + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1677 + If transmission reporting is enabled in this region. + true + + + 1446 + 196 + 2 + 37 + Transmission Report Voltage Threshold + 4 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1678 + Voltage level at which transmission reporting begins in this region. + true + + + 1447 + 196 + 2 + 38 + Transmission Report Lines In Interfaces + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1679 + If all flows on lines selected interfaces are reported in this region. + true + + + 1448 + 196 + 2 + 39 + Transmission Report Injection and Load Nodes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1680 + If all injection and load buses (nodes) are reported on (regardless of voltage) in this region. + true + + + 1449 + 196 + 2 + 40 + Transmission Clustering Level + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2026 + Cluster nodes until this number of equivalent nodes remain (-1 means no clustering) + true + + + 1450 + 196 + 2 + 41 + Transmission Clustering Tolerance + 12 + 100 + Between 0 and 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2027 + Cluster nodes until this level of accuracy is reached (100% means no clustering) + true + + + 1451 + 196 + 2 + 42 + Report Objects in Region + 0 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1807 + If objects in the Region such as Nodes, Lines, Generators, etc should be reported. + true + + + 1452 + 196 + 2 + 43 + Wheeling Method + 0 + 1 + In (1,2) + 1;"Net";2;"Gross" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1777 + Export wheeling charge method + 800000000 + true + + + 1453 + 196 + 2 + 44 + Decomposition Group + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1972 + The decomposition group that the region belongs to. + true + + + 1454 + 196 + 2 + 45 + Capacity Expansion Group + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2676 + The capacity expansion group that the region belongs to for LT decomposition. + true + + + 1455 + 196 + 2 + 46 + Solution Detail + 0 + 1 + In (1,2,3) + 1;"SCUC";2;"SCED";3;"Static" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2066 + Solution detail to be used for the region + true + + + 1456 + 196 + 2 + 47 + Unserved Energy Method + 0 + 0 + In (0,1,2,3) + 0;"None";1;"Greedy Response";2;"Min LOLE";3;"Min Residual Shortfall" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2136 + Unserved Energy Method to be used for the region + true + + + 1457 + 196 + 2 + 48 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1458 + 196 + 2 + 49 + Report Marginal Resources + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2623 + If marginal resources are reported for the region in the solution + true + + + 1459 + 196 + 3 + 50 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Region is included in the simulation. + 800000 + true + + + 1460 + 196 + 3 + 51 + Load + 1 + 0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 349 + Load + 100001 + true + + + 1461 + 196 + 3 + 52 + Load Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 358 + Scale factor for raw load figures (to convert as required to nodal load) + 100000 + true + + + 1462 + 196 + 3 + 53 + Fixed Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 200 + Fixed load + 100000 + true + + + 1463 + 196 + 3 + 54 + Fixed Generation + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 198 + Fixed (or embedded) generation + 100000 + true + + + 1464 + 196 + 3 + 55 + VoLL + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 847 + Value of lost load (VoLL) + 40000001 + true + + + 1465 + 196 + 3 + 56 + Price of Dump Energy + 33 + -1000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 616 + Price of dump energy per MWh (1=hard constraint) + 40000001 + true + + + 1466 + 196 + 3 + 57 + Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on generator offer prices + 4000000 + true + + + 1467 + 196 + 3 + 58 + Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on generator offer prices + 4000000 + true + + + 1468 + 196 + 3 + 59 + Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 612 + Price + 4000000 + true + + + 1469 + 196 + 3 + 60 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge on exports from the region + 2000000000 + true + + + 1470 + 196 + 3 + 61 + Fixed Cost Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 195 + This parameter is a percentage to represent the amount of fixed cost considered in the recovery algorithm (but PLEXOS will still report the full amount of fixed costs on each generator/line) + 8040 + true + + + 1471 + 196 + 3 + 62 + Elasticity + 56 + -0.2 + <0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1273 + Price elasticity of demand + 40 + true + + + 1472 + 196 + 3 + 63 + Reference Load + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 670 + Reference load for distributed load slack model + 800000000 + true + + + 1473 + 196 + 3 + 64 + Internal VoLL + 33 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 325 + Region specific value of lost load + 40000001 + true + + + 1474 + 196 + 3 + 65 + Internal VoLL Level + 3 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2077 + Level of unserved energy to which the VoLL applies to. + 40000001 + true + + + 1475 + 196 + 4 + 66 + DSP Bid Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 156 + Bid quantity for demand-side participation + 400400 + true + + + 1476 + 196 + 4 + 67 + DSP Bid Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 155 + Bid price for demand-side participation + 400400 + true + + + 1477 + 196 + 4 + 68 + Is Strategic + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 340 + If the Region's Generators are included in Competition modelling. + 40 + true + + + 1478 + 196 + 7 + 69 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1479 + 196 + 7 + 70 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance factor + 1000000 + true + + + 1480 + 196 + 6 + 71 + Peak Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 600 + Indicates periods that include the peak load + 100008 + true + + + 1481 + 196 + 6 + 72 + Firm Capacity Incr + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1959 + Firm Capacity not explicitly modeled that should be included in reserve margin calculations + 1000000 + true + + + 1482 + 196 + 8 + 73 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + true + + + 1483 + 196 + 8 + 74 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + true + + + 1484 + 196 + 8 + 75 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 1485 + 196 + 8 + 76 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 1486 + 196 + 8 + 77 + Min Native Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1293 + Minimum capacity reserves supplied only by sources in the Region + 88 + true + + + 1487 + 196 + 8 + 78 + Min Native Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1294 + Minimum capacity reserve margin supplied only by sources in the Region + 88 + true + + + 1488 + 196 + 8 + 79 + Capacity Shortage Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 69 + Penalty for a shortage of capacity reserves + 40000008 + true + + + 1489 + 196 + 8 + 80 + Capacity Excess Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 57 + Penalty for an excess of capacity reserves + 40000008 + true + + + 1490 + 196 + 8 + 81 + Capacity Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1752 + Cap on the capacity price + 4000008 + true + + + 1491 + 196 + 8 + 82 + Capacity Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1753 + Floor on the capacity price + 4000008 + true + + + 1492 + 196 + 8 + 83 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this region + 88 + true + + + 1493 + 196 + 12 + 84 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1494 + 196 + 12 + 85 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1495 + 196 + 12 + 86 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1496 + 201 + 1 + 1 + Max Production + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 949 + Maximum total emission production by emission producers in the region + 2000 + true + + + 1497 + 201 + 1 + 1 + Max Production Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum total emission production by emission producers in the region per hour + 2000 + true + + + 1498 + 201 + 1 + 1 + Max Production Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum total emission production by emission producers in the region per day + 2000 + true + + + 1499 + 201 + 1 + 1 + Max Production Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum total emission production by emission producers in the region per week + 2000 + true + + + 1500 + 201 + 1 + 1 + Max Production Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum total emission production by emission producers in the region per month + 2000 + true + + + 1501 + 201 + 1 + 1 + Max Production Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum total emission production by emission producers in the region per year + 2000 + true + + + 1502 + 205 + 1 + 1 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for exports to the region + 2000000000 + true + + + 1503 + 205 + 1 + 2 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the region + true + + + 1504 + 205 + 1 + 3 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports + true + + + 1505 + 205 + 1 + 4 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 429 + Maximum flow allowed between the regions + 4 + true + + + 1506 + 205 + 1 + 5 + Firm Exports + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2700 + The firm exports from the parent region to the child regions for Capacity Expansion Decomposition + 4 + true + + + 1507 + 218 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of region load + 100000 + true + + + 1508 + 218 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of region load + 100000 + true + + + 1509 + 218 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of region generation + true + + + 1510 + 218 + 3 + 4 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the region + 1000000004 + true + + + 1511 + 218 + 3 + 5 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1512 + 218 + 3 + 6 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 1513 + 218 + 3 + 7 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 1514 + 218 + 6 + 8 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + 4 + true + + + 1515 + 218 + 6 + 9 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + 4 + true + + + 1516 + 218 + 6 + 10 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + 100004 + true + + + 1517 + 218 + 6 + 11 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + C + true + + + 1518 + 218 + 6 + 12 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 1519 + 218 + 6 + 13 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 1520 + 218 + 8 + 14 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + C + true + + + 1521 + 218 + 8 + 15 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + C + true + + + 1522 + 218 + 8 + 16 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + 8008 + true + + + 1523 + 218 + 8 + 17 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + 8 + true + + + 1524 + 218 + 8 + 18 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 1525 + 218 + 8 + 19 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 1526 + 218 + 8 + 20 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 1527 + 219 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of region load + true + + + 1528 + 219 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of region load + true + + + 1529 + 219 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of region generation + true + + + 1530 + 219 + 3 + 4 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the region + true + + + 1531 + 219 + 3 + 5 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 1532 + 219 + 3 + 6 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1533 + 219 + 3 + 7 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 1534 + 219 + 6 + 8 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + true + + + 1535 + 219 + 6 + 9 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + true + + + 1536 + 219 + 6 + 10 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + true + + + 1537 + 219 + 6 + 11 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + true + + + 1538 + 219 + 6 + 12 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 1539 + 219 + 6 + 13 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 1540 + 219 + 8 + 14 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + true + + + 1541 + 219 + 8 + 15 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + true + + + 1542 + 219 + 8 + 16 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + true + + + 1543 + 219 + 8 + 17 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 1544 + 219 + 8 + 18 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 1545 + 219 + 8 + 19 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 1546 + 219 + 8 + 20 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 1547 + 220 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of region demand in condition + true + + + 1548 + 220 + 1 + 2 + Available Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2738 + Coefficient of region available capacity reserves in condition + true + + + 1549 + 220 + 1 + 3 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of region capacity reserves in condition + true + + + 1550 + 220 + 1 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 1551 + 220 + 1 + 5 + Price Coefficient + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1380 + Coefficient of region price in condition + true + + + 1552 + 221 + 3 + 1 + ORDC VOLL + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2678 + Value of Lost Load for ORDC calculations + true + + + 1553 + 221 + 3 + 2 + ORDC MCL + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2679 + Minimum Contingency Level for ORDC calculations + true + + + 1554 + 221 + 3 + 3 + ORDC Schedule Mu + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2680 + Average of the forecasted hourly reserve value for ORDC calculations + true + + + 1555 + 221 + 3 + 4 + ORDC Schedule Sigma + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2681 + Standard deviation of the forecasted hourly reserve value for ORDC calculations + true + + + 1556 + 221 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1557 + 221 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1558 + 221 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1559 + 225 + 1 + 1 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the regions in the pool + true + + + 1560 + 225 + 1 + 2 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports for regions in the Pool + true + + + 1561 + 227 + 2 + 1 + Load Settlement Model + 0 + 0 + In (0,1,2) + 0;"Nodal";1;"Reference Node";2;"Load-weighted Average" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 359 + Model used to determine energy prices reported in the zone. + 4000000 + true + + + 1562 + 227 + 2 + 2 + Wheeling Method + 0 + 1 + In (1,2) + 1;"Net";2;"Gross" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1777 + Export wheeling charge method + 800000000 + true + + + 1563 + 227 + 2 + 3 + Transmission Clustering Level + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2026 + Cluster nodes until this number of equivalent nodes remain (-1 means no clustering) + true + + + 1564 + 227 + 2 + 4 + Transmission Clustering Tolerance + 12 + 100 + Between 0 and 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2027 + Cluster nodes until this level of accuracy is reached (100% means no clustering) + true + + + 1565 + 227 + 2 + 5 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1566 + 227 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Zone is in service + 800000 + true + + + 1567 + 227 + 3 + 7 + Load + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 349 + Load + 100000 + true + + + 1568 + 227 + 3 + 8 + Load Participation Factor + 0 + 0 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of region load that occurs in the zone + 100000 + true + + + 1569 + 227 + 3 + 9 + Load Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 358 + Scale factor for input [Load] + 100000 + true + + + 1570 + 227 + 3 + 10 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge on exports from the zone + 2000000000 + true + + + 1571 + 227 + 7 + 11 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1572 + 227 + 7 + 12 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance factor + 1000000 + true + + + 1573 + 227 + 6 + 13 + Peak Period + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 600 + Indicates periods that include the peak load + 100008 + true + + + 1574 + 227 + 6 + 14 + Firm Capacity Incr + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1959 + Firm Capacity not explicitly modeled that should be included in reserve margin calculations + 1000000 + true + + + 1575 + 227 + 8 + 15 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + true + + + 1576 + 227 + 8 + 16 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + true + + + 1577 + 227 + 8 + 17 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 1578 + 227 + 8 + 18 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 1579 + 227 + 8 + 19 + Min Native Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1293 + Minimum capacity reserves supplied only by sources in the Zone + 88 + true + + + 1580 + 227 + 8 + 20 + Min Native Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1294 + Minimum capacity reserve margin supplied only by sources in the Zone + 88 + true + + + 1581 + 227 + 8 + 21 + Capacity Shortage Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 69 + Penalty for a shortage of capacity reserves + 40000008 + true + + + 1582 + 227 + 8 + 22 + Capacity Excess Price + 31 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 57 + Penalty for an excess of capacity reserves + 40000008 + true + + + 1583 + 227 + 8 + 23 + Capacity Price Cap + 33 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1752 + Cap on the capacity price + 4000008 + true + + + 1584 + 227 + 8 + 24 + Capacity Price Floor + 33 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1753 + Floor on the capacity price + 4000008 + true + + + 1585 + 227 + 8 + 25 + LOLP Target + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1358 + Loss of Load Probability target for this zone + 88 + true + + + 1586 + 227 + 12 + 26 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1587 + 227 + 12 + 27 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1588 + 227 + 12 + 28 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1589 + 242 + 1 + 1 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for exports to the zone + 2000000000 + true + + + 1590 + 242 + 1 + 2 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the parent zone to child zone. + true + + + 1591 + 242 + 1 + 3 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports from parent zone to child zone. + true + + + 1592 + 242 + 1 + 4 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 429 + Maximum flow allowed between the zones + 4 + true + + + 1593 + 258 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of zone load + 100000 + true + + + 1594 + 258 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of zone load + 100000 + true + + + 1595 + 258 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of zone generation + true + + + 1596 + 258 + 3 + 4 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the zone + 1000000004 + true + + + 1597 + 258 + 3 + 5 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1598 + 258 + 3 + 6 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 1599 + 258 + 3 + 7 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 1600 + 258 + 6 + 8 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + 4 + true + + + 1601 + 258 + 6 + 9 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + C + true + + + 1602 + 258 + 6 + 10 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + C + true + + + 1603 + 258 + 6 + 11 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + C + true + + + 1604 + 258 + 6 + 12 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 1605 + 258 + 6 + 13 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 1606 + 258 + 8 + 14 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + C + true + + + 1607 + 258 + 8 + 15 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + C + true + + + 1608 + 258 + 8 + 16 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + 8008 + true + + + 1609 + 258 + 8 + 17 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity was built + 8 + true + + + 1610 + 258 + 8 + 18 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + 8 + true + + + 1611 + 258 + 8 + 19 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 1612 + 258 + 8 + 20 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 1613 + 259 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 80 + Coefficient of zone load + true + + + 1614 + 259 + 3 + 2 + Load Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 143 + Coefficient of the square of zone load + true + + + 1615 + 259 + 3 + 3 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of zone generation + true + + + 1616 + 259 + 3 + 4 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of generation capacity committed in the zone + true + + + 1617 + 259 + 3 + 5 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 1618 + 259 + 3 + 6 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1619 + 259 + 3 + 7 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 1620 + 259 + 6 + 8 + Firm Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1718 + Coefficient of total generator [Firm Capacity] + true + + + 1621 + 259 + 6 + 9 + Generation Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 232 + Coefficient of total generation capacity + true + + + 1622 + 259 + 6 + 10 + Peak Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 599 + Coefficient of annual peak load + true + + + 1623 + 259 + 6 + 11 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of total capacity reserves + true + + + 1624 + 259 + 6 + 12 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 1625 + 259 + 6 + 13 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 1626 + 259 + 8 + 14 + Generation Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 231 + Coefficient of generation capacity built + true + + + 1627 + 259 + 8 + 15 + Generation Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 234 + Coefficient of generation capacity retired + true + + + 1628 + 259 + 8 + 16 + Generator Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1119 + Coefficient of total cost of generator builds + true + + + 1629 + 259 + 8 + 17 + Generators Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1442 + Coefficient on binary variable indicating if any generation capacity is built to date + true + + + 1630 + 259 + 8 + 18 + Generators Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1451 + Coefficient on binary variable indicating if any generation capacity is built in the year + true + + + 1631 + 259 + 8 + 19 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 1632 + 259 + 8 + 20 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 1633 + 260 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of zone demand in condition + true + + + 1634 + 260 + 1 + 2 + Capacity Reserves Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 65 + Coefficient of zone capacity reserves in condition + true + + + 1635 + 260 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 1636 + 261 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the node must be reported regardless of voltage + 800000 + true + + + 1637 + 261 + 2 + 2 + Is Slack Bus + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 339 + Set if this is the slack bus + 800000000 + true + + + 1638 + 261 + 2 + 3 + Allow Dump Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 9 + Model Node [Dump Energy] in the mathematical program. + 40000000 + true + + + 1639 + 261 + 2 + 4 + Allow Unserved Energy + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 10 + Model Node [Unserved Energy] in the mathematical program. + 40000000 + true + + + 1640 + 261 + 2 + 5 + Formulate Load + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2317 + Flag if the Load is formulated as a decision variable + 100000 + true + + + 1641 + 261 + 3 + 6 + Max Unserved Energy + 1 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2014 + Maximum allowed Unserved Energy at the node. + 40000000 + true + + + 1642 + 261 + 3 + 7 + Reference Load + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 670 + Reference load for distributed load slack model + 800000000 + true + + + 1643 + 261 + 3 + 8 + Reference Generation + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 669 + Reference generation from the network case file + 800000000 + true + + + 1644 + 261 + 3 + 9 + External Nodal Injection + 1 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2708 + External nodal injection calculated from MT phase for Kron-reduction algorithm in ST phase + 800000000 + false + + + 1645 + 261 + 3 + 10 + External Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2715 + Regional price of the node calculated from MT phase for Kron-reduction algorithm in ST phase + 4000000 + false + + + 1646 + 261 + 3 + 11 + Voltage + 4 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 848 + Voltage + 800000000 + true + + + 1647 + 261 + 3 + 12 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if bus is in service + 800000 + true + + + 1648 + 261 + 3 + 13 + Load Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of region load that occurs at the node + 100000 + true + + + 1649 + 261 + 3 + 14 + Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 349 + Load + 100000 + true + + + 1650 + 261 + 3 + 15 + Fixed Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 200 + Fixed load at the node + 100000 + true + + + 1651 + 261 + 3 + 16 + Fixed Generation + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 198 + Fixed (or embedded) generation at the node + 100000 + true + + + 1652 + 261 + 3 + 17 + Max Net Injection + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 440 + Maximum net injection + 80 + true + + + 1653 + 261 + 3 + 18 + Max Net Offtake + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 441 + Maximum net offtake + 80 + true + + + 1654 + 261 + 3 + 19 + Rating + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 665 + Maximum power flow through the Node + 80 + true + + + 1655 + 261 + 4 + 20 + DSP Bid Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 156 + Demand-side participation bid quantity + 400400 + true + + + 1656 + 261 + 4 + 21 + DSP Bid Ratio + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 157 + Demand-side participation quantity as a percentage of nodal load + 400400 + true + + + 1657 + 261 + 4 + 22 + DSP Bid Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 155 + Demand-side participation bid price + 400400 + true + + + 1658 + 261 + 3 + 23 + Price + 33 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 612 + Locational marginal price + 4000000 + true + + + 1659 + 261 + 7 + 24 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 1660 + 261 + 7 + 25 + Maintenance Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 394 + Maintenance biasing factor + 1000000 + true + + + 1661 + 261 + 6 + 26 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves + 1000000 + true + + + 1662 + 261 + 6 + 27 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin + 1000000 + true + + + 1663 + 261 + 12 + 28 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1664 + 261 + 12 + 29 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1665 + 261 + 12 + 30 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1666 + 267 + 1 + 1 + Pricing Weight + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1651 + Wheeling charge for exports to the zone + 2000000000 + true + + + 1667 + 268 + 1 + 1 + Load Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2004 + Percentage share of load ownership + 40 + true + + + 1668 + 269 + 1 + 1 + Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of Facility Electric Energy Usage occurring at the Node + true + + + 1669 + 273 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node load + 100000 + true + + + 1670 + 273 + 1 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of node generation + true + + + 1671 + 273 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 1672 + 273 + 1 + 4 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 1673 + 273 + 1 + 5 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + 100000 + true + + + 1674 + 273 + 1 + 6 + Net Injection Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 912 + Coefficient of node net injection + true + + + 1675 + 273 + 1 + 7 + Phase Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 913 + Coefficient of node phase angle + 800000000 + true + + + 1676 + 273 + 1 + 8 + MLF Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 517 + Coefficient of marginal loss factor + 200000 + true + + + 1677 + 274 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node load + true + + + 1678 + 274 + 1 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of node generation + true + + + 1679 + 274 + 1 + 3 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + true + + + 1680 + 274 + 1 + 4 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + true + + + 1681 + 274 + 1 + 5 + Net Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1484 + Coefficient of load net of unserved and dump energy + true + + + 1682 + 274 + 1 + 6 + Net Injection Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 912 + Coefficient of node net injection + true + + + 1683 + 274 + 1 + 7 + Phase Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 913 + Coefficient of node phase angle + true + + + 1684 + 274 + 1 + 8 + MLF Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 517 + Coefficient of marginal loss factor + true + + + 1685 + 275 + 1 + 1 + Net Injection Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1547 + Coefficient of Decision Variable in Node net injection definition equation + true + + + 1686 + 276 + 1 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of node demand in condition + true + + + 1687 + 276 + 1 + 2 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy in condition + true + + + 1688 + 278 + 2 + 1 + Is Scalable + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2270 + Indicates if the load is scalable or flat load. + true + + + 1689 + 278 + 3 + 2 + Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 349 + Load at a node + 100000 + true + + + 1690 + 278 + 3 + 3 + Load Participation Factor + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 355 + Proportion of company load that occurs at a node + 100000 + true + + + 1691 + 278 + 12 + 4 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1692 + 278 + 12 + 5 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1693 + 278 + 12 + 6 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1694 + 283 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the Line must be reported regardless of Transmission [Report Voltage Threshold]. + 800000 + true + + + 1695 + 283 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Line for the generation of outages + 101000000 + true + + + 1696 + 283 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 1697 + 283 + 2 + 4 + Enforce Limits + 0 + 1 + In (0,1,2,3) + 0;"Never";1;"Voltage";2;"Always";3;"Contingency" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 177 + Controls when flow limits are enforced with regard to Transmission [Constraint Voltage Threshold]. + 80 + true + + + 1698 + 283 + 2 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 1699 + 283 + 2 + 6 + Formulate NPL Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1207 + If integer conditions that control non-physical losses should be formulated upfront rather than checked iteratively. + 2200000 + true + + + 1700 + 283 + 2 + 7 + Max Loss Tranches + 0 + 2 + >=2 + 0 + 2 + 1 + 0 + false + false + false + false + 1 + 438 + Maximum number of tranches in piecewise linear loss function. + 2200000 + true + + + 1701 + 283 + 2 + 8 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Line can transfer price across the network + 4000000 + true + + + 1702 + 283 + 2 + 9 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 100 + true + + + 1703 + 283 + 2 + 10 + Fixed Flow Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1794 + Method of interpreting zero values of the [Fixed Flow] property. + 80 + true + + + 1704 + 283 + 2 + 11 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 1705 + 283 + 2 + 12 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 1706 + 283 + 3 + 13 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the line is in service (0,1) + 800000 + true + + + 1707 + 283 + 3 + 14 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 429 + Maximum flow + 5 + true + + + 1708 + 283 + 3 + 15 + Min Flow + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 481 + Minimum flow + 5 + true + + + 1709 + 283 + 3 + 16 + Max Rating + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 449 + Rated maximum (overrides Max Flow) + 80 + true + + + 1710 + 283 + 3 + 17 + Min Rating + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 493 + Rated minimum (overrides Min Flow) + 80 + true + + + 1711 + 283 + 3 + 18 + Overload Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 596 + Emergency line rating in the reference direction + 80 + true + + + 1712 + 283 + 3 + 19 + Overload Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 597 + Emergency line rating in the counter-reference direction + 80 + true + + + 1713 + 283 + 3 + 20 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for exceeding the flow limits on the line + 80 + true + + + 1714 + 283 + 3 + 21 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 1715 + 283 + 3 + 22 + Resistance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 693 + A measure of the line's opposition to the flow of electric charge + 800000000 + true + + + 1716 + 283 + 3 + 23 + Reactance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 667 + Together with any resistance this makes up the lines impedance + 800000000 + true + + + 1717 + 283 + 3 + 24 + Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 771 + The reciprocal of the reactance of a circuit and thus the imaginary part of its admittance + 800000000 + true + + + 1718 + 283 + 3 + 25 + Ramp Up Point + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2322 + Flow for use with multi-band Max Ramp Up constraints + 80 + true + + + 1719 + 283 + 3 + 26 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 448 + Maximum ramp up rate + 80 + true + + + 1720 + 283 + 3 + 27 + Ramp Down Point + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2323 + Flow for use with multi-band Max Ramp Down constraints + 80 + true + + + 1721 + 283 + 3 + 28 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 447 + Maximum ramp down rate + 80 + true + + + 1722 + 283 + 3 + 29 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty for changes in flow on the line + 80 + true + + + 1723 + 283 + 3 + 30 + Loss Base + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 375 + Interconnector loss function constant parameter for reference direction flows + 200000 + true + + + 1724 + 283 + 3 + 31 + Loss Incr + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 380 + Interconnector loss function linear parameter for reference direction flows + 200000 + true + + + 1725 + 283 + 3 + 32 + Loss Incr2 + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 382 + Interconnector loss function quadratic parameter for reference direction flows + 200000 + true + + + 1726 + 283 + 3 + 33 + Loss Base Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 376 + Interconnector loss function constant parameter for counter-reference direction flows + 200000 + true + + + 1727 + 283 + 3 + 34 + Loss Incr Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 381 + Interconnector loss function linear parameter for counter-reference direction flows + 200000 + true + + + 1728 + 283 + 3 + 35 + Loss Incr2 Back + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 383 + Interconnector loss function quadratic parameter for counter-reference direction flows + 200000 + true + + + 1729 + 283 + 3 + 36 + Loss Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 373 + Proportion of line losses allocated to the receiving node + 200000 + true + + + 1730 + 283 + 3 + 37 + Fixed Flow + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 197 + Fixed flow on line + 80 + true + + + 1731 + 283 + 3 + 38 + Fixed Flow Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1324 + Penalty for violation of [Fixed Flow]. + 80 + true + + + 1732 + 283 + 3 + 39 + Fixed Loss + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 203 + Fixed loss on line + 200000 + true + + + 1733 + 283 + 3 + 40 + Wheeling Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 858 + Wheeling charge for reference direction flows + 2000000000 + true + + + 1734 + 283 + 3 + 41 + Wheeling Charge Back + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 859 + Wheeling charge for counter-reference direction flows + 2000000000 + true + + + 1735 + 283 + 3 + 42 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 1736 + 283 + 3 + 43 + Marginal Loss Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 377 + Transmission marginal loss factor (MLF or TLF) for exports + 600000 + true + + + 1737 + 283 + 3 + 44 + Marginal Loss Factor Back + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 378 + Transmission marginal loss factor (MLF or TLF) for imports + 600000 + true + + + 1738 + 283 + 4 + 45 + Offer Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for balancing offer + 400000 + true + + + 1739 + 283 + 4 + 46 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for reference direction flows + 400000 + true + + + 1740 + 283 + 4 + 47 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price offered in band for reference direction flows + 400000 + true + + + 1741 + 283 + 4 + 48 + Offer Quantity Back + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 573 + Quantity offered in band for counter-reference direction flows + 400000 + true + + + 1742 + 283 + 4 + 49 + Offer Price Back + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 570 + Price offered in band for counter-reference direction flows + 400000 + true + + + 1743 + 283 + 6 + 50 + Max Capacity Reserves + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum amount of capacity reserves supplied to the receiving Region/Zone. + 8 + true + + + 1744 + 283 + 6 + 51 + Min Capacity Reserves + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum amount of capacity reserves supplied to the receiving Region/Zone. + 8 + true + + + 1745 + 283 + 6 + 52 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Net capacity reserves exported + C + true + + + 1746 + 283 + 6 + 53 + Fixed Charge + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1338 + Generic annual fixed charge + 8000 + true + + + 1747 + 283 + 6 + 54 + Equity Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 180 + Annual required return on equity + 8000 + true + + + 1748 + 283 + 6 + 55 + Debt Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 127 + Annual debt charge + 8000 + true + + + 1749 + 283 + 7 + 56 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 1750 + 283 + 7 + 57 + Circuits + 0 + 1 + >=1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 909 + Number of circuits in the notional interconnector for the purposes of outage modelling + 1000000 + true + + + 1751 + 283 + 7 + 58 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units (circuits) out of service + 1000000 + true + + + 1752 + 283 + 7 + 59 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 1753 + 283 + 7 + 60 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual timeframe + 1000000 + true + + + 1754 + 283 + 7 + 61 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Line rating in the reference direction during outage + 1000000 + true + + + 1755 + 283 + 7 + 62 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Line rating in the counter-reference direction during outage + 1000000 + true + + + 1756 + 283 + 7 + 63 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 1757 + 283 + 7 + 64 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair (hr) + 1000000 + true + + + 1758 + 283 + 7 + 65 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair (hr) + 1000000 + true + + + 1759 + 283 + 7 + 66 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 1760 + 283 + 7 + 67 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 1761 + 283 + 8 + 68 + Type + 0 + 0 + In (0,1) + 0;"AC";1;"DC" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Line expansion type + 800000008 + true + + + 1762 + 283 + 8 + 69 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the line + 8009 + true + + + 1763 + 283 + 8 + 70 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the line + 8 + true + + + 1764 + 283 + 8 + 71 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 1765 + 283 + 8 + 72 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of transmission project, for expansion planning. + 8 + true + + + 1766 + 283 + 8 + 73 + Commission Date + 0 + 1 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the line was commissioned for use with [Technical Life] + 8 + true + + + 1767 + 283 + 8 + 74 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the line + 8 + true + + + 1768 + 283 + 8 + 75 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 1769 + 283 + 8 + 76 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the line (period over which fixed costs are recovered). + 8 + true + + + 1770 + 283 + 8 + 77 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 1771 + 283 + 8 + 78 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 8 + true + + + 1772 + 283 + 8 + 79 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of lines automatically constructed + 8 + true + + + 1773 + 283 + 8 + 80 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of lines automatically retired + 8 + true + + + 1774 + 283 + 8 + 81 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 1775 + 283 + 8 + 82 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 8 + true + + + 1776 + 283 + 8 + 83 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 1777 + 283 + 8 + 84 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 8 + true + + + 1778 + 283 + 11 + 85 + Flow Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1115 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 1779 + 283 + 11 + 86 + Flow Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1116 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 1780 + 283 + 11 + 87 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1781 + 283 + 11 + 88 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1782 + 283 + 12 + 89 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1783 + 283 + 12 + 90 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1784 + 283 + 12 + 91 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1785 + 288 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of ownership + 40 + true + + + 1786 + 289 + 1 + 1 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 583 + Line rating in the reference direction during outage + 4 + true + + + 1787 + 289 + 1 + 2 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 584 + Line rating in the counter-reference direction during outage + 4 + true + + + 1788 + 290 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + 800000000 + true + + + 1789 + 290 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + 800000000 + true + + + 1790 + 290 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + 800000000 + true + + + 1791 + 290 + 3 + 4 + Flow Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 212 + Coefficient of square of line flow + 800000000 + true + + + 1792 + 290 + 3 + 5 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 1793 + 290 + 3 + 6 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 1794 + 290 + 3 + 7 + Spare Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 866 + Coefficient on spare line capacity in the reference direction + 4 + true + + + 1795 + 290 + 3 + 8 + Spare Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 867 + Coefficient on spare line capacity in the counter-reference direction + 4 + true + + + 1796 + 290 + 7 + 9 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + 1000000 + true + + + 1797 + 290 + 8 + 10 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + C + true + + + 1798 + 290 + 8 + 11 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + C + true + + + 1799 + 290 + 8 + 12 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + C + true + + + 1800 + 290 + 8 + 13 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + C + true + + + 1801 + 290 + 8 + 14 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of lines built in the year + C + true + + + 1802 + 290 + 8 + 15 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of lines retired in the year + C + true + + + 1803 + 290 + 8 + 16 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + C + true + + + 1804 + 290 + 8 + 17 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + C + true + + + 1805 + 290 + 8 + 18 + Export Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 191 + Coefficient of export capacity retired + C + true + + + 1806 + 290 + 8 + 19 + Import Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 293 + Coefficient of import capacity retired + C + true + + + 1807 + 290 + 8 + 20 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 1808 + 291 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + true + + + 1809 + 291 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + true + + + 1810 + 291 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + true + + + 1811 + 291 + 3 + 4 + Flow Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 212 + Coefficient of square of line flow + true + + + 1812 + 291 + 3 + 5 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 1813 + 291 + 3 + 6 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 1814 + 291 + 3 + 7 + Spare Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 866 + Coefficient on spare line capacity in the reference direction + true + + + 1815 + 291 + 3 + 8 + Spare Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 867 + Coefficient on spare line capacity in the counter-reference direction + true + + + 1816 + 291 + 7 + 9 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + true + + + 1817 + 291 + 8 + 10 + Export Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 189 + Coefficient of export capacity + true + + + 1818 + 291 + 8 + 11 + Import Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 291 + Coefficient of import capacity + true + + + 1819 + 291 + 8 + 12 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 1820 + 291 + 8 + 13 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 1821 + 291 + 8 + 14 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of lines built in the year + true + + + 1822 + 291 + 8 + 15 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of lines retired in the year + true + + + 1823 + 291 + 8 + 16 + Export Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 188 + Coefficient of export capacity built + true + + + 1824 + 291 + 8 + 17 + Import Capacity Built Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 290 + Coefficient of import capacity built + true + + + 1825 + 291 + 8 + 18 + Export Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 191 + Coefficient of export capacity retired + true + + + 1826 + 291 + 8 + 19 + Import Capacity Retired Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 293 + Coefficient of import capacity retired + true + + + 1827 + 291 + 8 + 20 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 1828 + 292 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of line flow in condition + true + + + 1829 + 292 + 1 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow in condition + true + + + 1830 + 292 + 1 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow in condition + true + + + 1831 + 292 + 1 + 4 + Flowing Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 214 + Boolean value (1 if the line is flowing in the reference direction, 0 otherwise) + true + + + 1832 + 292 + 1 + 5 + Flowing Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 213 + Boolean value (1 if the line is flowing in the counter-reference direction, 0 otherwise) + true + + + 1833 + 292 + 1 + 6 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient of units out + true + + + 1834 + 293 + 1 + 1 + Intercept + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 323 + Intercept of the MLF equation + 200000 + true + + + 1835 + 293 + 1 + 2 + Flow Coefficient + 1 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient on line flow + 200000 + true + + + 1836 + 296 + 1 + 1 + Load Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 80 + Coefficient of region demand in the MLF equation + 300000 + true + + + 1837 + 299 + 2 + 1 + Must Report + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 525 + If the Transformer must be reported regardless of Transmission [Report Voltage Threshold]. + 800000 + true + + + 1838 + 299 + 2 + 2 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Line for the generation of outages + 101000000 + true + + + 1839 + 299 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 1840 + 299 + 2 + 4 + Enforce Limits + 0 + 1 + In (0,1,2,3) + 0;"Never";1;"Voltage";2;"Always";3;"Contingency" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 177 + If flow limits are enforced regardless of Transmission [Constraint Voltage Threshold]. + 80 + true + + + 1841 + 299 + 2 + 5 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 1842 + 299 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if transformer is in service + 800000 + true + + + 1843 + 299 + 3 + 7 + Rating + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 665 + Maximum MW rating + 5 + true + + + 1844 + 299 + 3 + 8 + Overload Rating + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1028 + Emergency rating in the reference direction + 80 + true + + + 1845 + 299 + 3 + 9 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for exceeding the flow limits on the Transformer. + 80 + true + + + 1846 + 299 + 3 + 10 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 1847 + 299 + 3 + 11 + Resistance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 693 + A measure of the transformer's opposition to the flow of electric charge + 800000000 + true + + + 1848 + 299 + 3 + 12 + Reactance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 667 + Together with any resistance this makes up the lines impedance + 800000000 + true + + + 1849 + 299 + 3 + 13 + Susceptance + 10 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 771 + The reciprocal of the reactance of a circuit and thus the imaginary part of its admittance + 800000000 + true + + + 1850 + 299 + 3 + 14 + Loss Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 373 + Proportion of transformer losses allocated to the receiving node + 200000 + true + + + 1851 + 299 + 3 + 15 + Fixed Loss + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 203 + Fixed loss on transformer + 200000 + true + + + 1852 + 299 + 7 + 16 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 1853 + 299 + 7 + 17 + Units Out + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 818 + Number of [Units] out of service + 1000000 + true + + + 1854 + 299 + 7 + 18 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 1855 + 299 + 7 + 19 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual timeframe + 1000000 + true + + + 1856 + 299 + 7 + 20 + Outage Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Transformer rating in the reference direction during outage + 1000000 + true + + + 1857 + 299 + 7 + 21 + Outage Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Transformer rating in the counter-reference direction during outage + 1000000 + true + + + 1858 + 299 + 7 + 22 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair (hr) + 1000000 + true + + + 1859 + 299 + 7 + 23 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair (hr) + 1000000 + true + + + 1860 + 299 + 7 + 24 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair (hr) + 1000000 + true + + + 1861 + 299 + 7 + 25 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 1862 + 299 + 7 + 26 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 1863 + 299 + 12 + 27 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1864 + 299 + 12 + 28 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1865 + 299 + 12 + 29 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1866 + 304 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of transformer flow equation + 800000000 + true + + + 1867 + 305 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of transformer flow equation + true + + + 1868 + 306 + 2 + 1 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the flow control can transfer price across the network + 4000000 + true + + + 1869 + 306 + 2 + 2 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 1870 + 306 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 1871 + 306 + 2 + 4 + Type + 0 + 0 + In (0,1,2,3,4,5) + 0;"PST";1;"DSR";2;"DSSC";3;"MSSR";4;"TCSC";5;"SSSC" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Flow control type + true + + + 1872 + 306 + 3 + 5 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of installed units + 800000 + true + + + 1873 + 306 + 3 + 6 + Min Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 472 + Min angle set on the flow control + 5 + true + + + 1874 + 306 + 3 + 7 + Max Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 411 + Max angle set on the flow control + 5 + true + + + 1875 + 306 + 3 + 8 + Min Impedance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1778 + Min Impedance + 5 + true + + + 1876 + 306 + 3 + 9 + Max Impedance + 10 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1779 + Max Impedance + 5 + true + + + 1877 + 306 + 3 + 10 + Min Voltage + 4 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1780 + Min Voltage + 5 + true + + + 1878 + 306 + 3 + 11 + Max Voltage + 4 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1781 + Max Voltage + 5 + true + + + 1879 + 306 + 3 + 12 + Penalty + 43 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 602 + Penalty incurred for shifting the angle + 80 + true + + + 1880 + 306 + 3 + 13 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty price per MW change in flow on the device + 80 + true + + + 1881 + 306 + 3 + 14 + Angle + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 14 + Angle (initial angle when used as input) + 80 + true + + + 1882 + 306 + 3 + 15 + Angle Points + 11 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1762 + Flow control angle points + true + + + 1883 + 306 + 3 + 16 + Flow Loading Points + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1763 + Flow control line flow points + true + + + 1884 + 306 + 3 + 17 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 1885 + 306 + 8 + 18 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the flow control + 8009 + true + + + 1886 + 306 + 8 + 19 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 1887 + 306 + 8 + 20 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of the project, for expansion planning. + 8 + true + + + 1888 + 306 + 8 + 21 + Commission Date + 0 + 1 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the flow control was commissioned for use with [Technical Life] + 8 + true + + + 1889 + 306 + 8 + 22 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the flow control + 8 + true + + + 1890 + 306 + 8 + 23 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 1891 + 306 + 8 + 24 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the flow control (period over which fixed costs are recovered). + 8 + true + + + 1892 + 306 + 8 + 25 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 1893 + 306 + 8 + 26 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 1894 + 306 + 8 + 27 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 1895 + 306 + 8 + 28 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 8 + true + + + 1896 + 306 + 11 + 29 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1897 + 306 + 12 + 30 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1898 + 306 + 12 + 31 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1899 + 306 + 12 + 32 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1900 + 311 + 3 + 1 + Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1761 + Coefficient of flow control angle + 800000000 + true + + + 1901 + 311 + 3 + 2 + Positive Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1759 + Boolean value (1 if the flow control angle is positive, 0 otherwise) + 800000000 + true + + + 1902 + 311 + 3 + 3 + Negative Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1760 + Boolean value (1 if the flow control angle is negative, 0 otherwise) + 800000000 + true + + + 1903 + 311 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 1904 + 312 + 3 + 1 + Angle Coefficient + 11 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1761 + Coefficient of flow control angle + true + + + 1905 + 312 + 3 + 2 + Positive Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1759 + Boolean value (1 if the flow control angle is positive, 0 otherwise) + true + + + 1906 + 312 + 3 + 3 + Negative Angle Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1760 + Boolean value (1 if the flow control angle is negative, 0 otherwise) + true + + + 1907 + 312 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 1908 + 313 + 2 + 1 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 1909 + 313 + 2 + 2 + Offer Quantity Format + 0 + 0 + In (0,1) + 0;"Incremental";1;"Cumulative" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 574 + Format for [Offer Quantity] and [Offer Price] + 100 + true + + + 1910 + 313 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if interface is in service + 800000 + true + + + 1911 + 313 + 3 + 4 + Min Flow + 1 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 481 + Minimum flow on interface + 5 + true + + + 1912 + 313 + 3 + 5 + Max Flow + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow on interface + 5 + true + + + 1913 + 313 + 3 + 6 + Overload Max Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 596 + Emergency rating in the reference direction + 80 + true + + + 1914 + 313 + 3 + 7 + Overload Min Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 597 + Emergency rating in the counter-reference direction + 80 + true + + + 1915 + 313 + 3 + 8 + Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 348 + Penalty for violation of limits + 80 + true + + + 1916 + 313 + 3 + 9 + Contingency Limit Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2050 + Penalty for exceeding contingency flow limits + 80 + true + + + 1917 + 313 + 3 + 10 + Max Ramp Up + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 1918 + 313 + 3 + 11 + Max Ramp Down + 9 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 1919 + 313 + 3 + 12 + Ramp Penalty + 32 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 658 + Penalty for changes in flow on the line + 80 + true + + + 1920 + 313 + 3 + 13 + Fixed Flow + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 197 + Fixed flow on interface + 80 + true + + + 1921 + 313 + 3 + 14 + Fixed Flow Penalty + 33 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1324 + Penalty for violation of [Fixed Flow]. + 80 + true + + + 1922 + 313 + 4 + 15 + Offer Base + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 565 + Base dispatch point for balancing offer + 400000 + true + + + 1923 + 313 + 4 + 16 + Offer Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 572 + Quantity offered in band for reference direction flows + 400000 + true + + + 1924 + 313 + 4 + 17 + Offer Price + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 569 + Price offered in band for reference direction flows + 400000 + true + + + 1925 + 313 + 4 + 18 + Offer Quantity Back + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 573 + Quantity offered in band for counter-reference direction flows + 400000 + true + + + 1926 + 313 + 4 + 19 + Offer Price Back + 33 + 10000 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 570 + Price offered in band for counter-reference direction flows + 400000 + true + + + 1927 + 313 + 11 + 20 + Flow Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1115 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 1928 + 313 + 11 + 21 + Flow Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1116 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 1929 + 313 + 6 + 22 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the interface to region capacity reserves + C + true + + + 1930 + 313 + 8 + 23 + Expansion Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 184 + Cost of expanding the interface by one megawatt + 8008 + true + + + 1931 + 313 + 8 + 24 + Max Expansion + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 428 + Maximum interface expansion + 8 + true + + + 1932 + 313 + 8 + 25 + Min Expansion + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2745 + Minimum interface expansion + 8 + true + + + 1933 + 313 + 8 + 26 + Max Expansion In Year + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2754 + Maximum interface expansion allowed in the year + 8 + true + + + 1934 + 313 + 8 + 27 + Min Expansion In Year + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2755 + Minimum interface expansion allowed in the year + 8 + true + + + 1935 + 313 + 8 + 28 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 1936 + 313 + 8 + 29 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the interface (period over which expansion costs are recovered). + 8 + true + + + 1937 + 313 + 11 + 30 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 1938 + 313 + 12 + 31 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1939 + 313 + 12 + 32 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1940 + 313 + 12 + 33 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1941 + 316 + 1 + 1 + Flow Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient of flow in interface + 800000000 + true + + + 1942 + 316 + 1 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow in interface + 800000000 + true + + + 1943 + 316 + 1 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow in interface + 800000000 + true + + + 1944 + 317 + 1 + 1 + Flow Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 208 + Coefficient of transformer flow in interface + 800000000 + true + + + 1945 + 318 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + 800000000 + true + + + 1946 + 318 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + 800000000 + true + + + 1947 + 318 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + 800000000 + true + + + 1948 + 318 + 8 + 4 + Expansion Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1220 + Coefficient of total build cost + 8008 + true + + + 1949 + 319 + 3 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow + true + + + 1950 + 319 + 3 + 2 + Flow Forward Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of reference direction flow + true + + + 1951 + 319 + 3 + 3 + Flow Back Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of counter-reference direction flow + true + + + 1952 + 319 + 8 + 4 + Expansion Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1220 + Coefficient of total expansion cost + true + + + 1953 + 320 + 1 + 1 + Flow Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of flow in condition + true + + + 1954 + 321 + 2 + 1 + Is Enabled + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 335 + If the contingency is enabled + 800000 + true + + + 1955 + 321 + 2 + 2 + Monitoring Threshold + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1628 + Monitor only this percentage of most affected Line/Transformer/Interface flows. + true + + + 1956 + 321 + 12 + 3 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1957 + 321 + 12 + 4 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1958 + 321 + 12 + 5 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1959 + 330 + 2 + 1 + Pricing Method + 0 + 0 + In (0,1,2) + 0;"Load Weighted Average";1;"Generation Weighted Average";2;"Weighted Average" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 620 + Method used to calculate the hub price + 4000000 + true + + + 1960 + 330 + 3 + 2 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Hub is in service + 800000 + true + + + 1961 + 330 + 12 + 3 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 1962 + 330 + 12 + 4 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 1963 + 330 + 12 + 5 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 1964 + 333 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of hub load + true + + + 1965 + 333 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of hub generation + true + + + 1966 + 334 + 3 + 1 + Load Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 80 + Coefficient of hub load + true + + + 1967 + 334 + 3 + 2 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of hub generation + true + + + 1968 + 335 + 2 + 1 + Type + 0 + 0 + In (0,1,2) + 0;"TCC";1;"TCR";2;"CRR"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 927 + Type of transmission right + 4000000 + false + + + 1969 + 335 + 2 + 2 + Hedge Type + 0 + 0 + In (0,1) + 0;"Obligation";1;"Option"; + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2803 + Type of transmission right + 4000000 + true + + + 1970 + 335 + 2 + 3 + Settlement Model + 0 + 0 + In (0,1) + 0;"Buy";1;"Sell" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 1653 + Direction of settlement + 4000000 + true + + + 1971 + 335 + 2 + 4 + Pricing Method + 0 + 0 + In (0,1) + 0;"LMP";1;"Congestion Charge" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 620 + Pricing method + 4000000 + true + + + 1972 + 335 + 3 + 5 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Transmission Right is in service + 800000 + true + + + 1973 + 335 + 3 + 6 + Quantity + 1 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 650 + Contract quantity + 5 + true + + + 1974 + 335 + 3 + 7 + Rental Share + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 682 + Percent of rent in the reference direction included in the contract + 4 + true + + + 1975 + 335 + 3 + 8 + Rental Back Share + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 680 + Percent of rent in the counter-reference direction included in the contract + 4 + true + + + 1976 + 335 + 3 + 9 + Price + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Scheduled price + true + + + 1977 + 345 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of the transmission right + 40 + true + + + 1978 + 346 + 2 + 1 + Unit Commitment Optimality + 0 + -1 + In (-1,0,1,2,3) + -1;"Auto";0;"Linear";1;"Rounded Relaxation";2;"Integer";3;"Dynamic Program" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 811 + Unit commitment integerization scheme for the Heat Plant. + 1000000000 + true + + + 1979 + 346 + 2 + 2 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 1980 + 346 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 1981 + 346 + 3 + 4 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of Heat Plant units in service + 800000 + true + + + 1982 + 346 + 3 + 5 + Max Capacity + 35 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 414 + Maximum heat production + 20000 + true + + + 1983 + 346 + 3 + 6 + Efficiency Base + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 887 + Heat production no-load efficiency + 21000 + true + + + 1984 + 346 + 3 + 7 + Efficiency Incr + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Heat production efficiency + 21000 + true + + + 1985 + 346 + 3 + 8 + VO&M Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 1986 + 346 + 3 + 9 + Load Point + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate. + 1000 + true + + + 1987 + 346 + 3 + 10 + Heat Rate + 37 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 260 + Average heat rate (total fuel divided by total heat production) + 1001 + true + + + 1988 + 346 + 3 + 11 + Heat Rate Base + 35 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 1989 + 346 + 3 + 12 + Heat Rate Incr + 37 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 1990 + 346 + 3 + 13 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 1991 + 346 + 3 + 14 + Start Cost Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 763 + Incremental cooling time over which the corresponding Start Cost applies + 1080000000 + true + + + 1992 + 346 + 3 + 15 + Run Up Rate + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1019 + Ramp rate that applies while running the unit up from zero to [Min Stable Level]. + 80000000 + true + + + 1993 + 346 + 3 + 16 + Start Profile + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 932 + Detailed regime for running the unit up from zero to [Min Stable Level] when [Run Up Rate] is non-constant. + 80000000 + true + + + 1994 + 346 + 3 + 17 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 1995 + 346 + 3 + 18 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 1996 + 346 + 3 + 19 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 1997 + 346 + 3 + 20 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 1998 + 346 + 3 + 21 + Max Ramp Up + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 1999 + 346 + 3 + 22 + Max Ramp Down + 35 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 2000 + 346 + 3 + 23 + Min Stable Level + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 501 + Minimum stable Heat Production level + 1000000081 + true + + + 2001 + 346 + 3 + 24 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 2002 + 346 + 8 + 25 + Max Units Built + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 2003 + 346 + 8 + 26 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2004 + 346 + 8 + 27 + Project Start Date + 0 + 36526 + >=0 + date + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2005 + 346 + 8 + 28 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Heat Plant + 8 + true + + + 2006 + 346 + 8 + 29 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 2007 + 346 + 8 + 30 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 2008 + 346 + 8 + 31 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Heat Plant (period over which fixed costs are recovered). + 9 + true + + + 2009 + 346 + 8 + 32 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2010 + 346 + 8 + 33 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2011 + 346 + 8 + 34 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2012 + 346 + 8 + 35 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2013 + 346 + 8 + 36 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Heat Plant + 8 + true + + + 2014 + 346 + 8 + 37 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2015 + 346 + 8 + 38 + Max Units Retired in Year + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2016 + 346 + 8 + 39 + Min Units Retired in Year + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2017 + 346 + 11 + 40 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2018 + 346 + 11 + 41 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2019 + 346 + 12 + 42 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2020 + 346 + 12 + 43 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2021 + 346 + 12 + 44 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2022 + 349 + 1 + 1 + Mutually Exclusive + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 998 + If the Fuel cannot be mixed with other Fuels associated with this heat plant. + 80 + true + + + 2023 + 349 + 1 + 2 + Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 666 + Fixed fuel mix ratio + 80 + true + + + 2024 + 349 + 1 + 3 + Min Ratio + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 494 + Minimum fuel mix ratio + 80 + true + + + 2025 + 349 + 1 + 4 + Max Ratio + 0 + 1 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 450 + Maximum fuel mix ratio + 80 + true + + + 2026 + 349 + 1 + 5 + Max Input + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 433 + Maximum amount of fuel input to heat plant + 80 + true + + + 2027 + 349 + 1 + 6 + Is Available + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 332 + If the fuel is available for use by the generator + 800000 + true + + + 2028 + 349 + 1 + 7 + Heat Rate Scalar + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 266 + Scalar on base heat plant heat rate function + 1000 + true + + + 2029 + 349 + 1 + 8 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + true + + + 2030 + 349 + 1 + 9 + Heat Rate + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Heat-rate at load point (used with Load Point) or 'b' in the heat input function + 1000 + true + + + 2031 + 349 + 1 + 10 + Heat Rate Incr + 37 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + Average marginal heat-rate in band + 1000 + true + + + 2032 + 350 + 1 + 1 + Offtake at Start + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 578 + Fuel required to start a unit + 1080000000 + true + + + 2033 + 353 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 2034 + 355 + 3 + 1 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + 1000000000 + true + + + 2035 + 355 + 3 + 2 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake + 1000 + true + + + 2036 + 355 + 3 + 3 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + 1000 + true + + + 2037 + 356 + 3 + 1 + Units Generating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 817 + Coefficient on the number of units generating + true + + + 2038 + 356 + 3 + 2 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake of the heat plant + true + + + 2039 + 356 + 3 + 3 + Heat Production Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 258 + Coefficient of heat production + true + + + 2040 + 357 + 1 + 1 + Fuel Offtake Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 224 + Coefficient of fuel offtake in condition + true + + + 2041 + 358 + 2 + 1 + Allow Dump Heat + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1927 + Model Heat Node [Dump Heat] in the mathematical program. + 40000000 + true + + + 2042 + 358 + 2 + 2 + Allow Unserved Heat + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2420 + Model Heat Node [Unserved Heat] in the mathematical program. + 40000000 + true + + + 2043 + 358 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Number of Heat Node units in service + 800000 + true + + + 2044 + 358 + 3 + 4 + Heat Demand + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1941 + Heat demand at the node + true + + + 2045 + 358 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2046 + 358 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2047 + 358 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2048 + 361 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the node + 20000 + true + + + 2049 + 362 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion sent to the water plant + 20000 + false + + + 2050 + 363 + 1 + 1 + Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of Facility Heat Usage occurring at the Heat Node + true + + + 2051 + 365 + 3 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node + true + + + 2052 + 366 + 3 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node + true + + + 2053 + 367 + 1 + 1 + Heat Flow Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1940 + Coefficient of heat flow through the heat node in condition + true + + + 2054 + 368 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of balancing the Heat Storage + true + + + 2055 + 368 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period heat volumes + 4000 + true + + + 2056 + 368 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next + 400000000 + true + + + 2057 + 368 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term + 400000000 + true + + + 2058 + 368 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term + 400000000 + true + + + 2059 + 368 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term + 400000000 + true + + + 2060 + 368 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term + 400000000 + true + + + 2061 + 368 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations + 400000000 + true + + + 2062 + 368 + 2 + 9 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2063 + 368 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2064 + 368 + 3 + 11 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of Heat Storage units in service + 800000 + true + + + 2065 + 368 + 3 + 12 + Max Heat + 15 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1514 + Maximum heat allowed in storage + 400020000 + true + + + 2066 + 368 + 3 + 13 + Min Heat + 15 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1515 + Minimum heat allowed in storage + 400020000 + true + + + 2067 + 368 + 3 + 14 + Heat Loss + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1516 + Rate at which heat is lost from storage + 400020000 + true + + + 2068 + 368 + 3 + 15 + Heat Injection Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2222 + Efficiency of heat injection + 400020000 + true + + + 2069 + 368 + 3 + 16 + Heat Withdrawal Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2223 + Efficiency of heat withdrawal + 400020000 + true + + + 2070 + 368 + 3 + 17 + Heat Injection Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1519 + Incremental cost of injecting heat into the storage + 400020000 + true + + + 2071 + 368 + 3 + 18 + Heat Withdrawal Charge + 61 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1518 + Incremental cost of withdrawing heat from the storage + 400020000 + true + + + 2072 + 368 + 3 + 19 + Initial Heat + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2212 + Initial heat in the storage + 400020000 + true + + + 2073 + 368 + 3 + 20 + Dump Heat Penalty + 60 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2224 + Penalty applied to dump heat from the storage. A value of -1 means dump is not allowed. + 400020000 + true + + + 2074 + 368 + 9 + 21 + Max Heat Injection + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1525 + Maximum amount of heat that can be injected into the storage + 400020000 + true + + + 2075 + 368 + 9 + 21 + Max Heat Injection Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1554 + Maximum amount of heat that can be injected into the storage in a hour + 400020000 + true + + + 2076 + 368 + 9 + 21 + Max Heat Injection Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1526 + Maximum amount of heat that can be injected into the storage in a day + 400020000 + true + + + 2077 + 368 + 9 + 21 + Max Heat Injection Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1527 + Maximum amount of heat that can be injected into the storage in a week + 400020000 + true + + + 2078 + 368 + 9 + 21 + Max Heat Injection Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1528 + Maximum amount of heat that can be injected into the storage in a month + 400020000 + true + + + 2079 + 368 + 9 + 21 + Max Heat Injection Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1529 + Maximum amount of heat that can be injected into the storage in a year + 400020000 + true + + + 2080 + 368 + 9 + 22 + Min Heat Injection + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1535 + Amount of heat that must be injected into the storage + 400020000 + true + + + 2081 + 368 + 9 + 22 + Min Heat Injection Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1556 + Amount of heat that must be injected into the storage each hour + 400020000 + true + + + 2082 + 368 + 9 + 22 + Min Heat Injection Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1536 + Amount of heat that must be injected into the storage each day + 400020000 + true + + + 2083 + 368 + 9 + 22 + Min Heat Injection Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1537 + Amount of heat that must be injected into the storage each week + 400020000 + true + + + 2084 + 368 + 9 + 22 + Min Heat Injection Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1538 + Amount of heat that must be injected into the storage each month + 400020000 + true + + + 2085 + 368 + 9 + 22 + Min Heat Injection Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1539 + Amount of heat that must be injected into the storage each year + 400020000 + true + + + 2086 + 368 + 9 + 23 + Max Heat Withdrawal + 15 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1520 + Maximum amount of heat that can be withdrawn from the storage + 400020000 + true + + + 2087 + 368 + 9 + 23 + Max Heat Withdrawal Hour + 17 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1553 + Maximum amount of heat that can be withdrawn from the storage in a hour + 400020000 + true + + + 2088 + 368 + 9 + 23 + Max Heat Withdrawal Day + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1521 + Maximum amount of heat that can be withdrawn from the storage in a day + 400020000 + true + + + 2089 + 368 + 9 + 23 + Max Heat Withdrawal Week + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1522 + Maximum amount of heat that can be withdrawn from the storage in a week + 400020000 + true + + + 2090 + 368 + 9 + 23 + Max Heat Withdrawal Month + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1523 + Maximum amount of heat that can be withdrawn from the storage in a month + 400020000 + true + + + 2091 + 368 + 9 + 23 + Max Heat Withdrawal Year + 16 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1524 + Maximum amount of heat that can be withdrawn from the storage in a year + 400020000 + true + + + 2092 + 368 + 9 + 24 + Min Heat Withdrawal + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1530 + Amount of heat that must be withdrawn from storage + 400020000 + true + + + 2093 + 368 + 9 + 24 + Min Heat Withdrawal Hour + 17 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1555 + Amount of heat that must be withdrawn from storage each hour + 400020000 + true + + + 2094 + 368 + 9 + 24 + Min Heat Withdrawal Day + 16 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1531 + Amount of heat that must be withdrawn from storage each day + 400020000 + true + + + 2095 + 368 + 9 + 24 + Min Heat Withdrawal Week + 16 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1532 + Amount of heat that must be withdrawn from storage each week + 400020000 + true + + + 2096 + 368 + 9 + 24 + Min Heat Withdrawal Month + 16 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1533 + Amount of heat that must be withdrawn from storage each month + 400020000 + true + + + 2097 + 368 + 9 + 24 + Min Heat Withdrawal Year + 16 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1534 + Amount of heat that must be withdrawn from storage each year + 400020000 + true + + + 2098 + 368 + 9 + 25 + Target + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Storage target per interval + 80 + true + + + 2099 + 368 + 9 + 25 + Target Hour + 15 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + End of hour storage target + 80 + true + + + 2100 + 368 + 9 + 25 + Target Day + 15 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + End of day storage target + 80 + true + + + 2101 + 368 + 9 + 25 + Target Week + 15 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 2102 + 368 + 9 + 25 + Target Month + 15 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + End of month storage target + 80 + true + + + 2103 + 368 + 9 + 25 + Target Year + 15 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + End of year storage target + 80 + true + + + 2104 + 368 + 9 + 26 + Target Penalty + 60 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target + 80 + true + + + 2105 + 368 + 8 + 27 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2106 + 368 + 8 + 28 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of heat storage project, for expansion planning. + 8 + true + + + 2107 + 368 + 8 + 29 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the heat storage + 8 + true + + + 2108 + 368 + 8 + 30 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the heat storage + 8009 + true + + + 2109 + 368 + 8 + 31 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2110 + 368 + 8 + 32 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the heat storage (period over which fixed costs are recovered). + 8 + true + + + 2111 + 368 + 8 + 33 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2030 + Indicates if the heat storage is eligible for retirement planning + 8 + true + + + 2112 + 368 + 8 + 34 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the heat storage + 88 + true + + + 2113 + 368 + 8 + 35 + Max Units Built + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 2114 + 368 + 8 + 36 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2115 + 368 + 8 + 37 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2116 + 368 + 8 + 38 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2117 + 368 + 8 + 39 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2118 + 368 + 8 + 40 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2119 + 368 + 8 + 41 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2120 + 368 + 8 + 42 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2121 + 368 + 11 + 43 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 2122 + 368 + 11 + 44 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 2123 + 372 + 3 + 1 + End Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2214 + Coefficient of storage end heat. + true + + + 2124 + 372 + 3 + 2 + Injection Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of heat storage injection + true + + + 2125 + 372 + 3 + 3 + Withdrawal Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of heat storage withdrawal + true + + + 2126 + 372 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2127 + 372 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2128 + 372 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2129 + 372 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2130 + 373 + 3 + 1 + End Heat Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2214 + Coefficient of storage end heat + true + + + 2131 + 373 + 3 + 2 + Injection Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of heat storage injection + true + + + 2132 + 373 + 3 + 3 + Withdrawal Coefficient + 15 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of heat storage withdrawal + true + + + 2133 + 373 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2134 + 373 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2135 + 373 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2136 + 373 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2137 + 374 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 2138 + 374 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 2139 + 374 + 2 + 3 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 2140 + 374 + 2 + 4 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 2141 + 374 + 2 + 5 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 2142 + 374 + 2 + 6 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 2143 + 374 + 2 + 7 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 2144 + 374 + 2 + 8 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 2145 + 374 + 2 + 9 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 2146 + 374 + 2 + 10 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 2147 + 374 + 2 + 11 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 2148 + 374 + 2 + 12 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 2149 + 374 + 2 + 13 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2150 + 374 + 2 + 14 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2151 + 374 + 2 + 15 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2152 + 374 + 2 + 16 + Use Additive Ratchet + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2210 + If additive ratchet use is enforced. + 80 + true + + + 2153 + 374 + 2 + 17 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2154 + 374 + 3 + 18 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Field is in service + 800000 + true + + + 2155 + 374 + 3 + 19 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of gas in the field + 80001 + true + + + 2156 + 374 + 3 + 20 + Production Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1274 + Incremental cost of extracting gas from the field + 2000000000 + true + + + 2157 + 374 + 3 + 21 + Dispatch Production Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2142 + Incremental dispatch cost of extracting gas from the field + 2000000000 + true + + + 2158 + 374 + 3 + 22 + Production Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1743 + Volume of gas in Production Cost band + 2000000000 + true + + + 2159 + 374 + 3 + 23 + Production Tranches + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2521 + Number of production tranches to generate (must be > 1 to auto-generate) + 400000 + true + + + 2160 + 374 + 3 + 24 + Reset Production Volumes + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2236 + If the production volumes should be reset in the current period. + 80 + true + + + 2161 + 374 + 3 + 25 + Withdrawal Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1937 + Maximum amount of gas that can be withdrawn from the field in any interval when defining a gas field ratchet. + true + + + 2162 + 374 + 3 + 26 + Withdrawal Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1744 + Maximum amount of gas that can be withdrawn from the field. + true + + + 2163 + 374 + 3 + 27 + Withdrawal Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1977 + Gas withdrawal factor for gas field. + true + + + 2164 + 374 + 3 + 28 + External Injection + 100 + 0 + 1 + 0 + 2 + 0 + false + false + false + false + 1 + 1460 + External injection into the gas field + true + + + 2165 + 374 + 3 + 29 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2166 + 374 + 3 + 30 + Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1968 + Carrying rate for gas field per year + true + + + 2167 + 374 + 3 + 31 + Initial Inventory Price + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2074 + Price linked to initial inventory + true + + + 2168 + 374 + 3 + 32 + Inventory Charge + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Charge per unit of inventory each day + true + + + 2169 + 374 + 3 + 33 + Ratchet Type + 0 + 0 + In (0,1,2) + 2;"Linear Convex";1;"Linear";0;"Step" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2037 + Indicates how the gas field ratchets are represented + true + + + 2170 + 374 + 3 + 34 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Field + 100 + true + + + 2171 + 374 + 9 + 35 + Max Ramp + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in gas field + 80 + true + + + 2172 + 374 + 9 + 35 + Max Ramp Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum rate of change in gas field in a hour + 80 + true + + + 2173 + 374 + 9 + 35 + Max Ramp Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum rate of change in gas field in a day + 80 + true + + + 2174 + 374 + 9 + 35 + Max Ramp Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum rate of change in gas field in a week + 80 + true + + + 2175 + 374 + 9 + 35 + Max Ramp Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum rate of change in gas field in a month + 80 + true + + + 2176 + 374 + 9 + 35 + Max Ramp Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum rate of change in gas field in a year + 80 + true + + + 2177 + 374 + 9 + 36 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas from the field + 80 + true + + + 2178 + 374 + 9 + 36 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum hourly production of gas from the field + 80 + true + + + 2179 + 374 + 9 + 36 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 950 + Maximum production of gas from the field in any day + 80 + true + + + 2180 + 374 + 9 + 36 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production of gas from the field in any week + 80 + true + + + 2181 + 374 + 9 + 36 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production of gas from the field in any month + 80 + true + + + 2182 + 374 + 9 + 36 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production of gas from the field in any year + 80 + true + + + 2183 + 374 + 9 + 37 + Min Production + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas from the field + 80 + true + + + 2184 + 374 + 9 + 37 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum hourly production of gas from the field + 80 + true + + + 2185 + 374 + 9 + 37 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas from the field + 80 + true + + + 2186 + 374 + 9 + 37 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas from the field + 80 + true + + + 2187 + 374 + 9 + 37 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas from the field + 80 + true + + + 2188 + 374 + 9 + 37 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas from the field + 80 + true + + + 2189 + 374 + 9 + 38 + Target + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Gas Field Target + 80 + true + + + 2190 + 374 + 9 + 38 + Target Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + End of hour gas field target + 80 + true + + + 2191 + 374 + 9 + 38 + Target Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + End of day gas field target + 80 + true + + + 2192 + 374 + 9 + 38 + Target Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + End of week gas field target + 80 + true + + + 2193 + 374 + 9 + 38 + Target Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + End of month gas field target + 80 + true + + + 2194 + 374 + 9 + 38 + Target Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + End of year gas field target + 80 + true + + + 2195 + 374 + 9 + 39 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1187 + Penalty for violating the target + 80 + true + + + 2196 + 374 + 9 + 40 + Min Production Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2428 + Min Production Target Percent for gas fields + 80 + true + + + 2197 + 374 + 9 + 41 + Max Production Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2429 + Max Production Target Percent for gas fields + 80 + true + + + 2198 + 374 + 7 + 42 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2199 + 374 + 7 + 43 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2200 + 374 + 7 + 44 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2201 + 374 + 7 + 45 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Field Max Production during the outage + 1000000 + true + + + 2202 + 374 + 7 + 46 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2203 + 374 + 7 + 47 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2204 + 374 + 7 + 48 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2205 + 374 + 7 + 49 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2206 + 374 + 7 + 50 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2207 + 374 + 8 + 51 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 2208 + 374 + 8 + 52 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2209 + 374 + 8 + 53 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas field project, for expansion planning. + 8 + true + + + 2210 + 374 + 8 + 54 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas field + 8 + true + + + 2211 + 374 + 8 + 55 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of developing the gas field + 8009 + true + + + 2212 + 374 + 8 + 56 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2213 + 374 + 8 + 57 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas field (period over which fixed costs are recovered). + 8 + true + + + 2214 + 374 + 8 + 58 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 2215 + 374 + 8 + 59 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2216 + 374 + 8 + 60 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Field production + 8009 + false + + + 2217 + 374 + 12 + 61 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2218 + 374 + 12 + 62 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2219 + 374 + 12 + 63 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2220 + 377 + 1 + 1 + Min Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Field in the blend + 100 + true + + + 2221 + 377 + 1 + 2 + Max Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Field in the blend + 100 + true + + + 2222 + 377 + 1 + 3 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of gas field contributing to a gas node + true + + + 2223 + 378 + 1 + 1 + Participation Factor + 0 + 1 + Between -1 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of gas field contributing to a gas basin + true + + + 2224 + 379 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of gas field + true + + + 2225 + 380 + 1 + 1 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 2226 + 381 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas field end volume + true + + + 2227 + 381 + 3 + 2 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas field production in the constraint + true + + + 2228 + 381 + 3 + 3 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas field end volume in the constraint + true + + + 2229 + 381 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2230 + 381 + 8 + 5 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2231 + 382 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas field end volume + true + + + 2232 + 382 + 3 + 2 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas field production + true + + + 2233 + 382 + 3 + 3 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas field end volume + true + + + 2234 + 382 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2235 + 382 + 8 + 5 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2236 + 383 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Plant for the generation of outages + 101000000 + true + + + 2237 + 383 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2238 + 383 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2239 + 383 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2240 + 383 + 2 + 5 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2241 + 383 + 2 + 6 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this gas plant receives capacity payments. + 8 + false + + + 2242 + 383 + 9 + 7 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas + 80 + true + + + 2243 + 383 + 9 + 7 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum hourly production of gas + 80 + true + + + 2244 + 383 + 9 + 7 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 950 + Maximum daily production of gas + 80 + true + + + 2245 + 383 + 9 + 7 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum weekly production of gas + 80 + true + + + 2246 + 383 + 9 + 7 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum monthly production of gas + 80 + true + + + 2247 + 383 + 9 + 7 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum annual production of gas + 80 + true + + + 2248 + 383 + 9 + 8 + Min Production + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas + 80 + true + + + 2249 + 383 + 9 + 8 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum hourly production of gas + 80 + true + + + 2250 + 383 + 9 + 8 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas + 80 + true + + + 2251 + 383 + 9 + 8 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas + 80 + true + + + 2252 + 383 + 9 + 8 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas + 80 + true + + + 2253 + 383 + 9 + 8 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas + 80 + true + + + 2254 + 383 + 3 + 9 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of Gas Plant units in service + 800000 + true + + + 2255 + 383 + 3 + 10 + Rating + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 665 + Rated capacity of units + 81 + false + + + 2256 + 383 + 3 + 11 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + false + + + 2257 + 383 + 3 + 12 + Load Point + 15 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate. + 1000 + false + + + 2258 + 383 + 3 + 13 + Heat Rate + 37 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 260 + Average heat rate (total fuel divided by total generation) + 1001 + false + + + 2259 + 383 + 3 + 14 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + false + + + 2260 + 383 + 3 + 15 + Heat Rate Incr + 72 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 263 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + false + + + 2261 + 383 + 3 + 16 + Processing Rate + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1737 + Processing ratio to convert raw natural gas to pipeline quality + true + + + 2262 + 383 + 3 + 17 + Processing Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1738 + Incremental cost of processing gas + true + + + 2263 + 383 + 3 + 18 + Dispatch Processing Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2380 + This replaces the processing charge for the optimization, but on the output side the Processing Charge is used in the cost calculations. + true + + + 2264 + 383 + 3 + 19 + Consumption + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1437 + The amount of pipeline quality gas consumed in processing + true + + + 2265 + 383 + 3 + 20 + Energy Usage + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption of Gas Plant + true + + + 2266 + 383 + 3 + 21 + Retail Electric Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2515 + Retail price of electric power used by the gas plant + true + + + 2267 + 383 + 3 + 22 + VO&M Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000000 + true + + + 2268 + 383 + 3 + 23 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2269 + 383 + 3 + 24 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Plant + 100 + true + + + 2270 + 383 + 7 + 25 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2271 + 383 + 7 + 26 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + false + + + 2272 + 383 + 7 + 27 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2273 + 383 + 7 + 28 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2274 + 383 + 7 + 29 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Plant Max Production during the outage + 1000000 + true + + + 2275 + 383 + 7 + 30 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2276 + 383 + 7 + 31 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2277 + 383 + 7 + 32 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2278 + 383 + 7 + 33 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2279 + 383 + 7 + 34 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2280 + 383 + 8 + 35 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2281 + 383 + 8 + 36 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2282 + 383 + 8 + 37 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2283 + 383 + 8 + 38 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Gas Plant + 8 + true + + + 2284 + 383 + 8 + 39 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the Gas Plant + 8009 + true + + + 2285 + 383 + 8 + 40 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2286 + 383 + 8 + 41 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Gas Plant (period over which fixed costs are recovered). + 8 + true + + + 2287 + 383 + 8 + 42 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2288 + 383 + 8 + 43 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2289 + 383 + 8 + 44 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2290 + 383 + 8 + 45 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2291 + 383 + 8 + 46 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the Gas Plant + 88 + true + + + 2292 + 383 + 8 + 47 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2293 + 383 + 8 + 48 + Max Units Retired in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2294 + 383 + 8 + 49 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2295 + 383 + 8 + 50 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2296 + 383 + 8 + 51 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Plant production + 8009 + false + + + 2297 + 383 + 8 + 52 + Capacity Price + 31 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the plant for capacity + 4000008 + false + + + 2298 + 383 + 11 + 53 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2299 + 383 + 11 + 54 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2300 + 383 + 12 + 55 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2301 + 383 + 12 + 56 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2302 + 383 + 12 + 57 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2303 + 388 + 1 + 1 + Min Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Plant in the blend + 100 + true + + + 2304 + 388 + 1 + 2 + Max Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Plant in the blend + 100 + true + + + 2305 + 389 + 1 + 1 + Outage Max Production + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 2306 + 390 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas node production + true + + + 2307 + 390 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Gas Plant capacity factor + true + + + 2308 + 390 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + false + + + 2309 + 390 + 3 + 4 + Energy Usage Coefficient + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Gas Plant + true + + + 2310 + 390 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + false + + + 2311 + 390 + 6 + 6 + Installed Capacity Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 2312 + 390 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2313 + 390 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2314 + 390 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2315 + 390 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2316 + 390 + 8 + 11 + Capacity Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 2317 + 390 + 8 + 12 + Capacity Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 2318 + 390 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2319 + 390 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 2320 + 390 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 2321 + 391 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas node production + true + + + 2322 + 391 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Gas Plant capacity factor + true + + + 2323 + 391 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + true + + + 2324 + 391 + 3 + 4 + Energy Usage Coefficient + 101 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Gas Plant + true + + + 2325 + 391 + 6 + 5 + Installed Capacity Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 2326 + 391 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2327 + 391 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2328 + 391 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2329 + 391 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2330 + 391 + 8 + 10 + Capacity Built Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 2331 + 391 + 8 + 11 + Capacity Retired Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 2332 + 391 + 8 + 12 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2333 + 391 + 8 + 13 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 2334 + 391 + 8 + 14 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 2335 + 392 + 1 + 1 + Energy Usage Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1886 + Coefficient of the Decision Variable in the Gas Plant Energy Usage definition equation + true + + + 2336 + 393 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 2337 + 393 + 2 + 2 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 2338 + 393 + 2 + 3 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 2339 + 393 + 2 + 4 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 2340 + 393 + 2 + 5 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 2341 + 393 + 2 + 6 + Decomposition Method + 0 + 0 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 2342 + 393 + 2 + 7 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 2343 + 393 + 2 + 8 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 2344 + 393 + 2 + 9 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 2345 + 393 + 2 + 10 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 2346 + 393 + 2 + 11 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 2347 + 393 + 2 + 12 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 2348 + 393 + 2 + 13 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2349 + 393 + 2 + 14 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2350 + 393 + 2 + 15 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2351 + 393 + 2 + 16 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2352 + 393 + 3 + 17 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Pipeline is in service + false + + + 2353 + 393 + 3 + 18 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Pipeline is available for flow. + true + + + 2354 + 393 + 3 + 19 + Max Daily Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2031 + Max daily total gas release for the pipeline + false + + + 2355 + 393 + 3 + 20 + Max Daily Flow Back + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2702 + Max daily total gas release back for the pipeline + false + + + 2356 + 393 + 3 + 21 + Is Bidirectional + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2033 + Indicates if the pipeline allows flow in both directions + 800000 + true + + + 2357 + 393 + 3 + 22 + Diameter + 23 + 0.762 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1796 + Gas pipeline diameter + false + + + 2358 + 393 + 3 + 23 + Roughness + 0 + 150 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1797 + Gas pipeline roughness constant + false + + + 2359 + 393 + 3 + 24 + Length + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1798 + Length of the Gas Pipeline + false + + + 2360 + 393 + 3 + 25 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 639 + Efficiency of Gas Pipeline pump + false + + + 2361 + 393 + 3 + 26 + Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1268 + Incremental cost of extracting gas from the pipeline + 2000000000 + true + + + 2362 + 393 + 3 + 27 + Dispatch Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2349 + Dispatch cost of extracting gas at the pipeline receiving node + 2000000000 + true + + + 2363 + 393 + 3 + 28 + Flow Charge Level + 100 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2376 + Level corresponding to Flow Charge + 2000000000 + true + + + 2364 + 393 + 3 + 29 + Flow Charge Back + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1639 + Incremental cost of extracting gas at the pipeline sending node + 2000000000 + true + + + 2365 + 393 + 3 + 30 + Dispatch Flow Charge Back + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2350 + Dispatch cost of extracting gas at the pipeline sending node + 2000000000 + true + + + 2366 + 393 + 3 + 31 + Flow Charge Back Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2377 + Level corresponding to Flow Charge Back + 2000000000 + true + + + 2367 + 393 + 3 + 32 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Volume of gas stored in the pipeline at the beginning of the horizon + 80000 + true + + + 2368 + 393 + 3 + 33 + Max Volume + 100 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 466 + Maximum volume of gas stored in the pipeline + 4 + true + + + 2369 + 393 + 3 + 34 + Min Volume + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 510 + Minimum volume of gas stored in the pipeline + 4 + true + + + 2370 + 393 + 3 + 35 + Imbalance Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1655 + The charge applicable to the volume imbalance + 2000000000 + true + + + 2371 + 393 + 3 + 36 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2372 + 393 + 3 + 37 + Consumption Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1814 + Proportion of the electricity consumption allocated to the receiving gas node + false + + + 2373 + 393 + 3 + 38 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1602 + Reservation charge for gas pipeline + true + + + 2374 + 393 + 3 + 39 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1965 + Reservation volume for gas pipeline + true + + + 2375 + 393 + 3 + 40 + Loss Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Loss rate for gas pipeline flow + 200000 + true + + + 2376 + 393 + 3 + 41 + Initial Pressure + 89 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2421 + Pressure of gas stored in the pipeline at the beginning of the horizon + 80000 + true + + + 2377 + 393 + 3 + 42 + Min Volume Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2422 + Minimum percentage of max volume that must be stored in the Gas Pipeline to maintain pressure + true + + + 2378 + 393 + 3 + 43 + Min Pressure Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2423 + Minimum percentage of max pressure that must be stored in the Gas Pipeline to maintain pressure + true + + + 2379 + 393 + 3 + 44 + Max Pressure + 89 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2424 + Maximum pressure of gas stored in the pipeline + true + + + 2380 + 393 + 3 + 45 + Entitlement Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2503 + Indicates whether maximum flow entitlement is at the input node (gross) or at the output node (net). + true + + + 2381 + 393 + 3 + 46 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the gas pipeline energy consumption curve. + false + + + 2382 + 393 + 3 + 47 + Energy Consumed Flow Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2122 + Flow level defining the gas pipeline energy consumption curve. + false + + + 2383 + 393 + 9 + 48 + Max Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 429 + Maximum quantity of gas that can be extracted from the pipeline + 5 + true + + + 2384 + 393 + 9 + 48 + Max Flow Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1584 + Maximum quantity of gas that can be extracted from the pipeline each hour + 4 + true + + + 2385 + 393 + 9 + 48 + Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum quantity of gas that can be extracted from the pipeline each day + 4 + true + + + 2386 + 393 + 9 + 48 + Max Flow Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1586 + Maximum quantity of gas that can be extracted from the pipeline each week + 4 + true + + + 2387 + 393 + 9 + 48 + Max Flow Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1587 + Maximum quantity of gas that can be extracted from the pipeline each month + 4 + true + + + 2388 + 393 + 9 + 48 + Max Flow Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1588 + Maximum quantity of gas that can be extracted from the pipeline each year + 4 + true + + + 2389 + 393 + 9 + 49 + Min Flow + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 481 + Minimum quantity of gas that can be extracted at the pipeline receiving node + 5 + true + + + 2390 + 393 + 9 + 49 + Min Flow Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2355 + Minimum quantity of gas that can be extracted at the pipeline receiving node each hour + 4 + true + + + 2391 + 393 + 9 + 49 + Min Flow Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum quantity of gas that can be extracted at the pipeline receiving node each day + 4 + true + + + 2392 + 393 + 9 + 49 + Min Flow Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2357 + Minimum quantity of gas that can be extracted at the pipeline receiving node each week + 4 + true + + + 2393 + 393 + 9 + 49 + Min Flow Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2358 + Minimum quantity of gas that can be extracted at the pipeline receiving node each month + 4 + true + + + 2394 + 393 + 9 + 49 + Min Flow Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2359 + Minimum quantity of gas that can be extracted at the pipeline receiving node each year + 4 + true + + + 2395 + 393 + 9 + 50 + Max Flow Back + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1633 + Maximum quantity of gas that can be extracted from the pipeline sending node + 4 + true + + + 2396 + 393 + 9 + 50 + Max Flow Back Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1634 + Maximum quantity of gas that can be extracted at the pipeline sending node each hour + 4 + true + + + 2397 + 393 + 9 + 50 + Max Flow Back Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1635 + Maximum quantity of gas that can be extracted at the pipeline sending node each day + 4 + true + + + 2398 + 393 + 9 + 50 + Max Flow Back Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1636 + Maximum quantity of gas that can be extracted at the pipeline sending node each week + 4 + true + + + 2399 + 393 + 9 + 50 + Max Flow Back Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1637 + Maximum quantity of gas that can be extracted at the pipeline sending node each month + 4 + true + + + 2400 + 393 + 9 + 50 + Max Flow Back Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1638 + Minimum quantity of gas that can be extracted at the pipeline sending node each year + 4 + true + + + 2401 + 393 + 9 + 51 + Min Flow Back + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2360 + Minimum quantity of gas that can be extracted from the pipeline sending node + 4 + true + + + 2402 + 393 + 9 + 51 + Min Flow Back Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2361 + Minimum quantity of gas that can be extracted at the pipeline sending node each hour + 4 + true + + + 2403 + 393 + 9 + 51 + Min Flow Back Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2362 + Minimum quantity of gas that can be extracted at the pipeline sending node each day + 4 + true + + + 2404 + 393 + 9 + 51 + Min Flow Back Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2363 + Minimum quantity of gas that can be extracted at the pipeline sending node each week + 4 + true + + + 2405 + 393 + 9 + 51 + Min Flow Back Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2364 + Minimum quantity of gas that can be extracted at the pipeline sending node each month + 4 + true + + + 2406 + 393 + 9 + 51 + Min Flow Back Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2365 + Minimum quantity of gas that can be extracted at the pipeline sending node each year + 4 + true + + + 2407 + 393 + 9 + 52 + Max Flow Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1164 + Penalty for violating the [Max Flow] constraints. + 80 + true + + + 2408 + 393 + 9 + 53 + Min Flow Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 286 + Penalty for violating the [Min Flow] constraints. + 80 + true + + + 2409 + 393 + 9 + 54 + Max Flow Back Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2661 + Penalty for violating the [Max Flow Back] constraints. + 80 + true + + + 2410 + 393 + 9 + 55 + Min Flow Back Penalty + 88 + -1 + >=-1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2660 + Penalty for violating the [Min Flow Back] constraints. + 80 + true + + + 2411 + 393 + 7 + 56 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2412 + 393 + 7 + 57 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2413 + 393 + 7 + 58 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2414 + 393 + 7 + 59 + Outage Max Flow + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1640 + Pipeline Max Flow during the outage + 1000000 + true + + + 2415 + 393 + 7 + 60 + Outage Max Flow Back + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1641 + Pipeline Max Flow Back during the outage + 1000000 + true + + + 2416 + 393 + 7 + 61 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2417 + 393 + 7 + 62 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2418 + 393 + 7 + 63 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2419 + 393 + 7 + 64 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2420 + 393 + 7 + 65 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2421 + 393 + 8 + 66 + Expansion Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2034 + Indicates if the gas pipeline is eligible for expansion planning + 8 + true + + + 2422 + 393 + 8 + 67 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2423 + 393 + 8 + 68 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas pipeline project, for expansion planning. + 8 + true + + + 2424 + 393 + 8 + 69 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas pipeline + 8 + true + + + 2425 + 393 + 8 + 70 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the gas pipeline + 8009 + true + + + 2426 + 393 + 8 + 71 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2427 + 393 + 8 + 72 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas pipeline (period over which fixed costs are recovered). + 8 + true + + + 2428 + 393 + 8 + 73 + Retirement Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2035 + Indicates if the gas pipeline is eligible for retirement planning + 88 + true + + + 2429 + 393 + 8 + 74 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas pipeline + 88 + true + + + 2430 + 393 + 8 + 75 + Expansion Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2032 + Expansion Max Flow Daily total gas release for the pipeline + 8 + true + + + 2431 + 393 + 8 + 76 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 2432 + 393 + 8 + 77 + Annual Expansion Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2667 + Annual Expansion Max Flow Daily total gas release for the pipeline + 8 + true + + + 2433 + 393 + 8 + 78 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2434 + 393 + 8 + 79 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost by Gas Pipeline operation + 8009 + false + + + 2435 + 393 + 12 + 80 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2436 + 393 + 12 + 81 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2437 + 393 + 12 + 82 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2438 + 398 + 1 + 1 + Outage Max Flow + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1640 + Pipeline Max Flow during the outage + 4 + true + + + 2439 + 398 + 1 + 2 + Outage Max Flow Back + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1641 + Pipeline Max Flow Back during the outage + 4 + true + + + 2440 + 399 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas in storage. + true + + + 2441 + 399 + 3 + 2 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas pipeline flow in the constraint + true + + + 2442 + 399 + 3 + 3 + Flow Forward Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of gas pipeline flow at the receiving node + true + + + 2443 + 399 + 3 + 4 + Flow Back Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of gas pipeline flow at the sending node + true + + + 2444 + 399 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2445 + 399 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2446 + 399 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2447 + 399 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2448 + 400 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of gas in storage + true + + + 2449 + 400 + 3 + 2 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas pipeline flow + true + + + 2450 + 400 + 3 + 3 + Flow Forward Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of gas pipeline flow at the receiving node + true + + + 2451 + 400 + 3 + 4 + Flow Back Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of gas pipeline flow at the sending node + true + + + 2452 + 400 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2453 + 400 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2454 + 400 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2455 + 400 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2456 + 401 + 1 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient on gas pipeline flow + true + + + 2457 + 402 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2458 + 402 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2459 + 402 + 2 + 3 + Report Marginal Resources + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2623 + If marginal resources are reported for the gas node in the solution + true + + + 2460 + 402 + 3 + 4 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Node is in service + 800000 + true + + + 2461 + 402 + 3 + 5 + Flow Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1268 + Incremental cost of flowing gas through the node + 2000000000 + true + + + 2462 + 402 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2463 + 402 + 9 + 7 + Max Flow + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 429 + Maximum flow through the gas node + 5 + true + + + 2464 + 402 + 9 + 7 + Max Flow Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1584 + Maximum flow through the gas node each hour + 80 + true + + + 2465 + 402 + 9 + 7 + Max Flow Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow through the gas node each day + 80 + true + + + 2466 + 402 + 9 + 7 + Max Flow Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1586 + Maximum flow through the gas node each week + 80 + true + + + 2467 + 402 + 9 + 7 + Max Flow Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1587 + Maximum flow through the gas node each month + 80 + true + + + 2468 + 402 + 9 + 7 + Max Flow Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1588 + Maximum flow through the gas node each year + 80 + true + + + 2469 + 402 + 3 + 8 + Gas Security + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1811 + Proportion of local Gas Demand that must be covered by Gas Storage at the Gas Node + false + + + 2470 + 402 + 9 + 9 + Min Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2394 + Minimum heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2471 + 402 + 9 + 9 + Min Heat Value Hour + 0 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2395 + Minimum hourly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2472 + 402 + 9 + 9 + Min Heat Value Day + 0 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2396 + Minimum daily heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2473 + 402 + 9 + 9 + Min Heat Value Week + 0 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2397 + Minimum weekly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2474 + 402 + 9 + 9 + Min Heat Value Month + 0 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2398 + Minimum monthly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2475 + 402 + 9 + 9 + Min Heat Value Year + 0 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2399 + Minimum annual heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2476 + 402 + 9 + 10 + Max Heat Value + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2400 + Maximum heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2477 + 402 + 9 + 10 + Max Heat Value Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2401 + Maximum hourly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2478 + 402 + 9 + 10 + Max Heat Value Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2402 + Maximum daily heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2479 + 402 + 9 + 10 + Max Heat Value Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2403 + Maximum weekly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2480 + 402 + 9 + 10 + Max Heat Value Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2404 + Maximum monthly heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2481 + 402 + 9 + 10 + Max Heat Value Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2405 + Maximum annual heat value obtained from all the gas sources connected to the gas node + 80 + true + + + 2482 + 402 + 9 + 11 + Max Terminal Limit + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2757 + Maximum number of Gas Transports delivering to a Gas Node. + 80 + true + + + 2483 + 402 + 8 + 12 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 2484 + 402 + 8 + 13 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2485 + 402 + 8 + 14 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas node project, for expansion planning. + 8 + true + + + 2486 + 402 + 8 + 15 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas node + 8 + true + + + 2487 + 402 + 8 + 16 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of building the gas node + 8009 + true + + + 2488 + 402 + 8 + 17 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2489 + 402 + 8 + 18 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas node (period over which fixed costs are recovered). + 8 + true + + + 2490 + 402 + 8 + 19 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2491 + 402 + 8 + 20 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 2492 + 402 + 8 + 21 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2493 + 402 + 8 + 22 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2494 + 402 + 8 + 23 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas node + 88 + true + + + 2495 + 402 + 8 + 24 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2496 + 402 + 8 + 25 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2497 + 402 + 8 + 26 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2498 + 402 + 12 + 27 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2499 + 402 + 12 + 28 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2500 + 402 + 12 + 29 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2501 + 407 + 1 + 1 + Sequence + 0 + 0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 2709 + Sequence number of the Gas node in the Gas path + true + + + 2502 + 407 + 1 + 2 + Voyage Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + true + true + true + false + 1 + 1841 + Time taken for the voyage from one Gas Node on the Gas path to the next Gas Node + true + + + 2503 + 408 + 1 + 1 + Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of Facility Gas Usage occurring at the Gas Node + true + + + 2504 + 410 + 3 + 1 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas Node flow in the constraint + true + + + 2505 + 410 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2506 + 410 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2507 + 410 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2508 + 410 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2509 + 410 + 3 + 6 + Heat Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2413 + Coefficient of gas node heat value + true + + + 2510 + 411 + 3 + 1 + Flow Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of gas node flow + true + + + 2511 + 411 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2512 + 411 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2513 + 411 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2514 + 411 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2515 + 412 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of storage balance + true + + + 2516 + 412 + 2 + 2 + Internal Volume Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1021 + Storage volume scaling factor used internal to the mathematical program. + 2000000 + true + + + 2517 + 412 + 2 + 3 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period gas volumes. + 4000 + true + + + 2518 + 412 + 2 + 4 + Recycle Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1360 + Penalty for violating the recycling constraint. + 4000 + true + + + 2519 + 412 + 2 + 5 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 2520 + 412 + 2 + 6 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition storage target penalty function 'a' term. + 200 + true + + + 2521 + 412 + 2 + 7 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition storage target penalty function 'b' term. + 200 + true + + + 2522 + 412 + 2 + 8 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition storage target penalty function 'c' term. + 200 + true + + + 2523 + 412 + 2 + 9 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition storage target penalty function 'x' term. + 200 + true + + + 2524 + 412 + 2 + 10 + Decomposition Bound Penalty + 88 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of storage bounds when the decomposition implies possible violations. + 200 + true + + + 2525 + 412 + 2 + 11 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 2526 + 412 + 2 + 12 + Initial Value Inclusion + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2271 + If initial value in the gas storage is included in optimization. + 80 + true + + + 2527 + 412 + 2 + 13 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the Storage for the generation of outages + 101000000 + true + + + 2528 + 412 + 2 + 14 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2529 + 412 + 2 + 15 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2530 + 412 + 2 + 16 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2531 + 412 + 2 + 17 + Use Additive Ratchet + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2210 + If additive ratchet use is enforced. + 80 + true + + + 2532 + 412 + 2 + 18 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2533 + 412 + 3 + 19 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Gas Storage is in service + false + + + 2534 + 412 + 3 + 20 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Storage is available + true + + + 2535 + 412 + 3 + 21 + Max Volume + 100 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 466 + Maximum volume of gas allowed in storage + 5 + true + + + 2536 + 412 + 3 + 22 + Min Volume + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 510 + Minimum volume of gas allowed in storage + 4 + true + + + 2537 + 412 + 3 + 23 + Initial Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of gas in the storage + 80001 + true + + + 2538 + 412 + 3 + 24 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1246 + Incremental cost of withdrawing gas from the storage + 2000000000 + true + + + 2539 + 412 + 3 + 25 + Dispatch Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2381 + Incremental dispatch cost of withdrawing gas from the storage + 2000000000 + true + + + 2540 + 412 + 3 + 26 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1252 + Incremental cost of injecting gas into the storage + 2000000000 + true + + + 2541 + 412 + 3 + 27 + Dispatch Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2695 + Incremental dispatch cost of injecting gas into the storage + 2000000000 + true + + + 2542 + 412 + 3 + 28 + Injection Withdrawal Charge Level + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2744 + Percentage of volume that correspond to bands of Injection Withdrawal Charge or Dispatch Injection Withdrawal Charge + true + + + 2543 + 412 + 3 + 29 + Injection Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1936 + Maximum amount of gas that can be injected into the storage in any interval when defining a gas storage ratchet. + 80 + true + + + 2544 + 412 + 3 + 30 + Withdrawal Ratchet + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1937 + Maximum amount of gas that can be withdrawn from the storage in any interval when defining a gas storage ratchet. + 80 + true + + + 2545 + 412 + 3 + 31 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1602 + Reservation charge for gas storage + true + + + 2546 + 412 + 3 + 32 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1965 + Reservation volume for gas storage + true + + + 2547 + 412 + 3 + 33 + Injection Fuel Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1966 + Fuel injection rate for gas storage + true + + + 2548 + 412 + 3 + 34 + Withdrawal Fuel Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1967 + Fuel withdrawal rate for gas storage + true + + + 2549 + 412 + 3 + 35 + Loss Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to leakage, etc + 200000 + true + + + 2550 + 412 + 3 + 36 + Carrying Rate + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1968 + Carrying rate for gas storage per year + true + + + 2551 + 412 + 3 + 37 + Ratchet Type + 0 + 0 + In (0,1,2) + 2;"Linear Convex";1;"Linear";0;"Step" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2037 + Indicates how the gas storage ratchets are represented + true + + + 2552 + 412 + 3 + 38 + Initial Inventory Price + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2074 + Price linked to initial inventory + true + + + 2553 + 412 + 3 + 39 + Inventory Charge + 88 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Charge per unit of inventory each day + true + + + 2554 + 412 + 3 + 40 + External Injection + 100 + 0 + 1 + 0 + 2 + 0 + false + false + false + false + 1 + 1460 + External injection into the gas storage + true + + + 2555 + 412 + 3 + 41 + Min Temperature Withdrawal + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2244 + Minimum temperature at which the gas storage is allowed to withdraw gas + true + + + 2556 + 412 + 3 + 42 + Max Temperature Withdrawal + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2245 + Maximum temperature at which the gas storage is allowed to withdraw gas + true + + + 2557 + 412 + 3 + 43 + Min Temperature Injection + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2246 + Minimum temperature at which the gas storage is allowed to inject gas + true + + + 2558 + 412 + 3 + 44 + Max Temperature Injection + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2247 + Maximum temperature at which the gas storage is allowed to inject gas + true + + + 2559 + 412 + 3 + 45 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2560 + 412 + 3 + 46 + Initial Heat Value + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2433 + Initial heat value of the gas stored in the gas storage + true + + + 2561 + 412 + 3 + 47 + Initial Carbon Content + 102 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2407 + Initial carbon content of the gas stored in the gas storage + true + + + 2562 + 412 + 3 + 48 + Entitlement Type + 0 + 0 + In (0,1) + 0;"Gross";1;"Net" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2503 + Indicates whether maximum injection or withdrawal entitlement does not include loss (gross) or includes loss (net). + true + + + 2563 + 412 + 3 + 49 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the gas storage energy consumption curve. + false + + + 2564 + 412 + 3 + 50 + Energy Consumed Withdrawal Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2131 + Withdrawal level defining the gas storage energy consumption curve. + false + + + 2565 + 412 + 9 + 51 + Max Withdrawal + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of gas that can be withdrawn from the storage + 80 + true + + + 2566 + 412 + 9 + 51 + Max Withdrawal Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of gas that can be withdrawn from the storage in a hour + 80 + true + + + 2567 + 412 + 9 + 51 + Max Withdrawal Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1247 + Maximum amount of gas that can be withdrawn from the storage in day + 80 + true + + + 2568 + 412 + 9 + 51 + Max Withdrawal Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of gas that can be withdrawn from the storage in a week + 80 + true + + + 2569 + 412 + 9 + 51 + Max Withdrawal Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of gas that can be withdrawn from the storage in a month + 80 + true + + + 2570 + 412 + 9 + 51 + Max Withdrawal Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of gas that can be withdrawn from the storage in a year + 80 + true + + + 2571 + 412 + 9 + 52 + Max Injection + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of gas that can be injected into the storage + 80 + true + + + 2572 + 412 + 9 + 52 + Max Injection Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of gas that can be injected into the storage in a hour + 80 + true + + + 2573 + 412 + 9 + 52 + Max Injection Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of gas that can be injected into the storage in a day + 80 + true + + + 2574 + 412 + 9 + 52 + Max Injection Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of gas that can be injected into the storage in a week + 80 + true + + + 2575 + 412 + 9 + 52 + Max Injection Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of gas that can be injected into the storage in a month + 80 + true + + + 2576 + 412 + 9 + 52 + Max Injection Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of gas that can be injected into the storage in a year + 80 + true + + + 2577 + 412 + 9 + 53 + Min Withdrawal + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1258 + Amount of gas that must be withdrawn from storage + 80 + true + + + 2578 + 412 + 9 + 53 + Min Withdrawal Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of gas that must be withdrawn from storage each hour + 80 + true + + + 2579 + 412 + 9 + 53 + Min Withdrawal Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of gas that must be withdrawn from storage in a day + 80 + true + + + 2580 + 412 + 9 + 53 + Min Withdrawal Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of gas that must be withdrawn from storage in a week + 80 + true + + + 2581 + 412 + 9 + 53 + Min Withdrawal Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of gas that must be withdrawn from storage in a month + 80 + true + + + 2582 + 412 + 9 + 53 + Min Withdrawal Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of gas that must be withdrawn from storage in a year + 80 + true + + + 2583 + 412 + 9 + 54 + Min Injection + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1263 + Amount of gas that must be injected into the storage + 80 + true + + + 2584 + 412 + 9 + 54 + Min Injection Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of gas that must be injected into the storage each hour + 80 + true + + + 2585 + 412 + 9 + 54 + Min Injection Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of gas that must be injected into the storage in a day + 80 + true + + + 2586 + 412 + 9 + 54 + Min Injection Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of gas that must be injected into the storage in a week + 80 + true + + + 2587 + 412 + 9 + 54 + Min Injection Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of gas that must be injected into the storage in a month + 80 + true + + + 2588 + 412 + 9 + 54 + Min Injection Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of gas that must be injected into the storage in a year + 80 + true + + + 2589 + 412 + 9 + 55 + Max Ramp + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 446 + Maximum rate of change in storage + 80 + true + + + 2590 + 412 + 9 + 55 + Max Ramp Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1562 + Maximum rate of change in storage in a hour + 80 + true + + + 2591 + 412 + 9 + 55 + Max Ramp Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1096 + Maximum rate of change in storage in a day + 80 + true + + + 2592 + 412 + 9 + 55 + Max Ramp Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1097 + Maximum rate of change in storage in a week + 80 + true + + + 2593 + 412 + 9 + 55 + Max Ramp Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1098 + Maximum rate of change in storage in a month + 80 + true + + + 2594 + 412 + 9 + 55 + Max Ramp Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1099 + Maximum rate of change in storage in a year + 80 + true + + + 2595 + 412 + 9 + 56 + Target + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 80 + true + + + 2596 + 412 + 9 + 56 + Target Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 80 + true + + + 2597 + 412 + 9 + 56 + Target Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 80 + true + + + 2598 + 412 + 9 + 56 + Target Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 2599 + 412 + 9 + 56 + Target Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 80 + true + + + 2600 + 412 + 9 + 56 + Target Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 80 + true + + + 2601 + 412 + 9 + 57 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 80 + true + + + 2602 + 412 + 9 + 58 + Target Penalty Under + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2378 + Penalty for violating the Min Storage Target. + 80 + true + + + 2603 + 412 + 3 + 59 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption associated with releases from the Gas Storage + false + + + 2604 + 412 + 9 + 60 + Min Storage Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2075 + Minimum Storage Target Percent for gas storage + 80 + true + + + 2605 + 412 + 9 + 61 + Max Storage Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2076 + Max Storage Target Percent for gas storage + 80 + true + + + 2606 + 412 + 9 + 62 + Withdrawal Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1744 + Scalar to set the maximum amount of gas that can be withdrawn from the storage + 80 + true + + + 2607 + 412 + 9 + 63 + Withdrawal Volume + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1745 + Storage volume for which withdrawal is allowed + 80 + true + + + 2608 + 412 + 9 + 64 + Withdrawal Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1977 + Fuel withdrawal factor for gas storage + true + + + 2609 + 412 + 9 + 65 + Injection Rate Scalar + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1746 + Scalar to set the maximum amount of gas that can be injected into the storage + 80 + true + + + 2610 + 412 + 9 + 66 + Injection Volume + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1747 + Storage volume for which injection is allowed + 80 + true + + + 2611 + 412 + 9 + 67 + Injection Volume Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1976 + Fuel injection factor for gas storage + true + + + 2612 + 412 + 7 + 68 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2613 + 412 + 7 + 69 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2614 + 412 + 7 + 70 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2615 + 412 + 7 + 71 + Outage Max Withdrawal + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2353 + Storage Max Withdrawal during the outage + 1000000 + true + + + 2616 + 412 + 7 + 72 + Outage Max Injection + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2354 + Storage Max Injection during the outage + 1000000 + true + + + 2617 + 412 + 7 + 73 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2618 + 412 + 7 + 74 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2619 + 412 + 7 + 75 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2620 + 412 + 7 + 76 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2621 + 412 + 7 + 77 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2622 + 412 + 8 + 78 + Expansion Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2029 + Indicates if the gas storage is eligible for expansion planning + 8 + true + + + 2623 + 412 + 8 + 79 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2624 + 412 + 8 + 80 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of gas storage project, for expansion planning. + 8 + true + + + 2625 + 412 + 8 + 81 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the gas storage + 8 + true + + + 2626 + 412 + 8 + 82 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 44 + Cost of building the gas storage + 8009 + true + + + 2627 + 412 + 8 + 83 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2628 + 412 + 8 + 84 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas storage (period over which fixed costs are recovered). + 8 + true + + + 2629 + 412 + 8 + 85 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2030 + Indicates if the gas storage is eligible for retirement planning + 8 + true + + + 2630 + 412 + 8 + 86 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 695 + Cost of retiring the gas storage + 88 + true + + + 2631 + 412 + 8 + 87 + Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 2028 + Expansion max volume associated with the Gas Storage + 8 + true + + + 2632 + 412 + 8 + 88 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 2633 + 412 + 8 + 89 + Annual Expansion Max Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2668 + Annual Expansion max volume associated with the Gas Storage + 8 + true + + + 2634 + 412 + 8 + 90 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2635 + 412 + 8 + 91 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost in the gas storage operation + 8009 + false + + + 2636 + 412 + 11 + 92 + Trajectory Non-anticipativity + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 2637 + 412 + 11 + 93 + Trajectory Non-anticipativity Volume + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100000000 + true + + + 2638 + 412 + 11 + 94 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 2639 + 412 + 12 + 95 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2640 + 412 + 12 + 96 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2641 + 412 + 12 + 97 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2642 + 418 + 1 + 1 + Node Type + 0 + 0 + In (0,1,2) + 0;"Both";1;"Injection Only";2;"Withdrawal Only" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2085 + Using this input property, a Gas Node defined in the Gas Node collection of a Gas Storage can act as injection only, withdrawal only or both. + 800000 + true + + + 2643 + 422 + 1 + 1 + Outage Max Withdrawal + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2353 + Gas Storage Max Withdrawal during the outage + 4 + true + + + 2644 + 422 + 1 + 2 + Outage Max Injection + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2354 + Gas Storage Max Injection during the outage + 4 + true + + + 2645 + 423 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + true + + + 2646 + 423 + 3 + 2 + Withdrawal Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of gas storage withdrawal in the constraint + true + + + 2647 + 423 + 3 + 3 + Injection Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of gas storage injection in the constraint + true + + + 2648 + 423 + 3 + 4 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas storage end volume in the constraint + true + + + 2649 + 423 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2650 + 423 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2651 + 423 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year constraint + true + + + 2652 + 423 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year constraint + true + + + 2653 + 424 + 3 + 1 + End Volume Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 2654 + 424 + 3 + 2 + Withdrawal Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of gas storage withdrawal + true + + + 2655 + 424 + 3 + 3 + Injection Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of gas storage injection + true + + + 2656 + 424 + 3 + 4 + Ramp Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in gas storage end volume + true + + + 2657 + 424 + 8 + 5 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2658 + 424 + 8 + 6 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2659 + 424 + 8 + 7 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2660 + 424 + 8 + 8 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2661 + 425 + 2 + 1 + Demand Type + 0 + 0 + In (0,1,2) + 0;"Input";1;"Temperature";2;"Heating Degree Days" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2000 + Function structure for demand type inputs + true + + + 2662 + 425 + 3 + 2 + Demand + 100 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 133 + Demand for gas + 400 + true + + + 2663 + 425 + 3 + 3 + Shortage Price + 88 + 1000 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1270 + Notional price of gas shortage + 40000000 + true + + + 2664 + 425 + 3 + 4 + Shortage Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2230 + Level corresponding to the Shortage Price + true + + + 2665 + 425 + 3 + 5 + Excess Price + 88 + -100 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1271 + Notional price of gas oversupply + 40000000 + true + + + 2666 + 425 + 3 + 6 + Excess Level + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2231 + Level corresponding to the Excess Price + true + + + 2667 + 425 + 3 + 7 + Usage Factor Base + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2001 + Scalar demand value regardless of heat + true + + + 2668 + 425 + 3 + 8 + Usage Factor Heat + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2002 + Scalar heat value regardless of demand + true + + + 2669 + 425 + 3 + 9 + Customer Count + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2003 + Number of customers (that have demand values) + true + + + 2670 + 425 + 3 + 10 + Usage Factor Heat Point + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2005 + Scalar temperature levels for piecewise linear function + true + + + 2671 + 425 + 3 + 11 + Weather Data Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2012 + Weather data factor for gas demand function + true + + + 2672 + 425 + 3 + 12 + Weather Data Variable + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2013 + Weather data variable for gas demand function + true + + + 2673 + 425 + 3 + 13 + Unaccounted Demand + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2351 + Percentage of unaccounted gas demand + 400 + true + + + 2674 + 425 + 4 + 14 + Bid Quantity + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + 400000 + true + + + 2675 + 425 + 4 + 15 + Bid Price + 88 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Value of gas in band + 400000 + true + + + 2676 + 425 + 4 + 16 + Bid Slope + 0 + 0 + <0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2522 + Demand bid slope for modeling elasticity. Must be entered to auto-generate steps. + 400000 + true + + + 2677 + 425 + 4 + 17 + Bid Tranches + 0 + 5 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2523 + Number of bid points to generate when auto-generating tranches + 400000 + true + + + 2678 + 425 + 4 + 18 + Max Bid Quantity + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2524 + Maximum bid quantity when auto-generating steps + 400000 + true + + + 2679 + 425 + 12 + 19 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2680 + 425 + 12 + 20 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2681 + 425 + 12 + 21 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2682 + 431 + 1 + 1 + Demand Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1448 + Proportion of gas demand that occurs at the gas node + 400 + true + + + 2683 + 436 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of the gas demand + true + + + 2684 + 436 + 1 + 2 + Customer Count + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2003 + Customer count used to calculate company's share of gas demand + true + + + 2685 + 436 + 1 + 3 + Direct Demand + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2132 + Company's amount of direct gas demand + true + + + 2686 + 437 + 2 + 1 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2687 + 437 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2688 + 437 + 2 + 3 + Reduction Type + 0 + 0 + In (0,2) + 0;"Input";2;"Usage Factor" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2051 + Function structure for gas dsm program type inputs + true + + + 2689 + 437 + 3 + 4 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Share of demand reduction available + false + + + 2690 + 437 + 3 + 5 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas DSM Program is available + true + + + 2691 + 437 + 3 + 6 + Reduction Amount + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2025 + Demand reduction caused by gas dsm program + true + + + 2692 + 437 + 3 + 7 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 2693 + 437 + 3 + 8 + Variable Cost + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2017 + Variable cost of gas dsm program + 2000000000 + true + + + 2694 + 437 + 8 + 9 + Capital Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2018 + Capital cost of gas dsm program + 8000 + true + + + 2695 + 437 + 8 + 10 + Expansion Max Reduction + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2019 + Expansion max reduction offtake associated with the gas dsm program + true + + + 2696 + 437 + 8 + 11 + Expansion Program + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2020 + Indicates if Gas DSM program is eligible + true + + + 2697 + 437 + 8 + 12 + Eligibility Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2021 + Start date of Gas dsm program planning. + true + + + 2698 + 437 + 8 + 13 + Program Length + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2022 + Technical Life of Gas dsm program + true + + + 2699 + 437 + 8 + 14 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Gas dsm program (period over which fixed costs are recovered). + true + + + 2700 + 437 + 8 + 15 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + true + + + 2701 + 437 + 8 + 16 + Annual Expansion Max Reduction + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2669 + Annual Expansion max reduction offtake associated with the gas dsm program + true + + + 2702 + 437 + 12 + 17 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2703 + 437 + 12 + 18 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2704 + 437 + 12 + 19 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2705 + 441 + 8 + 1 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2706 + 441 + 8 + 2 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2707 + 442 + 8 + 1 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2708 + 442 + 8 + 2 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2709 + 443 + 9 + 1 + Max Production + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum production of gas from the basin + 80 + true + + + 2710 + 443 + 9 + 1 + Max Production Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum daily production of gas from the basin + 80 + true + + + 2711 + 443 + 9 + 1 + Max Production Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 950 + Maximum daily production of gas from the basin + 80 + true + + + 2712 + 443 + 9 + 1 + Max Production Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum weekly production of gas from the basin + 80 + true + + + 2713 + 443 + 9 + 1 + Max Production Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum monthly production of gas from the basin + 80 + true + + + 2714 + 443 + 9 + 1 + Max Production Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum annual production of gas from the basin + 80 + true + + + 2715 + 443 + 9 + 2 + Min Production + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1275 + Minimum production of gas from the basin + 80 + true + + + 2716 + 443 + 9 + 2 + Min Production Hour + 100 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum daily production of gas from the basin + 80 + true + + + 2717 + 443 + 9 + 2 + Min Production Day + 100 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum daily production of gas from the basin + 80 + true + + + 2718 + 443 + 9 + 2 + Min Production Week + 100 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum weekly production of gas from the basin + 80 + true + + + 2719 + 443 + 9 + 2 + Min Production Month + 100 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum monthly production of gas from the basin + 80 + true + + + 2720 + 443 + 9 + 2 + Min Production Year + 100 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum annual production of gas from the basin + 80 + true + + + 2721 + 443 + 12 + 3 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2722 + 443 + 12 + 4 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2723 + 443 + 12 + 5 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2724 + 446 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas basin production + true + + + 2725 + 446 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of gas field units built + true + + + 2726 + 446 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of gas field units built in the year + true + + + 2727 + 447 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas basin production + true + + + 2728 + 447 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of gas field units built + true + + + 2729 + 447 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of gas field units built in the year + true + + + 2730 + 448 + 8 + 1 + Max Capacity Reserves + 75 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + false + + + 2731 + 448 + 8 + 2 + Min Capacity Reserves + 75 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + false + + + 2732 + 448 + 8 + 3 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + false + + + 2733 + 448 + 8 + 4 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + false + + + 2734 + 448 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2735 + 448 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2736 + 448 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2737 + 465 + 2 + 1 + Price Setting + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the gas contract can set price at the Gas Node + 4000000 + true + + + 2738 + 465 + 2 + 2 + Contract Type + 0 + 0 + In (0,1,2) + 0;"Swing";1;"Base";2;"Take-or-Pay" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1969 + Type of gas contract + true + + + 2739 + 465 + 2 + 3 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2740 + 465 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2741 + 465 + 2 + 5 + Model Capital Cost Recovery + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2696 + Indicates if capital cost recovery feature is modeled for expansion planning + 8 + true + + + 2742 + 465 + 9 + 6 + Quantity + 100 + 0 + 1 + 0 + 0 + 0 + true + false + false + false + 1 + 650 + Gas contract quantity + true + + + 2743 + 465 + 9 + 6 + Quantity Hour + 100 + 0 + 1 + 0 + 0 + 6 + true + false + true + false + 1 + 1559 + Total gas contract quantity in hour + true + + + 2744 + 465 + 9 + 6 + Quantity Day + 100 + 0 + 1 + 0 + 0 + 1 + true + true + true + false + 1 + 651 + Total gas contract quantity in day + true + + + 2745 + 465 + 9 + 6 + Quantity Week + 100 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 653 + Total gas contract quantity in week + true + + + 2746 + 465 + 9 + 6 + Quantity Month + 100 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 652 + Total gas contract quantity in month + true + + + 2747 + 465 + 9 + 6 + Quantity Year + 100 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 654 + Total gas contract quantity in year + true + + + 2748 + 465 + 9 + 7 + Min Quantity + 100 + 0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 2414 + Minimum total gas contract quantity in interval + true + + + 2749 + 465 + 9 + 7 + Min Quantity Hour + 100 + 0 + 1 + 0 + 0 + 6 + true + false + true + false + 1 + 2415 + Minimum total gas contract quantity in hour + true + + + 2750 + 465 + 9 + 7 + Min Quantity Day + 100 + 0 + 1 + 0 + 0 + 1 + true + false + true + false + 1 + 2416 + Minimum total gas contract quantity in day + true + + + 2751 + 465 + 9 + 7 + Min Quantity Week + 100 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 2417 + Minimum total gas contract quantity in week + true + + + 2752 + 465 + 9 + 7 + Min Quantity Month + 100 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 2418 + Minimum total gas contract quantity in month + true + + + 2753 + 465 + 9 + 7 + Min Quantity Year + 100 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 2419 + Minimum total gas contract quantity in year + true + + + 2754 + 465 + 3 + 8 + Units + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + true + false + true + false + 1 + 812 + Share of total Gas Contract available + false + + + 2755 + 465 + 3 + 9 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Gas Contract is available for production + true + + + 2756 + 465 + 3 + 10 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 612 + Price of gas contract + true + + + 2757 + 465 + 3 + 11 + Price Collar Min + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2242 + Minimum price allowed for the gas contract + true + + + 2758 + 465 + 3 + 12 + Price Collar Max + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2243 + Maximum price allowed for the gas contract + true + + + 2759 + 465 + 3 + 13 + Dispatch Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2141 + Dispatch Price of Gas Contract + true + + + 2760 + 465 + 3 + 14 + Take-or-Pay Swing Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2740 + Price to charge for swing portion of Take or Pay contract + true + + + 2761 + 465 + 3 + 15 + Reservation Charge + 103 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1602 + Reservation charge for gas contract + true + + + 2762 + 465 + 3 + 16 + Reservation Volume + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 1965 + Reservation volume for gas contract + true + + + 2763 + 465 + 3 + 17 + Min Daily Take + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2239 + Min daily gas offtake associated with the contract + false + + + 2764 + 465 + 3 + 18 + Max Daily Take + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1985 + Max daily gas offtake associated with the contract + false + + + 2765 + 465 + 3 + 19 + Min Temperature + 77 + -1E+30 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2248 + Minimum temperature at which the gas contract is allowed to produce + true + + + 2766 + 465 + 3 + 20 + Max Temperature + 77 + 1E+30 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2249 + Maximum temperature at which the gas contract is allowed to produce + true + + + 2767 + 465 + 3 + 21 + Max Renomination + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1990 + Maximum number of renominations allowed per renomination window for Base Gas Contracts + true + + + 2768 + 465 + 3 + 22 + Min Days Between Renomination + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1991 + Minimum number of days between renominations of Base Gas Contracts + true + + + 2769 + 465 + 3 + 23 + Renomination Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2010 + User defined renomination windows for Base Gas Contracts + true + + + 2770 + 465 + 3 + 24 + Percentage of Demand + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2086 + Percentage that maximum daily take value (supply) will be adjusted according to + 400 + true + + + 2771 + 465 + 3 + 25 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas produced by the Gas Contract + 100 + true + + + 2772 + 465 + 8 + 26 + Expansion Contract + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1980 + Indicates if Gas Contract is eligible for expansion planning + 8 + true + + + 2773 + 465 + 8 + 27 + Retirement Contract + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2087 + Indicates if Gas Contract is eligible for retirement planning + 8 + true + + + 2774 + 465 + 8 + 28 + Contract Eligibility Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 1982 + Start date of Gas Contract expansion planning. + 8 + true + + + 2775 + 465 + 8 + 29 + Contract Length + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1984 + Technical Life of Gas Contract + 8 + true + + + 2776 + 465 + 8 + 30 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the gas contract (period over which fixed costs are recovered). + 8 + true + + + 2777 + 465 + 8 + 31 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2778 + 465 + 8 + 32 + Build Cost + 34 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 44 + Cost of Gas Contract expansion + 8009 + true + + + 2779 + 465 + 8 + 33 + Expansion Quantity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 1986 + LT Max daily gas offtake associated with the contract + true + + + 2780 + 465 + 8 + 34 + Max Build Events + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2665 + Maximum number of distinct build events allowed over the planning horizon + 88 + true + + + 2781 + 465 + 8 + 35 + Annual Expansion Quantity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2670 + LT Annual Max daily gas offtake associated with the contract + true + + + 2782 + 465 + 8 + 36 + Recovery Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2697 + Capital cost recovery price adder to include in the MT and ST phases + 8008 + false + + + 2783 + 465 + 8 + 37 + Recovered Capital Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2590 + Recovered capital cost in the gas contract production + 8009 + false + + + 2784 + 465 + 8 + 38 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + false + + + 2785 + 465 + 8 + 39 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Gas Contract + 88 + false + + + 2786 + 465 + 12 + 40 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Pass-through value (summed in summary) + true + + + 2787 + 465 + 12 + 41 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Pass-through value (summed in summary) + true + + + 2788 + 465 + 12 + 42 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Pass-through value (summed in summary) + true + + + 2789 + 470 + 1 + 1 + Price Adder + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2084 + Price adder to gas nodes in contract + true + + + 2790 + 470 + 1 + 2 + Min Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2392 + Minimum percentage of the gas produced by the Gas Contract in the blend + 100 + true + + + 2791 + 470 + 1 + 3 + Max Blend Percent + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2393 + Maximum percentage of the gas produced by the Gas Contract in the blend + 100 + true + + + 2792 + 472 + 1 + 1 + Demand Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2133 + Supply provided to the company based on the company gas demand + true + + + 2793 + 472 + 1 + 2 + Averaging Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2134 + Indicates if the period is a start period for Demand Share + true + + + 2794 + 472 + 1 + 3 + Direct Supply + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2135 + Supply provided to the company + true + + + 2795 + 473 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas contract production + true + + + 2796 + 473 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of units built in Custom Constraint + true + + + 2797 + 473 + 8 + 3 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2798 + 473 + 8 + 4 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2799 + 473 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of the number of units retired in the year + true + + + 2800 + 474 + 3 + 1 + Production Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of gas contract production + true + + + 2801 + 474 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2802 + 474 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2803 + 475 + 2 + 1 + Formulate Round Trip + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2758 + If the Gas Transport should return to the Export node before setting out on the next voyage + true + + + 2804 + 475 + 3 + 2 + Voyage Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1841 + Time taken for the voyage from Export Node to Import Node + true + + + 2805 + 475 + 3 + 3 + Loading Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1842 + Time taken to load gas into the transport + true + + + 2806 + 475 + 3 + 4 + Discharge Time + 7 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1843 + Time taken to unload gas from the transport + true + + + 2807 + 475 + 3 + 5 + Min Volume + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 510 + Minimum volume of gas the transport can carry + true + + + 2808 + 475 + 3 + 6 + Max Volume + 100 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 466 + Maximum volume of gas the transport can carry + true + + + 2809 + 475 + 3 + 7 + Shipping Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1844 + The per unit cost of shipping the gas on the transport + 2000000000 + true + + + 2810 + 475 + 3 + 8 + Boil off Rate + 70 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1845 + Rate of boil off of gas during the voyage + true + + + 2811 + 475 + 3 + 9 + Heat Value + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 52 + Heat value of gas shipped by the Gas Transport + 100 + true + + + 2812 + 475 + 3 + 10 + Imports + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 294 + false + + + 2813 + 475 + 3 + 11 + Exports + 100 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 192 + false + + + 2814 + 475 + 9 + 12 + Max Shipments + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1846 + Maximum number of voyages in each step in the simulation horizon + 80 + true + + + 2815 + 475 + 9 + 12 + Max Shipments Hour + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1847 + Maximum hourly number of voyages + 80 + true + + + 2816 + 475 + 9 + 12 + Max Shipments Day + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + true + false + false + 1 + 1848 + Maximum daily number of voyages + 80 + true + + + 2817 + 475 + 9 + 12 + Max Shipments Week + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1849 + Maximum weekly number of voyages + 80 + true + + + 2818 + 475 + 9 + 12 + Max Shipments Month + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1850 + Maximum monthly number of voyages + 80 + true + + + 2819 + 475 + 9 + 12 + Max Shipments Year + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1851 + Maximum annual number of voyages + 80 + true + + + 2820 + 475 + 12 + 13 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Pass-through value (summed in summary) + true + + + 2821 + 475 + 12 + 14 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Pass-through value (summed in summary) + true + + + 2822 + 475 + 12 + 15 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Pass-through value (averaged in summary) + true + + + 2823 + 487 + 1 + 1 + Outage Factor + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1892 + Proportion of capacity during outage + 4 + true + + + 2824 + 488 + 3 + 1 + Shipments Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1873 + Coefficient of gas transport voyage count + true + + + 2825 + 489 + 3 + 1 + Shipments Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1873 + Coefficient of gas transport voyage count + true + + + 2826 + 493 + 2 + 1 + Release Type + 0 + 0 + In (0,1,2) + 0;"Swing";1;"Base";2;"Deal" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2040 + Function structure for capacity release type inputs + true + + + 2827 + 493 + 9 + 2 + Max Released Capacity + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2571 + Maximum capacity that can be released + 80 + true + + + 2828 + 493 + 9 + 2 + Max Released Capacity Hour + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2572 + Maximum capacity that can be released in a hour + 80 + true + + + 2829 + 493 + 9 + 2 + Max Released Capacity Day + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2573 + Maximum capacity that can be released in a day + 80 + true + + + 2830 + 493 + 9 + 2 + Max Released Capacity Week + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2574 + Maximum capacity that can be released in a week + 80 + true + + + 2831 + 493 + 9 + 2 + Max Released Capacity Month + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2575 + Maximum capacity that can be released in a month + 80 + true + + + 2832 + 493 + 9 + 2 + Max Released Capacity Year + 100 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2576 + Maximum capacity that can be released in a year + 80 + true + + + 2833 + 493 + 9 + 3 + Min Released Capacity + 100 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2577 + Minimum capacity that can be released + 80 + true + + + 2834 + 493 + 9 + 3 + Min Released Capacity Hour + 100 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2578 + Minimum capacity that can be released in hour + 80 + true + + + 2835 + 493 + 9 + 3 + Min Released Capacity Day + 100 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2579 + Minimum capacity that can be released in day + 80 + true + + + 2836 + 493 + 9 + 3 + Min Released Capacity Week + 100 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2580 + Minimum capacity that can be released in week + 80 + true + + + 2837 + 493 + 9 + 3 + Min Released Capacity Month + 100 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2581 + Minimum capacity that can be released in month + 80 + true + + + 2838 + 493 + 9 + 3 + Min Released Capacity Year + 100 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2582 + Minimum capacity that can be released in year + 80 + true + + + 2839 + 493 + 3 + 4 + Term Start Period + 0 + 0 + In (0,1) + 1;"Is a Start Period";0;"Is not a Start Period" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2041 + Flag to indicate start of the capacity release term + true + + + 2840 + 493 + 3 + 5 + Revenue Basis + 88 + 0 + >=0 + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2042 + Revenue Basis for capacity release offer + true + + + 2841 + 493 + 3 + 6 + Revenue Adder + 88 + 0 + >=0 + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2043 + Revenue Adder for capacity release offer + true + + + 2842 + 493 + 12 + 7 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2843 + 493 + 12 + 8 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2844 + 493 + 12 + 9 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2845 + 498 + 3 + 1 + Release Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of gas capacity release offers + true + + + 2846 + 499 + 3 + 1 + Release Coefficient + 100 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of gas capacity release offers + true + + + 2847 + 500 + 2 + 1 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2848 + 500 + 2 + 2 + Expansion Optimality + 0 + 0 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2849 + 500 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2850 + 500 + 2 + 4 + Include in Capacity Payments + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1618 + If this water plant receives capacity payments + 8 + false + + + 2851 + 500 + 3 + 5 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Number of Water Plant units in service + 800000 + true + + + 2852 + 500 + 3 + 6 + Max Capacity + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 414 + Maximum production of Water Plant + 5 + true + + + 2853 + 500 + 3 + 7 + Min Stable Production + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1928 + Minimum production level + 1000000000 + true + + + 2854 + 500 + 3 + 8 + Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 665 + Rated capacity of units + 81 + true + + + 2855 + 500 + 3 + 9 + Rating Factor + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 975 + Maximum dispatchable capacity of each unit expressed as a percentage of [Max Capacity] + 80 + true + + + 2856 + 500 + 3 + 10 + Aux Fixed + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 20 + Fixed auxiliary usage per installed unit + 200000 + true + + + 2857 + 500 + 3 + 11 + Aux Base + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 19 + Auxiliary use per unit committed + 200000 + true + + + 2858 + 500 + 3 + 12 + Aux Incr + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 21 + Auxiliary use per unit of generation + 200000 + true + + + 2859 + 500 + 3 + 13 + Load Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 356 + Load point for use with multi-point heat rate + 1000 + true + + + 2860 + 500 + 3 + 14 + Heat Usage + 72 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1926 + Heat consumption of Water Plant + 2000000000 + true + + + 2861 + 500 + 3 + 15 + Heat Rate Base + 35 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 261 + Constant term in fuel use function (no-load cost) + 1000 + false + + + 2862 + 500 + 3 + 16 + Heat Usage Incr + 72 + 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2525 + First-order polynomial term in unit fuel use function (marginal heat rate) + 1000 + true + + + 2863 + 500 + 3 + 17 + Water Yield + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1795 + Yield rate of water for the Water Plant + 2000000000 + true + + + 2864 + 500 + 3 + 18 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 175 + Energy consumption of Water Plant + 2000000000 + true + + + 2865 + 500 + 3 + 19 + Retail Electric Price + 33 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2515 + Retail price of electric power used by the water plant + true + + + 2866 + 500 + 3 + 20 + VO&M Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 849 + Variable operations and maintenance costs of the Water Plant + 2000000000 + true + + + 2867 + 500 + 3 + 21 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2868 + 500 + 7 + 22 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2869 + 500 + 7 + 23 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service + 1000000 + true + + + 2870 + 500 + 7 + 24 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2871 + 500 + 7 + 25 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2872 + 500 + 7 + 26 + Outage Max Production + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2352 + Plant Max Production during the outage + 1000000 + true + + + 2873 + 500 + 7 + 27 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2874 + 500 + 7 + 28 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2875 + 500 + 7 + 29 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2876 + 500 + 7 + 30 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2877 + 500 + 7 + 31 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2878 + 500 + 8 + 32 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 8 + true + + + 2879 + 500 + 8 + 33 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2880 + 500 + 8 + 34 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water Plant project, for expansion planning. + 8 + true + + + 2881 + 500 + 8 + 35 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water Plant + 8 + true + + + 2882 + 500 + 8 + 36 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of developing the Water Plant + 8009 + true + + + 2883 + 500 + 8 + 37 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2884 + 500 + 8 + 38 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water Plant (period over which fixed costs are recovered). + 8 + true + + + 2885 + 500 + 8 + 39 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 2886 + 500 + 8 + 40 + Max Units Built in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2887 + 500 + 8 + 41 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 2888 + 500 + 8 + 42 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2889 + 500 + 8 + 43 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water Plant + 88 + true + + + 2890 + 500 + 8 + 44 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 2891 + 500 + 8 + 45 + Max Units Retired in Year + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2892 + 500 + 8 + 46 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 2893 + 500 + 8 + 47 + Capacity Price + 99 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 881 + Price received by the plant for capacity + 4000008 + true + + + 2894 + 500 + 11 + 48 + Build Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2895 + 500 + 11 + 49 + Retire Non-anticipativity + 32 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000008 + true + + + 2896 + 500 + 12 + 50 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2897 + 500 + 12 + 51 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2898 + 500 + 12 + 52 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2899 + 506 + 1 + 1 + Outage Max Production + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2352 + Max Production during the outage + 4 + true + + + 2900 + 507 + 3 + 1 + Production Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Water Plant Production + true + + + 2901 + 507 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Water Plant capacity factor + true + + + 2902 + 507 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + false + + + 2903 + 507 + 3 + 4 + Energy Usage Coefficient + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Water Plant + true + + + 2904 + 507 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 2905 + 507 + 6 + 6 + Installed Capacity Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 2906 + 507 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 2907 + 507 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 2908 + 507 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 2909 + 507 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 2910 + 507 + 8 + 11 + Capacity Built Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 2911 + 507 + 8 + 12 + Capacity Retired Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 2912 + 507 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 2913 + 507 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 2914 + 507 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 2915 + 508 + 3 + 1 + Production Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Water Plant Production + true + + + 2916 + 508 + 3 + 2 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of Water Plant capacity factor + true + + + 2917 + 508 + 3 + 3 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + true + + + 2918 + 508 + 3 + 4 + Energy Usage Coefficient + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1888 + Coefficient of energy usage of the Water Plant + true + + + 2919 + 508 + 6 + 5 + Installed Capacity Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 2920 + 508 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2921 + 508 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2922 + 508 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2923 + 508 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2924 + 508 + 8 + 10 + Capacity Built Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 2925 + 508 + 8 + 11 + Capacity Retired Coefficient + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 2926 + 508 + 8 + 12 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + true + + + 2927 + 508 + 8 + 13 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 2928 + 508 + 8 + 14 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 2929 + 509 + 1 + 1 + Energy Usage Definition Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1886 + Coefficient of the Decision Variable in the Water Plant Energy Usage definition equation + true + + + 2930 + 510 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the pipeline for the generation of outages + 101000000 + true + + + 2931 + 510 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 2932 + 510 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2933 + 510 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2934 + 510 + 3 + 5 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + false + false + 1 + 812 + Flag if the Water Pipeline is in service + 800000 + false + + + 2935 + 510 + 3 + 6 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Water Pipeline is available for flow. + true + + + 2936 + 510 + 3 + 7 + Is Bidirectional + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2033 + Indicates if the pipeline allows flow in both directions + 800000 + true + + + 2937 + 510 + 3 + 8 + Max Capacity + 65 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 414 + Maximum flow rate on the water pipeline + 5 + true + + + 2938 + 510 + 3 + 9 + Diameter + 23 + 0.762 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1796 + Water Pipeline diameter + true + + + 2939 + 510 + 3 + 10 + Roughness + 0 + 150 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1797 + Water Pipeline roughness constant + true + + + 2940 + 510 + 3 + 11 + Length + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1798 + Length of the Water Pipeline + true + + + 2941 + 510 + 3 + 12 + Pump Efficiency + 12 + 70 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 639 + Efficiency of Water Pipeline pump + true + + + 2942 + 510 + 3 + 13 + VO&M Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 849 + Variable operations and maintenance costs of the Water Pipeline + 2000000000 + true + + + 2943 + 510 + 3 + 14 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2944 + 510 + 3 + 15 + Consumption Allocation + 0 + 0.5 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1814 + Proportion of the electricity consumption allocated to the receiving water node + true + + + 2945 + 510 + 3 + 16 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the pipeline energy consumption curve. + true + + + 2946 + 510 + 3 + 17 + Energy Consumed Flow Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2122 + Flow level defining the water pipeline energy consumption curve. + true + + + 2947 + 510 + 3 + 18 + System Curve Coefficient A + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2250 + System curve coefficient A for the quadratic term + true + + + 2948 + 510 + 3 + 19 + System Curve Coefficient B + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2251 + System curve coefficient B for the linear term + true + + + 2949 + 510 + 3 + 20 + System Curve Coefficient C + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2252 + System curve coefficient C for the constant term + true + + + 2950 + 510 + 3 + 21 + Flow Rate Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2511 + Flow rate point for the system curve + true + + + 2951 + 510 + 3 + 22 + Head Point + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2512 + Head point for the system curve + true + + + 2952 + 510 + 7 + 23 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 2953 + 510 + 7 + 24 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 2954 + 510 + 7 + 25 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 2955 + 510 + 7 + 26 + Outage Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 585 + Water pipeline Max Capacity during the outage + 1000000 + true + + + 2956 + 510 + 7 + 27 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 2957 + 510 + 7 + 28 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 2958 + 510 + 7 + 29 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 2959 + 510 + 7 + 30 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 2960 + 510 + 7 + 31 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 2961 + 510 + 8 + 32 + Expansion Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2034 + Indicates if the water pipeline is eligible for expansion planning + 8 + true + + + 2962 + 510 + 8 + 33 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2963 + 510 + 8 + 34 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water pipeline project, for expansion planning. + 8 + true + + + 2964 + 510 + 8 + 35 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water pipeline + 8 + true + + + 2965 + 510 + 8 + 36 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Water pipeline + 8009 + true + + + 2966 + 510 + 8 + 37 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 2967 + 510 + 8 + 38 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water pipeline (period over which fixed costs are recovered). + 8 + true + + + 2968 + 510 + 8 + 39 + Retirement Pipeline + 0 + 0 + In (0,1) + 1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2035 + Indicates if the water pipeline is eligible for retirement planning + 88 + true + + + 2969 + 510 + 8 + 40 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water pipeline + 88 + true + + + 2970 + 510 + 8 + 41 + Expansion Max Capacity + 65 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2379 + Expansion max daily total water release for the pipeline + 8 + true + + + 2971 + 510 + 12 + 42 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 2972 + 510 + 12 + 43 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 2973 + 510 + 12 + 44 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 2974 + 515 + 1 + 1 + Outage Rating + 65 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 585 + Max Rating during the outage + 4 + true + + + 2975 + 516 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Water Pipeline flow + true + + + 2976 + 516 + 3 + 2 + Flow Forward Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Water Pipeline flow at the receiving node + true + + + 2977 + 516 + 3 + 3 + Flow Back Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Water Pipeline flow at the sending node + true + + + 2978 + 516 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2979 + 516 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2980 + 516 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2981 + 516 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2982 + 517 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Water Pipeline flow + true + + + 2983 + 517 + 3 + 2 + Flow Forward Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Water Pipeline flow at the receiving node + true + + + 2984 + 517 + 3 + 3 + Flow Back Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Water Pipeline flow at the sending node + true + + + 2985 + 517 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 2986 + 517 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 2987 + 517 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 2988 + 517 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 2989 + 518 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 2990 + 518 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 2991 + 518 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Water Node is in service + 800000 + true + + + 2992 + 518 + 3 + 4 + Water Security + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1799 + Proportion of local Water Demand that must be covered by Water Storage at the Water Node + false + + + 2993 + 518 + 3 + 5 + Flow Charge + 67 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1268 + Incremental cost of flowing water through the node + 2000000000 + true + + + 2994 + 518 + 3 + 6 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 2995 + 518 + 8 + 7 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 2996 + 518 + 8 + 8 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 2997 + 518 + 8 + 9 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of water node project, for expansion planning. + 8 + true + + + 2998 + 518 + 8 + 10 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the water node + 8 + true + + + 2999 + 518 + 8 + 11 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the water node + 8009 + true + + + 3000 + 518 + 8 + 12 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3001 + 518 + 8 + 13 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the water node (period over which fixed costs are recovered). + 8 + true + + + 3002 + 518 + 8 + 14 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3003 + 518 + 8 + 15 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 3004 + 518 + 8 + 16 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3005 + 518 + 8 + 17 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3006 + 518 + 8 + 18 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the water node + 88 + true + + + 3007 + 518 + 8 + 19 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3008 + 518 + 8 + 20 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3009 + 518 + 8 + 21 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3010 + 518 + 12 + 22 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3011 + 518 + 12 + 23 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3012 + 518 + 12 + 24 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3013 + 523 + 1 + 1 + Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1840 + Proportion of Facility Water Usage occurring at the Water Node + true + + + 3014 + 525 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of water node flow + true + + + 3015 + 525 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3016 + 525 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3017 + 525 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3018 + 525 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3019 + 526 + 3 + 1 + Flow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of water node flow + true + + + 3020 + 526 + 8 + 2 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3021 + 526 + 8 + 3 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3022 + 526 + 8 + 4 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3023 + 526 + 8 + 5 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3024 + 527 + 2 + 1 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal storage trajectory from one simulation phase to the next. + 200 + true + + + 3025 + 527 + 2 + 2 + Enforce Bounds + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1182 + If the storage bounds are enforced. + 80 + true + + + 3026 + 527 + 2 + 3 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3027 + 527 + 2 + 4 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3028 + 527 + 2 + 5 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3029 + 527 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Water Storage is in service + 800000 + false + + + 3030 + 527 + 3 + 7 + Is Available + 13 + 1 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 332 + Indicates if Water Storage is available. + true + + + 3031 + 527 + 3 + 8 + Max Volume + 64 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 466 + Maximum volume of Water allowed in storage + 5 + true + + + 3032 + 527 + 3 + 9 + Min Volume + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 510 + Minimum volume of Water allowed in storage + 4 + true + + + 3033 + 527 + 3 + 10 + Initial Volume + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 318 + Initial volume of Water in the storage + 80001 + true + + + 3034 + 527 + 3 + 11 + Energy Usage + 66 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 175 + Energy consumption associated with releases from the water storage + false + + + 3035 + 527 + 3 + 12 + Natural Inflow + 65 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 530 + Rate of inflow + true + + + 3036 + 527 + 3 + 13 + Loss Rate + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1583 + Rate of loss due to evaporation, leakage, etc + 200000 + true + + + 3037 + 527 + 3 + 14 + FO&M Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3038 + 527 + 3 + 15 + Energy Consumed Amount + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2121 + Energy consumption defining the water storage energy consumption curve. + true + + + 3039 + 527 + 3 + 16 + Energy Consumed Withdrawal Level + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2131 + Withdrawal level defining the water storage energy consumption curve. + true + + + 3040 + 527 + 3 + 17 + Max Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 435 + Max water storage level + 80001 + true + + + 3041 + 527 + 3 + 18 + System Curve Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2254 + Level for which system curve is specified + 80001 + true + + + 3042 + 527 + 3 + 19 + Cross Section Area + 42 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2255 + Cross sectional area of the water storage + 80001 + true + + + 3043 + 527 + 3 + 20 + Reference Level + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2513 + Reference storage level + 80001 + true + + + 3044 + 527 + 3 + 21 + Reference Volume + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2514 + Reference volume of water in the storage + 80001 + true + + + 3045 + 527 + 9 + 22 + Target + 64 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + storage target + 80 + true + + + 3046 + 527 + 9 + 22 + Target Hour + 64 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + end of hour storage target + 80 + true + + + 3047 + 527 + 9 + 22 + Target Day + 64 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + end of day storage target + 80 + true + + + 3048 + 527 + 9 + 22 + Target Week + 64 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + end of week storage target + 80 + true + + + 3049 + 527 + 9 + 22 + Target Month + 64 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + end of month storage target + 80 + true + + + 3050 + 527 + 9 + 22 + Target Year + 64 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + end of year storage target + 80 + true + + + 3051 + 527 + 9 + 23 + Target Penalty + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target. + 80 + true + + + 3052 + 527 + 9 + 24 + Target Penalty Under + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2378 + Penalty for violating the Min Storage Target. + 80 + true + + + 3053 + 527 + 9 + 25 + Max Withdrawal + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of water that can be withdrawn from the storage + 80 + true + + + 3054 + 527 + 9 + 25 + Max Withdrawal Hour + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of water that can be withdrawn from the storage in a hour + 80 + true + + + 3055 + 527 + 9 + 25 + Max Withdrawal Day + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1247 + Maximum amount of water that can be withdrawn from the storage in day + 80 + true + + + 3056 + 527 + 9 + 25 + Max Withdrawal Week + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of water that can be withdrawn from the storage in a week + 80 + true + + + 3057 + 527 + 9 + 25 + Max Withdrawal Month + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of water that can be withdrawn from the storage in a month + 80 + true + + + 3058 + 527 + 9 + 25 + Max Withdrawal Year + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of water that can be withdrawn from the storage in a year + 80 + true + + + 3059 + 527 + 9 + 26 + Min Storage Target Percent + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2075 + Minimum Storage Target Percent for water storage + 80 + true + + + 3060 + 527 + 9 + 27 + Max Storage Target Percent + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2076 + Max Storage Target Percent for water storage + 80 + true + + + 3061 + 527 + 7 + 28 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3062 + 527 + 7 + 29 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3063 + 527 + 7 + 30 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3064 + 527 + 7 + 31 + Outage Max Withdrawal + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2353 + Storage Max Withdrawal during the outage + 1000000 + true + + + 3065 + 527 + 7 + 32 + Outage Max Injection + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2354 + Storage Max Injection during the outage + 1000000 + true + + + 3066 + 527 + 7 + 33 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3067 + 527 + 7 + 34 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3068 + 527 + 7 + 35 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3069 + 527 + 7 + 36 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3070 + 527 + 7 + 37 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3071 + 527 + 8 + 38 + Expansion Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2029 + Indicates if Water Storage is eligible for expansion planning + 8 + true + + + 3072 + 527 + 8 + 39 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3073 + 527 + 8 + 40 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Water storage project, for expansion planning. + 8 + true + + + 3074 + 527 + 8 + 41 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Water storage + 8 + true + + + 3075 + 527 + 8 + 42 + Build Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Water storage + 8009 + true + + + 3076 + 527 + 8 + 43 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3077 + 527 + 8 + 44 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Water storage (period over which fixed costs are recovered). + 8 + true + + + 3078 + 527 + 8 + 45 + Retirement Storage + 13 + 0 + In (0,1) + 1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2030 + Indicates if Water Storage is eligible for retirement planning + 8 + true + + + 3079 + 527 + 8 + 46 + Retirement Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Water storage + 88 + true + + + 3080 + 527 + 8 + 47 + Expansion Max Volume + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2028 + Expansion max volume associated with the Water Storage + 8 + true + + + 3081 + 527 + 11 + 48 + Trajectory Non-anticipativity + 67 + -1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 903 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 3082 + 527 + 11 + 49 + Trajectory Non-anticipativity Volume + 64 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1748 + Volume of violation of non-anticipativity constraints in band + 100000000 + true + + + 3083 + 527 + 11 + 50 + Trajectory Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1612 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 3084 + 527 + 12 + 51 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3085 + 527 + 12 + 52 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3086 + 527 + 12 + 53 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3087 + 531 + 1 + 1 + Outage Max Withdrawal + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2353 + Water Storage Max Withdrawal during the outage + 4 + true + + + 3088 + 531 + 1 + 2 + Outage Max Injection + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2354 + Water Storage Max Injection during the outage + 4 + true + + + 3089 + 532 + 3 + 1 + Natural Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + false + + + 3090 + 532 + 3 + 2 + End Volume Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume. + true + + + 3091 + 532 + 3 + 3 + Release Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of water release + true + + + 3092 + 532 + 3 + 4 + Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of water inflow + true + + + 3093 + 532 + 3 + 5 + Ramp Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in water storage end volume + true + + + 3094 + 532 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3095 + 532 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3096 + 532 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3097 + 532 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3098 + 533 + 3 + 1 + Natural Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1806 + Coefficient of natural inflow + true + + + 3099 + 533 + 3 + 2 + End Volume Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 171 + Coefficient of storage end volume + true + + + 3100 + 533 + 3 + 3 + Release Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1122 + Coefficient of water release + true + + + 3101 + 533 + 3 + 4 + Inflow Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1121 + Coefficient of water inflow + true + + + 3102 + 533 + 3 + 5 + Ramp Coefficient + 64 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of change in water storage end volume + true + + + 3103 + 533 + 8 + 6 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3104 + 533 + 8 + 7 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3105 + 533 + 8 + 8 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3106 + 533 + 8 + 9 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3107 + 534 + 3 + 1 + Demand + 65 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 133 + Demand for water + 400 + true + + + 3108 + 534 + 3 + 2 + Shortage Price + 67 + 1000 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1270 + Notional price of water shortage + 40000000 + true + + + 3109 + 534 + 3 + 3 + Excess Price + 67 + -100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1271 + Notional price of water oversupply + 40000000 + true + + + 3110 + 534 + 4 + 4 + Bid Quantity + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 34 + Quantity bid in band + 400000 + true + + + 3111 + 534 + 4 + 5 + Bid Price + 67 + -10000 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 33 + Value of water in band + 400000 + true + + + 3112 + 534 + 12 + 6 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3113 + 534 + 12 + 7 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3114 + 534 + 12 + 8 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3115 + 537 + 1 + 1 + Demand Participation Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1448 + Proportion of water demand that occurs at the water node + 400 + true + + + 3116 + 538 + 8 + 1 + Max Capacity Reserves + 65 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 421 + Maximum capacity reserves allowed + 8C + false + + + 3117 + 538 + 8 + 2 + Min Capacity Reserves + 65 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 479 + Minimum capacity reserves allowed + 8C + false + + + 3118 + 538 + 8 + 3 + Max Capacity Reserve Margin + 12 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 420 + Maximum capacity reserve margin for capacity planning + 8C + true + + + 3119 + 538 + 8 + 4 + Min Capacity Reserve Margin + 12 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 478 + Minimum capacity reserve margin for capacity planning + 8C + true + + + 3120 + 538 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3121 + 538 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3122 + 538 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3123 + 548 + 2 + 1 + Configuration + 0 + 0 + In (0,1) + 0;"Parallel";1;"Series" + 0 + 0 + 0 + 0 + false + true + true + false + 1 + 2256 + Water Pump configuration (series or parallel) + true + + + 3124 + 548 + 3 + 2 + Max Head + 23 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2261 + Maximum head of pump station + true + + + 3125 + 548 + 3 + 3 + Max Flow Rate + 65 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2260 + Maximum flow rate of pump station + true + + + 3126 + 548 + 3 + 4 + Max Power + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1756 + Maximum power of pump station + true + + + 3127 + 555 + 3 + 1 + Flow Rate Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2257 + Coefficient of Water Pump Station flow rate + true + + + 3128 + 555 + 3 + 2 + Head Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2258 + Coefficient of Water Pump Station head + true + + + 3129 + 555 + 3 + 3 + Power Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2259 + Coefficient of Water Pump Station power + true + + + 3130 + 556 + 3 + 1 + Flow Rate Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2257 + Coefficient of Water Pump Station flow rate + true + + + 3131 + 556 + 3 + 2 + Head Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2258 + Coefficient of Water Pump Station head + true + + + 3132 + 556 + 3 + 3 + Power Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2259 + Coefficient of Water Pump Station power + true + + + 3133 + 557 + 3 + 1 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of installed units + 800001 + true + + + 3134 + 557 + 3 + 2 + Efficiency + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 1209 + Water Pump efficiency + true + + + 3135 + 557 + 3 + 3 + Max Flow Rate + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2260 + Max Flow Rate + true + + + 3136 + 557 + 3 + 4 + Max Head + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2261 + Max pump head + true + + + 3137 + 557 + 3 + 5 + Pump Curve Coefficient A + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2262 + Pump Curve Coefficient A for the quadratic term + true + + + 3138 + 557 + 3 + 6 + Pump Curve Coefficient B + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2263 + Pump Curve Coefficient B for the linear term + true + + + 3139 + 557 + 3 + 7 + Pump Curve Coefficient C + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 2264 + Pump Curve Coefficient C for the constant term + true + + + 3140 + 557 + 3 + 8 + Flow Rate Point + 65 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2511 + Flow rate point for the pump curve + true + + + 3141 + 557 + 3 + 9 + Head Point + 23 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2512 + Head point for the pump curve + true + + + 3142 + 557 + 3 + 10 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 3143 + 557 + 3 + 11 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 3144 + 557 + 3 + 12 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a pump must be run after being started + 1000000080 + true + + + 3145 + 557 + 3 + 13 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a pump must be off after being shut down + 1000000080 + true + + + 3146 + 557 + 3 + 14 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a pump can be run after being started + 1000000080 + true + + + 3147 + 557 + 3 + 15 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a pump can be off after being shut down + 1000000080 + true + + + 3148 + 557 + 3 + 16 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 3149 + 557 + 3 + 17 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Number of units that should be committed + 1000000080 + true + + + 3150 + 557 + 3 + 18 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the pump has been up for at time zero + 1000080000 + true + + + 3151 + 557 + 3 + 19 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the pump has been down for at time zero + 1000080000 + true + + + 3152 + 557 + 9 + 20 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 3153 + 557 + 9 + 20 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 3154 + 557 + 9 + 20 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 3155 + 557 + 9 + 20 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 3156 + 557 + 9 + 20 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 3157 + 557 + 9 + 20 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 3158 + 557 + 9 + 21 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints + 1080000080 + true + + + 3159 + 557 + 7 + 22 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 818 + Number of units out of service + 1000000 + true + + + 3160 + 560 + 3 + 1 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of unit start + 80000000 + true + + + 3161 + 561 + 2 + 1 + Fixed Load Global + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2465 + If [Fixed Load] applies across all Vehicles or unit-by-unit + true + + + 3162 + 561 + 2 + 2 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3163 + 561 + 2 + 3 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3164 + 561 + 3 + 4 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of vehicles + 800001 + true + + + 3165 + 561 + 3 + 5 + Capacity + 80 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of the vehicle + 5 + true + + + 3166 + 561 + 3 + 6 + Efficiency + 82 + 200 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Electric vehicle efficiency + 1000 + true + + + 3167 + 561 + 3 + 7 + Demand + 81 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 133 + Travel demand for vehicle + true + + + 3168 + 561 + 3 + 8 + Initial SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1670 + Initial state of charge + 5 + true + + + 3169 + 561 + 3 + 9 + Max SoC + 12 + 100 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1666 + Allowable maximum state of charge + 5 + true + + + 3170 + 561 + 3 + 10 + Min SoC + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1667 + Allowable minimum state of charge + 5 + true + + + 3171 + 561 + 3 + 11 + Max Charge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2109 + Maximum charge rate + 5 + true + + + 3172 + 561 + 3 + 12 + Max Discharge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2110 + Maximum discharge rate + 5 + true + + + 3173 + 561 + 3 + 13 + Charge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 3174 + 561 + 3 + 14 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 3175 + 561 + 3 + 15 + Inertia Constant + 5 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2518 + Stored energy per unit of power + 2 + true + + + 3176 + 561 + 3 + 16 + VO&M Charge + 90 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 3177 + 561 + 3 + 17 + Fixed Load + 79 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 200 + Fixed charging load + true + + + 3178 + 561 + 3 + 18 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3179 + 561 + 8 + 19 + Purchase Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2451 + Cost of purchasing the vehicle + 8009 + true + + + 3180 + 561 + 8 + 20 + Disposal Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2452 + Cost of disposing of the vehicle + 8 + true + + + 3181 + 561 + 8 + 21 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the vehicle + 8 + true + + + 3182 + 561 + 8 + 22 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3183 + 561 + 8 + 23 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the vehicle (period over which fixed costs are recovered) + 9 + true + + + 3184 + 561 + 8 + 24 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3185 + 561 + 8 + 25 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3186 + 561 + 8 + 26 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3187 + 561 + 8 + 27 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3188 + 561 + 8 + 28 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3189 + 561 + 8 + 29 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3190 + 561 + 8 + 30 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3191 + 561 + 8 + 31 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3192 + 561 + 12 + 32 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3193 + 561 + 12 + 33 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3194 + 561 + 12 + 34 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3195 + 564 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + true + false + 1 + 744 + Time the vehicle is at the charging station + true + + + 3196 + 565 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Fleet share of Vehicle + true + + + 3197 + 566 + 1 + 1 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Proportion of energy provided by the Commodity + true + + + 3198 + 567 + 1 + 1 + Distance Coefficient + 81 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2458 + Coefficient of distance travelled by the vehicle + true + + + 3199 + 568 + 1 + 1 + Distance Coefficient + 81 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2458 + Coefficient of distance travelled by the vehicle + true + + + 3200 + 569 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3201 + 569 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3202 + 569 + 3 + 3 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + false + false + 1 + 812 + Number of chargers + 800001 + true + + + 3203 + 569 + 3 + 4 + Max Charge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2109 + Maximum charge rate + 5 + true + + + 3204 + 569 + 3 + 5 + Deferrable Load + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2125 + Proportion of charging load that can be deferred + true + + + 3205 + 569 + 3 + 6 + Deferment Period + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2128 + Length of time load is deferred where zero means one interval + true + + + 3206 + 569 + 3 + 7 + Max Discharge Rate + 79 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2110 + Maximum discharge rate + 5 + true + + + 3207 + 569 + 3 + 8 + Charge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1668 + Efficiency of charging + 1000 + true + + + 3208 + 569 + 3 + 9 + Discharge Efficiency + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1669 + Efficiency of discharging + 1000 + true + + + 3209 + 569 + 3 + 10 + UoS Charge + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1037 + Use of system charge + 2000000000 + true + + + 3210 + 569 + 3 + 11 + Max Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 436 + Maximum charging load across all units + true + + + 3211 + 569 + 3 + 12 + Min Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 486 + Minimum charging load across all units + true + + + 3212 + 569 + 3 + 13 + Fixed Load + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 200 + Fixed charging load across all units + true + + + 3213 + 569 + 3 + 14 + Max Generation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 431 + Maximum generation across all units + true + + + 3214 + 569 + 3 + 15 + Min Generation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 483 + Minimum generation across all units + true + + + 3215 + 569 + 3 + 16 + Fixed Generation + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 198 + Fixed generation across all units + true + + + 3216 + 569 + 3 + 17 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3217 + 569 + 8 + 18 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 3218 + 569 + 8 + 19 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 3219 + 569 + 8 + 20 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of generation project, for expansion planning + 8 + true + + + 3220 + 569 + 8 + 21 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 3221 + 569 + 8 + 22 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3222 + 569 + 8 + 23 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 3223 + 569 + 8 + 24 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3224 + 569 + 8 + 25 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3225 + 569 + 8 + 26 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3226 + 569 + 8 + 27 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3227 + 569 + 8 + 28 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3228 + 569 + 8 + 29 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3229 + 569 + 8 + 30 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3230 + 569 + 8 + 31 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3231 + 569 + 12 + 32 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3232 + 569 + 12 + 33 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3233 + 569 + 12 + 34 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3234 + 575 + 12 + 1 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3235 + 575 + 12 + 2 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3236 + 575 + 12 + 3 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3237 + 578 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company ownership share of the Fleet + true + + + 3238 + 579 + 2 + 1 + Load Includes Losses + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 353 + Flag if input load includes transmission losses + 200000 + true + + + 3239 + 579 + 3 + 2 + Load + 1 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 349 + Own load + load contracts + 100000 + true + + + 3240 + 579 + 5 + 3 + Strategic + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 766 + Percentage of company generation that acts strategically + 40 + true + + + 3241 + 579 + 5 + 4 + Mark-up Bias + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 409 + Bias given towards high revenue periods in mark-ups (cost recovery algorithm) + 40 + true + + + 3242 + 579 + 5 + 5 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound company net profit risk + 4000000000 + true + + + 3243 + 579 + 5 + 6 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 3244 + 579 + 5 + 7 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 3245 + 579 + 7 + 8 + Max Maintenance + 1 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 439 + Maximum generation capacity allowed to be scheduled on maintenance + 1000000 + true + + + 3246 + 579 + 7 + 9 + Min Maintenance + 1 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1452 + Generation capacity that must be scheduled on maintenance + 1000000 + true + + + 3247 + 579 + 7 + 10 + Max Maintenance Factor + 12 + 100 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1456 + Maximum generation capacity allowed to be scheduled on maintenance as a proportion of installed capacity + 1000000 + true + + + 3248 + 579 + 7 + 11 + Min Maintenance Factor + 12 + 0 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1457 + Generation capacity that must be scheduled on maintenance as a proportion of installed capacity + 1000000 + true + + + 3249 + 579 + 12 + 12 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3250 + 579 + 12 + 13 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3251 + 579 + 12 + 14 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3252 + 583 + 1 + 1 + Allocation + 19 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 3 + Emission rights allocation + 2000 + true + + + 3253 + 583 + 1 + 1 + Allocation Hour + 19 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1581 + Emission rights allocation + 2000 + true + + + 3254 + 583 + 1 + 1 + Allocation Day + 20 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 4 + Emission rights allocation + 2000 + true + + + 3255 + 583 + 1 + 1 + Allocation Week + 20 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 6 + Emission rights allocation + 2000 + true + + + 3256 + 583 + 1 + 1 + Allocation Month + 20 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 5 + Emission rights allocation + 2000 + true + + + 3257 + 583 + 1 + 1 + Allocation Year + 20 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 7 + Emission rights allocation + 2000 + true + + + 3258 + 585 + 1 + 1 + Load Participation Factor + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 355 + Proportion of region load the company is responsible for + 100000 + true + + + 3259 + 587 + 1 + 1 + Balancing Area Interchange Hurdle + 33 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2061 + Financial hurdle rate for exports from the company + true + + + 3260 + 587 + 1 + 2 + Max Balancing Area Interchange + 1 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2065 + Maximum financial exports + true + + + 3261 + 589 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's ownership share of Facility + 40 + true + + + 3262 + 590 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Company's share of market trades + 40 + true + + + 3263 + 591 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of company generation + true + + + 3264 + 591 + 3 + 2 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of company committed generation capacity + 1000000004 + true + + + 3265 + 591 + 3 + 3 + Contract Volume Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 110 + Coefficient of company contract volume + 40 + true + + + 3266 + 591 + 3 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 3267 + 591 + 3 + 5 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 3268 + 591 + 5 + 6 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3269 + 591 + 5 + 7 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3270 + 591 + 5 + 8 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3271 + 592 + 3 + 1 + Generation Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 81 + Coefficient of company generation + true + + + 3272 + 592 + 3 + 2 + Committed Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 87 + Coefficient of company committed generation capacity + true + + + 3273 + 592 + 3 + 3 + Contract Volume Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 110 + Coefficient of company contract volume + true + + + 3274 + 592 + 3 + 4 + Unserved Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1482 + Coefficient of unserved energy + 40000000 + true + + + 3275 + 592 + 3 + 5 + Dump Energy Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1483 + Coefficient of dump energy (over generation) + 40000000 + true + + + 3276 + 592 + 5 + 6 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3277 + 592 + 5 + 7 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3278 + 592 + 5 + 8 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3279 + 593 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of inventory balance + true + + + 3280 + 593 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 168 + Method used to value or constrain end-of-period inventory + 400000000 + true + + + 3281 + 593 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal inventory trajectory from one simulation phase to the next + 400000000 + true + + + 3282 + 593 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition inventory target penalty function 'a' term + 400000000 + true + + + 3283 + 593 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition inventory target penalty function 'b' term + 400000000 + true + + + 3284 + 593 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition inventory target penalty function 'c' term + 400000000 + true + + + 3285 + 593 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition inventory target penalty function 'x' term + 400000000 + true + + + 3286 + 593 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of inventory bounds when the decomposition implies possible violations + 400000000 + true + + + 3287 + 593 + 2 + 9 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 3288 + 593 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3289 + 593 + 2 + 11 + Build Cost Multiplier + 0 + 0 + In (0,2) + 0;"None";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 3290 + 593 + 3 + 12 + Units + 0 + 1 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of Commodity 'units' where zero switches the Commodity out of the simulation + 800001 + true + + + 3291 + 593 + 3 + 13 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 612 + Price of the Commodity for the given level of Net Consumption + 1 + true + + + 3292 + 593 + 9 + 14 + Max Consumption + 86 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2273 + Maximum consumption per interval + true + + + 3293 + 593 + 9 + 14 + Max Consumption Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2274 + Maximum consumption per hour + true + + + 3294 + 593 + 9 + 14 + Max Consumption Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2275 + Maximum consumption per day + true + + + 3295 + 593 + 9 + 14 + Max Consumption Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2276 + Maximum consumption per week + true + + + 3296 + 593 + 9 + 14 + Max Consumption Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2277 + Maximum consumption per month + true + + + 3297 + 593 + 9 + 14 + Max Consumption Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2278 + Maximum consumption per year + true + + + 3298 + 593 + 9 + 14 + Max Consumption Custom + 86 + 1E+30 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2279 + Maximum consumption over custom timeframe + true + + + 3299 + 593 + 9 + 15 + Max Consumption Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2280 + Penalty for violation of [Max Consumption] constraints + true + + + 3300 + 593 + 9 + 16 + Min Consumption + 86 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2283 + Minimum consumption per interval + true + + + 3301 + 593 + 9 + 16 + Min Consumption Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2284 + Minimum consumption per hour + true + + + 3302 + 593 + 9 + 16 + Min Consumption Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2285 + Minimum consumption per day + true + + + 3303 + 593 + 9 + 16 + Min Consumption Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2286 + Minimum consumption per week + true + + + 3304 + 593 + 9 + 16 + Min Consumption Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2287 + Minimum consumption per month + true + + + 3305 + 593 + 9 + 16 + Min Consumption Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2288 + Minimum consumption per year + true + + + 3306 + 593 + 9 + 16 + Min Consumption Custom + 86 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2289 + Minimum consumption over custom timeframe + true + + + 3307 + 593 + 9 + 17 + Min Consumption Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2290 + Penalty for violation of [Min Consumption] constraints + true + + + 3308 + 593 + 9 + 18 + Max Production + 86 + 1E+30 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum production per interval + true + + + 3309 + 593 + 9 + 18 + Max Production Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production per hour + true + + + 3310 + 593 + 9 + 18 + Max Production Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production per day + true + + + 3311 + 593 + 9 + 18 + Max Production Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production per week + true + + + 3312 + 593 + 9 + 18 + Max Production Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production per month + true + + + 3313 + 593 + 9 + 18 + Max Production Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production per year + true + + + 3314 + 593 + 9 + 18 + Max Production Custom + 86 + 1E+30 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2281 + Maximum production over custom timeframe + true + + + 3315 + 593 + 9 + 19 + Max Production Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1361 + Penalty for violation of [Max Production] constraints + true + + + 3316 + 593 + 9 + 20 + Min Production + 86 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1275 + Minimum production per interval + true + + + 3317 + 593 + 9 + 20 + Min Production Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production per hour + true + + + 3318 + 593 + 9 + 20 + Min Production Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production per day + true + + + 3319 + 593 + 9 + 20 + Min Production Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production per week + true + + + 3320 + 593 + 9 + 20 + Min Production Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production per month + true + + + 3321 + 593 + 9 + 20 + Min Production Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production per year + true + + + 3322 + 593 + 9 + 20 + Min Production Custom + 86 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2291 + Minimum production over custom timeframe + true + + + 3323 + 593 + 9 + 21 + Min Production Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2292 + Penalty for violation of [Min Production] constraints + true + + + 3324 + 593 + 10 + 22 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3325 + 593 + 10 + 23 + Max Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 3326 + 593 + 10 + 24 + Min Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 3327 + 593 + 10 + 25 + Opening Inventory + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1591 + Initial amount of the Commodity in inventory + true + + + 3328 + 593 + 10 + 26 + Delivery + 86 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Amount of the Commodity added to inventory + true + + + 3329 + 593 + 10 + 27 + Injection Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2507 + Proportion of injected commodity reaching storage net of losses + true + + + 3330 + 593 + 10 + 28 + Withdrawal Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2508 + Proportion of commodity withdrawn from storage net of losses + true + + + 3331 + 593 + 10 + 29 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of deliveries of the Commodity to inventory + true + + + 3332 + 593 + 10 + 30 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost of keeping the Commodity in inventory + true + + + 3333 + 593 + 10 + 31 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity + true + + + 3334 + 593 + 10 + 32 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1252 + Cost of adding the Commodity to inventory + true + + + 3335 + 593 + 10 + 33 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Cost of taking the Commodity out of inventory + true + + + 3336 + 593 + 10 + 34 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of the Commodity that can be taken from inventory in any interval + 400000000 + true + + + 3337 + 593 + 10 + 34 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of the Commodity that can be taken from inventory in a hour + 400000000 + true + + + 3338 + 593 + 10 + 34 + Max Withdrawal Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of the Commodity that can be taken from inventory in a day + 400000000 + true + + + 3339 + 593 + 10 + 34 + Max Withdrawal Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of the Commodity that can be taken from inventory in a week + 400000000 + true + + + 3340 + 593 + 10 + 34 + Max Withdrawal Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of the Commodity that can be taken from inventory in a month + 400000000 + true + + + 3341 + 593 + 10 + 34 + Max Withdrawal Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of the Commodity that can be taken from inventory in a year + 400000000 + true + + + 3342 + 593 + 10 + 35 + Max Injection + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of the Commodity that can be put into inventory in any interval + 400000000 + true + + + 3343 + 593 + 10 + 35 + Max Injection Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of the Commodity that can be put into inventory in any hour + 400000000 + true + + + 3344 + 593 + 10 + 35 + Max Injection Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of the Commodity that can be put into inventory in any day + 400000000 + true + + + 3345 + 593 + 10 + 35 + Max Injection Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of the Commodity that can be put into inventory in any week + 400000000 + true + + + 3346 + 593 + 10 + 35 + Max Injection Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of the Commodity that can be put into inventory in any month + 400000000 + true + + + 3347 + 593 + 10 + 35 + Max Injection Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of the Commodity that can be put into inventory in any year + 400000000 + true + + + 3348 + 593 + 10 + 36 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1258 + Amount of the Commodity that must be taken from inventory each interval + 400000000 + true + + + 3349 + 593 + 10 + 36 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of the Commodity that must be taken from inventory each hour + 400000000 + true + + + 3350 + 593 + 10 + 36 + Min Withdrawal Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of the Commodity that must be taken from inventory each day + 400000000 + true + + + 3351 + 593 + 10 + 36 + Min Withdrawal Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of the Commodity that must be taken from inventory each week + 400000000 + true + + + 3352 + 593 + 10 + 36 + Min Withdrawal Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of the Commodity that must be taken from inventory each month + 400000000 + true + + + 3353 + 593 + 10 + 36 + Min Withdrawal Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of the Commodity that must be taken from inventory each year + 400000000 + true + + + 3354 + 593 + 10 + 37 + Min Injection + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1263 + Amount of the Commodity that must be added to inventory in any interval + 400000000 + true + + + 3355 + 593 + 10 + 37 + Min Injection Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of the Commodity that must be added to inventory in any hour + 400000000 + true + + + 3356 + 593 + 10 + 37 + Min Injection Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of the Commodity that must be added to inventory in any day + 400000000 + true + + + 3357 + 593 + 10 + 37 + Min Injection Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of the Commodity that must be added to inventory in any week + 400000000 + true + + + 3358 + 593 + 10 + 37 + Min Injection Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of the Commodity that must be added to inventory in any month + 400000000 + true + + + 3359 + 593 + 10 + 37 + Min Injection Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of the Commodity that must be added to inventory in any year + 400000000 + true + + + 3360 + 593 + 10 + 38 + Max Inventory Change + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2333 + Maximum rate of change in inventory in any interval + 400000000 + true + + + 3361 + 593 + 10 + 38 + Max Inventory Change Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2334 + Maximum rate of change in inventory in any hour + 400000000 + true + + + 3362 + 593 + 10 + 38 + Max Inventory Change Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2335 + Maximum rate of change in inventory in any day + 400000000 + true + + + 3363 + 593 + 10 + 38 + Max Inventory Change Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2336 + Maximum rate of change in inventory in any week + 400000000 + true + + + 3364 + 593 + 10 + 38 + Max Inventory Change Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2337 + Maximum rate of change in inventory in any month + 400000000 + true + + + 3365 + 593 + 10 + 38 + Max Inventory Change Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2338 + Maximum rate of change in inventory in any year + 400000000 + true + + + 3366 + 593 + 10 + 39 + Max Inventory Change Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2339 + Penalty for violating the [Max Ramp] constraints + 400000000 + true + + + 3367 + 593 + 10 + 40 + Target + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Target level of inventory at the end of the interval + 400000000 + true + + + 3368 + 593 + 10 + 40 + Target Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + Target level of inventory at the end of the hour + 400000000 + true + + + 3369 + 593 + 10 + 40 + Target Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + Target level of inventory at the end of the day + 400000000 + true + + + 3370 + 593 + 10 + 40 + Target Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + Target level of inventory at the end of the week + 400000000 + true + + + 3371 + 593 + 10 + 40 + Target Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + Target level of inventory at the end of the month + 400000000 + true + + + 3372 + 593 + 10 + 40 + Target Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + Target level of inventory at the end of the year + 400000000 + true + + + 3373 + 593 + 10 + 40 + Target Custom + 86 + 0 + >=0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2542 + Target level of inventory at the end of the horizon + 400000000 + true + + + 3374 + 593 + 10 + 41 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target inventory + 400000000 + true + + + 3375 + 593 + 5 + 42 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 3376 + 593 + 5 + 43 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 3377 + 593 + 5 + 44 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 3378 + 593 + 8 + 45 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 3379 + 593 + 8 + 46 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 3380 + 593 + 8 + 47 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 3381 + 593 + 8 + 48 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 3382 + 593 + 8 + 49 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3383 + 593 + 8 + 50 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 3384 + 593 + 8 + 51 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3385 + 593 + 8 + 52 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3386 + 593 + 8 + 53 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3387 + 593 + 8 + 54 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3388 + 593 + 8 + 55 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3389 + 593 + 8 + 56 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3390 + 593 + 8 + 57 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3391 + 593 + 8 + 58 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3392 + 593 + 8 + 59 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 3393 + 593 + 11 + 60 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 3394 + 593 + 11 + 61 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 3395 + 593 + 12 + 62 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3396 + 593 + 12 + 63 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3397 + 593 + 12 + 64 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3398 + 597 + 3 + 1 + Consumption Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption in the Constraint + true + + + 3399 + 597 + 3 + 2 + Production Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production in the Constraint + true + + + 3400 + 597 + 10 + 3 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 3401 + 597 + 10 + 4 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 3402 + 597 + 10 + 5 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 3403 + 597 + 10 + 6 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 3404 + 597 + 10 + 7 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 3405 + 597 + 5 + 8 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3406 + 597 + 5 + 9 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3407 + 597 + 5 + 10 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3408 + 597 + 8 + 11 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3409 + 597 + 8 + 12 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3410 + 597 + 8 + 13 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3411 + 597 + 8 + 14 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3412 + 597 + 8 + 15 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3413 + 597 + 8 + 16 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3414 + 597 + 8 + 17 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3415 + 597 + 8 + 18 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3416 + 597 + 8 + 19 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3417 + 598 + 3 + 1 + Consumption Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption in the Objective + true + + + 3418 + 598 + 3 + 2 + Production Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production + true + + + 3419 + 598 + 10 + 3 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 3420 + 598 + 10 + 4 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 3421 + 598 + 10 + 5 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 3422 + 598 + 10 + 6 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 3423 + 598 + 10 + 7 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 3424 + 598 + 5 + 8 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3425 + 598 + 5 + 9 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3426 + 598 + 5 + 10 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3427 + 598 + 8 + 11 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3428 + 598 + 8 + 12 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3429 + 598 + 8 + 13 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3430 + 598 + 8 + 14 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3431 + 598 + 8 + 15 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3432 + 598 + 8 + 16 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3433 + 598 + 8 + 17 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3434 + 598 + 8 + 18 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3435 + 598 + 8 + 19 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3436 + 599 + 1 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Process is modeled + 800001 + true + + + 3437 + 599 + 1 + 2 + Capacity + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1665 + Capacity of production measured in units of the primary output + true + + + 3438 + 599 + 1 + 3 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1209 + Ratio of primary output production to primary input consumption + true + + + 3439 + 599 + 1 + 4 + Processing Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1738 + Unit cost of production charged per unit of the primary output + true + + + 3440 + 599 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3441 + 599 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3442 + 599 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3443 + 602 + 1 + 1 + Conversion Factor + 0 + 1 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2366 + Primary Input units per unit of Primary Output + true + + + 3444 + 603 + 1 + 1 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient in production definition of the number of units operating at the Facility + true + + + 3445 + 603 + 1 + 2 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient in production definition of the capacity of operating units at the Facility + true + + + 3446 + 603 + 1 + 3 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient in production definition of the available capacity at the Facility + true + + + 3447 + 603 + 1 + 4 + Operating Minimum Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2347 + Coefficient in production definition of the minimum operating level at the Facility + true + + + 3448 + 603 + 1 + 5 + Unit Maximum + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2348 + Maximum production as proportion of primary output + true + + + 3449 + 604 + 1 + 1 + Denominator + 0 + 0 + In (0,1) + 0;"Input";1;"Output" + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2464 + The denominator for the Ratio property where "Input" refers to the Primary Input and "Output" refers to the Primary Output + true + + + 3450 + 604 + 1 + 2 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Secondary input consumption as a proportion of primary input consumption + true + + + 3451 + 605 + 1 + 1 + Ratio + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 666 + Secondary output production as a proportion of primary output production + true + + + 3452 + 605 + 1 + 2 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient in production definition of the number of units operating at the Facility + true + + + 3453 + 605 + 1 + 3 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient in production definition of the capacity of operating units at the Facility + true + + + 3454 + 605 + 1 + 4 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient in production definition of the available capacity at the Facility + true + + + 3455 + 605 + 1 + 5 + Operating Minimum Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2347 + Coefficient in production definition of the minimum operating level at the Facility + true + + + 3456 + 605 + 1 + 6 + Unit Maximum + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2348 + Maximum production as proportion of primary output + true + + + 3457 + 606 + 1 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Process production in the Constraint + true + + + 3458 + 606 + 1 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Process production in the Constraint + true + + + 3459 + 607 + 1 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Process consumption + true + + + 3460 + 607 + 1 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Process production + true + + + 3461 + 608 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the facility for the generation of outages + 101000000 + true + + + 3462 + 608 + 2 + 2 + Min Operating Level Global + 0 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2502 + If [Min Operating Level/Factor] applies across all units at the Facility or unit-by-unit + true + + + 3463 + 608 + 2 + 3 + Fixed Production Method + 0 + 1 + In (0,1) + 0;"Relax When Zero";1;"Enforce Zero Values" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2461 + Method of interpreting zero values of the [Fixed Production] property. + 80 + true + + + 3464 + 608 + 2 + 4 + Fixed Production Global + 0 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2466 + If [Fixed Production] applies across all units at the Facility or unit-by-unit + true + + + 3465 + 608 + 2 + 5 + Max Efficiency Tranches + 0 + 0 + Between 1 And 100 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2443 + Maximum number of tranches in the efficiency piecewise linear approximation + 1000 + true + + + 3466 + 608 + 2 + 6 + Formulate Non-convex + 0 + 2 + In (0,1,2) + 0;"Never";1;"Auto";2;"Always" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1425 + Controls when integers are used to enforce clearing of marginal efficiency tranches in order + 1000 + true + + + 3467 + 608 + 2 + 7 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 3468 + 608 + 2 + 8 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3469 + 608 + 2 + 9 + Build Cost Multiplier + 0 + 0 + In (0,1) + 0;"None";1;"Production Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 3470 + 608 + 3 + 10 + Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Number of existing units + 800001 + true + + + 3471 + 608 + 3 + 11 + Max Operating Level + 94 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2293 + Maximum unit operating capacity + 5 + true + + + 3472 + 608 + 3 + 12 + Min Operating Factor + 12 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2295 + Minimum unit level required when operating as a proportion of the maximum + 1000000080 + true + + + 3473 + 608 + 3 + 13 + Min Operating Level + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2470 + Minimum unit production level required when operating + 1000000080 + true + + + 3474 + 608 + 3 + 14 + Efficiency Base + 93 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 887 + Primary Process consumption at notional zero production + 1000 + true + + + 3475 + 608 + 3 + 15 + Efficiency Point + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1340 + Operating level associated with [Efficiency Incr] + 1000 + true + + + 3476 + 608 + 3 + 16 + Efficiency Incr + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 163 + Primary Process marginal efficiency at the given [Efficiency Point] + 1000 + true + + + 3477 + 608 + 3 + 17 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1209 + Primary Process average efficiency at the given [Efficiency Point] + 1000 + true + + + 3478 + 608 + 3 + 18 + VO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 849 + Variable operation and maintenance charge + 2000000001 + true + + + 3479 + 608 + 3 + 19 + FO&M Charge + 108 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3480 + 608 + 3 + 20 + Running Cost + 48 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 978 + Fixed cost of running a unit when operating + 20000000 + true + + + 3481 + 608 + 3 + 21 + Start Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 761 + Cost of starting a unit + 1020000001 + true + + + 3482 + 608 + 3 + 22 + Start Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1172 + Penalty applied to starting a unit + 80000000 + true + + + 3483 + 608 + 3 + 23 + Start Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1749 + Flag if start is allowed in the given time period + 1000000080 + true + + + 3484 + 608 + 3 + 24 + Shutdown Cost + 14 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 747 + Cost of shutting down a unit + 1200000000 + true + + + 3485 + 608 + 3 + 25 + Shutdown Penalty + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1173 + Penalty applied to shutting down a unit + 200000000 + true + + + 3486 + 608 + 3 + 26 + Min Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 507 + Minimum number of hours a unit must be run after being started + 1000000080 + true + + + 3487 + 608 + 3 + 27 + Min Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 480 + Minimum number of hours a unit must be off after being shut down + 1000000080 + true + + + 3488 + 608 + 3 + 28 + Max Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1424 + Maximum number of hours a unit can be run after being started + 1000000080 + true + + + 3489 + 608 + 3 + 29 + Max Down Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1930 + Maximum number of hours a unit can be off after being shut down + 1000000080 + true + + + 3490 + 608 + 3 + 30 + Warm Up Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2496 + Number of hours required to warm up the Facility + 1000000080 + true + + + 3491 + 608 + 3 + 31 + Warm Up Operating Level + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2498 + Unit operating level when in the warm up period + 1000000080 + true + + + 3492 + 608 + 3 + 32 + Must-Run Units + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 527 + Number of must-run units + 1000000080 + true + + + 3493 + 608 + 3 + 33 + Fixed Production + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2304 + Fixed (exact) production + 80 + true + + + 3494 + 608 + 3 + 34 + Fixed Production Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2462 + Penalty for violation of [Fixed Production] + 80 + true + + + 3495 + 608 + 3 + 35 + Commit + 0 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 86 + Fixed (exact) number of units operating + 1000000080 + true + + + 3496 + 608 + 3 + 36 + Ramp Up Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1178 + Charge applied to ramping up + 80 + true + + + 3497 + 608 + 3 + 37 + Ramp Down Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1179 + Charge applied to ramping down + 80 + true + + + 3498 + 608 + 3 + 38 + Max Ramp Up + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 448 + Maximum ramp up rate + 80 + true + + + 3499 + 608 + 3 + 39 + Max Ramp Up Factor + 12 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2468 + Maximum ramp up rate expressed as a proportion of the maximum operating level + 80 + true + + + 3500 + 608 + 3 + 40 + Max Ramp Up Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 660 + Penalty for violating [Max Ramp Up] constraint + 80 + true + + + 3501 + 608 + 3 + 41 + Max Ramp Down + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 447 + Maximum ramp down rate + 80 + true + + + 3502 + 608 + 3 + 42 + Max Ramp Down Factor + 12 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2469 + Maximum ramp down rate expressed as a proportion of the maximum operating level + 80 + true + + + 3503 + 608 + 3 + 43 + Max Ramp Down Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 656 + Penalty for violating [Max Ramp Down] constraint + 80 + true + + + 3504 + 608 + 3 + 44 + Initial Production + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2460 + Production at time zero + 80000 + true + + + 3505 + 608 + 3 + 45 + Initial Units Operating + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2300 + Number of units operating at time zero + 1000080000 + true + + + 3506 + 608 + 3 + 46 + Initial Hours Up + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 315 + Hours the unit has been up for at time zero + 1000080000 + true + + + 3507 + 608 + 3 + 47 + Initial Hours Down + 6 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 314 + Hours the unit has been down for at time zero + 1000080000 + true + + + 3508 + 608 + 3 + 48 + Electric Energy Consumption + 109 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2473 + Electric energy consumption of Facility per unit of the Primary Output + true + + + 3509 + 608 + 3 + 49 + Heat Consumption + 110 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2751 + Heat consumption of Facility per unit of the Primary Output + true + + + 3510 + 608 + 3 + 50 + Gas Consumption + 111 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2730 + Gas consumption of Facility per unit of the Primary Output + true + + + 3511 + 608 + 3 + 51 + Water Consumption + 112 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1803 + Water consumption of Facility per unit of the Primary Output + true + + + 3512 + 608 + 9 + 52 + Max Production + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 949 + Maximum production + 80 + true + + + 3513 + 608 + 9 + 52 + Max Production Hour + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1561 + Maximum production in hour + 80 + true + + + 3514 + 608 + 9 + 52 + Max Production Day + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 950 + Maximum production in day + 80 + true + + + 3515 + 608 + 9 + 52 + Max Production Week + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 951 + Maximum production in week + 80 + true + + + 3516 + 608 + 9 + 52 + Max Production Month + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 952 + Maximum production in month + 80 + true + + + 3517 + 608 + 9 + 52 + Max Production Year + 94 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 953 + Maximum production in year + 80 + true + + + 3518 + 608 + 9 + 53 + Min Production + 94 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1275 + Minimum production + 80 + true + + + 3519 + 608 + 9 + 53 + Min Production Hour + 94 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1572 + Minimum production in hour + 80 + true + + + 3520 + 608 + 9 + 53 + Min Production Day + 94 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1276 + Minimum production in day + 80 + true + + + 3521 + 608 + 9 + 53 + Min Production Week + 94 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1277 + Minimum production in week + 80 + true + + + 3522 + 608 + 9 + 53 + Min Production Month + 94 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1278 + Minimum production in month + 80 + true + + + 3523 + 608 + 9 + 53 + Min Production Year + 94 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1279 + Minimum production in year + 80 + true + + + 3524 + 608 + 9 + 54 + Max Capacity Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 415 + Maximum capacity factor in the interval + 80 + true + + + 3525 + 608 + 9 + 54 + Max Capacity Factor Hour + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1550 + Maximum capacity factor in hour + 80 + true + + + 3526 + 608 + 9 + 54 + Max Capacity Factor Day + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 416 + Maximum capacity factor in day + 80 + true + + + 3527 + 608 + 9 + 54 + Max Capacity Factor Week + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 418 + Maximum capacity factor in week + 80 + true + + + 3528 + 608 + 9 + 54 + Max Capacity Factor Month + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 417 + Maximum capacity factor in month + 80 + true + + + 3529 + 608 + 9 + 54 + Max Capacity Factor Year + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 419 + Maximum capacity factor in year + 80 + true + + + 3530 + 608 + 9 + 55 + Min Capacity Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 473 + Minimum capacity factor in the interval + 80 + true + + + 3531 + 608 + 9 + 55 + Min Capacity Factor Hour + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1551 + Minimum capacity factor in hour + 80 + true + + + 3532 + 608 + 9 + 55 + Min Capacity Factor Day + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 474 + Minimum capacity factor in day + 80 + true + + + 3533 + 608 + 9 + 55 + Min Capacity Factor Week + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 476 + Minimum capacity factor in week + 80 + true + + + 3534 + 608 + 9 + 55 + Min Capacity Factor Month + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 475 + Minimum capacity factor in month + 80 + true + + + 3535 + 608 + 9 + 55 + Min Capacity Factor Year + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 477 + Minimum capacity factor in year + 80 + true + + + 3536 + 608 + 9 + 56 + Max Production Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1361 + Penalty applied to violations of [Max Production] and [Max Capacity Factor] constraints + 80 + true + + + 3537 + 608 + 9 + 57 + Min Production Penalty + 14 + 10000 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2292 + Penalty applied to violations of [Min Production] and [Min Capacity Factor] constraints + 80 + true + + + 3538 + 608 + 9 + 58 + Max Starts + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1211 + Maximum number of starts allowed + 1080000080 + true + + + 3539 + 608 + 9 + 58 + Max Starts Hour + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 6 + false + false + true + false + 1 + 1552 + Maximum number of starts allowed in a hour + 1080000080 + true + + + 3540 + 608 + 9 + 58 + Max Starts Day + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 1 + false + false + true + false + 1 + 1212 + Maximum number of starts allowed in a day + 1080000080 + true + + + 3541 + 608 + 9 + 58 + Max Starts Week + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 2 + false + false + true + false + 1 + 1213 + Maximum number of starts allowed in a week + 1080000080 + true + + + 3542 + 608 + 9 + 58 + Max Starts Month + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 3 + false + false + true + false + 1 + 1214 + Maximum number of starts allowed in a month + 1080000080 + true + + + 3543 + 608 + 9 + 58 + Max Starts Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 4 + false + false + true + false + 1 + 1215 + Maximum number of starts allowed in a year + 1080000080 + true + + + 3544 + 608 + 9 + 59 + Max Starts Penalty + 14 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1216 + Penalty applied to violations of [Max Starts] constraints + 1080000080 + true + + + 3545 + 608 + 5 + 60 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound net profit risk + 4000000000 + true + + + 3546 + 608 + 5 + 61 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 3547 + 608 + 5 + 62 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 3548 + 608 + 7 + 63 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000001 + true + + + 3549 + 608 + 7 + 64 + Forced Outage + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 217 + Capacity lost to forced outage + 1000000 + true + + + 3550 + 608 + 7 + 65 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 3551 + 608 + 7 + 66 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000001 + true + + + 3552 + 608 + 7 + 67 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3553 + 608 + 7 + 68 + Maintenance + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 392 + Capacity lost to maintenance + 1000000 + false + + + 3554 + 608 + 7 + 69 + Outage Factor + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1892 + Unit outage rating based on the unit capacity + 1000000 + true + + + 3555 + 608 + 7 + 70 + Outage Operating Level + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2301 + Unit rating during outage + 1000000 + true + + + 3556 + 608 + 7 + 71 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000001 + true + + + 3557 + 608 + 7 + 72 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3558 + 608 + 7 + 73 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3559 + 608 + 7 + 74 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3560 + 608 + 7 + 75 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3561 + 608 + 8 + 76 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 3562 + 608 + 8 + 77 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 3563 + 608 + 8 + 78 + One-time Cost + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1958 + One-time cost associated with the project + 8 + true + + + 3564 + 608 + 8 + 79 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3565 + 608 + 8 + 80 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 3566 + 608 + 8 + 81 + Commission Date + 0 + 1 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1339 + Date the facility was commissioned for use with [Technical Life] + 8 + true + + + 3567 + 608 + 8 + 82 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 3568 + 608 + 8 + 83 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3569 + 608 + 8 + 84 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 3570 + 608 + 8 + 85 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3571 + 608 + 8 + 86 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3572 + 608 + 8 + 87 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3573 + 608 + 8 + 88 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3574 + 608 + 8 + 89 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3575 + 608 + 8 + 90 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3576 + 608 + 8 + 91 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3577 + 608 + 8 + 92 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3578 + 608 + 8 + 93 + Build Set Size + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1453 + Expansion must occur in sets of this many units where zero indicates any set size + 88 + true + + + 3579 + 608 + 8 + 94 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 3580 + 608 + 11 + 95 + Unit Commitment Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 968 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 1100000000 + true + + + 3581 + 608 + 11 + 96 + Unit Commitment Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 969 + Window of time over which to enforce unit commitment non-anticipativity constraints + 1100000000 + true + + + 3582 + 608 + 11 + 97 + Production Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2302 + Price for violating production non-anticipativity constraints + 100000000 + true + + + 3583 + 608 + 11 + 98 + Production Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2303 + Window of time over which to enforce production non-anticipativity constraints + 100000000 + true + + + 3584 + 608 + 11 + 99 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 3585 + 608 + 11 + 100 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 3586 + 608 + 12 + 101 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3587 + 608 + 12 + 102 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3588 + 608 + 12 + 103 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3589 + 619 + 3 + 1 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Consumption for each unit of production + true + + + 3590 + 619 + 3 + 2 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Consumption for each unit operating + 1000000000 + true + + + 3591 + 619 + 6 + 3 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Consumption for each installed unit + 4 + true + + + 3592 + 620 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Percentage share of interest in the Facility + true + + + 3593 + 621 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption in the Constraint + true + + + 3594 + 621 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production in the Constraint + true + + + 3595 + 621 + 3 + 3 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor + true + + + 3596 + 621 + 3 + 4 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + 1000000000 + true + + + 3597 + 621 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 3598 + 621 + 3 + 6 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + 80000000 + true + + + 3599 + 621 + 3 + 7 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 3600 + 621 + 3 + 8 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the unit has been off + 1000000000 + true + + + 3601 + 621 + 3 + 9 + Ramp Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 3602 + 621 + 3 + 10 + Ramp Up Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 3603 + 621 + 3 + 11 + Ramp Down Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 3604 + 621 + 3 + 12 + Ramp Up Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 3605 + 621 + 3 + 13 + Ramp Down Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 3606 + 621 + 5 + 14 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3607 + 621 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3608 + 621 + 5 + 16 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3609 + 621 + 6 + 17 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 3610 + 621 + 6 + 18 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 3611 + 621 + 6 + 19 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 3612 + 621 + 6 + 20 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient of capacity of operating units + 1000000004 + true + + + 3613 + 621 + 7 + 21 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 3614 + 621 + 7 + 22 + Maintenance Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 3615 + 621 + 8 + 23 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3616 + 621 + 8 + 24 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3617 + 621 + 8 + 25 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3618 + 621 + 8 + 26 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3619 + 621 + 8 + 27 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3620 + 621 + 8 + 28 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3621 + 621 + 8 + 29 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3622 + 621 + 8 + 30 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3623 + 621 + 8 + 31 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3624 + 622 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption in the Objective + true + + + 3625 + 622 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production + true + + + 3626 + 622 + 3 + 3 + Capacity Factor Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 60 + Coefficient of capacity factor + true + + + 3627 + 622 + 3 + 4 + Operating Hours Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1403 + Coefficient of number of hours of operation + 1000000000 + true + + + 3628 + 622 + 3 + 5 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient on the number of units operating + 1000000000 + true + + + 3629 + 622 + 3 + 6 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient on the number of units started + 80000000 + true + + + 3630 + 622 + 3 + 7 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient on the number of units shutdown + 200000000 + true + + + 3631 + 622 + 3 + 8 + Hours Down Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1478 + Coefficient of number of hours the unit has been off + 1000000000 + true + + + 3632 + 622 + 3 + 9 + Ramp Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1125 + Coefficient of ramp + true + + + 3633 + 622 + 3 + 10 + Ramp Up Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1290 + Coefficient of ramp up + true + + + 3634 + 622 + 3 + 11 + Ramp Down Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1289 + Coefficient of ramp down + true + + + 3635 + 622 + 3 + 12 + Ramp Up Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1292 + Coefficient of max ramp up violation + true + + + 3636 + 622 + 3 + 13 + Ramp Down Violation Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1291 + Coefficient of max ramp down violation + true + + + 3637 + 622 + 5 + 14 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3638 + 622 + 5 + 15 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3639 + 622 + 5 + 16 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3640 + 622 + 6 + 17 + Units Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2729 + Coefficient of the number of installed units + 4 + true + + + 3641 + 622 + 6 + 18 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + C + true + + + 3642 + 622 + 6 + 19 + Available Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 3643 + 622 + 6 + 20 + Operating Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2375 + Coefficient of capacity of operating units + 1000000004 + true + + + 3644 + 622 + 7 + 21 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 1000000 + true + + + 3645 + 622 + 7 + 22 + Maintenance Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1546 + Coefficient of capacity on maintenance + 4 + true + + + 3646 + 622 + 8 + 23 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3647 + 622 + 8 + 24 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3648 + 622 + 8 + 25 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3649 + 622 + 8 + 26 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3650 + 622 + 8 + 27 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3651 + 622 + 8 + 28 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3652 + 622 + 8 + 29 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3653 + 622 + 8 + 30 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3654 + 622 + 8 + 31 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3655 + 623 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Facility consumption + true + + + 3656 + 623 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Facility production + true + + + 3657 + 623 + 3 + 3 + Units Operating Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2044 + Coefficient of the number of units operating + true + + + 3658 + 623 + 3 + 4 + Units Started Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 824 + Coefficient of the number of unit started + true + + + 3659 + 623 + 3 + 5 + Units Shutdown Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1175 + Coefficient of number of units shutdown + true + + + 3660 + 623 + 6 + 6 + Installed Capacity Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 321 + Coefficient of installed capacity + true + + + 3661 + 623 + 6 + 7 + Available Capacity Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1288 + Coefficient of available capacity + 4 + true + + + 3662 + 623 + 7 + 8 + Outage Coefficient + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2563 + Coefficient of capacity on outage + 4 + true + + + 3663 + 623 + 7 + 9 + Units Out Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 819 + Coefficient on the number of units out of service + 4 + true + + + 3664 + 623 + 8 + 10 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3665 + 623 + 8 + 11 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3666 + 623 + 8 + 12 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3667 + 623 + 8 + 13 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3668 + 623 + 8 + 14 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + true + + + 3669 + 623 + 8 + 15 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + true + + + 3670 + 623 + 8 + 16 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + true + + + 3671 + 623 + 8 + 17 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + true + + + 3672 + 624 + 6 + 1 + Duration + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 1476 + Duration of the maintenance event. + 4 + true + + + 3673 + 624 + 6 + 2 + Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + true + false + 1 + 1687 + Window of time over which the maintenance is allowed. + 80 + true + + + 3674 + 624 + 6 + 3 + Start Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1749 + Flag if the maintenance event is allowed to start in the period. + 80 + true + + + 3675 + 624 + 6 + 4 + End Window + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 1750 + Flag if the maintenance event is allowed to end in the period. + 80 + true + + + 3676 + 624 + 6 + 5 + Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 117 + Cost of the maintenance event. + 2000000000 + true + + + 3677 + 624 + 6 + 6 + Crew + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1688 + Maintenance event crew requirements. + 2000000000 + true + + + 3678 + 624 + 6 + 7 + Equipment + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1689 + Maintenance event equipment requirements. + 2000000000 + true + + + 3679 + 624 + 6 + 8 + Lead Time + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1751 + Minimum number of hours lead time between the start of this event and the end of any Prerequisites. + 80 + true + + + 3680 + 624 + 6 + 9 + Mutually Exclusive + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 998 + If this maintenance event must occur independently of others. + 80 + false + + + 3681 + 624 + 6 + 10 + Penalty Cost + 14 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 603 + Cost of not scheduling this maintenance event. + 2000000000 + true + + + 3682 + 624 + 6 + 11 + Min Occurrence + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1696 + Number of times this event must occurs in the Horizon. + 80 + true + + + 3683 + 624 + 6 + 11 + Min Occurrence Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1697 + Number of times this event must occur each hour. + 80 + true + + + 3684 + 624 + 6 + 11 + Min Occurrence Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1698 + Number of times this event must occur each day. + 80 + true + + + 3685 + 624 + 6 + 11 + Min Occurrence Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1699 + Number of times this event must occur each week. + 80 + true + + + 3686 + 624 + 6 + 11 + Min Occurrence Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1700 + Number of times this event must occur each month. + 80 + true + + + 3687 + 624 + 6 + 11 + Min Occurrence Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1701 + Number of times this event must occur each year. + 80 + true + + + 3688 + 624 + 11 + 12 + Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 3689 + 624 + 12 + 13 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3690 + 624 + 12 + 14 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3691 + 624 + 12 + 15 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3692 + 628 + 1 + 1 + Hours Active Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1691 + Coefficient of number of hours the maintenance is active. + true + + + 3693 + 628 + 1 + 2 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1692 + Coefficient of maintenance cost incurred. + true + + + 3694 + 628 + 1 + 3 + Crew Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1693 + Coefficient of maintenance event crew usage. + true + + + 3695 + 628 + 1 + 4 + Equipment Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1694 + Coefficient of maintenance event equipment usage. + true + + + 3696 + 628 + 1 + 5 + Start Hour Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1800 + Coefficient of the hour in the simulation the maintenance event started + false + + + 3697 + 628 + 1 + 6 + Start Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1839 + Coefficient on the number of maintenances started + true + + + 3698 + 629 + 1 + 1 + Hours Active Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1691 + Coefficient of number of hours the maintenance is active + true + + + 3699 + 629 + 1 + 2 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1692 + Coefficient of maintenance cost incurred + true + + + 3700 + 629 + 1 + 3 + Crew Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1693 + Coefficient of maintenance event crew usage + true + + + 3701 + 629 + 1 + 4 + Equipment Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1694 + Coefficient of maintenance event equipment usage + true + + + 3702 + 629 + 1 + 5 + Start Hour Coefficient + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1800 + Coefficient of the hour in the simulation the maintenance event started + true + + + 3703 + 629 + 1 + 6 + Start Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1839 + Coefficient on the number of maintenances started + true + + + 3704 + 630 + 3 + 1 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Network is in service + 800000 + true + + + 3705 + 630 + 12 + 2 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3706 + 630 + 12 + 3 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3707 + 630 + 12 + 4 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3708 + 639 + 2 + 1 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3709 + 639 + 2 + 2 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3710 + 639 + 3 + 3 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Node is in service + 800000 + true + + + 3711 + 639 + 3 + 4 + Flow Charge + 96 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1268 + Unit cost of flowing the Commodity through the Flow Node + true + + + 3712 + 639 + 3 + 5 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3713 + 639 + 9 + 6 + Max Flow + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow through the Flow Node each interval + 5 + true + + + 3714 + 639 + 9 + 6 + Max Flow Hour + 94 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1584 + Maximum flow through the Flow Node each hour + 4 + true + + + 3715 + 639 + 9 + 6 + Max Flow Day + 94 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow through the Flow Node each day + 4 + true + + + 3716 + 639 + 9 + 6 + Max Flow Week + 94 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1586 + Maximum flow through the Flow Node each week + 4 + true + + + 3717 + 639 + 9 + 6 + Max Flow Month + 94 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1587 + Maximum flow through the Flow Node each month + 4 + true + + + 3718 + 639 + 9 + 6 + Max Flow Year + 94 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1588 + Maximum flow through the Flow Node each year + 4 + true + + + 3719 + 639 + 9 + 7 + Min Flow + 94 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 481 + Minimum flow through the Flow Node each interval + 5 + true + + + 3720 + 639 + 9 + 7 + Min Flow Hour + 94 + -1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 2355 + Minimum flow through the Flow Node each hour + 4 + true + + + 3721 + 639 + 9 + 7 + Min Flow Day + 94 + -1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum flow through the Flow Node each day + 4 + true + + + 3722 + 639 + 9 + 7 + Min Flow Week + 94 + -1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 2357 + Minimum flow through the Flow Node each week + 4 + true + + + 3723 + 639 + 9 + 7 + Min Flow Month + 94 + -1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 2358 + Minimum flow through the Flow Node each month + 4 + true + + + 3724 + 639 + 9 + 7 + Min Flow Year + 94 + -1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 2359 + Minimum flow through the Flow Node each year + 4 + true + + + 3725 + 639 + 8 + 8 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Flow Node + 8009 + true + + + 3726 + 639 + 8 + 9 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Flow Node + 88 + true + + + 3727 + 639 + 8 + 10 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3728 + 639 + 8 + 11 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Flow Node project, for expansion planning. + 8 + true + + + 3729 + 639 + 8 + 12 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Flow Node + 8 + true + + + 3730 + 639 + 8 + 13 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3731 + 639 + 8 + 14 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Flow Node (period over which fixed costs are recovered). + 8 + true + + + 3732 + 639 + 8 + 15 + Max Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Binary indicating if this is a build candidate + 8 + true + + + 3733 + 639 + 8 + 16 + Min Units Built + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3734 + 639 + 8 + 17 + Max Units Built in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 461 + Binary indicating if build is allowed in this year + 88 + true + + + 3735 + 639 + 8 + 18 + Min Units Built in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3736 + 639 + 8 + 19 + Max Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3737 + 639 + 8 + 20 + Min Units Retired + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3738 + 639 + 8 + 21 + Max Units Retired in Year + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3739 + 639 + 8 + 22 + Min Units Retired in Year + 0 + 0 + In (0,1) + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3740 + 639 + 8 + 23 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 3741 + 639 + 12 + 24 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3742 + 639 + 12 + 25 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3743 + 639 + 12 + 26 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3744 + 643 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Node flow + true + + + 3745 + 643 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption at the Flow Node in the Constraint + true + + + 3746 + 643 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production at the Flow Node in the Constraint + true + + + 3747 + 643 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3748 + 643 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3749 + 643 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3750 + 643 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3751 + 644 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Node flow + true + + + 3752 + 644 + 3 + 2 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of Commodity consumption at the Flow Node + true + + + 3753 + 644 + 3 + 3 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of Commodity production at the Flow Node + true + + + 3754 + 644 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3755 + 644 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3756 + 644 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3757 + 644 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3758 + 645 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the flow path for the generation of outages + 101000000 + true + + + 3759 + 645 + 2 + 2 + Repair Time Distribution + 0 + -1 + In (-1,0,1,2,3,4,5,6,7) + -1;"Auto";0;"Constant";1;"Uniform";2;"Triangular";3;"Exponential";4;"Weibull";5;"Lognormal";6;"SEV";7;"LEV" + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 892 + Distribution used to generate repair times (Auto,Constant,Uniform,Triangular,Exponential,Weibull,Lognormal,SEV,LEV) + 1000000 + true + + + 3760 + 645 + 2 + 3 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme. + 2000008 + true + + + 3761 + 645 + 2 + 4 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3762 + 645 + 2 + 5 + Traversal Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 801 + Time taken for flows to traverse the Flow Path + true + + + 3763 + 645 + 3 + 6 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + false + true + false + 1 + 812 + Flag if the Flow Path is in service + 800000 + true + + + 3764 + 645 + 3 + 7 + Flow Charge + 96 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1268 + Unit cost of flowing the Commodity over the Flow Path + 2000000000 + true + + + 3765 + 645 + 3 + 8 + Bundle Size + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2384 + Size of bundles flowed on the Flow Path + true + + + 3766 + 645 + 3 + 9 + Min Operating Factor + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2295 + Minimum operating level when operating + true + + + 3767 + 645 + 3 + 10 + Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1209 + Proportion of flow received net of any losses + true + + + 3768 + 645 + 3 + 11 + Initial Flow + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1174 + Initial flow with optional delay time + true + + + 3769 + 645 + 3 + 12 + Initial Flow Delay + 6 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2739 + Delay on the Initial Flow in this band + true + + + 3770 + 645 + 3 + 13 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8008 + true + + + 3771 + 645 + 9 + 14 + Max Flow + 94 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 429 + Maximum flow on the Flow Path in any interval + 5 + true + + + 3772 + 645 + 9 + 14 + Max Flow Hour + 94 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1584 + Maximum flow on the Flow Path in any hour + 4 + true + + + 3773 + 645 + 9 + 14 + Max Flow Day + 94 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1585 + Maximum flow on the Flow Path in any day + 4 + true + + + 3774 + 645 + 9 + 14 + Max Flow Week + 94 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1586 + Maximum flow on the Flow Path in any week + 4 + true + + + 3775 + 645 + 9 + 14 + Max Flow Month + 94 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1587 + Maximum flow on the Flow Path in any month + 4 + true + + + 3776 + 645 + 9 + 14 + Max Flow Year + 94 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1588 + Maximum flow on the Flow Path in any year + 4 + true + + + 3777 + 645 + 9 + 15 + Min Flow + 94 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 481 + Minimum flow on the Flow Path in any interval + 5 + true + + + 3778 + 645 + 9 + 15 + Min Flow Hour + 94 + -1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 2355 + Minimum flow on the Flow Path in any hour + 4 + true + + + 3779 + 645 + 9 + 15 + Min Flow Day + 94 + -1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2356 + Minimum flow on the Flow Path in any day + 4 + true + + + 3780 + 645 + 9 + 15 + Min Flow Week + 94 + -1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 2357 + Minimum flow on the Flow Path in any week + 4 + true + + + 3781 + 645 + 9 + 15 + Min Flow Month + 94 + -1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 2358 + Minimum flow on the Flow Path in any month + 4 + true + + + 3782 + 645 + 9 + 15 + Min Flow Year + 94 + -1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 2359 + Minimum flow on the Flow Path in any year + 4 + true + + + 3783 + 645 + 7 + 16 + Forced Outage Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 219 + Expected proportion of time the facility is unavailable due to forced outage + 1000000 + true + + + 3784 + 645 + 7 + 17 + Units Out + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 818 + Number of units out of service due to maintenance + 1000000 + true + + + 3785 + 645 + 7 + 18 + Maintenance Rate + 12 + 0 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 396 + Expected proportion of time the facility is unavailable due to maintenance + 1000000 + true + + + 3786 + 645 + 7 + 19 + Maintenance Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 395 + Frequency of maintenance outages in an annual time frame + 1000000 + true + + + 3787 + 645 + 7 + 20 + Outage Max Rating + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 583 + Flow Path Max Flow during the outage + 1000000 + true + + + 3788 + 645 + 7 + 21 + Outage Min Rating + 94 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 584 + Flow Path Min Flow during the outage + 1000000 + true + + + 3789 + 645 + 7 + 22 + Mean Time to Repair + 6 + 24 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 470 + Mean time to repair + 1000000 + true + + + 3790 + 645 + 7 + 23 + Min Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 502 + Minimum time to repair + 1000000 + true + + + 3791 + 645 + 7 + 24 + Max Time To Repair + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 459 + Maximum time to repair + 1000000 + true + + + 3792 + 645 + 7 + 25 + Repair Time Shape + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 893 + Repair time function shape parameter (for Weibull,lognormal) + 1000000 + true + + + 3793 + 645 + 7 + 26 + Repair Time Scale + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 894 + Repair time function scale parameter (for exponential,Weibull,lognormal,SEV,LEV) + 1000000 + true + + + 3794 + 645 + 8 + 27 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building the Flow Path + 8009 + true + + + 3795 + 645 + 8 + 28 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring the Flow Path + 88 + true + + + 3796 + 645 + 8 + 29 + Lead Time + 8 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1751 + Number of years after which the expansion project can begin + 8 + true + + + 3797 + 645 + 8 + 30 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of Flow Path project, for expansion planning. + 8 + true + + + 3798 + 645 + 8 + 31 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the Flow Path + 8 + true + + + 3799 + 645 + 8 + 32 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 8 + true + + + 3800 + 645 + 8 + 33 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the Flow Path (period over which fixed costs are recovered). + 8 + true + + + 3801 + 645 + 8 + 34 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3802 + 645 + 8 + 35 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3803 + 645 + 8 + 36 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3804 + 645 + 8 + 37 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3805 + 645 + 8 + 38 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3806 + 645 + 8 + 39 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3807 + 645 + 8 + 40 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3808 + 645 + 8 + 41 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3809 + 645 + 8 + 42 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 3810 + 645 + 12 + 43 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3811 + 645 + 12 + 44 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3812 + 645 + 12 + 45 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3813 + 650 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Path flow + true + + + 3814 + 650 + 3 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Flow Path flow at the receiving node + true + + + 3815 + 650 + 3 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Flow Path flow at the sending node + true + + + 3816 + 650 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3817 + 650 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3818 + 650 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3819 + 650 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3820 + 651 + 3 + 1 + Flow Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 208 + Coefficient of Flow Path flow + true + + + 3821 + 651 + 3 + 2 + Flow Forward Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 211 + Coefficient of Flow Path flow at the receiving node + true + + + 3822 + 651 + 3 + 3 + Flow Back Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 207 + Coefficient of Flow Path flow at the sending node + true + + + 3823 + 651 + 8 + 4 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + true + + + 3824 + 651 + 8 + 5 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + true + + + 3825 + 651 + 8 + 6 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + true + + + 3826 + 651 + 8 + 7 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + true + + + 3827 + 652 + 2 + 1 + Balance Period + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"Interval";6;"Hour";1;"Day";2;"Week";3;"Month";4;"Year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1758 + Frequency of inventory balance + true + + + 3828 + 652 + 2 + 2 + End Effects Method + 0 + 1 + In (1,2) + 1;"Free";2;"Recycle" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 168 + Method used to value or constrain end-of-period inventory + 400000000 + true + + + 3829 + 652 + 2 + 3 + Decomposition Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Targets";2;"Shadow Prices" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to pass the optimal inventory trajectory from one simulation phase to the next + 400000000 + true + + + 3830 + 652 + 2 + 4 + Decomposition Penalty a + 0 + 0.0489 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1094 + Decomposition inventory target penalty function 'a' term + 400000000 + true + + + 3831 + 652 + 2 + 5 + Decomposition Penalty b + 0 + 0.6931 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1095 + Decomposition inventory target penalty function 'b' term + 400000000 + true + + + 3832 + 652 + 2 + 6 + Decomposition Penalty c + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1185 + Decomposition inventory target penalty function 'c' term + 400000000 + true + + + 3833 + 652 + 2 + 7 + Decomposition Penalty x + 0 + 1.1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1186 + Decomposition inventory target penalty function 'x' term + 400000000 + true + + + 3834 + 652 + 2 + 8 + Decomposition Bound Penalty + 14 + 1000000 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1237 + Penalty applied to violation of inventory bounds when the decomposition implies possible violations + 400000000 + true + + + 3835 + 652 + 2 + 9 + Expansion Optimality + 0 + 2 + In (0,2) + 0;"Linear";2;"Integer" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 185 + Expansion planning integerization scheme + 2000008 + true + + + 3836 + 652 + 2 + 10 + Integerization Horizon + 8 + -1 + >=-1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 322 + Number of years over which the expansion decisions are integerized + 2000008 + true + + + 3837 + 652 + 2 + 11 + Build Cost Multiplier + 0 + 0 + In (0,2) + 0;"None";2;"Storage Capacity" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2537 + Sets the unit for the input Build Cost + true + + + 3838 + 652 + 3 + 12 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Flow Storage is modeled + 800001 + true + + + 3839 + 652 + 3 + 13 + Max Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 3840 + 652 + 3 + 14 + Min Inventory + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 3841 + 652 + 3 + 15 + Opening Inventory + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1591 + Initial amount of the Commodity in inventory + true + + + 3842 + 652 + 3 + 16 + Delivery + 86 + 0 + 1 + 0 + 2 + 0 + false + false + true + false + 1 + 1592 + Amount of the Commodity added to inventory + true + + + 3843 + 652 + 3 + 17 + Injection Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2507 + Proportion of injected commodity reaching storage net of losses + true + + + 3844 + 652 + 3 + 18 + Withdrawal Efficiency + 12 + 100 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2508 + Proportion of commodity withdrawn from storage net of losses + true + + + 3845 + 652 + 3 + 19 + Delivery Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1597 + Cost of deliveries of the Commodity to inventory + true + + + 3846 + 652 + 3 + 20 + Inventory Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1594 + Cost of keeping the Commodity in inventory + true + + + 3847 + 652 + 3 + 21 + Reservation Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1602 + Cost applied to unused inventory capacity + true + + + 3848 + 652 + 3 + 22 + Injection Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1252 + Cost of adding the Commodity to inventory + true + + + 3849 + 652 + 3 + 23 + Withdrawal Charge + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1246 + Cost of taking the Commodity out of inventory + true + + + 3850 + 652 + 3 + 24 + FO&M Charge + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 215 + Annual fixed operation and maintenance charge + 8000 + true + + + 3851 + 652 + 9 + 25 + Max Withdrawal + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1245 + Maximum amount of the Commodity that can be taken from inventory in any interval + 400000000 + true + + + 3852 + 652 + 9 + 25 + Max Withdrawal Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1573 + Maximum amount of the Commodity that can be taken from inventory in a hour + 400000000 + true + + + 3853 + 652 + 9 + 25 + Max Withdrawal Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1247 + Maximum amount of the Commodity that can be taken from inventory in a day + 400000000 + true + + + 3854 + 652 + 9 + 25 + Max Withdrawal Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1248 + Maximum amount of the Commodity that can be taken from inventory in a week + 400000000 + true + + + 3855 + 652 + 9 + 25 + Max Withdrawal Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1249 + Maximum amount of the Commodity that can be taken from inventory in a month + 400000000 + true + + + 3856 + 652 + 9 + 25 + Max Withdrawal Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1250 + Maximum amount of the Commodity that can be taken from inventory in a year + 400000000 + true + + + 3857 + 652 + 9 + 26 + Max Injection + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1253 + Maximum amount of the Commodity that can be put into inventory in any interval + 400000000 + true + + + 3858 + 652 + 9 + 26 + Max Injection Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1574 + Maximum amount of the Commodity that can be put into inventory in any hour + 400000000 + true + + + 3859 + 652 + 9 + 26 + Max Injection Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1254 + Maximum amount of the Commodity that can be put into inventory in any day + 400000000 + true + + + 3860 + 652 + 9 + 26 + Max Injection Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1255 + Maximum amount of the Commodity that can be put into inventory in any week + 400000000 + true + + + 3861 + 652 + 9 + 26 + Max Injection Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1256 + Maximum amount of the Commodity that can be put into inventory in any month + 400000000 + true + + + 3862 + 652 + 9 + 26 + Max Injection Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1257 + Maximum amount of the Commodity that can be put into inventory in any year + 400000000 + true + + + 3863 + 652 + 9 + 27 + Min Withdrawal + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1258 + Amount of the Commodity that must be taken from inventory each interval + 400000000 + true + + + 3864 + 652 + 9 + 27 + Min Withdrawal Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1575 + Amount of the Commodity that must be taken from inventory each hour + 400000000 + true + + + 3865 + 652 + 9 + 27 + Min Withdrawal Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1259 + Amount of the Commodity that must be taken from inventory each day + 400000000 + true + + + 3866 + 652 + 9 + 27 + Min Withdrawal Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1260 + Amount of the Commodity that must be taken from inventory each week + 400000000 + true + + + 3867 + 652 + 9 + 27 + Min Withdrawal Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1261 + Amount of the Commodity that must be taken from inventory each month + 400000000 + true + + + 3868 + 652 + 9 + 27 + Min Withdrawal Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1262 + Amount of the Commodity that must be taken from inventory each year + 400000000 + true + + + 3869 + 652 + 9 + 28 + Min Injection + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1263 + Amount of the Commodity that must be added to inventory in any interval + 400000000 + true + + + 3870 + 652 + 9 + 28 + Min Injection Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1576 + Amount of the Commodity that must be added to inventory in any hour + 400000000 + true + + + 3871 + 652 + 9 + 28 + Min Injection Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 1264 + Amount of the Commodity that must be added to inventory in any day + 400000000 + true + + + 3872 + 652 + 9 + 28 + Min Injection Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 1265 + Amount of the Commodity that must be added to inventory in any week + 400000000 + true + + + 3873 + 652 + 9 + 28 + Min Injection Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 1266 + Amount of the Commodity that must be added to inventory in any month + 400000000 + true + + + 3874 + 652 + 9 + 28 + Min Injection Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 1267 + Amount of the Commodity that must be added to inventory in any year + 400000000 + true + + + 3875 + 652 + 9 + 29 + Max Inventory Change + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2333 + Maximum rate of change in inventory in any interval + 400000000 + true + + + 3876 + 652 + 9 + 29 + Max Inventory Change Hour + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2334 + Maximum rate of change in inventory in any hour + 400000000 + true + + + 3877 + 652 + 9 + 29 + Max Inventory Change Day + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2335 + Maximum rate of change in inventory in any day + 400000000 + true + + + 3878 + 652 + 9 + 29 + Max Inventory Change Week + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2336 + Maximum rate of change in inventory in any week + 400000000 + true + + + 3879 + 652 + 9 + 29 + Max Inventory Change Month + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2337 + Maximum rate of change in inventory in any month + 400000000 + true + + + 3880 + 652 + 9 + 29 + Max Inventory Change Year + 86 + 1E+30 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2338 + Maximum rate of change in inventory in any year + 400000000 + true + + + 3881 + 652 + 9 + 30 + Max Inventory Change Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2339 + Penalty for violating the [Max Ramp] constraints + 400000000 + true + + + 3882 + 652 + 9 + 31 + Max Cycles + 62 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1832 + Number of cycles allowed each interval + 400000000 + true + + + 3883 + 652 + 9 + 31 + Max Cycles Hour + 62 + 1E+30 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1833 + Number of cycles allowed each hour + 400000000 + true + + + 3884 + 652 + 9 + 31 + Max Cycles Day + 62 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1834 + Number of cycles allowed each day + 400000000 + true + + + 3885 + 652 + 9 + 31 + Max Cycles Week + 62 + 1E+30 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1835 + Number of cycles allowed each week + 400000000 + true + + + 3886 + 652 + 9 + 31 + Max Cycles Month + 62 + 1E+30 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1836 + Number of cycles allowed each month + 400000000 + true + + + 3887 + 652 + 9 + 31 + Max Cycles Year + 62 + 1E+30 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1837 + Number of cycles allowed each year + 400000000 + true + + + 3888 + 652 + 9 + 32 + Target + 86 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 963 + Target level of inventory at the end of the interval + 400000000 + true + + + 3889 + 652 + 9 + 32 + Target Hour + 86 + 0 + >=0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1563 + Target level of inventory at the end of the hour + 400000000 + true + + + 3890 + 652 + 9 + 32 + Target Day + 86 + 0 + >=0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 964 + Target level of inventory at the end of the day + 400000000 + true + + + 3891 + 652 + 9 + 32 + Target Week + 86 + 0 + >=0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 965 + Target level of inventory at the end of the week + 400000000 + true + + + 3892 + 652 + 9 + 32 + Target Month + 86 + 0 + >=0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 966 + Target level of inventory at the end of the month + 400000000 + true + + + 3893 + 652 + 9 + 32 + Target Year + 86 + 0 + >=0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 967 + Target level of inventory at the end of the year + 400000000 + true + + + 3894 + 652 + 9 + 33 + Target Penalty + 88 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1187 + Penalty for violating the target inventory + 400000000 + true + + + 3895 + 652 + 8 + 34 + Build Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 44 + Cost of building a unit + 8009 + true + + + 3896 + 652 + 8 + 35 + Retirement Cost + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 695 + Cost of retiring a unit + 8 + true + + + 3897 + 652 + 8 + 36 + Project Start Date + 0 + 36526 + >=0 + date + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 633 + Start date of project, for expansion planning + 8 + true + + + 3898 + 652 + 8 + 37 + Technical Life + 8 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 787 + Technical lifetime of the unit + 8 + true + + + 3899 + 652 + 8 + 38 + WACC + 12 + 10 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 852 + Weighted average cost of capital + 9 + true + + + 3900 + 652 + 8 + 39 + Economic Life + 8 + 30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 159 + Economic life of the unit (period over which fixed costs are recovered) + 9 + true + + + 3901 + 652 + 8 + 40 + Max Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 460 + Maximum number of units automatically constructed in aggregate over the planning horizon + 89 + true + + + 3902 + 652 + 8 + 41 + Max Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 462 + Maximum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3903 + 652 + 8 + 42 + Min Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 503 + Minimum number of units automatically constructed in aggregate over the planning horizon + 88 + true + + + 3904 + 652 + 8 + 43 + Min Units Retired + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 505 + Minimum number of units automatically retired in aggregate over the planning horizon + 88 + true + + + 3905 + 652 + 8 + 44 + Max Units Built in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 461 + Maximum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3906 + 652 + 8 + 45 + Max Units Retired in Year + 0 + 1E+30 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 463 + Maximum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3907 + 652 + 8 + 46 + Min Units Built in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 504 + Minimum number of units automatically constructed in any single year of the planning horizon + 88 + true + + + 3908 + 652 + 8 + 47 + Min Units Retired in Year + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 506 + Minimum number of units automatically retired in any single year of the planning horizon + 88 + true + + + 3909 + 652 + 8 + 48 + Hint Units Built + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2771 + Capacity expansion solution to be passed to the optimizer as a hint or initial solution + 8 + true + + + 3910 + 652 + 11 + 49 + Build Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 901 + Price for violating build non-anticipativity constraints + 100000008 + true + + + 3911 + 652 + 11 + 50 + Retire Non-anticipativity + 14 + -1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 902 + Price for violating retire non-anticipativity constraints + 100000008 + true + + + 3912 + 652 + 12 + 51 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3913 + 652 + 12 + 52 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3914 + 652 + 12 + 53 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3915 + 656 + 3 + 1 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 3916 + 656 + 3 + 2 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 3917 + 656 + 3 + 3 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 3918 + 656 + 3 + 4 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 3919 + 656 + 3 + 5 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 3920 + 656 + 6 + 6 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 3921 + 656 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3922 + 656 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3923 + 656 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3924 + 656 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3925 + 656 + 8 + 11 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3926 + 656 + 8 + 12 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3927 + 656 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3928 + 656 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3929 + 656 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3930 + 657 + 3 + 1 + Closing Inventory Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1599 + Coefficient of Commodity in inventory + 400000000 + true + + + 3931 + 657 + 3 + 2 + Inventory Change Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1601 + Coefficient of change in the amount of the Commodity in inventory + 400000000 + true + + + 3932 + 657 + 3 + 3 + Delivery Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1600 + Coefficient of additions of the Commodity to inventory + 400000000 + true + + + 3933 + 657 + 3 + 4 + Injection Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1459 + Coefficient of injection of the Commodity into inventory + 400000000 + true + + + 3934 + 657 + 3 + 5 + Withdrawal Coefficient + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1458 + Coefficient of withdrawal of the Commodity from inventory + 400000000 + true + + + 3935 + 657 + 6 + 6 + Cycles Coefficient + 62 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1838 + Coefficient of cycles + true + + + 3936 + 657 + 8 + 7 + Units Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 814 + Coefficient of number of units built + 8 + true + + + 3937 + 657 + 8 + 8 + Units Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 821 + Coefficient of number of units retired + 8 + true + + + 3938 + 657 + 8 + 9 + Units Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 815 + Coefficient of number of units built in the year + 8 + true + + + 3939 + 657 + 8 + 10 + Units Retired in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 822 + Coefficient of number of units retired in the year + 8 + true + + + 3940 + 657 + 8 + 11 + Capacity Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 55 + Coefficient of capacity built + C + true + + + 3941 + 657 + 8 + 12 + Capacity Retired Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 67 + Coefficient of capacity retired + C + true + + + 3942 + 657 + 8 + 13 + Build Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1120 + Coefficient of total build cost + 8008 + true + + + 3943 + 657 + 8 + 14 + Built Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1449 + Coefficient on binary variable indicating if any capacity is built to date + 8 + true + + + 3944 + 657 + 8 + 15 + Built in Year Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1450 + Coefficient on binary variable indicating if any capacity is built in the year + 8 + true + + + 3945 + 658 + 5 + 1 + Strategic + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 766 + Percentage of entity production that acts strategically + 40 + true + + + 3946 + 658 + 5 + 2 + Formulate Risk + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1509 + If constraint should be formulated to bound entity net profit risk + 4000000000 + true + + + 3947 + 658 + 5 + 3 + Risk Level + 0 + 0.1 + Between 0 and 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1822 + Risk level for risk-constrained optimization + 4000000000 + true + + + 3948 + 658 + 5 + 4 + Acceptable Risk + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1511 + Acceptable risk around target net profit + 4000000000 + true + + + 3949 + 658 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 3950 + 658 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 3951 + 658 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 3952 + 662 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of consumption from facilities associated with the entity + true + + + 3953 + 662 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of production from facilities associated with the entity + true + + + 3954 + 662 + 5 + 3 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3955 + 662 + 5 + 4 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3956 + 662 + 5 + 5 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3957 + 663 + 3 + 1 + Consumption Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2272 + Coefficient of consumption from facilities associated with the entity + true + + + 3958 + 663 + 3 + 2 + Production Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 626 + Coefficient of production from facilities associated with the entity + true + + + 3959 + 663 + 5 + 3 + Net Profit Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1504 + Coefficient of net profit + true + + + 3960 + 663 + 5 + 4 + Net Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1506 + Coefficient of net revenue + true + + + 3961 + 663 + 5 + 5 + Acceptable Risk Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2463 + Coefficient of entity acceptable risk + true + + + 3962 + 664 + 2 + 1 + Is Forward + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 337 + Flag if the market is a 'forward' market versus a 'real-time' market. + 4000000 + true + + + 3963 + 664 + 2 + 2 + Is Marginal + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 338 + Flag if the market sets price on a marginal price basis; rather than block-by-block settlement. + 4000000 + true + + + 3964 + 664 + 2 + 3 + Demand Curve + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 136 + Flag if the input multi-band Price/Quantity pairs are points on a demand curve; or incremental demand blocks. + 100 + true + + + 3965 + 664 + 2 + 4 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Market can set price + 4000000 + true + + + 3966 + 664 + 2 + 5 + Supply Settlement Model + 0 + 1 + In (0,1,2) + 0;"Natural";1;"Buy";2;"Sell" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1622 + Model used to determine price paid to suppliers + 4000000 + true + + + 3967 + 664 + 2 + 6 + Demand Settlement Model + 0 + 2 + In (0,1,2) + 0;"Natural";1;"Buy";2;"Sell" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1623 + Model used to determine price paid by purchasers. + 4000000 + true + + + 3968 + 664 + 3 + 7 + Units + 0 + 1 + In (0,1) + 0 + 2 + 0 + 0 + true + true + true + false + 1 + 812 + Flag if the Market is in service + 800000 + true + + + 3969 + 664 + 3 + 8 + Demand + 86 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 133 + Fixed demand (exact amount of sales to the Market) + true + + + 3970 + 664 + 3 + 9 + Shortage Price + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1270 + Penalty price for supply shortage + true + + + 3971 + 664 + 3 + 10 + Supply + 86 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 2324 + Fixed supply (exact amount of supply from the Market) + true + + + 3972 + 664 + 3 + 11 + Surplus Price + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 2325 + Penalty price for excess supply + true + + + 3973 + 664 + 3 + 12 + Price + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 612 + Price point on market demand function + 400001 + true + + + 3974 + 664 + 3 + 13 + Price Scalar + 0 + 1 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 904 + Scalar on market price + 4000000 + true + + + 3975 + 664 + 3 + 14 + Price Incr + 88 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 905 + Increment to market price + 4000000 + true + + + 3976 + 664 + 3 + 15 + Price Cap + 88 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 613 + Cap on Market Price when using fixed Demand/Supply + 4000000 + true + + + 3977 + 664 + 3 + 16 + Price Floor + 88 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 615 + Floor on Market Price when using fixed Demand/Supply + 4000000 + true + + + 3978 + 664 + 3 + 17 + Quantity + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 650 + Quantity point in market demand function + 400000 + true + + + 3979 + 664 + 3 + 18 + Base Quantity + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 28 + Expected clearing point on market demand function + 400000 + true + + + 3980 + 664 + 3 + 19 + Sell Unit + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 734 + Size of block for sales (time independent) + 400000 + true + + + 3981 + 664 + 3 + 20 + Sell Block + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 729 + Size of block for sales + 400000 + true + + + 3982 + 664 + 3 + 20 + Sell Block Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1569 + Size of block for sales across each hour + 400000 + true + + + 3983 + 664 + 3 + 20 + Sell Block Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 730 + Size of block for sales across each day + 400000 + true + + + 3984 + 664 + 3 + 20 + Sell Block Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 732 + Size of block for sales across each week + 400000 + true + + + 3985 + 664 + 3 + 20 + Sell Block Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 731 + Size of block for sales across each month + 400000 + true + + + 3986 + 664 + 3 + 20 + Sell Block Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 733 + Size of block for sales across each year + 400000 + true + + + 3987 + 664 + 3 + 21 + Sell Block Fixed Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1444 + Fixed cost of block sales + 8000 + true + + + 3988 + 664 + 3 + 22 + Buy Unit + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 50 + Size of block for purchases (time independent) + 400000 + true + + + 3989 + 664 + 3 + 23 + Buy Block + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 45 + Size of block for purchases + 400000 + true + + + 3990 + 664 + 3 + 23 + Buy Block Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1570 + Size of block for purchases across each hour + 400000 + true + + + 3991 + 664 + 3 + 23 + Buy Block Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 46 + Size of block for purchases across each day + 400000 + true + + + 3992 + 664 + 3 + 23 + Buy Block Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 48 + Size of block for purchases across each week + 400000 + true + + + 3993 + 664 + 3 + 23 + Buy Block Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 47 + Size of block for purchases across each month + 400000 + true + + + 3994 + 664 + 3 + 23 + Buy Block Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 49 + Size of block for purchases across each year + 400000 + true + + + 3995 + 664 + 3 + 24 + Buy Block Fixed Charge + 34 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1443 + Fixed cost of block purchases + 8000 + true + + + 3996 + 664 + 3 + 25 + Bid-Ask Spread + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 36 + Market bid-ask spread + 400000 + true + + + 3997 + 664 + 3 + 26 + Bid Spread + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 35 + Spread on sales to the market + 400000 + true + + + 3998 + 664 + 3 + 27 + Ask Spread + 88 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 16 + Spread on purchases from the market + 400000 + true + + + 3999 + 664 + 9 + 28 + Max Sales + 86 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 455 + Maximum sales to the market + 80 + true + + + 4000 + 664 + 9 + 28 + Max Sales Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2476 + Maximum sales to the market each hour + 80 + true + + + 4001 + 664 + 9 + 28 + Max Sales Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2477 + Maximum sales to the market each day + 80 + true + + + 4002 + 664 + 9 + 28 + Max Sales Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2478 + Maximum sales to the market each week + 80 + true + + + 4003 + 664 + 9 + 28 + Max Sales Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2479 + Maximum sales to the market each month + 80 + true + + + 4004 + 664 + 9 + 28 + Max Sales Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2480 + Maximum sales to the market each year + 80 + true + + + 4005 + 664 + 9 + 29 + Max Purchases + 86 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 445 + Maximum purchase from the market + 80 + true + + + 4006 + 664 + 9 + 29 + Max Purchases Hour + 86 + 1E+30 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2481 + Maximum purchase from the market each hour + 80 + true + + + 4007 + 664 + 9 + 29 + Max Purchases Day + 86 + 1E+30 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 2482 + Maximum purchase from the market each day + 80 + true + + + 4008 + 664 + 9 + 29 + Max Purchases Week + 86 + 1E+30 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2483 + Maximum purchase from the market each week + 80 + true + + + 4009 + 664 + 9 + 29 + Max Purchases Month + 86 + 1E+30 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2484 + Maximum purchase from the market each month + 80 + true + + + 4010 + 664 + 9 + 29 + Max Purchases Year + 86 + 1E+30 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2485 + Maximum purchase from the market each year + 80 + true + + + 4011 + 664 + 9 + 30 + Min Sales + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 500 + Minimum sales to the market + 80 + true + + + 4012 + 664 + 9 + 30 + Min Sales Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2486 + Minimum sales to the market each hour + 80 + true + + + 4013 + 664 + 9 + 30 + Min Sales Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2487 + Minimum sales to the market each day + 80 + true + + + 4014 + 664 + 9 + 30 + Min Sales Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2488 + Minimum sales to the market each week + 80 + true + + + 4015 + 664 + 9 + 30 + Min Sales Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2489 + Minimum sales to the market each month + 80 + true + + + 4016 + 664 + 9 + 30 + Min Sales Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2490 + Minimum sales to the market each year + 80 + true + + + 4017 + 664 + 9 + 31 + Min Purchases + 86 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 491 + Minimum purchase from the market + 80 + true + + + 4018 + 664 + 9 + 31 + Min Purchases Hour + 86 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2491 + Minimum purchase from the market each hour + 80 + true + + + 4019 + 664 + 9 + 31 + Min Purchases Day + 86 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2492 + Minimum purchase from the market each day + 80 + true + + + 4020 + 664 + 9 + 31 + Min Purchases Week + 86 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2493 + Minimum purchase from the market each week + 80 + true + + + 4021 + 664 + 9 + 31 + Min Purchases Month + 86 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2494 + Minimum purchase from the market each month + 80 + true + + + 4022 + 664 + 9 + 31 + Min Purchases Year + 86 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2495 + Minimum purchase from the market each year + 80 + true + + + 4023 + 664 + 6 + 32 + Firm Capacity + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 64 + Contribution of the market purchases to generation capacity for capacity reserves. + C + true + + + 4024 + 664 + 6 + 33 + Load Obligation + 1 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 354 + Contribution of the market sales to the load obligation for capacity reserves. + C + true + + + 4025 + 664 + 12 + 34 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4026 + 664 + 12 + 35 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4027 + 664 + 12 + 36 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4028 + 667 + 1 + 1 + Share + 12 + 100 + Between 0 And 100 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 744 + Entities share of the market trades + 40 + true + + + 4029 + 668 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Coefficient of market sales + true + + + 4030 + 668 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Coefficient of market purchases + true + + + 4031 + 668 + 1 + 3 + Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1733 + Coefficient of market sales revenues + true + + + 4032 + 668 + 1 + 4 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1692 + Coefficient of market purchase costs + true + + + 4033 + 669 + 1 + 1 + Sales Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 719 + Coefficient of market sales + true + + + 4034 + 669 + 1 + 2 + Purchases Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 649 + Coefficient of market purchases + true + + + 4035 + 669 + 1 + 3 + Revenue Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1733 + Coefficient of market sales revenues + true + + + 4036 + 669 + 1 + 4 + Cost Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1692 + Coefficient of market purchase costs + true + + + 4037 + 670 + 2 + 1 + Sense + 0 + 0 + In (-1,0,1) + -1;"<=";0;"=";1;">=" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Constraint sense (less than or equal to, equal to, greater than or equal to) + 80 + true + + + 4038 + 670 + 2 + 2 + LHS Type + 0 + 0 + In (0,1,2) + 0;"SUM";1;"MAXSUM";2;"MAX" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1455 + Action applied over left-hand side coefficients + 80 + true + + + 4039 + 670 + 2 + 3 + Formulate Upfront + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 976 + If constraints should all be formulated upfront rather than checked iteratively. + 2000080 + true + + + 4040 + 670 + 2 + 4 + Condition Logic + 0 + 0 + In (0,1) + 0;"And";1;"Or" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 89 + Logic used in combining conditions associated with the constraint + 800080 + true + + + 4041 + 670 + 2 + 5 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the constraint is modelled in the LT Plan phase. + 800080 + true + + + 4042 + 670 + 2 + 6 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the constraint is modelled in the PASA phase. + 800080 + true + + + 4043 + 670 + 2 + 7 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the constraint is modelled in the MT Schedule phase. + 800080 + true + + + 4044 + 670 + 2 + 8 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the constraint is modelled in the ST Schedule phase. + 800080 + true + + + 4045 + 670 + 2 + 9 + Include in Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 306 + If the constraint is enforced in the unconstrained phase of uniform pricing. + 800080 + true + + + 4046 + 670 + 2 + 10 + Unit Commitment Mode + 0 + 0 + In (0,1,2) + 0;"Enforced";1;"Relax Before";2;"Relax After" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2656 + Controls how the constraint is handled during unit commitment + 1000000000 + true + + + 4047 + 670 + 2 + 11 + Price Setting + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 619 + Flag if the Constraint penalty function can set price + 4000000 + true + + + 4048 + 670 + 2 + 12 + Decomposition Method + 0 + 0 + In (0,1) + 0;"Quantity";1;"Price" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 131 + Method used to decompose constraints between LT Plan/MT Schedule and MT Schedule/ST Schedule + 200 + true + + + 4049 + 670 + 2 + 13 + Feasibility Repair Weight + 0 + 0.01 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1117 + Weight applied to relaxing the constraint in feasibility repair. Lower values mean less penalty to relax the constraint. -1 means the constraint cannot be relaxed. + 80 + true + + + 4050 + 670 + 2 + 14 + Wildcard Mode + 0 + 1 + In (0,1,2) + 0;"Do Not Copy";1;"Auto";2;"Always Copy" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1684 + Controls whether or not the Constraint is copied when it is associated with a wildcard membership. + 80 + true + + + 4051 + 670 + 2 + 15 + Scalar + 0 + 1 + >0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2654 + Scale the constraint by dividing left and right hand sides by this factor + 80 + true + + + 4052 + 670 + 1 + 16 + RHS + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 700 + Constraint RHS constant + 80 + true + + + 4053 + 670 + 1 + 16 + RHS Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 1578 + Right hand side each hour + 80 + true + + + 4054 + 670 + 1 + 16 + RHS Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 702 + Right hand side each day (000) + 80 + true + + + 4055 + 670 + 1 + 16 + RHS Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 704 + Right hand side each week (000) + 80 + true + + + 4056 + 670 + 1 + 16 + RHS Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 703 + Right hand side each month (000) + 80 + true + + + 4057 + 670 + 1 + 16 + RHS Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 705 + Right hand side each year (000) + 80 + true + + + 4058 + 670 + 1 + 16 + RHS Custom + 0 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 1077 + Right hand side value over any custom period (000) + 80 + true + + + 4059 + 670 + 1 + 17 + RHS Constant + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2316 + Right hand side RPN constant + 80 + true + + + 4060 + 670 + 1 + 18 + Penalty Quantity + 0 + 1E+30 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 605 + Penalty quantity + 80 + true + + + 4061 + 670 + 1 + 19 + Penalty Price + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 604 + Price for violating the constraint where the special value of -1 indicates that no violation is allowed. + 80 + true + + + 4062 + 670 + 1 + 20 + Min RHS + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 499 + Minimum allowed value when RHS is calculated dynamically + 80 + true + + + 4063 + 670 + 1 + 21 + Max RHS + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 454 + Maximum allowed value when RHS is calculated dynamically + 80 + true + + + 4064 + 670 + 12 + 22 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4065 + 670 + 12 + 23 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4066 + 670 + 12 + 24 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4067 + 673 + 1 + 1 + RHS Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 701 + RHS coefficient added when the condition is active + true + + + 4068 + 673 + 1 + 2 + Price Coefficient + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1380 + Coefficient of price in condition + true + + + 4069 + 674 + 2 + 1 + Sense + 0 + 1 + In (1,2) + 1;"Minimize";2;"Maximize" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Objective sense (Minimize,Maximize) + true + + + 4070 + 674 + 2 + 2 + Priority + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2096 + Priority of the objective when doing hierarchical multi-objective optimization + true + + + 4071 + 674 + 2 + 3 + Weight + 0 + 1 + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 2097 + Weight of the objective when doing blended multi-objective optimization + true + + + 4072 + 674 + 2 + 4 + Relative Tolerance + 0 + 0 + Between 0 And 1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2098 + Allowable relative degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 4073 + 674 + 2 + 5 + Absolute Tolerance + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2099 + Allowable degradation for the objective when doing hierarchical multi-objective optimization for MIP models + true + + + 4074 + 674 + 2 + 6 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the objective is modeled in the LT Plan phase. + true + + + 4075 + 674 + 2 + 7 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the objective is modeled in the PASA phase. + true + + + 4076 + 674 + 2 + 8 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the objective is modeled in the MT Schedule phase. + true + + + 4077 + 674 + 2 + 9 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the objective is modeled in the ST Schedule phase. + true + + + 4078 + 674 + 2 + 10 + Include in Uniform Pricing + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 306 + If the objective is modeled in the unconstrained phase of uniform pricing. + true + + + 4079 + 674 + 1 + 11 + Constant + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2089 + Is the constant term in objective a'x +b + true + + + 4080 + 674 + 1 + 11 + Constant Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + false + 1 + 2090 + Objective constant each hour + true + + + 4081 + 674 + 1 + 11 + Constant Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + false + 1 + 2091 + Objective constant each day (000's) + true + + + 4082 + 674 + 1 + 11 + Constant Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + false + 1 + 2092 + Objective constant each week (000's) + true + + + 4083 + 674 + 1 + 11 + Constant Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + false + 1 + 2093 + Objective constant each month (000's) + true + + + 4084 + 674 + 1 + 11 + Constant Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + false + 1 + 2094 + Objective constant each year (000's) + true + + + 4085 + 674 + 1 + 11 + Constant Custom + 0 + 0 + 1 + 0 + 0 + 5 + false + false + true + false + 1 + 2095 + Objective constant value over any custom period (000's) + true + + + 4086 + 674 + 12 + 12 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4087 + 674 + 12 + 13 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4088 + 674 + 12 + 14 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4089 + 677 + 2 + 1 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the generic decision variable is modelled in the LT Plan phase. + 800000 + true + + + 4090 + 677 + 2 + 2 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the generic decision variable is modelled in the PASA phase. + 800000 + true + + + 4091 + 677 + 2 + 3 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the generic decision variable is modelled in the MT Schedule phase. + 800000 + true + + + 4092 + 677 + 2 + 4 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the generic decision variable is modelled in the ST Schedule phase. + 800000 + true + + + 4093 + 677 + 1 + 5 + Objective Function Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + true + true + false + false + 1 + 1351 + Objective function value of the generic decision variable + 2000000000 + true + + + 4094 + 677 + 1 + 5 + Objective Function Coefficient Hour + 0 + 0 + 1 + 0 + 0 + 6 + true + false + true + false + 1 + 1726 + Objective function value of the generic decision variable in each hour + 2000000000 + true + + + 4095 + 677 + 1 + 5 + Objective Function Coefficient Day + 0 + 0 + 1 + 0 + 0 + 1 + true + false + true + false + 1 + 1727 + Objective function value of the generic decision variable in each day + 2000000000 + true + + + 4096 + 677 + 1 + 5 + Objective Function Coefficient Week + 0 + 0 + 1 + 0 + 0 + 2 + true + false + true + false + 1 + 1728 + Objective function value of the generic decision variable in each week + 2000000000 + true + + + 4097 + 677 + 1 + 5 + Objective Function Coefficient Month + 0 + 0 + 1 + 0 + 0 + 3 + true + false + true + false + 1 + 1729 + Objective function value of the generic decision variable in each month + 2000000000 + true + + + 4098 + 677 + 1 + 5 + Objective Function Coefficient Year + 0 + 0 + 1 + 0 + 0 + 4 + true + false + true + false + 1 + 1730 + Objective function value of the generic decision variable in each year + 2000000000 + true + + + 4099 + 677 + 1 + 6 + Lower Bound + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1494 + Lower bound of the generic decision variable + 80 + true + + + 4100 + 677 + 1 + 7 + Upper Bound + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 1495 + Upper bound of the generic decision variable + 80 + true + + + 4101 + 677 + 11 + 8 + Non-anticipativity + 14 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1714 + Price for violating non-anticipativity constraints in scenario-wise decomposition mode + 100000000 + true + + + 4102 + 677 + 11 + 9 + Non-anticipativity Time + 6 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1858 + Window of time over which to enforce non-anticipativity constraints in scenario-wise decomposition + 100000000 + true + + + 4103 + 677 + 12 + 10 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4104 + 677 + 12 + 11 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4105 + 677 + 12 + 12 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4106 + 680 + 1 + 1 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value + true + + + 4107 + 680 + 1 + 2 + Value Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1619 + Coefficient of Decision Variable value squared + true + + + 4108 + 681 + 1 + 1 + Value Coefficient + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value in definition Constraint + true + + + 4109 + 682 + 1 + 1 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of Decision Variable value + true + + + 4110 + 682 + 1 + 2 + Value Squared Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1619 + Coefficient of Decision Variable value squared + true + + + 4111 + 683 + 1 + 1 + Sense + 0 + 0 + In (-1,0,1) + -1;"<=";0;"=";1;">=" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 735 + Constraint sense (≤,=,≥) + 80 + true + + + 4112 + 683 + 1 + 2 + Max Tranches + 0 + 10 + >=0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2162 + Number of tranches to be used for piece-wise linear approximation + true + + + 4113 + 683 + 1 + 3 + Polynomial Coefficients + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + true + 1 + 2163 + Coefficients defining the polynomial + true + + + 4114 + 683 + 1 + 4 + Constant Term + 0 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 2164 + Constant Term + true + + + 4115 + 683 + 12 + 5 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4116 + 683 + 12 + 6 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4117 + 683 + 12 + 7 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4118 + 688 + 1 + 1 + Filename + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 193 + Data file used in the simulation + true + + + 4119 + 688 + 1 + 2 + Base Profile + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 27 + Base profile for use in creating new profiles + true + + + 4120 + 688 + 1 + 3 + Energy + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 173 + Energy of the created profile + true + + + 4121 + 688 + 1 + 4 + Maximum + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 467 + Maximum value of the created profile + true + + + 4122 + 688 + 1 + 5 + Minimum + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1874 + Minimum value of the created profile + true + + + 4123 + 688 + 1 + 6 + Holiday + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 270 + Flag for holiday period that must be preserved + true + + + 4124 + 688 + 1 + 7 + Min Value + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 508 + Minimum value allowed after application of the growing algorithm. + true + + + 4125 + 688 + 1 + 8 + Max Value + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 464 + Maximum value allowed after application of the growing algorithm. + true + + + 4126 + 690 + 2 + 1 + Random Number Seed + 0 + 0 + Between 0 And 2147483647 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 662 + Random number seed assigned to the variable + 100000000 + true + + + 4127 + 690 + 2 + 2 + Sampling Method + 0 + 1 + In (0,1,2) + 0;"None";1;"Auto";2;"User" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 720 + Sampling method applied to the variable + 100000000 + true + + + 4128 + 690 + 2 + 3 + Sampling Frequency + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1127 + Frequency of temporal sampling of period type [Sampling Period Type] where zero means no sampling. + 100000000 + true + + + 4129 + 690 + 2 + 4 + Sampling Period Type + 0 + 0 + In (0,1,2,3,4,6) + 0;"interval";6;"hour";1;"day";2;"week";3;"month";4;"year" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1616 + Period type of temporal sampling where number of periods between samples is [Sampling Frequency]. + 100000000 + true + + + 4130 + 690 + 2 + 5 + Distribution Type + 0 + 0 + In (0,1) + 0;"Normal";1;"Lognormal" + 0 + 2 + 0 + 0 + false + true + false + false + 1 + 152 + Distribution type for error terms + 100000000 + true + + + 4131 + 690 + 2 + 6 + Condition + 0 + 4 + In (-2,-1,0,1,2,4) + 4;"None";-2;"<";-1;"<=";0;"=";1;">=";2;">" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1378 + Conditional value type + 800000 + true + + + 4132 + 690 + 2 + 7 + Condition Logic + 0 + 0 + In (0,1) + 0;"And";1;"Or" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 89 + Logic used in combining conditional variables + 800000 + true + + + 4133 + 690 + 2 + 8 + Include in LT Plan + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 301 + If the condition is allowed to be active in the LT Plan phase. + 800000 + true + + + 4134 + 690 + 2 + 9 + Include in PASA + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 303 + If the condition is allowed to be active in the PASA phase. + 800000 + true + + + 4135 + 690 + 2 + 10 + Include in MT Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 302 + If the condition is allowed to be active in the MT Schedule phase. + 800000 + true + + + 4136 + 690 + 2 + 11 + Include in ST Schedule + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 305 + If the condition is allowed to be active in the ST Schedule phase. + 800000 + true + + + 4137 + 690 + 2 + 12 + Formulate Value + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 2318 + Flag if the Value is formulated as a decision variable + 800000 + true + + + 4138 + 690 + 1 + 13 + Profile + 0 + 0 + 1 + 0 + 0 + 0 + false + true + true + true + 1 + 628 + Sample profile of variable values + 100000000 + true + + + 4139 + 690 + 1 + 13 + Profile Hour + 0 + 0 + 1 + 0 + 0 + 6 + false + false + true + true + 1 + 1580 + Sample profile of variable values + 100000000 + true + + + 4140 + 690 + 1 + 13 + Profile Day + 0 + 0 + 1 + 0 + 0 + 1 + false + false + true + true + 1 + 629 + Sample profile of variable values + 100000000 + true + + + 4141 + 690 + 1 + 13 + Profile Week + 0 + 0 + 1 + 0 + 0 + 2 + false + false + true + true + 1 + 631 + Sample profile of variable values + 100000000 + true + + + 4142 + 690 + 1 + 13 + Profile Month + 0 + 0 + 1 + 0 + 0 + 3 + false + false + true + true + 1 + 630 + Sample profile of variable values + 100000000 + true + + + 4143 + 690 + 1 + 13 + Profile Year + 0 + 0 + 1 + 0 + 0 + 4 + false + false + true + true + 1 + 632 + Sample profile of variable values + 100000000 + true + + + 4144 + 690 + 1 + 14 + Min Value + 0 + -1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 508 + Minimum allowed sample value + 100000000 + true + + + 4145 + 690 + 1 + 15 + Max Value + 0 + 1E+30 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 464 + Maximum allowed sample value + 100000000 + true + + + 4146 + 690 + 1 + 16 + Probability + 12 + 50 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 623 + Probability of exceedance (POE) + 100000000 + true + + + 4147 + 690 + 1 + 17 + Error Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 183 + Percentage standard deviation of errors + 100000000 + true + + + 4148 + 690 + 1 + 18 + Abs Error Std Dev + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 926 + Absolute value of standard deviation of errors + 100000000 + true + + + 4149 + 690 + 1 + 19 + Min Value Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 509 + Percentage standard deviation of minimum value + 100000000 + true + + + 4150 + 690 + 1 + 20 + Max Value Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 465 + Percentage standard deviation of maximum value + 100000000 + true + + + 4151 + 690 + 1 + 21 + Auto Correlation + 12 + 0 + 1 + 0 + 0 + 0 + false + true + false + false + 1 + 18 + Correlation of error between time intervals + 100000000 + true + + + 4152 + 690 + 1 + 22 + Mean Reversion + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 469 + Mean reversion parameter in differential equation + 100000000 + true + + + 4153 + 690 + 1 + 23 + ARIMA alpha + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 984 + ARIMA autoregressive parameter + 100000000 + true + + + 4154 + 690 + 1 + 24 + ARIMA beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 985 + ARIMA moving-average parameter + 100000000 + true + + + 4155 + 690 + 1 + 25 + ARIMA d + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1008 + ARIMA differencing parameter + 100000000 + true + + + 4156 + 690 + 1 + 26 + Jump Frequency + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1764 + Jump frequency in jump-diffusion model + 100000000 + true + + + 4157 + 690 + 1 + 27 + Jump Magnitude + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1765 + Jump magnitude in jump-diffusion model + 100000000 + true + + + 4158 + 690 + 1 + 28 + Jump Error Std Dev + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1766 + Percentage standard deviation of jump magnitude errors + 100000000 + true + + + 4159 + 690 + 1 + 29 + GARCH alpha + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1767 + Weight on the square of the return in GARCH(1,1) + 100000000 + true + + + 4160 + 690 + 1 + 30 + GARCH beta + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1768 + Weight on the variance in GARCH(1,1) + 100000000 + true + + + 4161 + 690 + 1 + 31 + GARCH omega + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1769 + Long-run weighted variance in GARCH(1,1) + 100000000 + true + + + 4162 + 690 + 1 + 32 + Lookup x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1005 + Lookup table for x-axis value + 100 + true + + + 4163 + 690 + 1 + 33 + Lookup y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1006 + Lookup table for y-axis value + 100 + true + + + 4164 + 690 + 1 + 34 + Lookup Unit + 0 + 1 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1010 + Unit of the y values in the lookup table + 100 + true + + + 4165 + 690 + 1 + 35 + Sampling + 13 + -1 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 1477 + Flag if random sampling should occur in the period + 100000000 + true + + + 4166 + 690 + 1 + 36 + Step Hour Active From + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1613 + First hour of each step the Condition is allowed to be active + 800000 + true + + + 4167 + 690 + 1 + 37 + Step Hours Active + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1614 + Number of hours the Condition is allowed to be active from the first active hour in the step + 800000 + true + + + 4168 + 690 + 1 + 38 + Compound Index + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 914 + Rate of escalation + true + + + 4169 + 690 + 1 + 38 + Compound Index Hour + 12 + 0 + 1 + 0 + 0 + 6 + false + false + false + false + 1 + 1579 + Rate of escalation per hour + true + + + 4170 + 690 + 1 + 38 + Compound Index Day + 12 + 0 + 1 + 0 + 0 + 1 + false + false + false + false + 1 + 1083 + Rate of escalation per day + true + + + 4171 + 690 + 1 + 38 + Compound Index Week + 12 + 0 + 1 + 0 + 0 + 2 + false + false + false + false + 1 + 1084 + Rate of escalation per week + true + + + 4172 + 690 + 1 + 38 + Compound Index Month + 12 + 0 + 1 + 0 + 0 + 3 + false + false + false + false + 1 + 1085 + Rate of escalation per month + true + + + 4173 + 690 + 1 + 38 + Compound Index Year + 12 + 0 + 1 + 0 + 0 + 4 + false + false + false + false + 1 + 1086 + Rate of escalation per year + true + + + 4174 + 692 + 1 + 1 + Expected Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1499 + Coefficient of the variable expected value in the constraint + true + + + 4175 + 692 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the variable value in the constraint + true + + + 4176 + 692 + 1 + 3 + Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1500 + Coefficient of the variable sample error + true + + + 4177 + 692 + 1 + 4 + Positive Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1501 + Coefficient of the positive sample error + true + + + 4178 + 692 + 1 + 5 + Negative Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1502 + Coefficient of the negative sample error + true + + + 4179 + 693 + 1 + 1 + Expected Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1499 + Coefficient of the variable expected value + true + + + 4180 + 693 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the variable sample value + true + + + 4181 + 693 + 1 + 3 + Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1500 + Coefficient of the variable sample error + true + + + 4182 + 693 + 1 + 4 + Positive Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1501 + Coefficient of the positive sample error + true + + + 4183 + 693 + 1 + 5 + Negative Error Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1502 + Coefficient of the negative sample error + true + + + 4184 + 694 + 1 + 1 + Correlation + 12 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 116 + Cross correlation + 100000000 + true + + + 4185 + 694 + 1 + 2 + Value Coefficient + 0 + 0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1350 + Coefficient of the Variable Value in the definition of this Variable + true + + + 4186 + 696 + 1 + 1 + Include + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 0 + 2 + 0 + 0 + false + true + true + false + 1 + 296 + If the timeslice includes the period + 800000 + true + + + 4187 + 698 + 2 + 1 + Full Branches Sample Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 2797 + Flag if the Full Branches historical year start are automatically selected by sample reduction. + 800000 + true + + + 4188 + 698 + 2 + 2 + Hanging Branches Sample Reduction + 13 + 0 + In (0,-1) + -1;"Yes";0;"No" + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1996 + Flag if the Hanging Branches historical year start are automatically selected by sample reduction. + 800000 + true + + + 4189 + 698 + 1 + 3 + FCF Constant + 14 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1485 + Future Cost Function: objective function constant term + true + + + 4190 + 698 + 1 + 4 + FCF Sample Map + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2798 + Future Cost Function: historical sample to full branch sample map + true + + + 4191 + 698 + 1 + 5 + Sample Weight + 0 + 0 + Between 0 And 1 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1497 + Sampling: Weight applied to samples + 100000000 + true + + + 4192 + 698 + 1 + 6 + Tree Period Type + 0 + 0 + In (0,1,2,3,4,5,6) + 0;"interval";6;"hour";1;"day";2;"week";3;"month";4;"year" + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1605 + Scenario Tree: Period type for stage positions + 100000000 + true + + + 4193 + 698 + 1 + 7 + Tree Position Exp Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1489 + Scenario Tree: Controls the end positions of each stage + 100000000 + true + + + 4194 + 698 + 1 + 8 + Tree Leaves Exp Factor + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 1490 + Scenario Tree: Controls the number of samples in each stage + 100000000 + true + + + 4195 + 698 + 1 + 9 + Tree Stages Position Incr + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2570 + Scenario Tree: Increment to the position of each stage + 100000000 + true + + + 4196 + 698 + 1 + 10 + Tree Stages Position + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1491 + Scenario Tree: Position of each stage + 100000000 + true + + + 4197 + 698 + 1 + 11 + Tree Stages Leaves + 0 + 1 + >=1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1492 + Scenario Tree: Number of leaves in each stage + 100000000 + true + + + 4198 + 698 + 1 + 12 + Tree Stages Hanging Branches + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1672 + Scenario Tree: Number of hanging branches in each stage + 100000000 + true + + + 4199 + 698 + 1 + 13 + Deterministic Stages + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + false + 1 + 1826 + Scenario Tree: Number of deterministic stages + 100000000 + true + + + 4200 + 698 + 1 + 14 + Full Branches Historical Year Start + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 2500 + Scenario Tree: First year of historical data for full branches + 100000000 + true + + + 4201 + 698 + 1 + 15 + Hanging Branches Historical Year Start + 0 + 0 + >=0 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1911 + Scenario Tree: First year of historical data for hanging branches + 100000000 + true + + + 4202 + 698 + 1 + 16 + Hanging Branches Weight + 0 + 1 + >=0 + 1 + 0 + 0 + 0 + false + false + false + true + 1 + 1946 + Scenario Tree: Weights for the hanging branches + 100000000 + true + + + 4203 + 698 + 1 + 17 + Hanging Branches Block Count + 0 + -1 + 0 + 2 + 0 + 0 + false + false + false + true + 1 + 1912 + Number of blocks (time periods) modelled after the hanging branch begins. + 100000000 + true + + + 4204 + 698 + 1 + 18 + Slicing Block + 0 + 0 + In (0,-1) + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 1487 + Defines blocks of time that should be kept together when performing time slicing e.g. for load duration curves + true + + + 4205 + 698 + 1 + 19 + Sampled Period + 0 + 0 + 0 + 2 + 0 + 0 + false + false + true + false + 1 + 2707 + Selects periods for Sampled Chronology in MT Schedule + true + + + 4206 + 698 + 1 + 20 + Sampled Year + 0 + 0 + 0 + 2 + 0 + 0 + false + false + true + true + 1 + 2228 + Year selection for LT Plan. Sampling will occur only for selected years. + true + + + 4207 + 702 + 3 + 1 + Temperature + 77 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2009 + Temperature value in each level + true + + + 4208 + 702 + 3 + 2 + Heating Degree Days + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2007 + Value for heating degree days + true + + + 4209 + 702 + 3 + 3 + Wind Speed + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + true + false + 1 + 2011 + Wind speed value + true + + + 4210 + 702 + 12 + 4 + x + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1346 + Value to pass-through to solution + true + + + 4211 + 702 + 12 + 5 + y + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1347 + Value to pass-through to solution + true + + + 4212 + 702 + 12 + 6 + z + 0 + 0 + 1 + 0 + 0 + 0 + false + false + true + true + 1 + 1390 + Value to pass-through to solution + true + + + 4213 + 708 + 1 + 1 + Read Order + 0 + 0 + >=0 + 1 + 0 + 0 + 0 + false + false + false + false + 1 + 907 + Order in which to read scenario data (last read scenario has highest priority) + true + + + 1 + - + 1 + + + 2 + Settings + 5 + + + 3 + Production + 2 + + + 4 + Offers and Bids + 10 + + + 5 + Risk + 7 + + + 6 + Capacity + 3 + + + 7 + Reliability + 12 + + + 8 + Expansion + 4 + + + 9 + Constraints + 9 + + + 10 + Storage + 11 + + + 11 + Stochastic + 8 + + + 12 + Pass-through + 6 + + + 0 + - + - + 0 + + + 1 + MW + MW + MW + MW + MW + MW + MW + unit of load + 26 + + + 2 + GWh + GWh + GWh + GWh + GWh + GWh + GWh + 1000 units of electric energy + 24 + + + 3 + MWh + MWh + MWh + MWh + MWh + MWh + MWh + unit of electric energy + 59 + + + 4 + kV + kV + 37 + + + 5 + s + s + 42 + + + 6 + h + h + 25 + + + 7 + day + day + 58 + + + 8 + yr + yr + 55 + + + 9 + MW/min + MW/min + 27 + + + 10 + pu + pu + 28 + + + 11 + ° + ° + 30 + + + 12 + % + % + 32 + + + 13 + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + Yes/No + logic switches + 46 + + + 14 + $ + $ + $ + $ + $ + $ + $ + unit of currency + 1 + + + 15 + MMBTu + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of energy + 2 + + + 16 + BBTu + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 energy units + 3 + + + 17 + MMBTU + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of fuel + 4 + + + 18 + TJ + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 units of fuel + 5 + + + 19 + kg + kg + lb + kg + lb + kg + lb + unit of emission + 6 + + + 20 + tonne + tonne + ton + tonne + ton + tonne + ton + 1000 units of emission + 7 + + + 21 + MMBTu + GJ + Btu + GJ + Btu + GJ + Btu + unit of heat rate numerator + 45 + + + 22 + MWh + MWh + kWh + MWh + kWh + MWh + kWh + unit of heat rate denominator + 44 + + + 23 + m + m + ft + m + ft + m + ft + unit of distance + 34 + + + 24 + GWh + GWh + GWh + 1000 m³ + 1000 ft³ + CMD + AF + unit of storage + 39 + + + 25 + MW + MW + MW + m³/s + ft³/s. + m³/s + AF/hr + unit of water flow + 40 + + + 26 + GWh + GWh + GWh + 1000 m³ + 1000 ft³ + CMD + AF + unit of hydro release + 52 + + + 27 + MW + MW + =unit of hydro efficiency numerator OLD + 50 + + + 28 + MW + MW + unit of hydro efficiency denominator OLD + 51 + + + 29 + $/MMBTU + $/GJ + =[unit of currency]/[unit of fuel] + 8 + + + 30 + $/kg + $/kg + =[unit of currency]/[unit of emission] + 9 + + + 31 + $/kW/yr + $/kW/yr + =[unit of currency]/kW/yr + 10 + + + 32 + $/MW + $/MW + =[unit of currency]/[unit of load] + 11 + + + 33 + $/MWh + $/MWh + =[unit of currency]/[unit of electric energy] + 12 + + + 34 + $000 + $000 + =[unit of currency]000 + 15 + + + 35 + MMBTU/h + GJ/h + =[unit of fuel]/h + 16 + + + 36 + MMBTu/MWh + GJ/MWh + =[unit of heat rate numerator]/[unit of heat rate denominator] + 17 + + + 37 + MMBTu/MMBTU + GJ/GJ + =[unit of energy]/[unit of fuel] + 18 + + + 38 + MMBTu/MWh² + GJ/MWh² + =[unit of heat rate numerator]/[unit of heat rate denominator]² + 19 + + + 39 + kg/MMBTU + kg/GJ + =[unit of emission]/[unit of fuel] + 21 + + + 40 + kg/MWh + kg/MWh + =[unit of emission]/[unit of electric energy] + 22 + + + 41 + $/GWh + $/GWh + =[unit of currency]/[1000 units of electric energy] + 33 + + + 42 + + + =[unit of distance]² + 35 + + + 43 + $/degree + $/° + =[unit of currency]/degree + 38 + + + 44 + MMBTu/MWh³ + GJ/MWh³ + =[unit of heat rate numerator]/[unit of heat rate denominator]³ + 41 + + + 45 + /MW + MW/MW + =[unit of hydro efficiency numerator OLD]/[unit of hydro efficiency denominator OLD] + 49 + + + 46 + $/GWh + $/GWh + =[unit of currency]/[unit of hydro release] + 53 + + + 47 + $/kW + $/kW + =[unit of currency]/kW + 56 + + + 48 + $/hr + $/h + =[unit of currency]/hr + 57 + + + 49 + $/kW/month + $/kW/month + =[unit of currency]/kW/month + 61 + + + 50 + $/kW/week + $/kW/week + =[unit of currency]/kW/week + 62 + + + 51 + $/kW/day + $/kW/day + =[unit of currency]/kW/day + 63 + + + 52 + $/kWh + $/kWh + =[unit of currency]/kWh + 206 + + + 53 + rad + rad + 64 + + + 54 + $/MW + $/MW + =[unit of currency]/[unit of water flow] + 65 + + + 55 + month + month + 66 + + + 56 + $/MWh/MWh + $/MWh2 + =[unit of currency]/[unit of electric energy]/[unit of electric energy] + 67 + + + 57 + min + min + 69 + + + 58 + TJ + TJ + MMBtu + TJ + MMBtu + TJ + MMBtu + unit of gas volume + 75 + + + 59 + GJ + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of gas energy + 74 + + + 60 + $/GJ + $/GJ + =[unit of currency]/[unit of gas energy] + 72 + + + 61 + $/MMBTu + $/GJ + =[unit of currency]/[unit of energy] + 76 + + + 62 + cycles + cycles + 77 + + + 63 + kg/GJ + kg/GJ + =[unit of emission]/[unit of gas energy] + 78 + + + 64 + + + gal. + + gal. + + gal. + unit of water volume + 79 + + + 65 + m³/day + m³/day + =[unit of water volume]/day + 80 + + + 66 + kWh/m³ + kWh/m³ + =kWh/[unit of water volume] + 81 + + + 67 + $/m³ + $/m³ + =[unit of currency]/[unit of water volume] + 82 + + + 68 + m³/MWh + m³/MWh + =[unit of water volume]/[unit of electric energy] + 83 + + + 69 + kWh/TJ + kWh/TJ + =kWh/[unit of gas volume] + 84 + + + 70 + %/day + %/day + 85 + + + 71 + kg/m³ + kg/m³ + =[unit of emission]/[unit of water volume] + 87 + + + 72 + MMBTu/m³ + GJ/m³ + =[unit of energy]/[unit of water volume] + 88 + + + 73 + $/MMBTu/day + $/GJ/day + =[unit of currency]/[unit of energy]/day + 89 + + + 74 + $/MMBTu/day + $/mmBTU/day + =[unit of currency]/[unit of energy]/day + 90 + + + 75 + GJ + GJ + MMBtu + GJ + MMBtu + GJ + MMBtu + unit of gas energy output + 202 + + + 76 + TJ + TJ + BBtu + TJ + BBtu + TJ + BBtu + 1000 units of gas energy output + 203 + + + 77 + °C + °C + °F + °C + °F + °C + °F + unit of temperature + 204 + + + 78 + $/MMBTu/month + $/GJ/month + =[unit of currency]/[unit of energy]/month + 207 + + + 79 + kW + kW + 209 + + + 80 + kWh + kWh + 208 + + + 81 + km + km + m + km + m + km + m + electric vehicle efficiency denominator + 210 + + + 82 + Wh/km + Wh/km + =Wh/[electric vehicle efficiency denominator] + 211 + + + 83 + c + c + c + c + c + c + c + 1/100th unit of currency + 212 + + + 84 + c/kWh + c/kWh + =[1/100th unit of currency]/kWh + 213 + + + 85 + MJ + MJ + 214 + + + 86 + ~ + ~ + 215 + + + 87 + 1000·~ + 1000·~ + 228 + + + 88 + $/~ + $/~ + =[unit of currency]/~ + 216 + + + 89 + pa + pa + psi + pa + psi + pa + psi + unit of pressure + 217 + + + 90 + $/km + $/km + =[unit of currency]/[electric vehicle efficiency denominator] + 218 + + + 91 + kg/km + kg/km + =[unit of emission]/[electric vehicle efficiency denominator] + 219 + + + 92 + kg/kWh + kg/kWh + =[unit of emission]/kWh + 220 + + + 93 + ~ + ~ + 221 + + + 94 + ~ + ~ + 222 + + + 95 + $/~ + $/~ + =[unit of currency]/~ + 223 + + + 96 + $/~ + $/~ + =[unit of currency]/~ + 224 + + + 97 + MW·s + MW·s + 225 + + + 98 + GW·s + GW·s + 226 + + + 99 + $/m³/day/yr + $/m³/day/yr + =[unit of currency]/[unit of water volume]/day/yr + 227 + + + 100 + 1000·~ + 1000·~ + ~ + 1000·~ + ~ + 1000·~ + ~ + custom unit of gas volume + 229 + + + 101 + kWh/1000·~ + kWh/1000·~ + =kWh/[custom unit of gas volume] + 230 + + + 102 + kg/~ + kg/~ + =kg/[custom unit of gas volume] + 231 + + + 103 + $/1000·~/month + $/~/month + =[unit of currency]/[custom unit of gas volume]/month + 232 + + + 104 + $/1000·~/day + $/~/day + =[unit of currency]/[custom unit of gas volume]/day + 233 + + + 105 + ~/MWh + ~/MWh + =~/MWh + 234 + + + 106 + ~/GJ + ~/GJ + =~/[unit of heat rate numerator] + 235 + + + 107 + ~/MW + ~/MW + =~/MW + 236 + + + 108 + $/~/yr + $/~/yr + =[unit of currency]/~/yr + 237 + + + 109 + MWh/~ + MWh/~ + =MWh/~ + 238 + + + 110 + MMBTu/~ + GJ/~ + =[unit of energy]/~ + 239 + + + 111 + GJ/~ + GJ/~ + =[unit of gas energy output]/~ + 240 + + + 112 + m³/~ + m³/~ + =[unit of water volume]/~ + 241 + + + 113 + MMBTU/~ + GJ/~ + =[unit of fuel]/~ + 242 + + + 114 + kg/~ + kg/~ + =[unit of emission]/~ + 243 + + + 115 + ~/min + ~/min + =~/min + 244 + + + 116 + MW/1000·~ + MW/1000·~ + =MW/1000·~ + 245 + + + 117 + MWh/1000·~ + MWh/1000·~ + =MWh/1000·~ + 246 + + + 118 + MW + MW + MW + MW + kW + MW + kW + unit of hydro efficiency numerator + 247 + + + 119 + MW + MW + MW + m³/s + ft³/s + m³/s + AF/hr + unit of hydro efficiency denominator + 248 + + + 120 + MW/MW + MW/MW + =[unit of hydro efficiency numerator]/[unit of hydro efficiency denominator] + 249 + + + 1 + 1 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 2 + 1 + 3 + 2 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 3 + 1 + 3 + 3 + Min Generation + Min Generation + 1 + 1 + false + true + false + false + true + false + true + true + 483 + 483 + Minimum Generation in the period + true + + + 4 + 1 + 3 + 4 + Min Stable Level Violation + Min Stable Level Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2633 + 2633 + Violation of [Min Stable Level] constraint. + true + + + 5 + 1 + 3 + 5 + Min Stable Level Violation Cost + Min Stable Level Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2634 + 2634 + Cost of [Min Stable Level] violations. + true + + + 6 + 1 + 3 + 6 + Max Generation + Max Generation + 1 + 1 + false + true + false + false + true + false + true + true + 431 + 431 + Maximum Generation in the period + true + + + 7 + 1 + 3 + 7 + Units Generating + Units Generating + 0 + 0 + true + false + false + false + true + false + true + true + 816 + 816 + Number of units generating + true + + + 8 + 1 + 3 + 8 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 9 + 1 + 3 + 9 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 10 + 1 + 3 + 10 + Dispatchable Capacity + Dispatchable Energy + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 2341 + On-line capacity + true + + + 11 + 1 + 3 + 11 + Undispatched Capacity + Undispatched Energy + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 2342 + Capacity on-line but undispatched + true + + + 12 + 1 + 3 + 12 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 13 + 1 + 3 + 13 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 14 + 1 + 3 + 14 + Min Up Time Violation + Min Up Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2598 + 2598 + Violation of min up time constraint. + true + + + 15 + 1 + 3 + 15 + Min Up Time Violation Cost + Min Up Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2599 + 2599 + Cost of violating min up time constraint. + true + + + 16 + 1 + 3 + 16 + Max Up Time Violation + Max Up Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2600 + 2600 + Violation of maximum up time constraint. + true + + + 17 + 1 + 3 + 17 + Max Up Time Violation Cost + Max Up Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2601 + 2601 + Cost of violating maximum up time constraint. + true + + + 18 + 1 + 3 + 18 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 19 + 1 + 3 + 19 + Min Down Time Violation + Min Down Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2602 + 2602 + Violation of min down time constraint. + true + + + 20 + 1 + 3 + 20 + Min Down Time Violation Cost + Min Down Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2603 + 2603 + Cost of violating min up time constraint. + true + + + 21 + 1 + 3 + 21 + Max Down Time Violation + Max Down Time Violation + 6 + 6 + true + true + false + true + true + false + true + true + 2621 + 2621 + Violation of maximum down time constraint. + true + + + 22 + 1 + 3 + 22 + Max Down Time Violation Cost + Max Down Time Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2622 + 2622 + Cost of violating maximum down time constraint. + true + + + 23 + 1 + 3 + 23 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity generating + true + + + 24 + 1 + 3 + 24 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 25 + 1 + 3 + 25 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 26 + 1 + 3 + 26 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 27 + 1 + 3 + 27 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 28 + 1 + 3 + 28 + Hours Curtailed + Hours Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1058 + 1058 + Number of hours that non-positive-priced generation has been curtailed. + true + + + 29 + 1 + 3 + 29 + Capacity Curtailed + Energy Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1163 + 2344 + Amount of non-positive-priced generation curtailed. + true + + + 30 + 1 + 3 + 30 + Curtailment Factor + Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 1061 + 1061 + Proportion of non-positive-priced generation curtailed. + true + + + 31 + 1 + 3 + 31 + Ramp + Ramp + 9 + 9 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 32 + 1 + 3 + 32 + Ramp Up + Ramp Up + 1 + 1 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 33 + 1 + 3 + 33 + Max Ramp Up + Max Ramp Up + 9 + 9 + true + true + false + false + true + false + true + true + 448 + 448 + Maximum ramp up rate that applies at the given load point + true + + + 34 + 1 + 3 + 34 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 35 + 1 + 3 + 35 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 36 + 1 + 3 + 36 + Ramp Up Price + Ramp Up Price + 32 + 32 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint. + true + + + 37 + 1 + 3 + 37 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation. + true + + + 38 + 1 + 3 + 38 + Ramp Up Violation + Ramp Up Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint. + true + + + 39 + 1 + 3 + 39 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations. + true + + + 40 + 1 + 3 + 40 + Ramp Down + Ramp Down + 1 + 1 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 41 + 1 + 3 + 41 + Max Ramp Down + Max Ramp Down + 9 + 9 + true + true + false + false + true + false + true + true + 447 + 447 + Maximum ramp down rate that applies at the given load point + true + + + 42 + 1 + 3 + 42 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 43 + 1 + 3 + 43 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 44 + 1 + 3 + 44 + Ramp Down Price + Ramp Down Price + 32 + 32 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint. + true + + + 45 + 1 + 3 + 45 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation. + true + + + 46 + 1 + 3 + 46 + Ramp Down Violation + Ramp Down Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint. + true + + + 47 + 1 + 3 + 47 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations. + true + + + 48 + 1 + 3 + 48 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 49 + 1 + 3 + 49 + Fixed Load Violation + Fixed Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1168 + 1168 + Violation of [Fixed Load] constraint. + true + + + 50 + 1 + 3 + 50 + Fixed Load Violation Hours + Fixed Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1045 + 1045 + Number of hours that [Fixed Load] is violated. + true + + + 51 + 1 + 3 + 51 + Fixed Load Violation Cost + Fixed Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1042 + 1042 + Cost of [Fixed Load] violations. + true + + + 52 + 1 + 3 + 52 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 53 + 1 + 3 + 53 + Min Load Violation + Min Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1169 + 1169 + Violation of [Min Load] constraint. + true + + + 54 + 1 + 3 + 54 + Min Load Violation Hours + Min Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1046 + 1046 + Number of hours that [Min Load] is violated. + true + + + 55 + 1 + 3 + 55 + Min Load Violation Cost + Min Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1047 + 1047 + Cost of [Min Load] violations. + true + + + 56 + 1 + 3 + 56 + Max Load Violation + Max Load Violation + 1 + 1 + true + true + false + false + true + false + true + true + 2604 + 2604 + Violation of [Max Load] constraint. + true + + + 57 + 1 + 3 + 57 + Max Load Violation Cost + Max Load Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2605 + 2605 + Cost of [Max Load] violations. + true + + + 58 + 1 + 3 + 58 + Max Energy Violation + Max Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1192 + 1192 + Violation of [Max Energy] or [Max Capacity Factor] constraints. + true + + + 59 + 1 + 3 + 59 + Max Energy Violation Cost + Max Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1193 + 1193 + Cost of [Max Energy] or [Max Capacity Factor] constraint violations. + true + + + 60 + 1 + 3 + 60 + Min Energy Violation + Min Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1194 + 1194 + Violation of [Min Energy] or [Min Capacity Factor] constraints. + true + + + 61 + 1 + 3 + 61 + Min Energy Violation Cost + Min Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1195 + 1195 + Cost of [Min Energy] or [Min Capacity Factor] constraint violations. + true + + + 62 + 1 + 3 + 62 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints. + true + + + 63 + 1 + 3 + 63 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations. + true + + + 64 + 1 + 3 + 64 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise reserve + true + + + 65 + 1 + 3 + 65 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 66 + 1 + 3 + 66 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 67 + 1 + 3 + 67 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 68 + 1 + 3 + 68 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 69 + 1 + 3 + 69 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 70 + 1 + 3 + 70 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 71 + 1 + 3 + 71 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of additional generation that could be unloaded + true + + + 72 + 1 + 3 + 72 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 73 + 1 + 3 + 73 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 74 + 1 + 3 + 74 + Dispatched Capacity Available + Dispatched Capacity Available + 1 + 2 + true + true + false + false + true + false + true + true + 2204 + 2204 + The available capacity during unit commitment + false + + + 75 + 1 + 3 + 75 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 76 + 1 + 3 + 76 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 77 + 1 + 3 + 77 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 78 + 1 + 3 + 78 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 79 + 1 + 3 + 79 + Storage Release + Storage Release + 25 + 24 + true + true + false + false + true + false + true + true + 2780 + 2780 + Release from the Head Storage to the generator + true + + + 80 + 1 + 3 + 80 + Natural Inflow + Natural Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 530 + 530 + Natural inflow to the generator + true + + + 81 + 1 + 3 + 81 + Controllable Inflow + Controllable Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 2779 + 2779 + Controllable natural inflow to the generator + true + + + 82 + 1 + 3 + 82 + Uncontrolled Inflow + Uncontrolled Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 2777 + 2777 + Uncontrolled natural inflow to the generator + true + + + 83 + 1 + 3 + 83 + Spill + Spill + 25 + 24 + true + true + false + false + true + false + true + true + 758 + 758 + Spill to "the sea" + true + + + 84 + 1 + 3 + 84 + Units Pumping + Units Pumping + 0 + 0 + true + false + false + false + true + false + true + true + 1228 + 1228 + Number of units operating in pump mode + true + + + 85 + 1 + 3 + 85 + Pump Units Started + Pump Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 1322 + 1322 + Number of units stared in pump mode + true + + + 86 + 1 + 3 + 86 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by a unit in pumping mode + true + + + 87 + 1 + 3 + 87 + Pump Load Violation + Pump Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2606 + 2606 + Violation of maximum pump load constraint. + true + + + 88 + 1 + 3 + 88 + Pump Load Violation Cost + Pump Load Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2607 + 2607 + Cost of violating maximum pump load constraint. + true + + + 89 + 1 + 3 + 89 + Pump Operating Hours + Pump Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1642 + 1642 + Number of hours the unit is operating in pump mode + true + + + 90 + 1 + 3 + 90 + Net Sum Generation + Net Sum Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2374 + 2374 + Generation sum of pump load and generation + false + + + 91 + 1 + 3 + 91 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 92 + 1 + 3 + 92 + Fixed Pump Load + Fixed Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 1328 + 1328 + Fixed pump load + true + + + 93 + 1 + 3 + 93 + Fixed Pump Load Violation + Fixed Pump Load Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1331 + 1331 + Violation of [Fixed Pump Load] constraint. + true + + + 94 + 1 + 3 + 94 + Fixed Pump Load Violation Hours + Fixed Pump Load Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1330 + 1330 + Number of hours that [Fixed Pump Load] is violated. + true + + + 95 + 1 + 3 + 95 + Fixed Pump Load Violation Cost + Fixed Pump Load Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1332 + 1332 + Cost of [Fixed Pump Load] violations. + true + + + 96 + 1 + 3 + 96 + Water Release + Water Release + 25 + 24 + true + true + false + false + true + false + true + true + 854 + 854 + Water release from hydro generation + true + + + 97 + 1 + 3 + 97 + Water Pumped + Water Pumped + 25 + 24 + true + true + false + false + true + false + true + true + 853 + 853 + Water pumped in pumping mode + true + + + 98 + 1 + 3 + 98 + Units Sync Cond + Units Sync Cond + 0 + 0 + true + false + false + false + true + false + true + true + 1643 + 1643 + Number of units operating in synchronous condenser mode + true + + + 99 + 1 + 3 + 99 + Sync Cond Load + Sync Cond Load + 1 + 2 + true + true + false + false + true + false + true + true + 772 + 772 + Load drawn by a unit in synchronous condenser mode + true + + + 100 + 1 + 3 + 100 + Sync Cond Operating Hours + Sync Cond Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1644 + 1644 + Number of hours the unit is operating in synchronous condenser mode + true + + + 101 + 1 + 3 + 101 + Fuel Price + Fuel Price + 29 + 29 + true + true + false + false + true + false + true + true + 225 + 225 + Fuel price (when not using Fuels collection) + true + + + 102 + 1 + 3 + 102 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 103 + 1 + 3 + 103 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 104 + 1 + 3 + 104 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 105 + 1 + 3 + 105 + VO&M Charge + VO&M Charge + 33 + 33 + true + true + false + false + true + false + true + true + 849 + 849 + Variable operation and maintenance charge + true + + + 106 + 1 + 3 + 106 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 107 + 1 + 3 + 107 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 108 + 1 + 3 + 108 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 109 + 1 + 3 + 109 + Generation Credit Revenue + Generation Credit Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2766 + 2766 + Total revenue derived from generation credits + true + + + 110 + 1 + 3 + 110 + Generation Credit Price + Generation Credit Price + 33 + 33 + true + true + false + false + true + false + true + true + 2767 + 2767 + Average price of the generation credits + true + + + 111 + 1 + 3 + 111 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Cost of pump energy + true + + + 112 + 1 + 3 + 112 + Sync Cond Cost + Sync Cond Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1649 + 1649 + Cost of synchronous condenser energy + true + + + 113 + 1 + 3 + 113 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 114 + 1 + 3 + 114 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 115 + 1 + 3 + 115 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of generation + true + + + 116 + 1 + 3 + 116 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 117 + 1 + 3 + 117 + Start & Shutdown Penalty Cost + Start & Shutdown Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1183 + 1183 + Penalty cost of unit start up and shutdown + true + + + 118 + 1 + 3 + 118 + Start Profile Violation + Start Profile Violation + 1 + 1 + true + true + false + false + true + false + true + true + 2640 + 2640 + Violation of [Start Profile] constraint. + true + + + 119 + 1 + 3 + 119 + Start Profile Violation Cost + Start Profile Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2641 + 2641 + Cost of [Start Profile] violations. + true + + + 120 + 1 + 3 + 120 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + false + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 121 + 1 + 3 + 121 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 122 + 1 + 3 + 122 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 123 + 1 + 3 + 123 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 124 + 1 + 3 + 124 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 125 + 1 + 3 + 125 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 126 + 1 + 3 + 126 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 127 + 1 + 3 + 127 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 128 + 1 + 3 + 128 + Heat Rate + Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 260 + 260 + Average heat rate (total fuel divided by total generation) + true + + + 129 + 1 + 3 + 129 + Marginal Heat Rate + Marginal Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal generation level + true + + + 130 + 1 + 3 + 130 + Average Heat Rate + Average Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate + true + + + 131 + 1 + 3 + 131 + Efficiency + Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of generation + true + + + 132 + 1 + 3 + 132 + Marginal Fuel Cost + Marginal Fuel Cost + 33 + 33 + true + true + false + false + true + false + true + true + 1776 + 1776 + Short-run marginal cost fuel component + true + + + 133 + 1 + 3 + 133 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 134 + 1 + 3 + 134 + Average Cost + Average Cost + 33 + 33 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of generation + true + + + 135 + 1 + 3 + 135 + Average Total Cost + Average Total Cost + 33 + 33 + true + true + false + false + true + false + true + true + 1374 + 1374 + Average [Total Generation Cost] + true + + + 136 + 1 + 3 + 136 + Offer Base + Offer Base + 1 + 2 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for incr/decr style offer + true + + + 137 + 1 + 3 + 137 + Offer No Load Cost + Offer No Load Cost + 48 + 48 + true + false + false + false + true + false + true + true + 568 + 568 + Fixed dispatch cost component of generator offer. + true + + + 138 + 1 + 3 + 138 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band + true + + + 139 + 1 + 3 + 139 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 140 + 1 + 3 + 140 + Cost Price + Cost Price + 33 + 33 + true + true + true + false + true + false + true + true + 119 + 119 + Marginal cost of energy in band + true + + + 141 + 1 + 3 + 141 + Mark-up + Mark-up + 33 + 33 + true + true + true + false + true + false + true + true + 408 + 408 + Mark-up above marginal cost + true + + + 142 + 1 + 3 + 142 + Bid-Cost Mark-up + Bid-Cost Mark-up + 12 + 12 + true + true + true + false + true + false + true + true + 32 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + true + + + 143 + 1 + 3 + 143 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 144 + 1 + 3 + 144 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 145 + 1 + 3 + 145 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 146 + 1 + 3 + 146 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + true + true + false + true + true + 377 + 377 + Transmission marginal loss factor (MLF or TLF) + true + + + 147 + 1 + 3 + 147 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 148 + 1 + 3 + 148 + Pump Bid Base + Pump Bid Base + 1 + 2 + true + true + false + false + true + false + true + true + 1301 + 1301 + Base pump load for balancing bid + true + + + 149 + 1 + 3 + 149 + Pump Bid Quantity + Pump Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 1303 + 1303 + Pump load bid quantity in band + true + + + 150 + 1 + 3 + 150 + Pump Bid Price + Pump Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 1302 + 1302 + Bid price of pump load in band + true + + + 151 + 1 + 3 + 151 + Pump Bid Cleared + Pump Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1304 + 1304 + Quantity cleared in pump load bid band + true + + + 152 + 1 + 3 + 152 + Cleared Pump Bid Price + Cleared Pump Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1305 + 1305 + Price of marginal pump load bid band + true + + + 153 + 1 + 3 + 153 + Cleared Pump Bid Cost + Cleared Pump Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1307 + 1307 + Area cleared under generator pump bid curve + true + + + 154 + 1 + 3 + 154 + Pump Price Paid + Pump Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 1306 + 1306 + Price paid for pump load + true + + + 155 + 1 + 3 + 155 + Sync Cond Price Paid + Sync Cond Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 1650 + 1650 + Price paid for synchronous condenser load + true + + + 156 + 1 + 3 + 156 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 157 + 1 + 3 + 157 + Spark Spread + Spark Spread + 33 + 33 + true + true + false + false + true + false + true + true + 1062 + 1062 + Difference between price received and cost of fuel used to generate. + true + + + 158 + 1 + 3 + 158 + Clean Spark Spread + Clean Spark Spread + 33 + 33 + true + true + false + false + true + false + true + true + 1064 + 1064 + Difference between price received and cost of fuel used to generate accounting for incremental cost of emissions. + true + + + 159 + 1 + 3 + 159 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue + true + + + 160 + 1 + 3 + 160 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 161 + 1 + 3 + 161 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 162 + 1 + 3 + 162 + Heat Market Revenue + Heat Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 256 + 256 + Revenue from heat markets + true + + + 163 + 1 + 3 + 163 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 164 + 1 + 3 + 164 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 165 + 1 + 3 + 165 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before mark-up models. + true + + + 166 + 1 + 3 + 166 + Shadow Pool Revenue + Shadow Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1146 + 1146 + Pool revenue before mark-up models. + true + + + 167 + 1 + 3 + 167 + Shadow Price Received + Shadow Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 400 + 400 + Price received before uplift or mark-up models. + true + + + 168 + 1 + 3 + 168 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 169 + 1 + 3 + 169 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint applied to this Generator. + true + + + 170 + 1 + 3 + 170 + Scheduled Generation + Scheduled Generation + 1 + 2 + true + true + false + false + false + false + true + true + 721 + 721 + Generation in the unconstrained schedule (uniform pricing only) + true + + + 171 + 1 + 3 + 171 + Scheduled Revenue + Scheduled Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 724 + 724 + Revenue from scheduled generation (uniform pricing only) + true + + + 172 + 1 + 3 + 172 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 173 + 1 + 3 + 173 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 174 + 1 + 3 + 174 + Scheduled Generation Cost + Scheduled Generation Cost + 14 + 34 + true + true + false + true + false + false + true + true + 722 + 722 + Cost of generation in the unconstrained schedule (uniform pricing only) + true + + + 175 + 1 + 3 + 175 + Scheduled Offer Cost + Scheduled Offer Cost + 14 + 34 + true + true + false + true + false + false + true + true + 723 + 723 + Area cleared under generator offer curve in unconstrained schedule (uniform pricing only) + true + + + 176 + 1 + 3 + 176 + Scheduled Start & Shutdown Cost + Scheduled Start & Shutdown Cost + 14 + 34 + true + true + false + false + false + false + true + true + 725 + 725 + Cost of unit start ups and shut downs in the unconstrained schedule + true + + + 177 + 1 + 3 + 177 + CHP Generation + CHP Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1049 + 1049 + Combined heat and power generation from heat mode + true + + + 178 + 1 + 3 + 178 + Condense Mode Generation + Condense Mode Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1050 + 1050 + Combined heat and power generation from condense mode + true + + + 179 + 1 + 3 + 179 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Total Heat Production from Generator (including Ancillary Boiler) + true + + + 180 + 1 + 3 + 180 + CHP Heat Production + CHP Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 1051 + 1051 + Heat production from CHP mode + true + + + 181 + 1 + 3 + 181 + Boiler Heat Production + Boiler Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 41 + 41 + Heat production from Ancillary Boiler + true + + + 182 + 1 + 3 + 182 + Heat Fuel Offtake + Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 254 + 254 + Total Fuel Offtake for Heat Production + true + + + 183 + 1 + 3 + 183 + CHP Power Fuel Offtake + CHP Power Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1052 + 1052 + Fuel Offtake proportion for Electricity production + true + + + 184 + 1 + 3 + 184 + CHP Heat Fuel Offtake + CHP Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1053 + 1053 + Fuel Offtake proportion for Heat production + true + + + 185 + 1 + 3 + 185 + CHP Heat Surrogate Fuel Offtake + CHP Heat Surrogate Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1054 + 1054 + Fuel Offtake proportion for Heat production (estimated as input user) + true + + + 186 + 1 + 3 + 186 + Boiler Fuel Offtake + Boiler Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 1055 + 1055 + Fuel Offtake of Ancillary Boiler + true + + + 187 + 1 + 3 + 187 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Cost of heat production + true + + + 188 + 1 + 3 + 188 + Heat Revenue + Heat Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 267 + 267 + Revenue from heat production + true + + + 189 + 1 + 3 + 189 + Max Heat + Max Heat + 15 + 16 + true + true + false + true + true + false + true + true + 1514 + 1514 + Maximum heat allowed in storage + true + + + 190 + 1 + 3 + 190 + Max Heat Violation + Max Heat Violation + 15 + 16 + true + true + false + true + true + false + true + true + 2608 + 2608 + Amount above Generator Max Heat + true + + + 191 + 1 + 3 + 191 + Max Heat Violation Cost + Max Heat Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2609 + 2609 + Cost of Generator Max Heat violation + true + + + 192 + 1 + 3 + 192 + Min Heat + Min Heat + 15 + 16 + true + true + false + true + true + false + true + true + 1515 + 1515 + Minimum heat allowed in storage + true + + + 193 + 1 + 3 + 193 + Opening Heat + Opening Heat + 15 + 16 + true + true + false + false + true + false + true + true + 1513 + 1513 + Initial heat in the storage + true + + + 194 + 1 + 3 + 194 + Closing Heat + Closing Heat + 15 + 16 + true + true + false + false + true + false + true + true + 1517 + 1517 + Heat in storage at the end of the period + true + + + 195 + 1 + 3 + 195 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from storage + true + + + 196 + 1 + 3 + 196 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into storage + true + + + 197 + 1 + 3 + 197 + Net Heat Withdrawal + Net Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1542 + 1542 + Net of withdrawal and injection + true + + + 198 + 1 + 3 + 198 + Heat Loss + Heat Loss + 15 + 16 + true + true + false + true + true + false + true + true + 1516 + 1516 + Rate at which heat is lost from storage + true + + + 199 + 1 + 3 + 199 + Heat Withdrawal Cost + Heat Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1543 + 1543 + Cost of withdrawing heat from storage + true + + + 200 + 1 + 3 + 200 + Heat Injection Cost + Heat Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1544 + 1544 + Cost of injecting heat into storage + true + + + 201 + 1 + 3 + 201 + Heat Shadow Price + Heat Shadow Price + 61 + 61 + true + true + false + false + true + false + true + true + 1545 + 1545 + Shadow price of heat in storage + true + + + 202 + 1 + 3 + 202 + Water Offtake + Water Offtake + 64 + 64 + true + true + false + false + true + false + true + true + 1801 + 1801 + Water recycled through the generator (e.g. for cooling) + true + + + 203 + 1 + 3 + 203 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + false + true + false + true + true + 1803 + 1803 + Water consumed by the generator (e.g. evaporative cooling losses) + true + + + 204 + 1 + 3 + 204 + Water Cost + Water Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1809 + 1809 + Cost of water consumed + true + + + 205 + 1 + 3 + 205 + Water Price Paid + Water Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 1808 + 1808 + Price paid for water consumption + true + + + 206 + 1 + 3 + 206 + Energy Utilisation Factor + Energy Utilisation Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2088 + 2088 + Portion of available technical capacity dispatched + true + + + 207 + 1 + 3 + 207 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served at the Gas Node attached to the generator + true + + + 208 + 1 + 6 + 208 + Max Capacity + Max Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 414 + 414 + Maximum generating capacity of each unit + true + + + 209 + 1 + 6 + 209 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 210 + 1 + 6 + 210 + Rating + Rating + 1 + 1 + true + true + false + false + true + false + true + true + 665 + 665 + Rated capacity of units + true + + + 211 + 1 + 6 + 211 + Raw Rating + Raw Rating + 1 + 1 + true + true + false + false + true + false + true + true + 1872 + 1872 + Rated output capacity of units without considering outages or degradation + true + + + 212 + 1 + 6 + 212 + Rated Capacity + Rated Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + true + + + 213 + 1 + 6 + 213 + Rating Violation + Rating Violation + 1 + 2 + true + true + false + false + true + false + true + true + 2637 + 2637 + Violation of Rating constraint + true + + + 214 + 1 + 6 + 214 + Rating Violation Cost + Rating Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2638 + 2638 + Cost of Rating violation + true + + + 215 + 1 + 6 + 215 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the generator to capacity reserves + true + + + 216 + 1 + 6 + 216 + Net Firm Capacity + Net Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 2701 + 2701 + Firm Capacity net of maintenance and degradation + true + + + 217 + 1 + 6 + 217 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + false + true + false + false + 1012 + 1012 + Contribution to regional capacity reserves + true + + + 218 + 1 + 7 + 218 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 219 + 1 + 7 + 219 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity lost to maintenance + true + + + 220 + 1 + 7 + 220 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 221 + 1 + 7 + 221 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 222 + 1 + 7 + 222 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 223 + 1 + 7 + 223 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 224 + 1 + 7 + 224 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 225 + 1 + 7 + 225 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 226 + 1 + 7 + 226 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 227 + 1 + 7 + 227 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 228 + 1 + 7 + 228 + Outage Hours + Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2561 + 2561 + Number of hours on outage + true + + + 229 + 1 + 7 + 229 + Outage Rate + Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 2562 + 2562 + Proportion of installed capacity on outage + true + + + 230 + 1 + 7 + 230 + Operating or Forced Outage Hours + Operating or Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1821 + 1821 + Number of hours operating or on forced outage + false + + + 231 + 1 + 7 + 231 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 232 + 1 + 7 + 232 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for generation + true + + + 233 + 1 + 8 + 233 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 234 + 1 + 8 + 234 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 235 + 1 + 8 + 235 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 236 + 1 + 8 + 236 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 237 + 1 + 8 + 237 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 238 + 1 + 8 + 238 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the generator for capacity + true + + + 239 + 1 + 8 + 239 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 240 + 1 + 8 + 240 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 241 + 1 + 8 + 241 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 242 + 1 + 8 + 242 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 243 + 1 + 8 + 243 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 244 + 1 + 8 + 244 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 245 + 1 + 8 + 245 + Shadow Capacity Built + Shadow Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1823 + 1823 + Capacity built (Max Capacity x Units Built) before Competition models. + true + + + 246 + 1 + 8 + 246 + Age + Age + 8 + 8 + true + true + false + false + true + false + false + false + 1373 + 1373 + Average age of generating units + true + + + 247 + 1 + 8 + 247 + Recovery Price + Recovery Price + 33 + 33 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of generator expansion + true + + + 248 + 1 + 8 + 248 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by operating the generator + true + + + 249 + 1 + 12 + 249 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 250 + 1 + 12 + 250 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 251 + 1 + 12 + 251 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 252 + 5 + 3 + 1 + Transition Cost + Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1139 + 1139 + Cost required for a Generator transition + true + + + 253 + 5 + 3 + 2 + Transition Count + Transition Count + 0 + 0 + true + true + false + false + true + false + true + true + 1882 + 1882 + The number of transitions in the given period + true + + + 254 + 7 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 255 + 7 + 1 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the generator + true + + + 256 + 7 + 1 + 3 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 257 + 7 + 1 + 4 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 258 + 7 + 1 + 5 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used including transport charges + true + + + 259 + 7 + 1 + 6 + Transport Charge + Transport Charge + 29 + 29 + true + true + false + true + true + false + true + true + 800 + 800 + Transport charge (added to base fuel price) + true + + + 260 + 7 + 1 + 7 + Transport Cost + Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 996 + 996 + Cost of transporting fuel to the generator + true + + + 261 + 7 + 1 + 8 + Transition Cost + Transition Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1139 + 1139 + Cost of transitioning to or from this Fuel. + true + + + 262 + 7 + 1 + 9 + Marginal Heat Rate + Marginal Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal generation level + true + + + 263 + 7 + 1 + 10 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 264 + 7 + 1 + 11 + Hours Available + Hours Available + 6 + 6 + true + true + false + false + true + false + true + true + 275 + 275 + If the fuel is available for use by the generator + true + + + 265 + 7 + 1 + 12 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + MW offer in band + true + + + 266 + 7 + 1 + 13 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 267 + 7 + 1 + 14 + Cost Price + Cost Price + 33 + 33 + true + true + true + false + true + false + true + true + 119 + 119 + Marginal cost of energy in band + true + + + 268 + 7 + 1 + 15 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + MW cleared in band + true + + + 269 + 7 + 1 + 16 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours the Fuel is in use by the Generator + true + + + 270 + 8 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 271 + 8 + 1 + 2 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 272 + 8 + 1 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used including transport charges + true + + + 273 + 8 + 1 + 4 + Transport Cost + Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 996 + 996 + Cost of transporting fuel to the generator + true + + + 274 + 9 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the generator + true + + + 275 + 9 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the generator + true + + + 276 + 16 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the generator + true + + + 277 + 16 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the generator + true + + + 278 + 17 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the generator + true + + + 279 + 17 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the generator + true + + + 280 + 18 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 281 + 19 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the generator + true + + + 282 + 19 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the generator + true + + + 283 + 20 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the generator + true + + + 284 + 20 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the generator + true + + + 285 + 21 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the generator + true + + + 286 + 21 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the generator + true + + + 287 + 23 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 288 + 23 + 3 + 2 + Dispatchable Capacity + Dispatchable Energy + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 2341 + On-line capacity + true + + + 289 + 23 + 3 + 3 + Undispatched Capacity + Undispatched Energy + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 2342 + Capacity on-line but undispatched + true + + + 290 + 23 + 3 + 4 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 291 + 23 + 3 + 5 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 292 + 23 + 3 + 6 + Heat Fuel Offtake + Heat Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 254 + 254 + Fuel used for heat production + true + + + 293 + 23 + 3 + 7 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 294 + 23 + 3 + 8 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 295 + 23 + 3 + 9 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 296 + 23 + 3 + 10 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 297 + 23 + 3 + 11 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 298 + 23 + 3 + 12 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by a unit in pumping mode + true + + + 299 + 23 + 3 + 13 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 300 + 23 + 3 + 14 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 301 + 23 + 3 + 15 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 302 + 23 + 3 + 16 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 303 + 23 + 3 + 17 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 304 + 23 + 3 + 18 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 305 + 23 + 3 + 19 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Heat production + true + + + 306 + 23 + 3 + 20 + Boiler Heat Production + Boiler Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 41 + 41 + Heat production from auxiliary boiler + true + + + 307 + 23 + 3 + 21 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 308 + 23 + 3 + 22 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 309 + 23 + 3 + 23 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 310 + 23 + 3 + 24 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 311 + 23 + 3 + 25 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 312 + 23 + 3 + 26 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 313 + 23 + 3 + 27 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Pool cost + true + + + 314 + 23 + 3 + 28 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 315 + 23 + 3 + 29 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 316 + 23 + 3 + 30 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Cost of heat production + true + + + 317 + 23 + 3 + 31 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of generation + true + + + 318 + 23 + 3 + 32 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts + true + + + 319 + 23 + 3 + 33 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 320 + 23 + 3 + 34 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 321 + 23 + 3 + 35 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 322 + 23 + 3 + 36 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 323 + 23 + 3 + 37 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 324 + 23 + 3 + 38 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 325 + 23 + 3 + 39 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 326 + 23 + 3 + 40 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue + true + + + 327 + 23 + 3 + 41 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 328 + 23 + 3 + 42 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 329 + 23 + 3 + 43 + Heat Revenue + Heat Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 267 + 267 + Revenue from heat production + true + + + 330 + 23 + 3 + 44 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 331 + 23 + 3 + 45 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 332 + 23 + 3 + 46 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 333 + 23 + 3 + 47 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 334 + 23 + 3 + 48 + Scheduled Generation + Scheduled Generation + 1 + 2 + true + true + false + false + false + false + true + true + 721 + 721 + Generation in the unconstrained schedule (uniform pricing only) + true + + + 335 + 23 + 3 + 49 + Scheduled Revenue + Scheduled Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 724 + 724 + Revenue from scheduled generation (uniform pricing only) + true + + + 336 + 23 + 3 + 50 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 337 + 23 + 3 + 51 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 338 + 23 + 3 + 52 + Scheduled Generation Cost + Scheduled Generation Cost + 14 + 34 + true + true + false + true + false + false + true + true + 722 + 722 + Cost of generation in the unconstrained schedule (uniform pricing only) + true + + + 339 + 23 + 3 + 53 + Scheduled Offer Cost + Scheduled Offer Cost + 14 + 34 + true + true + false + true + false + false + true + true + 723 + 723 + Area cleared under generator offer curve in unconstrained schedule (uniform pricing only) + true + + + 340 + 23 + 3 + 54 + Scheduled Start & Shutdown Cost + Scheduled Start & Shutdown Cost + 14 + 34 + true + true + false + false + false + false + true + true + 725 + 725 + Cost of unit start ups and shut downs in the unconstrained schedule + true + + + 341 + 23 + 6 + 55 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 342 + 23 + 6 + 56 + Rated Capacity + Rated Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 663 + 663 + Rated capacity (Rating x Units) + true + + + 343 + 23 + 6 + 57 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 344 + 23 + 7 + 58 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + false + true + true + 392 + 392 + Capacity out on maintenance + true + + + 345 + 23 + 7 + 59 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 346 + 23 + 8 + 60 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 347 + 23 + 8 + 61 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 348 + 23 + 8 + 62 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 349 + 23 + 8 + 63 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments to the generator + true + + + 350 + 23 + 8 + 64 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 351 + 23 + 8 + 65 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of units retired + true + + + 352 + 24 + 3 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + false + false + 1437 + 1437 + Consumption of the Commodity by the Generator + true + + + 353 + 25 + 3 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + false + false + 624 + 624 + Production of the Commodity by the Generator + true + + + 354 + 28 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Capacity sold to market + true + + + 355 + 28 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from capacity market + true + + + 356 + 28 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 357 + 28 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 358 + 29 + 1 + 1 + Sales + Sales + 0 + 0 + true + true + false + false + true + false + true + true + 718 + 718 + Heat sold into the market + true + + + 359 + 29 + 1 + 2 + Revenue + Revenue + 0 + 0 + true + true + false + false + true + false + true + true + 696 + 696 + Revenue from heat sales + true + + + 360 + 39 + 3 + 1 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 361 + 39 + 3 + 2 + Tax + Tax + 88 + 88 + true + true + false + false + true + false + true + true + 785 + 785 + Fuel tax + true + + + 362 + 39 + 3 + 3 + Total Price + Total Price + 88 + 88 + true + true + false + false + true + false + true + true + 792 + 792 + Fuel price including tax + true + + + 363 + 39 + 3 + 4 + Time-weighted Price + Time-weighted Price + 88 + 88 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price of fuel. + true + + + 364 + 39 + 3 + 5 + Offtake + Offtake + 86 + 87 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 365 + 39 + 3 + 6 + Max Offtake + Max Offtake + 86 + 86 + false + true + false + true + true + false + true + true + 939 + 939 + Maximum fuel offtake per interval + true + + + 366 + 39 + 3 + 7 + Min Offtake + Min Offtake + 86 + 86 + false + true + false + true + true + false + true + true + 944 + 944 + Minimum fuel offtake per interval + true + + + 367 + 39 + 3 + 8 + Max Inventory + Max Inventory + 87 + 87 + true + true + false + true + true + false + true + true + 1589 + 1589 + Maximum fuel allowed in stockpile + true + + + 368 + 39 + 3 + 9 + Min Inventory + Min Inventory + 87 + 87 + true + true + false + true + true + false + true + true + 1590 + 1590 + Minimum fuel required in stockpile + true + + + 369 + 39 + 3 + 10 + Opening Inventory + Opening Inventory + 87 + 87 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial fuel in the stockpile + true + + + 370 + 39 + 3 + 11 + Closing Inventory + Closing Inventory + 87 + 87 + true + true + false + false + true + false + true + true + 1593 + 1593 + Final fuel in stockpile + true + + + 371 + 39 + 3 + 12 + Delivery + Delivery + 86 + 87 + true + true + false + true + true + false + true + true + 1592 + 1592 + Fuel delivered to the stockpile + true + + + 372 + 39 + 3 + 13 + Withdrawal + Withdrawal + 86 + 87 + true + true + false + true + true + false + true + true + 1391 + 1391 + Fuel withdrawn from the stockpile + true + + + 373 + 39 + 3 + 14 + Net Withdrawal + Net Withdrawal + 86 + 87 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net of withdrawal and delivery + true + + + 374 + 39 + 3 + 15 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used excluding taxation + true + + + 375 + 39 + 3 + 16 + Tax Cost + Tax Cost + 14 + 34 + true + true + false + true + true + false + true + true + 897 + 897 + Total taxation paid on fuel used + true + + + 376 + 39 + 3 + 17 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of deliveries to the stockpile + true + + + 377 + 39 + 3 + 18 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost applied to closing inventory in the stockpile + true + + + 378 + 39 + 3 + 19 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost applied to unused inventory capacity in the stockpile + true + + + 379 + 39 + 3 + 20 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawing fuel from stockpile + true + + + 380 + 39 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 381 + 39 + 3 + 22 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total cost of fuel used + true + + + 382 + 39 + 3 + 23 + Shadow Price + Shadow Price + 14 + 14 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of fuel (if defined as input, sets the internal price for fuel) + true + + + 383 + 39 + 3 + 24 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the fuel + true + + + 384 + 39 + 3 + 25 + Average Heat Rate + Average Heat Rate + 36 + 36 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate of generation with the fuel + true + + + 385 + 39 + 3 + 26 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served at the Gas Node attached to the fuel + true + + + 386 + 39 + 6 + 27 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed generation capacity + true + + + 387 + 39 + 12 + 28 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 388 + 39 + 12 + 29 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 389 + 39 + 12 + 30 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 390 + 42 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the fuel + true + + + 391 + 42 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the fuel + true + + + 392 + 43 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the fuel + true + + + 393 + 43 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the fuel + true + + + 394 + 44 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the fuel + true + + + 395 + 44 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the fuel + true + + + 396 + 46 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the fuel + true + + + 397 + 46 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the fuel + true + + + 398 + 47 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the fuel + true + + + 399 + 47 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the fuel + true + + + 400 + 48 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the fuel + true + + + 401 + 48 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the fuel + true + + + 402 + 50 + 3 + 1 + Consumption + Consumption + 86 + 87 + true + true + false + true + true + false + true + true + 1437 + 1437 + Fuel consumption by the Facility + true + + + 403 + 52 + 1 + 1 + Sales + Sales + 86 + 87 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 404 + 52 + 1 + 2 + Purchases + Purchases + 86 + 87 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 405 + 52 + 1 + 3 + Net Sales + Net Sales + 86 + 87 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 406 + 52 + 1 + 4 + Net Purchases + Net Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 407 + 52 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 408 + 52 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 409 + 52 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 410 + 52 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 411 + 56 + 3 + 1 + Offtake + Offtake + 86 + 87 + true + true + true + true + true + false + true + true + 577 + 577 + Fuel offtake associated with the contract + true + + + 412 + 56 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of fuel used under contract + true + + + 413 + 56 + 3 + 3 + Price + Price + 88 + 88 + true + true + true + false + true + false + true + true + 612 + 612 + Contract price + true + + + 414 + 56 + 3 + 4 + Take-or-Pay Price + Take-or-Pay Price + 88 + 88 + true + true + false + false + true + false + true + true + 777 + 777 + Contract take-or-pay price + true + + + 415 + 56 + 3 + 5 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with fuel scarcity + true + + + 416 + 56 + 3 + 6 + Take-or-Pay Shadow Price + Take-or-Pay Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 783 + 783 + Shadow price associated with take-or-pay commitment + true + + + 417 + 56 + 3 + 7 + Take-or-Pay Violation + Take-or-Pay Violation + 86 + 87 + true + true + false + true + true + false + true + true + 1439 + 1439 + Violation of take-or-pay constraint + true + + + 418 + 56 + 3 + 8 + Take-or-Pay Violation Cost + Take-or-Pay Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1440 + 1440 + Cost of take-or-pay constraint violation + true + + + 419 + 56 + 3 + 9 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Total fixed operations and maintenance costs + true + + + 420 + 56 + 3 + 10 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 421 + 56 + 12 + 11 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 422 + 56 + 12 + 12 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 423 + 56 + 12 + 13 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 424 + 64 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of installed units + true + + + 425 + 64 + 3 + 2 + Units Operating + Units Operating + 0 + 0 + true + false + false + false + true + false + true + true + 2049 + 2049 + Number of units operating + true + + + 426 + 64 + 3 + 3 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 427 + 64 + 3 + 4 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 428 + 64 + 3 + 5 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load drawn by the facility + true + + + 429 + 64 + 3 + 6 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of maximum load being used + true + + + 430 + 64 + 3 + 7 + Max Load + Max Load + 1 + 1 + true + true + false + false + true + false + true + true + 436 + 436 + Maximum load of each unit + true + + + 431 + 64 + 3 + 8 + Production Rate + Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 627 + 1743 + Rate of production/volume of production + true + + + 432 + 64 + 3 + 9 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of energy conversion process + true + + + 433 + 64 + 3 + 10 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 434 + 64 + 3 + 11 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 435 + 64 + 3 + 12 + Ramp + Ramp + 9 + 9 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 436 + 64 + 3 + 13 + Ramp Up + Ramp Up + 1 + 1 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 437 + 64 + 3 + 14 + Max Ramp Up + Max Ramp Up + 9 + 9 + true + true + false + false + true + false + true + true + 448 + 448 + Maximum ramp up rate that applies at the given load point + true + + + 438 + 64 + 3 + 15 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 439 + 64 + 3 + 16 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 440 + 64 + 3 + 17 + Ramp Up Price + Ramp Up Price + 32 + 32 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint. + true + + + 441 + 64 + 3 + 18 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation. + true + + + 442 + 64 + 3 + 19 + Ramp Up Violation + Ramp Up Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint. + true + + + 443 + 64 + 3 + 20 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations. + true + + + 444 + 64 + 3 + 21 + Ramp Down + Ramp Down + 1 + 1 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 445 + 64 + 3 + 22 + Max Ramp Down + Max Ramp Down + 9 + 9 + true + true + false + false + true + false + true + true + 447 + 447 + Maximum ramp down rate that applies at the given load point + true + + + 446 + 64 + 3 + 23 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 447 + 64 + 3 + 24 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 448 + 64 + 3 + 25 + Ramp Down Price + Ramp Down Price + 32 + 32 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint. + true + + + 449 + 64 + 3 + 26 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation. + true + + + 450 + 64 + 3 + 27 + Ramp Down Violation + Ramp Down Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint. + true + + + 451 + 64 + 3 + 28 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations. + true + + + 452 + 64 + 3 + 29 + Max Production Violation + Max Production Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] or [Max Capacity Factor] constraints + true + + + 453 + 64 + 3 + 30 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] or [Max Capacity Factor] constraint violations + true + + + 454 + 64 + 3 + 31 + Min Production Violation + Min Production Violation + 0 + 0 + true + true + false + false + true + false + true + true + 2309 + 2309 + Violation of [Min Production] or [Min Capacity Factor] constraints + true + + + 455 + 64 + 3 + 32 + Min Production Violation Cost + Min Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2311 + 2311 + Cost of [Min Production] or [Min Capacity Factor] constraint violations + true + + + 456 + 64 + 3 + 33 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints. + true + + + 457 + 64 + 3 + 34 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations. + true + + + 458 + 64 + 3 + 35 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost of electric load + true + + + 459 + 64 + 3 + 36 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 460 + 64 + 3 + 37 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 461 + 64 + 3 + 38 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of production + true + + + 462 + 64 + 3 + 39 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 463 + 64 + 3 + 40 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including VO&M, start and shutdown costs + true + + + 464 + 64 + 3 + 41 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including VO&M, start and shutdown costs, and ramp costs + true + + + 465 + 64 + 3 + 42 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 1803 + 1803 + Water consumed by the Power2X facility + true + + + 466 + 64 + 3 + 43 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 467 + 64 + 3 + 44 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 468 + 64 + 3 + 45 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 469 + 64 + 3 + 46 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 470 + 64 + 3 + 47 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 471 + 64 + 3 + 48 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 472 + 64 + 3 + 49 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by the electric load + true + + + 473 + 64 + 3 + 50 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Quantity cleared in band + true + + + 474 + 64 + 3 + 51 + Cleared Bid Cost + Cleared Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2551 + 2551 + Area cleared under the Power2X bid curve + true + + + 475 + 64 + 3 + 52 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 476 + 64 + 3 + 53 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 477 + 64 + 3 + 54 + Shadow Price + Shadow Price + 29 + 29 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of production + true + + + 478 + 64 + 6 + 55 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Load x Units) + true + + + 479 + 64 + 7 + 56 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service due to maintenance + true + + + 480 + 64 + 7 + 57 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 481 + 64 + 7 + 58 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 482 + 64 + 7 + 59 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 483 + 64 + 7 + 60 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 484 + 64 + 7 + 61 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 485 + 64 + 7 + 62 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 486 + 64 + 8 + 63 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 487 + 64 + 8 + 64 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Load x Units Built) + true + + + 488 + 64 + 8 + 65 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 489 + 64 + 8 + 66 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 490 + 64 + 8 + 67 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 491 + 64 + 8 + 68 + Levelized Cost + Levelized Cost + 29 + 29 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of the commodity produced + true + + + 492 + 64 + 12 + 69 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 493 + 64 + 12 + 70 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 494 + 64 + 12 + 71 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 495 + 79 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of BESS units installed + true + + + 496 + 79 + 3 + 2 + Energy + Energy + 3 + 3 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored in the BESS + true + + + 497 + 79 + 3 + 3 + SoC + SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1660 + 1660 + State of Charge + true + + + 498 + 79 + 3 + 4 + Available SoC + Available SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1661 + 1661 + SoC less minimum SoC + true + + + 499 + 79 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + generation (battery discharge) + true + + + 500 + 79 + 3 + 6 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + load (battery recharge) + true + + + 501 + 79 + 3 + 7 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 502 + 79 + 3 + 8 + Charging + Charging + 1 + 2 + true + true + false + false + true + false + true + true + 2113 + 2113 + Charge rate/energy + true + + + 503 + 79 + 3 + 9 + Discharging + Discharging + 1 + 2 + true + true + false + false + true + false + true + true + 2114 + 2114 + Discharge rate/energy + true + + + 504 + 79 + 3 + 10 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Total recharge and discharge losses + true + + + 505 + 79 + 3 + 11 + Self Discharge Losses + Self Discharge Losses + 25 + 24 + true + true + false + false + true + false + true + true + 2711 + 2711 + Losses due to self-discharge + true + + + 506 + 79 + 3 + 12 + Total Losses + Total Losses + 1 + 2 + true + true + false + false + true + false + true + true + 2712 + 2712 + Sum of self discharge, recharge and discharge losses. + true + + + 507 + 79 + 3 + 13 + Hours Charging + Hours Charging + 6 + 6 + true + true + false + false + true + false + true + true + 1662 + 1662 + Number of hours in charging state + true + + + 508 + 79 + 3 + 14 + Hours Discharging + Hours Discharging + 6 + 6 + true + true + false + false + true + false + true + true + 1663 + 1663 + Number of hours in discharging state + true + + + 509 + 79 + 3 + 15 + Hours Idle + Hours Idle + 6 + 6 + true + true + false + false + true + false + true + true + 1664 + 1664 + Number of hours in idle state + true + + + 510 + 79 + 3 + 16 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 511 + 79 + 3 + 17 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 512 + 79 + 3 + 18 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 513 + 79 + 3 + 19 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 514 + 79 + 3 + 20 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 515 + 79 + 3 + 21 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 516 + 79 + 3 + 22 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 517 + 79 + 3 + 23 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operations and maintenance cost + true + + + 518 + 79 + 3 + 24 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 519 + 79 + 3 + 25 + Capacity Factor + Capacity Factor + 12 + 12 + false + true + false + false + true + false + true + true + 58 + 58 + Proportion of battery discharge capacity utilized + true + + + 520 + 79 + 3 + 26 + Load Factor + Load Factor + 12 + 12 + false + true + false + false + true + false + true + true + 876 + 876 + Proportion of battery recharge load utilized + true + + + 521 + 79 + 3 + 27 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 522 + 79 + 3 + 28 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by load + true + + + 523 + 79 + 3 + 29 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Generation revenue + true + + + 524 + 79 + 3 + 30 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Load cost + true + + + 525 + 79 + 3 + 31 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 526 + 79 + 3 + 32 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 527 + 79 + 3 + 33 + Offer Base + Offer Base + 1 + 2 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for incr/decr style offer + true + + + 528 + 79 + 3 + 34 + Offer No Load Cost + Offer No Load Cost + 48 + 48 + true + false + false + false + true + false + true + true + 568 + 568 + Fixed dispatch cost component of generator offer. + true + + + 529 + 79 + 3 + 35 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band + true + + + 530 + 79 + 3 + 36 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price of energy in band + true + + + 531 + 79 + 3 + 37 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 532 + 79 + 3 + 38 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 533 + 79 + 3 + 39 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 534 + 79 + 3 + 40 + Bid Base + Bid Base + 1 + 2 + true + true + false + false + true + false + true + true + 2547 + 2547 + Base load for balancing bid + true + + + 535 + 79 + 3 + 41 + Bid Quantity + Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 34 + 34 + Load bid quantity in band + true + + + 536 + 79 + 3 + 42 + Bid Price + Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 33 + 33 + Bid price of load in band + true + + + 537 + 79 + 3 + 43 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Quantity cleared in load bid band + true + + + 538 + 79 + 3 + 44 + Cleared Bid Price + Cleared Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal load bid band + true + + + 539 + 79 + 3 + 45 + Cleared Bid Cost + Cleared Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2551 + 2551 + Area cleared under the Battery bid curve + true + + + 540 + 79 + 3 + 46 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 541 + 79 + 3 + 47 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit + true + + + 542 + 79 + 3 + 48 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Marginal value of energy held in storage + true + + + 543 + 79 + 3 + 49 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before mark-up models + true + + + 544 + 79 + 3 + 50 + Shadow Load + Shadow Load + 1 + 2 + true + true + false + false + true + false + true + true + 1142 + 1142 + Load before mark-up models + true + + + 545 + 79 + 3 + 51 + Shadow Generation Revenue + Shadow Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2690 + 2690 + Generation revenue before mark-up models + true + + + 546 + 79 + 3 + 52 + Shadow Cost to Load + Shadow Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 1141 + 1141 + Cost to load before mark-up models + true + + + 547 + 79 + 3 + 53 + Shadow Price Received + Shadow Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 400 + 400 + Price received before uplift or mark-up models + true + + + 548 + 79 + 3 + 54 + Shadow Price Paid + Shadow Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 2691 + 2691 + Price paid before uplift or mark-up models + true + + + 549 + 79 + 3 + 55 + Monopoly Rent + Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 518 + 518 + Monopoly rent from competitive bidding + true + + + 550 + 79 + 3 + 56 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint applied to this Battery + true + + + 551 + 79 + 6 + 57 + Installed Capacity + Installed Capacity + 3 + 3 + true + true + false + false + true + true + true + true + 320 + 320 + Installed battery capacity + true + + + 552 + 79 + 6 + 58 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Installed generation capacity + true + + + 553 + 79 + 6 + 59 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Contribution of the battery generation to capacity reserves + true + + + 554 + 79 + 7 + 60 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 555 + 79 + 7 + 61 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 556 + 79 + 7 + 62 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 557 + 79 + 8 + 63 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of BESS units built in this year + true + + + 558 + 79 + 8 + 64 + Capacity Built + Capacity Built + 3 + 3 + true + true + false + false + true + false + false + false + 54 + 54 + Battery capacity built + true + + + 559 + 79 + 8 + 65 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 560 + 79 + 8 + 66 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a BESS unit + true + + + 561 + 79 + 8 + 67 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 562 + 79 + 8 + 68 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of BESS units retired in this year + true + + + 563 + 79 + 8 + 69 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a BESS unit + true + + + 564 + 79 + 8 + 70 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 565 + 79 + 12 + 71 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 566 + 79 + 12 + 72 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 567 + 79 + 12 + 73 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 568 + 84 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + generation (battery discharge) + true + + + 569 + 84 + 3 + 2 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + load (battery recharge) + true + + + 570 + 84 + 3 + 3 + Energy + Energy + 3 + 3 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored in the BESS + true + + + 571 + 84 + 3 + 4 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 572 + 84 + 3 + 5 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Total recharge and discharge losses + true + + + 573 + 84 + 3 + 6 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 574 + 84 + 3 + 7 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 575 + 84 + 3 + 8 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 576 + 84 + 3 + 9 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 577 + 84 + 3 + 10 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 578 + 84 + 3 + 11 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 579 + 84 + 3 + 12 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operations and maintenance cost + true + + + 580 + 84 + 3 + 13 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 581 + 84 + 3 + 14 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 582 + 84 + 3 + 15 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Generation revenue + true + + + 583 + 84 + 3 + 16 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Load cost + true + + + 584 + 84 + 3 + 17 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 585 + 84 + 3 + 18 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 586 + 84 + 3 + 19 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 587 + 84 + 6 + 20 + Installed Capacity + Installed Capacity + 3 + 3 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + true + + + 588 + 84 + 6 + 21 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Installed generation capacity + true + + + 589 + 84 + 6 + 22 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Contribution of the battery generation to capacity reserves + true + + + 590 + 84 + 8 + 23 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of BESS units built in this year + true + + + 591 + 84 + 8 + 24 + Capacity Built + Capacity Built + 3 + 3 + true + true + false + false + true + false + false + false + 54 + 54 + Battery capacity built + true + + + 592 + 84 + 8 + 25 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 593 + 84 + 8 + 26 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a BESS unit + true + + + 594 + 84 + 8 + 27 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 595 + 84 + 8 + 28 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of BESS units retired in this year + true + + + 596 + 84 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a BESS unit + true + + + 597 + 88 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Capacity sold to market + true + + + 598 + 88 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from capacity market + true + + + 599 + 88 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 600 + 88 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 601 + 91 + 3 + 1 + Max Volume + Max Volume + 24 + 24 + true + true + false + false + true + false + true + true + 466 + 466 + Maximum volume + true + + + 602 + 91 + 3 + 2 + Min Volume + Min Volume + 24 + 24 + true + true + false + false + true + false + true + true + 510 + 510 + Minimum volume + true + + + 603 + 91 + 3 + 3 + Initial Volume + Initial Volume + 24 + 24 + true + true + false + false + true + false + true + true + 318 + 318 + Storage volume at the start of the period + true + + + 604 + 91 + 3 + 4 + End Volume + End Volume + 24 + 24 + true + true + false + false + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 605 + 91 + 3 + 5 + Initial Level + Initial Level + 23 + 23 + true + true + false + false + true + false + true + true + 316 + 316 + Initial level + true + + + 606 + 91 + 3 + 6 + End Level + End Level + 23 + 23 + true + true + false + false + true + false + true + true + 169 + 169 + Storage level at the end of the period + true + + + 607 + 91 + 3 + 7 + Hours Full + Hours Full + 6 + 6 + true + true + false + false + true + false + true + true + 1710 + 1710 + Number of hours the storage is full + true + + + 608 + 91 + 3 + 8 + Working Volume + Working Volume + 24 + 24 + true + true + false + true + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 609 + 91 + 3 + 9 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization on end volume + true + + + 610 + 91 + 3 + 10 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 611 + 91 + 3 + 11 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 612 + 91 + 3 + 12 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 613 + 91 + 3 + 13 + Inflow + Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 312 + 312 + Inflow + true + + + 614 + 91 + 3 + 14 + Release + Release + 25 + 24 + true + true + false + false + true + false + true + true + 676 + 676 + Total releases from storage + true + + + 615 + 91 + 3 + 15 + Natural Inflow + Natural Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 530 + 530 + Rate of natural inflow + true + + + 616 + 91 + 3 + 16 + Generator Release + Generator Release + 25 + 24 + true + true + false + false + true + false + true + true + 250 + 250 + Release for generation + true + + + 617 + 91 + 3 + 17 + Downstream Release + Downstream Release + 25 + 24 + true + true + false + false + true + false + true + true + 154 + 154 + Release downstream via waterways + true + + + 618 + 91 + 3 + 18 + Spill + Spill + 25 + 24 + true + true + false + false + true + false + true + true + 758 + 758 + Spill to "the sea" + true + + + 619 + 91 + 3 + 19 + Spill Cost + Spill Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2655 + 2655 + Spill Penalty multiplied by the Spill amount + true + + + 620 + 91 + 3 + 20 + Loss + Loss + 25 + 24 + true + true + false + false + true + false + true + true + 372 + 372 + Loss due to evaporation, leakage, etc + true + + + 621 + 91 + 3 + 21 + Inflow Rate + Inflow Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1875 + 1875 + Inflow + true + + + 622 + 91 + 3 + 22 + Release Rate + Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1876 + 1876 + Total releases from storage + true + + + 623 + 91 + 3 + 23 + Natural Inflow Rate + Natural Inflow Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1877 + 1877 + Rate of natural inflow + true + + + 624 + 91 + 3 + 24 + Generator Release Rate + Generator Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1878 + 1878 + Release for generation + true + + + 625 + 91 + 3 + 25 + Downstream Release Rate + Downstream Release Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1879 + 1879 + Release downstream via waterways + true + + + 626 + 91 + 3 + 26 + Spill Rate + Spill Rate + 25 + 25 + false + true + false + false + true + false + true + true + 1880 + 1880 + Spill to "the sea" + true + + + 627 + 91 + 3 + 27 + Downstream Efficiency + Downstream Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 153 + 153 + Aggregate efficiency of generation down the river chain + true + + + 628 + 91 + 3 + 28 + Max Potential Energy + Max Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2615 + 2615 + Potential energy of storage at max volume + true + + + 629 + 91 + 3 + 29 + Min Potential Energy + Min Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2616 + 2616 + Potential energy of storage at min volume + true + + + 630 + 91 + 3 + 30 + Initial Potential Energy + Initial Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 2617 + 2617 + Potential energy of initial volume + true + + + 631 + 91 + 3 + 31 + End Potential Energy + End Potential Energy + 2 + 2 + true + true + false + false + true + false + true + true + 1659 + 1659 + Potential energy of end volume + true + + + 632 + 91 + 3 + 32 + Inflow Energy + Inflow Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2583 + 2583 + Potential energy of inflows + true + + + 633 + 91 + 3 + 33 + Release Energy + Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2584 + 2584 + Potential energy of releases + true + + + 634 + 91 + 3 + 34 + Natural Inflow Energy + Natural Inflow Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2585 + 2585 + Potential energy of natural inflows + true + + + 635 + 91 + 3 + 35 + Generator Release Energy + Generator Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2586 + 2586 + Potential energy of generator releases + true + + + 636 + 91 + 3 + 36 + Downstream Release Energy + Downstream Release Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2587 + 2587 + Potential energy of downstream releases + true + + + 637 + 91 + 3 + 37 + Spill Energy + Spill Energy + 3 + 2 + true + true + false + false + true + false + true + true + 2588 + 2588 + Potential energy of spill to "the sea" + true + + + 638 + 91 + 3 + 38 + Shadow Price + Shadow Price + 46 + 46 + true + true + false + false + true + false + true + true + 742 + 742 + Marginal value of water held in storage + true + + + 639 + 91 + 3 + 39 + Marginal Value + Marginal Value + 33 + 33 + true + true + false + false + true + false + true + true + 406 + 406 + Marginal energy value of water held in storage + true + + + 640 + 91 + 3 + 40 + Marginal Cost + Marginal Cost + 33 + 33 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal energy cost of water released from the storage + true + + + 641 + 91 + 3 + 41 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation from exporting generators + true + + + 642 + 91 + 3 + 42 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by exporting generators running in pumping mode + true + + + 643 + 91 + 3 + 43 + Efficiency + Efficiency + 120 + 120 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of generation + true + + + 644 + 91 + 3 + 44 + Max Volume Violation + Max Volume Violation + 3 + 2 + true + true + false + false + true + false + true + true + 2718 + 2718 + Violation of the Max Volume constraint + true + + + 645 + 91 + 3 + 45 + Max Volume Violation Cost + Max Volume Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2719 + 2719 + Cost of Max Volume constraint violations + true + + + 646 + 91 + 3 + 46 + Min Volume Violation + Min Volume Violation + 3 + 2 + true + true + false + false + true + false + true + true + 2720 + 2720 + Violation of the Min Volume constraint + true + + + 647 + 91 + 3 + 47 + Min Volume Violation Cost + Min Volume Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2721 + 2721 + Cost of Min Volume constraint violations + true + + + 648 + 91 + 3 + 48 + Min Release Violation + Min Release Violation + 25 + 24 + true + true + false + false + true + false + true + true + 1949 + 1949 + Violation of the [Min Release] constraint. + true + + + 649 + 91 + 3 + 49 + Min Release Violation Hours + Min Release Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1950 + 1950 + Number of hours the [Min Release] constraint is violated. + true + + + 650 + 91 + 3 + 50 + Min Release Violation Cost + Min Release Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1951 + 1951 + Cost of [Min Release] constraint violations. + true + + + 651 + 91 + 3 + 51 + Max Release Violation + Max Release Violation + 25 + 24 + true + true + false + false + true + false + true + true + 1952 + 1952 + Violation of the [Max Release] and [Max Generator Release] constraint. + true + + + 652 + 91 + 3 + 52 + Max Release Violation Hours + Max Release Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1953 + 1953 + Number of hours the [Max Release] or [Max Generator Release] constraint is violated. + true + + + 653 + 91 + 3 + 53 + Max Release Violation Cost + Max Release Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1954 + 1954 + Cost of [Max Release] and [Max Generator Release] constraint violations. + true + + + 654 + 91 + 3 + 54 + Ramp + Ramp + 24 + 24 + true + true + false + false + true + false + true + true + 655 + 655 + Change in storage end volume. + true + + + 655 + 91 + 3 + 55 + Ramp Price + Ramp Price + 46 + 46 + true + true + false + false + true + false + true + true + 659 + 659 + Incremental value of additional ramping capability. + true + + + 656 + 91 + 3 + 56 + Ramp Violation + Ramp Violation + 24 + 24 + true + true + false + false + true + false + true + true + 661 + 661 + Violation of the [Max Ramp] constraint. + true + + + 657 + 91 + 3 + 57 + Ramp Violation Hours + Ramp Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1065 + 1065 + Number of hours the [Max Ramp] constraint is violated. + true + + + 658 + 91 + 3 + 58 + Ramp Violation Cost + Ramp Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1066 + 1066 + Cost of [Max Ramp] constraint violations. + true + + + 659 + 91 + 3 + 59 + Target Violation + Target Violation + 24 + 24 + true + true + false + false + true + false + true + true + 1188 + 1188 + Violation of the [Target] constraint. + true + + + 660 + 91 + 3 + 60 + Target Violation Cost + Target Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1189 + 1189 + Cost of [Target] constraint violations. + true + + + 661 + 91 + 3 + 61 + Non-physical Inflow + Non-physical Inflow + 25 + 24 + true + true + false + false + true + false + true + true + 1067 + 1067 + Non-physical inflow required to maintain feasible storage volumes. + true + + + 662 + 91 + 3 + 62 + Non-physical Spill + Non-physical Spill + 25 + 24 + true + true + false + false + true + false + true + true + 1068 + 1068 + Non-physical spill required to maintain feasible storage volumes. + true + + + 663 + 91 + 12 + 63 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 664 + 91 + 12 + 64 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 665 + 91 + 12 + 65 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 666 + 99 + 3 + 1 + Flow + Flow + 25 + 24 + true + true + false + false + true + false + true + true + 205 + 205 + Flow on waterway + true + + + 667 + 99 + 3 + 2 + Max Flow + Max Flow + 25 + 25 + true + true + false + false + true + false + true + true + 429 + 429 + Maximum flow limit + true + + + 668 + 99 + 3 + 3 + Min Flow + Min Flow + 25 + 25 + true + true + false + false + true + false + true + true + 481 + 481 + Minimum flow limit + true + + + 669 + 99 + 3 + 4 + Hours Flowing + Hours Flowing + 6 + 6 + true + true + false + false + true + false + true + true + 1711 + 1711 + Number of hours the waterway is flowing + true + + + 670 + 99 + 3 + 5 + Shadow Price + Shadow Price + 54 + 54 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price on max flow constraint + true + + + 671 + 99 + 3 + 6 + Max Flow Violation Hours + Max Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1069 + 1069 + Number of hours the [Max Flow] limit is violated. + true + + + 672 + 99 + 3 + 7 + Max Flow Violation + Max Flow Violation + 25 + 24 + true + true + false + false + true + false + true + true + 430 + 430 + Violation of max flow constraint + true + + + 673 + 99 + 3 + 8 + Max Flow Violation Cost + Max Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1073 + 1073 + Cost of [Max Flow] violations. + true + + + 674 + 99 + 3 + 9 + Min Flow Violation Hours + Min Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1071 + 1071 + Number of hours the [Min Flow] limit is violated. + true + + + 675 + 99 + 3 + 10 + Min Flow Violation + Min Flow Violation + 25 + 24 + true + true + false + false + true + false + true + true + 482 + 482 + Violation of min flow constraint + true + + + 676 + 99 + 3 + 11 + Min Flow Violation Cost + Min Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1074 + 1074 + Cost of [Min Flow] violations. + true + + + 677 + 99 + 3 + 12 + Ramp + Ramp + 25 + 24 + true + true + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 678 + 99 + 3 + 13 + Max Ramp + Max Ramp + 25 + 25 + true + false + false + false + true + false + true + true + 446 + 446 + Maximum change in flow (MW or cumecs per hour) + true + + + 679 + 99 + 3 + 14 + Ramp Violation Hours + Ramp Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1065 + 1065 + Number of hours the [Max Ramp] constraint is violated. + true + + + 680 + 99 + 3 + 15 + Ramp Violation + Ramp Violation + 25 + 24 + true + true + false + false + true + false + true + true + 661 + 661 + Violation of flow ramp constraint + true + + + 681 + 99 + 3 + 16 + Ramp Violation Cost + Ramp Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1066 + 1066 + Cost of [Max Ramp] constraint violations. + true + + + 682 + 99 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 683 + 99 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 684 + 99 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 685 + 106 + 3 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission + true + + + 686 + 106 + 3 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 687 + 106 + 3 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 688 + 106 + 3 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 689 + 106 + 3 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 690 + 106 + 3 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 691 + 106 + 3 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 692 + 106 + 3 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 693 + 106 + 3 + 9 + Price + Price + 30 + 30 + true + true + false + false + true + false + true + true + 612 + 612 + Price charged per unit of emission (accounting only) + true + + + 694 + 106 + 3 + 10 + Shadow Price + Shadow Price + 30 + 30 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price (marginal cost) of emissions + true + + + 695 + 106 + 3 + 11 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of emissions charged at "Price" (if defined, otherwise at "Shadow Price") + true + + + 696 + 106 + 3 + 12 + Max Production Violation + Max Production Violation + 19 + 20 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] constraints. + true + + + 697 + 106 + 3 + 13 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] violations. + true + + + 698 + 106 + 12 + 14 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 699 + 106 + 12 + 15 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 700 + 106 + 12 + 16 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 701 + 109 + 1 + 1 + Generation Production + Generation Production + 19 + 20 + true + true + false + true + true + false + true + true + 1606 + 1606 + Net production of the emission from generation + true + + + 702 + 109 + 1 + 2 + Unit Start Production + Unit Start Production + 19 + 20 + true + true + false + true + true + false + true + true + 1607 + 1607 + Net production of the emission from unit start up + true + + + 703 + 109 + 1 + 3 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 704 + 109 + 1 + 4 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 705 + 109 + 1 + 5 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 706 + 109 + 1 + 6 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Incremental cost of emissions abatement + true + + + 707 + 109 + 1 + 7 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 708 + 109 + 1 + 8 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 709 + 109 + 1 + 9 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 710 + 109 + 1 + 10 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 711 + 109 + 1 + 11 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 712 + 109 + 1 + 12 + Incremental Production Rate + Incremental Production Rate + 40 + 40 + true + true + false + false + true + false + true + true + 1626 + 1626 + Incremental rate of emission production by the generator + true + + + 713 + 109 + 1 + 13 + Incremental Cost + Incremental Cost + 33 + 33 + true + true + false + false + true + false + true + true + 918 + 918 + Incremental cost of the emission to the generator + true + + + 714 + 109 + 1 + 14 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Effective SRMC of generation including emission shadow price + true + + + 715 + 110 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 716 + 110 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 717 + 110 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 718 + 110 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 719 + 110 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 720 + 110 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 721 + 110 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 722 + 110 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 723 + 110 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 724 + 112 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 725 + 112 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Gross production of the emission + true + + + 726 + 112 + 1 + 3 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 727 + 112 + 1 + 4 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Emission abatement cost + true + + + 728 + 112 + 1 + 5 + Field Production Cost + Field Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2776 + 2776 + Gas Field Production emission cost + true + + + 729 + 114 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 730 + 114 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Gross production of the emission + true + + + 731 + 114 + 1 + 3 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 732 + 114 + 1 + 4 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 733 + 118 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission + true + + + 734 + 118 + 1 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 735 + 119 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission by the Vehicle + true + + + 736 + 121 + 3 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Production of the emission by the Facility + true + + + 737 + 121 + 3 + 2 + Removal + Removal + 19 + 20 + true + true + false + true + true + false + true + true + 1441 + 1441 + Emissions removed by the Facility + true + + + 738 + 122 + 1 + 1 + Sales + Sales + 19 + 20 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 739 + 122 + 1 + 2 + Purchases + Purchases + 19 + 20 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 740 + 122 + 1 + 3 + Net Sales + Net Sales + 19 + 20 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 741 + 122 + 1 + 4 + Net Purchases + Net Purchases + 19 + 20 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 742 + 122 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 743 + 122 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 744 + 122 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 745 + 122 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 746 + 125 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Flag if emission abatement technology is installed + true + + + 747 + 125 + 3 + 2 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 748 + 125 + 3 + 3 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Emission input to the abatement technology + true + + + 749 + 125 + 3 + 4 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 750 + 125 + 3 + 5 + Net Emissions + Net Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1433 + 1433 + Emissions net of abatement + true + + + 751 + 125 + 3 + 6 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of emission abatement + true + + + 752 + 125 + 3 + 7 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost per unit of emission removed + true + + + 753 + 125 + 3 + 8 + Running Cost + Running Cost + 14 + 34 + true + true + false + true + true + false + true + true + 978 + 978 + Fixed cost of running emission abatement when generators are on-line + true + + + 754 + 125 + 3 + 9 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 755 + 125 + 3 + 10 + Consumables Cost + Consumables Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1434 + 1434 + Total cost of consumables + true + + + 756 + 125 + 3 + 11 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Total fixed operations and maintenance costs + true + + + 757 + 125 + 3 + 12 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed, semi-fixed and variable costs + true + + + 758 + 125 + 3 + 13 + Abatement Value + Abatement Value + 14 + 34 + true + true + false + true + true + false + true + true + 1435 + 1435 + Value of emissions abated + true + + + 759 + 125 + 3 + 14 + Abatement Net Cost + Abatement Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1436 + 1436 + Net of [Total Cost] and [Abatement Value] + true + + + 760 + 125 + 7 + 15 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Flag if emission abatement technology is out-of-service + true + + + 761 + 125 + 12 + 16 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 762 + 125 + 12 + 17 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 763 + 125 + 12 + 18 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 764 + 129 + 3 + 1 + Consumption + Consumption + 17 + 18 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumable used + true + + + 765 + 129 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of consumable used + true + + + 766 + 130 + 3 + 1 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Emission input to the abatement technology for this emission + true + + + 767 + 130 + 3 + 2 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated for this emission + true + + + 768 + 130 + 3 + 3 + Net Emissions + Net Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1433 + 1433 + Emissions net of abatement for this emission + true + + + 769 + 130 + 3 + 4 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of emission abatement for this emission + true + + + 770 + 130 + 3 + 5 + Abatement Value + Abatement Value + 14 + 34 + true + true + false + true + true + false + true + true + 1435 + 1435 + Value of emissions abated for this emission + true + + + 771 + 138 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation on physical contract + true + + + 772 + 138 + 3 + 2 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load on physical contract + true + + + 773 + 138 + 3 + 3 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net of generation and load + true + + + 774 + 138 + 3 + 4 + Capacity Factor + Capacity Factor + 12 + 12 + false + true + false + false + true + false + true + true + 58 + 58 + Proportion of generation capacity utilized + true + + + 775 + 138 + 3 + 5 + Load Factor + Load Factor + 12 + 12 + false + true + false + false + true + false + true + true + 876 + 876 + Proportion of load obligation serviced + true + + + 776 + 138 + 3 + 6 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for generation + true + + + 777 + 138 + 3 + 7 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid by load + true + + + 778 + 138 + 3 + 8 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Cost of cleared generation offers + true + + + 779 + 138 + 3 + 9 + Load Revenue + Load Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 357 + 357 + Revenue from cleared load bids + true + + + 780 + 138 + 3 + 10 + Net Generation Cost + Net Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 540 + 540 + Net cost of cleared generation offers and load bids + true + + + 781 + 138 + 3 + 11 + Generation Revenue + Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 238 + 238 + Mark-to-market revenue from generation (Price Received * Generation) + true + + + 782 + 138 + 3 + 12 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Mark-to-market cost to load (Price Received × Load) + true + + + 783 + 138 + 3 + 13 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net of generation revenue and cost to load + true + + + 784 + 138 + 3 + 14 + Fixed Cost + Fixed Cost + 14 + 34 + true + true + false + false + true + false + true + true + 194 + 194 + Fixed cost of contract capacity + true + + + 785 + 138 + 6 + 15 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Contribution of generation to system capacity reserves + true + + + 786 + 138 + 6 + 16 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Load obligation for capacity reserves. + true + + + 787 + 138 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 788 + 138 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 789 + 138 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 790 + 146 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Purchaser load + true + + + 791 + 146 + 3 + 2 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for energy + true + + + 792 + 146 + 3 + 3 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost of energy purchases + true + + + 793 + 146 + 3 + 4 + Bid Quantity + Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 794 + 146 + 3 + 5 + Bid Price + Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 33 + 33 + Value of energy in band + true + + + 795 + 146 + 3 + 6 + Bid Cleared + Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 796 + 146 + 3 + 7 + Cleared Bid Price + Cleared Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 797 + 146 + 3 + 8 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 798 + 146 + 3 + 9 + Load Factor + Load Factor + 12 + 12 + true + true + false + false + true + false + true + true + 876 + 876 + Proportion of load bids cleared + true + + + 799 + 146 + 3 + 10 + Max Energy Violation + Max Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1192 + 1192 + Violation of [Max Energy] or [Max Load Factor] constraints. + true + + + 800 + 146 + 3 + 11 + Max Energy Violation Cost + Max Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1193 + 1193 + Cost of [Max Energy] or [Max Load Factor] constraint violations. + true + + + 801 + 146 + 3 + 12 + Min Energy Violation + Min Energy Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1194 + 1194 + Violation of [Min Energy] or [Min Load Factor] constraints. + true + + + 802 + 146 + 3 + 13 + Min Energy Violation Cost + Min Energy Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1195 + 1195 + Cost of [Min Energy] or [Min Load Factor] constraint violations. + true + + + 803 + 146 + 3 + 14 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 804 + 146 + 3 + 15 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 692 + 692 + Revenue earned from interruptible load provision + true + + + 805 + 146 + 6 + 16 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Load obligation for capacity reserves. + true + + + 806 + 146 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 807 + 146 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 808 + 146 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 809 + 154 + 3 + 1 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 810 + 154 + 3 + 2 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Risk + true + + + 811 + 154 + 3 + 3 + Shortage + Shortage + 1 + 2 + true + true + false + false + true + false + true + true + 746 + 746 + Reserve shortfall + true + + + 812 + 154 + 3 + 4 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage. + true + + + 813 + 154 + 3 + 5 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1076 + 1076 + Cost of Reserve Shortage. + true + + + 814 + 154 + 3 + 6 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 815 + 154 + 3 + 7 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 816 + 154 + 3 + 8 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Reserve cost paid to reserve providers + true + + + 817 + 154 + 3 + 9 + Price + Price + 32 + 32 + true + true + false + false + true + false + true + true + 612 + 612 + Price + true + + + 818 + 154 + 3 + 10 + Time-weighted Price + Time-weighted Price + 29 + 29 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price of reserve. + true + + + 819 + 154 + 3 + 11 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Total available reserve response + true + + + 820 + 154 + 12 + 12 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 821 + 154 + 12 + 13 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 822 + 154 + 12 + 14 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 823 + 157 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 824 + 157 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 825 + 157 + 1 + 3 + Spinning Reserve Provision + Spinning Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1310 + 1310 + Reserve provision by spinning reserve + true + + + 826 + 157 + 1 + 4 + Sync Cond Reserve Provision + Sync Cond Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1311 + 1311 + Reserve provision by units in synchronous condenser mode + true + + + 827 + 157 + 1 + 5 + Pump Dispatchable Load Provision + Pump Dispatchable Load Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1312 + 1312 + Reserve provision by pump dispatchable load + true + + + 828 + 157 + 1 + 6 + Non-spinning Reserve Provision + Non-spinning Reserve Provision + 1 + 2 + true + true + false + false + true + false + true + true + 1313 + 1313 + Reserve provision by off-line units + true + + + 829 + 157 + 1 + 7 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 830 + 157 + 1 + 8 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 831 + 157 + 1 + 9 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 832 + 158 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Generator contingency to Risk. + true + + + 833 + 158 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Generator contingency constraint. + true + + + 834 + 159 + 1 + 1 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Reserve cost allocated + true + + + 835 + 160 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 836 + 160 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 837 + 160 + 1 + 3 + Revenue + Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 838 + 161 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 839 + 161 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 840 + 161 + 1 + 3 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 841 + 161 + 1 + 4 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 842 + 161 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 843 + 162 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Battery contingency to Risk. + true + + + 844 + 162 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Battery contingency constraint. + true + + + 845 + 163 + 1 + 1 + Available Response + Available Response + 1 + 2 + true + true + false + false + true + false + true + true + 981 + 981 + Available reserve response + true + + + 846 + 163 + 1 + 2 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve + true + + + 847 + 163 + 1 + 3 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 848 + 163 + 1 + 4 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 849 + 163 + 1 + 5 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Cost of cleared offer bands. + true + + + 850 + 163 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Reserve cost + true + + + 851 + 165 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Region [Load] to the Risk. + true + + + 852 + 166 + 1 + 1 + Risk + Risk + 1 + 2 + true + true + false + false + true + false + true + true + 706 + 706 + Contribution of Line contingency to Risk. + true + + + 853 + 166 + 1 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of Line contingency constraint. + true + + + 854 + 167 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Reserve sold into the market + true + + + 855 + 167 + 1 + 2 + Purchases + Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 648 + 648 + Reserve bought from the market + true + + + 856 + 167 + 1 + 3 + Net Sales + Net Sales + 1 + 2 + true + true + false + false + true + false + true + true + 553 + 553 + Net reserve sold into the market + true + + + 857 + 167 + 1 + 4 + Net Purchases + Net Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 549 + 549 + Net reserve purchases from the market + true + + + 858 + 167 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from reserve sales in the market + true + + + 859 + 167 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of reserve purchases from the market + true + + + 860 + 167 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue from reserve sales in the market + true + + + 861 + 167 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net cost of reserve purchases from the market + true + + + 862 + 171 + 1 + 1 + Firm Capacity Contribution + Firm Capacity Contribution + 1 + 1 + true + true + true + false + true + false + true + true + 2161 + 2161 + Firm Capacity Contribution + true + + + 863 + 171 + 12 + 2 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to a solution. + true + + + 864 + 171 + 12 + 3 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to a solution + true + + + 865 + 171 + 12 + 4 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to a solution + true + + + 866 + 176 + 1 + 1 + Quantity + Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 650 + 650 + Contract quantity + true + + + 867 + 176 + 1 + 2 + Floor Price + Floor Price + 33 + 33 + true + true + false + false + true + false + true + true + 204 + 204 + Contract floor price + true + + + 868 + 176 + 1 + 3 + Cap Price + Cap Price + 33 + 33 + true + true + false + false + true + false + true + true + 53 + 53 + Contract cap price + true + + + 869 + 176 + 1 + 4 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price the contract is settled at + true + + + 870 + 176 + 1 + 5 + Shortfall + Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 1078 + 1078 + Shortfall of generation to meet contract + true + + + 871 + 176 + 1 + 6 + Settlement Quantity + Settlement Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 740 + 740 + Quantity of contract settled + true + + + 872 + 176 + 1 + 7 + Settlement + Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 738 + 738 + Settlement + true + + + 873 + 176 + 1 + 8 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the Financial Contract is active. + true + + + 874 + 181 + 1 + 1 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price the contract is settled at + true + + + 875 + 181 + 1 + 2 + Shortfall + Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 1078 + 1078 + Shortfall of generation to meet contract + true + + + 876 + 181 + 1 + 3 + Settlement Quantity + Settlement Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 740 + 740 + Quantity of contract settled + true + + + 877 + 181 + 1 + 4 + Settlement + Settlement + 14 + 34 + true + true + false + false + true + false + true + true + 738 + 738 + Settlement + true + + + 878 + 185 + 1 + 1 + Elasticity + Elasticity + 56 + 56 + true + true + false + false + false + false + true + true + 1273 + 1273 + Price elasticity of demand + true + + + 879 + 185 + 1 + 2 + Demand Intercept + Demand Intercept + 33 + 33 + true + true + false + false + false + false + true + true + 139 + 139 + Demand function vertical intercept + true + + + 880 + 185 + 1 + 3 + Demand Slope + Demand Slope + 56 + 56 + true + true + false + false + false + false + true + true + 142 + 142 + Long-run demand function slope + true + + + 881 + 185 + 1 + 4 + Perfect Competition Demand + Perfect Competition Demand + 1 + 2 + true + true + false + false + false + false + true + true + 1405 + 1405 + Demand in the perfect competition solution + true + + + 882 + 185 + 1 + 5 + Perfect Competition Production + Perfect Competition Production + 1 + 2 + true + true + false + false + false + false + true + true + 1413 + 1413 + Production in the perfect competition solution + true + + + 883 + 185 + 1 + 6 + Perfect Competition Net Import + Perfect Competition Net Import + 1 + 2 + true + true + false + false + false + false + true + true + 1408 + 1408 + Net import in the perfect competition solution + true + + + 884 + 185 + 1 + 7 + Perfect Competition Price + Perfect Competition Price + 33 + 33 + true + true + false + false + false + false + true + true + 1406 + 1406 + Price in the perfect competition solution + true + + + 885 + 185 + 1 + 8 + Perfect Competition Producer Revenue + Perfect Competition Producer Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 1414 + 1414 + Producer revenue in the perfect competition solution + true + + + 886 + 185 + 1 + 9 + Perfect Competition Consumer Surplus + Perfect Competition Consumer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1411 + 1411 + Consumer surplus in the perfect competition solution + true + + + 887 + 185 + 1 + 10 + Perfect Competition Producer Surplus + Perfect Competition Producer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1412 + 1412 + Producer surplus in the perfect competition solution + true + + + 888 + 185 + 1 + 11 + Demand + Demand + 1 + 2 + true + true + false + false + false + false + true + true + 133 + 133 + Demand in the Nash-Cournot equilibrium solution + true + + + 889 + 185 + 1 + 12 + Production + Production + 1 + 2 + true + true + false + false + false + false + true + true + 624 + 624 + Production in the Nash-Cournot equilibrium solution + true + + + 890 + 185 + 1 + 13 + Net Import + Net Import + 1 + 2 + true + true + false + false + false + false + true + true + 1407 + 1407 + Net import in the Nash-Cournot equilibrium solution + true + + + 891 + 185 + 1 + 14 + Price + Price + 33 + 33 + true + true + false + false + false + false + true + true + 612 + 612 + Price in the Nash-Cournot equilibrium solution + true + + + 892 + 185 + 1 + 15 + Producer Revenue + Producer Revenue + 14 + 34 + true + true + false + true + false + false + true + true + 1415 + 1415 + Producer revenue in the Nash-Cournot equilibrium solution + true + + + 893 + 185 + 1 + 16 + Consumer Surplus + Consumer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1409 + 1409 + Consumer surplus in the Nash-Cournot equilibrium solution + true + + + 894 + 185 + 1 + 17 + Producer Surplus + Producer Surplus + 14 + 34 + true + true + false + true + false + false + true + true + 1410 + 1410 + Producer surplus in the Nash-Cournot equilibrium solution + true + + + 895 + 189 + 1 + 1 + RSI + RSI + 0 + 0 + true + false + false + false + true + false + true + true + 712 + 712 + Residual Supply Index + true + + + 896 + 189 + 1 + 2 + Utility Generation + Utility Generation + 1 + 1 + true + false + false + false + true + false + true + true + 839 + 839 + Utility Generation + true + + + 897 + 189 + 1 + 3 + Utility Available Capacity + Utility Available Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 837 + 837 + Utility Available Capacity + true + + + 898 + 189 + 1 + 4 + Non Utility Generation + Non Utility Generation + 1 + 1 + true + false + false + false + true + false + true + true + 561 + 561 + Non Utility Generation + true + + + 899 + 189 + 1 + 5 + Non Utility Available Capacity + Non Utility Available Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 559 + 559 + Non Utility Available Capacity + true + + + 900 + 189 + 1 + 6 + Non Utility Contract Volume + Non Utility Contract Volume + 1 + 1 + true + false + false + false + true + false + true + true + 560 + 560 + Non Utility Contract Volume + true + + + 901 + 189 + 1 + 7 + Total Internal Capacity + Total Internal Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 791 + 791 + Total Internal Capacity + true + + + 902 + 189 + 1 + 8 + Total Import Capacity + Total Import Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 790 + 790 + Total Import Capacity + true + + + 903 + 189 + 1 + 9 + Total Supply Capacity + Total Supply Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 793 + 793 + Total Supply Capacity (Total Internal Capacity + Total Import Capacity) + true + + + 904 + 189 + 1 + 10 + Largest Suppliers Capacity + Largest Suppliers Capacity + 0 + 0 + true + false + false + false + true + false + true + true + 342 + 342 + Largest Supplier's Capacity + true + + + 905 + 189 + 1 + 11 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 288 + 288 + Import Capacity + true + + + 906 + 189 + 1 + 12 + Demand + Demand + 0 + 0 + true + false + false + false + true + false + true + true + 133 + 133 + Demand + true + + + 907 + 189 + 1 + 13 + Lerner Index + Lerner Index + 0 + 0 + true + true + false + false + true + false + true + true + 344 + 344 + Lerner Index (P-C)/P + true + + + 908 + 189 + 1 + 14 + Bounded Lerner Index + Bounded Lerner Index + 0 + 0 + true + true + false + false + true + false + true + true + 43 + 43 + Lerner Index (P-C)/P + true + + + 909 + 189 + 1 + 15 + Bid-Cost Mark-up + Bid-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 32 + 32 + Bid-Cost Mark-up (P-C)/C + true + + + 910 + 189 + 1 + 16 + Price-Cost Mark-up + Price-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 614 + 614 + Price-Cost Mark-up (P-C)/C + true + + + 911 + 189 + 1 + 17 + Load Unhedged + Load Unhedged + 0 + 0 + true + false + false + false + true + false + true + true + 360 + 360 + PCT Load Unhedged + true + + + 912 + 189 + 1 + 18 + Load Capacity Ratio + Load Capacity Ratio + 0 + 0 + true + false + false + false + true + false + true + true + 350 + 350 + Ratio of load to the total internal capacity plus import capability + true + + + 913 + 189 + 1 + 19 + Capacity Factor + Capacity Factor + 0 + 0 + true + false + false + false + true + false + true + true + 58 + 58 + Capacity Factor + true + + + 914 + 189 + 1 + 20 + Load Variation + Load Variation + 0 + 0 + true + false + false + false + true + false + true + true + 362 + 362 + Load Variation + true + + + 915 + 189 + 1 + 21 + Summer Period + Summer Period + 0 + 0 + true + false + false + false + true + false + true + true + 768 + 768 + Summer Period Flag + true + + + 916 + 189 + 1 + 22 + Peak Period + Peak Period + 0 + 0 + true + false + false + false + true + false + true + true + 600 + 600 + Peak Period Flag + true + + + 917 + 193 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Supply capacity from the line. + true + + + 918 + 194 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Supply capacity from the interfaces. + true + + + 919 + 195 + 1 + 1 + Supply Capacity + Supply Capacity + 0 + 0 + true + true + false + false + true + false + true + true + 770 + 770 + Total supply capacity from the company. + true + + + 920 + 195 + 1 + 2 + Bid-Cost Mark-up + Bid-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 32 + 32 + Bid cost mark-up applied to generators in the company + true + + + 921 + 196 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 922 + 196 + 3 + 2 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 923 + 196 + 3 + 3 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load + true + + + 924 + 196 + 3 + 4 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed (or embedded) generation + true + + + 925 + 196 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 926 + 196 + 3 + 6 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 927 + 196 + 3 + 7 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 928 + 196 + 3 + 8 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 929 + 196 + 3 + 9 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 930 + 196 + 3 + 10 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 931 + 196 + 3 + 11 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 932 + 196 + 3 + 12 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 933 + 196 + 3 + 13 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 934 + 196 + 3 + 14 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 935 + 196 + 3 + 15 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 936 + 196 + 3 + 16 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 937 + 196 + 3 + 17 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 938 + 196 + 3 + 18 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 939 + 196 + 3 + 19 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 940 + 196 + 3 + 20 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 941 + 196 + 3 + 21 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 942 + 196 + 3 + 22 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 943 + 196 + 3 + 23 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 944 + 196 + 3 + 24 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 945 + 196 + 3 + 25 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Exports - Imports + true + + + 946 + 196 + 3 + 26 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 947 + 196 + 3 + 27 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 948 + 196 + 3 + 28 + Unserved Energy Hours + Unserved Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 282 + 282 + Number of hours of unserved energy (USE). + true + + + 949 + 196 + 3 + 29 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 950 + 196 + 3 + 30 + Max Unserved Energy + Max Unserved Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2014 + 2014 + Maximum unserved energy + true + + + 951 + 196 + 3 + 31 + Unserved Energy Factor + Unserved Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2015 + 2015 + Ratio of unserved energy to load + true + + + 952 + 196 + 3 + 32 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 953 + 196 + 3 + 33 + Dump Energy Hours + Dump Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1088 + 1088 + Number of hours of dump energy. + true + + + 954 + 196 + 3 + 34 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 955 + 196 + 3 + 35 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy. + true + + + 956 + 196 + 3 + 36 + No Cost Generation Capacity + No Cost Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1165 + 2346 + Capacity available at no cost. + true + + + 957 + 196 + 3 + 37 + Hours Generation Curtailed + Hours Generation Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1166 + 1166 + Number of hours that non-positive-priced generation has been curtailed. + true + + + 958 + 196 + 3 + 38 + Generation Capacity Curtailed + Generation Capacity Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1167 + 1167 + Amount of non-positive-priced generation curtailed. + true + + + 959 + 196 + 3 + 39 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 960 + 196 + 3 + 40 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 961 + 196 + 3 + 41 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 962 + 196 + 3 + 42 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 963 + 196 + 3 + 43 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 964 + 196 + 3 + 44 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 965 + 196 + 3 + 45 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 966 + 196 + 3 + 46 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of generation that could be unloaded + true + + + 967 + 196 + 3 + 47 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 968 + 196 + 3 + 48 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 969 + 196 + 3 + 49 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 970 + 196 + 3 + 50 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 971 + 196 + 3 + 51 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Total variable cost of generation + true + + + 972 + 196 + 3 + 52 + Generator Pump Cost + Generator Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 249 + 249 + Cost of load to pump storage generators + true + + + 973 + 196 + 3 + 53 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Cost of generating unit starts and shutdowns + true + + + 974 + 196 + 3 + 54 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 975 + 196 + 3 + 55 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 976 + 196 + 3 + 56 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total generation cost including fuel, VO&M, start and shutdown costs and emissions costs. + true + + + 977 + 196 + 3 + 57 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 978 + 196 + 3 + 58 + Generator FO&M Cost + Generator FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 888 + 888 + Total fixed operations and maintenance costs + true + + + 979 + 196 + 3 + 59 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs (fixed O&amp;M, equity, debt) + true + + + 980 + 196 + 3 + 60 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Highest short-run marginal cost of running generators + true + + + 981 + 196 + 3 + 61 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Price + true + + + 982 + 196 + 3 + 62 + Uplift + Uplift + 33 + 33 + true + true + false + false + true + false + true + true + 826 + 826 + Uplift to uniform price due to no load cost and start costs + true + + + 983 + 196 + 3 + 63 + Price-Cost Mark-up + Price-Cost Mark-up + 0 + 0 + true + true + false + false + true + false + true + true + 614 + 614 + Price Cost Mark-up (P-C)/C + true + + + 984 + 196 + 3 + 64 + Time-weighted Price + Time-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 789 + 789 + Time weighted average price + true + + + 985 + 196 + 3 + 65 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load weighted average price + true + + + 986 + 196 + 3 + 66 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 987 + 196 + 3 + 67 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 988 + 196 + 3 + 68 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 989 + 196 + 3 + 69 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Total transmission rental + true + + + 990 + 196 + 3 + 70 + Settlement Surplus + Settlement Surplus + 14 + 34 + true + true + false + true + true + false + true + true + 741 + 741 + Difference between cost to load and generator revenue + true + + + 991 + 196 + 3 + 71 + Interregional Transmission Losses + Interregional Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 326 + 326 + Total inter-regional losses assigned to region + true + + + 992 + 196 + 3 + 72 + Intraregional Transmission Losses + Intraregional Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 329 + 329 + Total losses on all intraregional lines + true + + + 993 + 196 + 3 + 73 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Contract volume + true + + + 994 + 196 + 3 + 74 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on contracts + true + + + 995 + 196 + 3 + 75 + Net Cost to Load + Net Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 538 + 538 + Cost to load of their energy purchases net of contracts + true + + + 996 + 196 + 3 + 76 + DSP Bid Quantity + DSP Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 156 + 156 + Bid quantity for demand-side participation + true + + + 997 + 196 + 3 + 77 + DSP Bid Price + DSP Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 155 + 155 + Bid price for demand-side participation + true + + + 998 + 196 + 3 + 78 + DSP Bid Cleared + DSP Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1398 + 1398 + Quantity cleared in demand-side participation bid band + true + + + 999 + 196 + 3 + 79 + Cleared DSP Bid Price + Cleared DSP Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1400 + 1400 + Price of marginal demand-side participation bid band + true + + + 1000 + 196 + 3 + 80 + Cleared DSP Bid Cost + Cleared DSP Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1401 + 1401 + Value of cleared demand-side participation bids + true + + + 1001 + 196 + 3 + 81 + Cost of Curtailment + Cost of Curtailment + 14 + 34 + true + true + false + true + true + false + true + true + 118 + 118 + Cost of demand-side participation bids cleared + true + + + 1002 + 196 + 3 + 82 + Generator Net Pool Revenue + Generator Net Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 245 + 245 + Generator pool revenue net of contracts and pump load cost + true + + + 1003 + 196 + 3 + 83 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 1004 + 196 + 3 + 84 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 1005 + 196 + 3 + 85 + Generator Net Revenue + Generator Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 247 + 247 + Generator net revenue (producer surplus) + true + + + 1006 + 196 + 3 + 86 + Shadow Load + Shadow Load + 1 + 2 + true + true + false + false + true + false + true + true + 1142 + 1142 + Load before uplift or Competition models. + true + + + 1007 + 196 + 3 + 87 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 1008 + 196 + 3 + 88 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Price before uplift or mark-ups models. + true + + + 1009 + 196 + 3 + 89 + Shadow Cost to Load + Shadow Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 1141 + 1141 + Cost to load of their energy purchases based on [Shadow Price]. + true + + + 1010 + 196 + 3 + 90 + Generator Monopoly Rent + Generator Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 244 + 244 + Generator monopoly rent from competitive bidding + true + + + 1011 + 196 + 3 + 91 + Utility Monopoly Rent + Utility Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 840 + 840 + Generator monopoly rent from competitive bidding + true + + + 1012 + 196 + 3 + 92 + Non-Utility Monopoly Rent + Non-Utility Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 563 + 563 + Generator monopoly rent from competitive bidding + true + + + 1013 + 196 + 3 + 93 + Utility Contract Settlement + Utility Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 838 + 838 + Utility generator contract settlement + true + + + 1014 + 196 + 3 + 94 + Non-Utility Contract Settlement + Non-Utility Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 562 + 562 + Non-utility generator contract settlement + true + + + 1015 + 196 + 3 + 95 + Utility Net Revenue + Utility Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 841 + 841 + Utility generator net revenue (producer surplus) + true + + + 1016 + 196 + 3 + 96 + Non-Utility Net Revenue + Non-Utility Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 564 + 564 + Non-utility generator net revenue (producer surplus) + true + + + 1017 + 196 + 3 + 97 + Constrained On Cost + Constrained On Cost + 14 + 34 + true + true + false + true + true + false + true + true + 93 + 93 + Constrained on cost + true + + + 1018 + 196 + 3 + 98 + Constrained Off Cost + Constrained Off Cost + 14 + 34 + true + true + false + true + true + false + true + true + 91 + 91 + Constrained off cost + true + + + 1019 + 196 + 3 + 99 + Generator Net Profit + Generator Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 246 + 246 + Net profit from generators in region + true + + + 1020 + 196 + 3 + 100 + Net Market Profit + Net Market Profit + 14 + 34 + true + true + false + true + true + false + true + true + 1445 + 1445 + Net profit from all market nodes + true + + + 1021 + 196 + 3 + 101 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1022 + 196 + 3 + 102 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1023 + 196 + 3 + 103 + Net Cost of Exports + Net Cost of Exports + 14 + 34 + true + true + false + true + true + false + true + true + 537 + 537 + Net cost of exports + true + + + 1024 + 196 + 3 + 104 + Wheeling Revenue + Wheeling Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1036 + 1036 + Wheeling revenue on exports from the region + true + + + 1025 + 196 + 3 + 105 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost + true + + + 1026 + 196 + 3 + 106 + Intraregional Transmission Rental + Intraregional Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 330 + 330 + Total transmission rental on intraregional lines + true + + + 1027 + 196 + 3 + 107 + Interregional Transmission Rental + Interregional Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 327 + 327 + Share of interregional transmission rentals + true + + + 1028 + 196 + 3 + 108 + Transmission Control Rental + Transmission Control Rental + 14 + 34 + true + true + false + true + true + false + true + true + 795 + 795 + Rental from penalties on changes in flow control angles and DC line flows + true + + + 1029 + 196 + 3 + 109 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the region. + true + + + 1030 + 196 + 3 + 110 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the region. + true + + + 1031 + 196 + 3 + 111 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange in the region (Financial Exports - Financial Imports). + true + + + 1032 + 196 + 3 + 112 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region. + true + + + 1033 + 196 + 3 + 113 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region. + true + + + 1034 + 196 + 3 + 114 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1035 + 196 + 6 + 115 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + true + + + 1036 + 196 + 6 + 116 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Total installed generation capacity + true + + + 1037 + 196 + 6 + 117 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Region Firm Generation Capacity is based on the Firm Capacity of all the generators in the region. + true + + + 1038 + 196 + 6 + 118 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1039 + 196 + 6 + 119 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1040 + 196 + 6 + 120 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1041 + 196 + 6 + 121 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity from the Region + true + + + 1042 + 196 + 6 + 122 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Total export capacity from the Region + true + + + 1043 + 196 + 6 + 123 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1044 + 196 + 6 + 124 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 1045 + 196 + 6 + 125 + Max Capacity Reserves + Max Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 1046 + 196 + 6 + 126 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1047 + 196 + 6 + 127 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 1048 + 196 + 6 + 128 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 1049 + 196 + 6 + 129 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + true + + + 1050 + 196 + 6 + 130 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1051 + 196 + 6 + 131 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 1052 + 196 + 6 + 132 + Available Capacity Reserves + Available Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 1629 + 1629 + Capacity Reserves based on Available Capacity + true + + + 1053 + 196 + 6 + 133 + Available Capacity Margin + Available Capacity Margin + 12 + 12 + true + true + false + false + true + false + true + true + 1630 + 1630 + Capacity Reserve Margin based on Available Capacity + true + + + 1054 + 196 + 6 + 134 + Dispatchable Capacity + Dispatchable Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 149 + 149 + On-line capacity + true + + + 1055 + 196 + 6 + 135 + Undispatched Capacity + Undispatched Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 803 + 803 + Capacity on-line but undispatched + true + + + 1056 + 196 + 7 + 136 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1057 + 196 + 7 + 137 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + false + true + true + 392 + 392 + Capacity out on maintenance + true + + + 1058 + 196 + 7 + 138 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 1059 + 196 + 7 + 139 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1060 + 196 + 7 + 140 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1061 + 196 + 7 + 141 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + true + true + true + true + 394 + 394 + Maintenance factor + true + + + 1062 + 196 + 7 + 142 + EENS + EENS + 3 + 3 + true + true + false + false + true + true + false + false + 161 + 161 + Expected energy not served (summary type "Sum") + true + + + 1063 + 196 + 7 + 143 + EDNS + EDNS + 1 + 1 + true + true + false + false + true + true + false + false + 160 + 160 + Expected Demand Not Served (summary type "Average") + true + + + 1064 + 196 + 7 + 144 + LOLE + LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 365 + 365 + Number of days of outage (summary type "Sum") + true + + + 1065 + 196 + 7 + 145 + LOLP + LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 366 + 366 + Loss of load probability (summary type "Average") + true + + + 1066 + 196 + 7 + 146 + Multi-area LOLE + Multi-area LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 1736 + 1736 + Number of days of outage including assistants from other connected regions (summary type "Sum") + true + + + 1067 + 196 + 7 + 147 + Multi-area LOLP + Multi-area LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 1735 + 1735 + Loss of load probability considering assistance from other connected regions + true + + + 1068 + 196 + 8 + 148 + Planning Peak Load + Planning Peak Load + 1 + 1 + true + true + false + false + true + false + false + false + 608 + 608 + Peak load in the current capacity optimization period (e.g. year) + true + + + 1069 + 196 + 8 + 149 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 1070 + 196 + 8 + 150 + Generation Capacity Retired + Generation Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 233 + 233 + Generation capacity retired + true + + + 1071 + 196 + 8 + 151 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Additional import capacity from the Region due to transmission expansion. + true + + + 1072 + 196 + 8 + 152 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Reduction in import capacity from the Region due to transmission retirements. + true + + + 1073 + 196 + 8 + 153 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Additional export capacity from the Region due to transmission expansion. + true + + + 1074 + 196 + 8 + 154 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Reduction in export capacity from the Region due to transmission retirements. + true + + + 1075 + 196 + 8 + 155 + Capacity Shortage + Capacity Shortage + 1 + 1 + true + true + false + false + true + false + false + false + 70 + 70 + Capacity shortage (below Min Capacity Reserves) + true + + + 1076 + 196 + 8 + 156 + Capacity Excess + Capacity Excess + 1 + 1 + true + true + false + false + true + false + false + false + 56 + 56 + Capacity excess (above Max Capacity Reserves) + true + + + 1077 + 196 + 8 + 157 + Capacity Shadow Price + Capacity Shadow Price + 31 + 31 + true + true + false + false + true + false + false + false + 68 + 68 + Shadow price of capacity + true + + + 1078 + 196 + 8 + 158 + LRMC + LRMC + 33 + 33 + false + true + false + false + true + false + false + false + 1034 + 1034 + Long-run marginal cost of production + true + + + 1079 + 196 + 8 + 159 + Capacity Payments + Capacity Payments + 14 + 34 + true + true + false + true + true + false + true + true + 883 + 883 + Payments made for capacity + true + + + 1080 + 196 + 8 + 160 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the region + true + + + 1081 + 196 + 8 + 161 + Capacity Shortage Cost + Capacity Shortage Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1225 + 1225 + Cost of capacity shortage priced at [Capacity Shortage Price]. + true + + + 1082 + 196 + 8 + 162 + Capacity Excess Cost + Capacity Excess Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1226 + 1226 + Cost of capacity excess priced at [Capacity Excess Price]. + true + + + 1083 + 196 + 8 + 163 + Total Generator Revenue + Total Generator Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1140 + 1140 + Total generator revenue including capacity payments. + true + + + 1084 + 196 + 8 + 164 + Generator Build Cost + Generator Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 241 + 241 + Cost of units built + true + + + 1085 + 196 + 8 + 165 + Generator Retirement Cost + Generator Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 251 + 251 + Cost of units retired + true + + + 1086 + 196 + 8 + 166 + Transmission Build Cost + Transmission Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 794 + 794 + Cost of transmission lines built + true + + + 1087 + 196 + 8 + 167 + Transmission Retirement Cost + Transmission Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 799 + 799 + Cost of transmission lines retired + true + + + 1088 + 196 + 8 + 168 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 1089 + 196 + 8 + 169 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 1090 + 196 + 8 + 170 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 1091 + 196 + 8 + 171 + Shadow Generation Capacity Built + Shadow Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1824 + 1824 + Generation capacity built before Competition models. + true + + + 1092 + 196 + 12 + 172 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1093 + 196 + 12 + 173 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1094 + 196 + 12 + 174 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1095 + 201 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Emissions + true + + + 1096 + 201 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 1097 + 201 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 1098 + 201 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 1099 + 201 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 1100 + 201 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1101 + 201 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 1102 + 201 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 1103 + 201 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 1104 + 205 + 1 + 1 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability between the regions in the reference direction. + true + + + 1105 + 205 + 1 + 2 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability between the regions in the counter-reference direction. + true + + + 1106 + 205 + 1 + 3 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports from region + true + + + 1107 + 205 + 1 + 4 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports to region + true + + + 1108 + 205 + 1 + 5 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Net interchange to region (exports - imports) + true + + + 1109 + 205 + 1 + 6 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the region + true + + + 1110 + 205 + 1 + 7 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the region + true + + + 1111 + 205 + 1 + 8 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) from parent region to child region. + true + + + 1112 + 205 + 1 + 9 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region + true + + + 1113 + 205 + 1 + 10 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region + true + + + 1114 + 205 + 1 + 11 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 1115 + 205 + 1 + 12 + Wheeling Cost + Wheeling Cost + 14 + 14 + true + true + false + false + true + false + true + true + 860 + 860 + Wheeling cost on exports to the region + true + + + 1116 + 221 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Total load + true + + + 1117 + 221 + 3 + 2 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1118 + 221 + 3 + 3 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 1119 + 221 + 3 + 4 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 1120 + 221 + 3 + 5 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 1121 + 221 + 3 + 6 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1122 + 221 + 3 + 7 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 1123 + 221 + 3 + 8 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1124 + 221 + 3 + 9 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy. + true + + + 1125 + 221 + 3 + 10 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation,start, shutdown, and emissions costs + true + + + 1126 + 221 + 3 + 11 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Energy price + true + + + 1127 + 221 + 3 + 12 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1128 + 221 + 3 + 13 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1129 + 221 + 3 + 14 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 1130 + 221 + 3 + 15 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1131 + 221 + 3 + 16 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1132 + 221 + 3 + 17 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1133 + 221 + 3 + 18 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Total customer load + true + + + 1134 + 221 + 3 + 19 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Net generation value + true + + + 1135 + 221 + 3 + 20 + ORDC System Lambda + ORDC System Lambda + 33 + 33 + true + true + false + false + true + false + true + true + 2682 + 2682 + Max value of Energy Charge over all Nodes + true + + + 1136 + 221 + 3 + 21 + ORDC Online Price Adder + ORDC Online Price Adder + 33 + 33 + true + true + false + false + true + false + true + true + 2683 + 2683 + ORDC Online Price Adder + true + + + 1137 + 221 + 3 + 22 + ORDC Offline Price Adder + ORDC Offline Price Adder + 33 + 33 + true + true + false + false + true + false + true + true + 2684 + 2684 + ORDC Offline Price Adder + true + + + 1138 + 221 + 12 + 23 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1139 + 221 + 12 + 24 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1140 + 221 + 12 + 25 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1141 + 227 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 1142 + 227 + 3 + 2 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 1143 + 227 + 3 + 3 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load + true + + + 1144 + 227 + 3 + 4 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed generation + true + + + 1145 + 227 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1146 + 227 + 3 + 6 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 1147 + 227 + 3 + 7 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 1148 + 227 + 3 + 8 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 1149 + 227 + 3 + 9 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 1150 + 227 + 3 + 10 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 1151 + 227 + 3 + 11 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 1152 + 227 + 3 + 12 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 1153 + 227 + 3 + 13 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 1154 + 227 + 3 + 14 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 1155 + 227 + 3 + 15 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 1156 + 227 + 3 + 16 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 1157 + 227 + 3 + 17 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 1158 + 227 + 3 + 18 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 1159 + 227 + 3 + 19 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 1160 + 227 + 3 + 20 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 1161 + 227 + 3 + 21 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 1162 + 227 + 3 + 22 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 1163 + 227 + 3 + 23 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports + true + + + 1164 + 227 + 3 + 24 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports + true + + + 1165 + 227 + 3 + 25 + Net Interchange + Net Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 543 + 543 + Exports - Imports + true + + + 1166 + 227 + 3 + 26 + Transmission Losses + Transmission Losses + 1 + 2 + true + true + false + false + true + false + true + true + 797 + 797 + Total transmission losses + true + + + 1167 + 227 + 3 + 27 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 1168 + 227 + 3 + 28 + Unserved Energy Hours + Unserved Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 282 + 282 + Number of hours of unserved energy (USE). + true + + + 1169 + 227 + 3 + 29 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1170 + 227 + 3 + 30 + Max Unserved Energy + Max Unserved Energy + 1 + 1 + true + true + false + false + true + false + true + true + 2014 + 2014 + Maximum unserved energy + true + + + 1171 + 227 + 3 + 31 + Unserved Energy Factor + Unserved Energy Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2015 + 2015 + Ratio of unserved energy to load + true + + + 1172 + 227 + 3 + 32 + Cost of Unserved Energy + Cost of Unserved Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1087 + 1087 + Cost of unserved energy. + true + + + 1173 + 227 + 3 + 33 + Dump Energy Hours + Dump Energy Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1088 + 1088 + Number of hours of dump energy. + true + + + 1174 + 227 + 3 + 34 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1175 + 227 + 3 + 35 + Cost of Dump Energy + Cost of Dump Energy + 14 + 34 + true + true + false + false + true + false + true + true + 1089 + 1089 + Cost of dump energy. + true + + + 1176 + 227 + 3 + 36 + No Cost Generation Capacity + No Cost Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1165 + 2346 + Capacity available at no cost. + true + + + 1177 + 227 + 3 + 37 + Hours Generation Curtailed + Hours Generation Curtailed + 6 + 6 + true + true + false + false + true + false + true + true + 1166 + 1166 + Number of hours that non-positive-priced generation has been curtailed. + true + + + 1178 + 227 + 3 + 38 + Generation Capacity Curtailed + Generation Capacity Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1167 + 1167 + Amount of non-positive-priced generation curtailed. + true + + + 1179 + 227 + 3 + 39 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 1180 + 227 + 3 + 40 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 1181 + 227 + 3 + 41 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 1182 + 227 + 3 + 42 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 1183 + 227 + 3 + 43 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 1184 + 227 + 3 + 44 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 1185 + 227 + 3 + 45 + Flexibility Up + Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1465 + 1465 + Amount of additional generation that could be provided + true + + + 1186 + 227 + 3 + 46 + Flexibility Down + Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1466 + 1466 + Amount of generation that could be unloaded + true + + + 1187 + 227 + 3 + 47 + Ramp Flexibility Up + Ramp Flexibility Up + 1 + 2 + true + true + false + false + true + false + true + true + 1467 + 1467 + Amount of unused ramp up capability + true + + + 1188 + 227 + 3 + 48 + Ramp Flexibility Down + Ramp Flexibility Down + 1 + 2 + true + true + false + false + true + false + true + true + 1468 + 1468 + Amount of unused ramp down capability + true + + + 1189 + 227 + 3 + 49 + Hours at Minimum + Hours at Minimum + 6 + 6 + true + true + false + false + true + false + true + true + 1632 + 1632 + Number of hours that generation is constrained to minimum. + true + + + 1190 + 227 + 3 + 50 + Inflexible Generation + Inflexible Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1631 + 1631 + Amount of generation capacity constrained on and inflexible. + true + + + 1191 + 227 + 3 + 51 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Total variable cost of generation + true + + + 1192 + 227 + 3 + 52 + Generator Pump Cost + Generator Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 249 + 249 + Cost of load to pump storage generators + true + + + 1193 + 227 + 3 + 53 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Cost of generating unit starts and shutdowns + true + + + 1194 + 227 + 3 + 54 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 1195 + 227 + 3 + 55 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1196 + 227 + 3 + 56 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation and start and shutdown costs and emissions costs + true + + + 1197 + 227 + 3 + 57 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 1198 + 227 + 3 + 58 + Generator FO&M Cost + Generator FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 888 + 888 + Total fixed operations and maintenance costs + true + + + 1199 + 227 + 3 + 59 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs (fixed O&M, equity, debt) + true + + + 1200 + 227 + 3 + 60 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Highest short-run marginal cost of running generators + true + + + 1201 + 227 + 3 + 61 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Energy price + true + + + 1202 + 227 + 3 + 62 + Time-weighted Price + Time-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 789 + 789 + Time-weighted average price + true + + + 1203 + 227 + 3 + 63 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1204 + 227 + 3 + 64 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1205 + 227 + 3 + 65 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of locational marginal price + true + + + 1206 + 227 + 3 + 66 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of zonal price + true + + + 1207 + 227 + 3 + 67 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of the zonal price + true + + + 1208 + 227 + 3 + 68 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Average marginal loss factor of buses in the zone + true + + + 1209 + 227 + 3 + 69 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load of their energy purchases + true + + + 1210 + 227 + 3 + 70 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1211 + 227 + 3 + 71 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Total transmission rental + true + + + 1212 + 227 + 3 + 72 + Settlement Surplus + Settlement Surplus + 14 + 34 + true + true + false + true + true + false + true + true + 741 + 741 + Difference between cost to load and generator revenue + true + + + 1213 + 227 + 3 + 73 + Cost of Curtailment + Cost of Curtailment + 14 + 34 + true + true + false + true + true + false + true + true + 118 + 118 + Cost of demand-side participation bids cleared + true + + + 1214 + 227 + 3 + 74 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under generator offer curve + true + + + 1215 + 227 + 3 + 75 + Cleared Reserve Offer Cost + Cleared Reserve Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1657 + 1657 + Area cleared under reserve offer curve + true + + + 1216 + 227 + 3 + 76 + Generator Net Revenue + Generator Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 247 + 247 + Generator net revenue (producer surplus) + true + + + 1217 + 227 + 3 + 77 + Generator Net Profit + Generator Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 246 + 246 + Net profit from generators in Zone + true + + + 1218 + 227 + 3 + 78 + Net Market Profit + Net Market Profit + 14 + 34 + true + true + false + true + true + false + true + true + 1445 + 1445 + Net profit from all market nodes + true + + + 1219 + 227 + 3 + 79 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of exports + true + + + 1220 + 227 + 3 + 80 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from imports + true + + + 1221 + 227 + 3 + 81 + Net Cost of Exports + Net Cost of Exports + 14 + 34 + true + true + false + true + true + false + true + true + 537 + 537 + Net cost of exports + true + + + 1222 + 227 + 3 + 82 + Wheeling Revenue + Wheeling Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1036 + 1036 + Wheeling revenue on exports from the zone + true + + + 1223 + 227 + 3 + 83 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost on imports to the zone + true + + + 1224 + 227 + 3 + 84 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the zone. + true + + + 1225 + 227 + 3 + 85 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the zone. + true + + + 1226 + 227 + 3 + 86 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange in the zone (Financial Exports - Financial Imports). + true + + + 1227 + 227 + 3 + 87 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the zone. + true + + + 1228 + 227 + 3 + 88 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the Zone. + true + + + 1229 + 227 + 3 + 89 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1230 + 227 + 6 + 90 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load across the current period + true + + + 1231 + 227 + 6 + 91 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Total installed generation capacity + true + + + 1232 + 227 + 6 + 92 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Installed capacity accounting for [Rating], [Rating Factor] and [Firm Capacity] + true + + + 1233 + 227 + 6 + 93 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1234 + 227 + 6 + 94 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1235 + 227 + 6 + 95 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1236 + 227 + 6 + 96 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity from the Zone + true + + + 1237 + 227 + 6 + 97 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Capacity export capability + true + + + 1238 + 227 + 6 + 98 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1239 + 227 + 6 + 99 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 1240 + 227 + 6 + 100 + Max Capacity Reserves + Max Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 1241 + 227 + 6 + 101 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1242 + 227 + 6 + 102 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 1243 + 227 + 6 + 103 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 1244 + 227 + 6 + 104 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 63 + 63 + Reserve margin + true + + + 1245 + 227 + 6 + 105 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1246 + 227 + 6 + 106 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available capacity + true + + + 1247 + 227 + 6 + 107 + Available Capacity Reserves + Available Capacity Reserves + 1 + 1 + true + true + false + false + true + false + true + true + 1629 + 1629 + Capacity Reserves based on Available Capacity + true + + + 1248 + 227 + 6 + 108 + Available Capacity Margin + Available Capacity Margin + 12 + 12 + true + true + false + false + true + false + true + true + 1630 + 1630 + Capacity Reserve Margin based on Available Capacity + true + + + 1249 + 227 + 6 + 109 + Dispatchable Capacity + Dispatchable Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 149 + 149 + On-line capacity + true + + + 1250 + 227 + 6 + 110 + Undispatched Capacity + Undispatched Capacity + 1 + 1 + true + false + false + false + true + false + true + true + 803 + 803 + Capacity on-line but undispatched + true + + + 1251 + 227 + 7 + 111 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1252 + 227 + 7 + 112 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1253 + 227 + 7 + 113 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + false + true + false + false + 394 + 394 + Maintenance factor + true + + + 1254 + 227 + 7 + 114 + EENS + EENS + 3 + 3 + true + true + false + false + false + true + false + false + 161 + 161 + Expected energy not served (summary type "Sum") + true + + + 1255 + 227 + 7 + 115 + EDNS + EDNS + 1 + 1 + true + true + false + false + false + true + false + false + 160 + 160 + Expected demand not served (summary type "Average") + true + + + 1256 + 227 + 7 + 116 + LOLE + LOLE + 7 + 7 + true + true + false + false + false + true + false + false + 365 + 365 + Number of days of outage (summary type "Sum") + true + + + 1257 + 227 + 7 + 117 + LOLP + LOLP + 12 + 12 + true + true + false + false + false + true + false + false + 366 + 366 + Loss of load probability (summary type "Average") + true + + + 1258 + 227 + 7 + 118 + Multi-area LOLE + Multi-area LOLE + 7 + 7 + true + true + false + false + true + true + false + false + 1736 + 1736 + Number of days of outage including assistants from other connected zones (summary type "Sum") + true + + + 1259 + 227 + 7 + 119 + Multi-area LOLP + Multi-area LOLP + 12 + 12 + true + true + false + false + true + true + false + false + 1735 + 1735 + Loss of load probability including assistants from other connected zones (summary type "Average") + true + + + 1260 + 227 + 8 + 120 + Planning Peak Load + Planning Peak Load + 1 + 1 + true + true + false + false + true + false + false + false + 608 + 608 + Peak load in the current capacity optimization period (e.g. year) + true + + + 1261 + 227 + 8 + 121 + Generation Capacity Built + Generation Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 230 + 230 + Generation capacity built + true + + + 1262 + 227 + 8 + 122 + Generation Capacity Retired + Generation Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 233 + 233 + Generation capacity retired + true + + + 1263 + 227 + 8 + 123 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Additional import capacity from the Zone due to transmission expansion. + true + + + 1264 + 227 + 8 + 124 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Reduction in import capacity from the Zone due to transmission retirements. + true + + + 1265 + 227 + 8 + 125 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Additional export capacity from the Zone due to transmission expansion + true + + + 1266 + 227 + 8 + 126 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Reduction in export capacity from the Zone due to transmission retirements + true + + + 1267 + 227 + 8 + 127 + Capacity Shortage + Capacity Shortage + 1 + 1 + true + true + false + false + true + false + false + false + 70 + 70 + Capacity Shortage (below Min Capacity Reserves) + true + + + 1268 + 227 + 8 + 128 + Capacity Excess + Capacity Excess + 1 + 1 + true + true + false + false + true + false + false + false + 56 + 56 + Capacity excess (above Max Capacity Reserves) + true + + + 1269 + 227 + 8 + 129 + Capacity Shadow Price + Capacity Shadow Price + 31 + 31 + true + true + false + false + true + false + false + false + 68 + 68 + Shadow price of capacity + true + + + 1270 + 227 + 8 + 130 + LRMC + LRMC + 33 + 33 + false + true + false + false + true + false + false + false + 1034 + 1034 + Long-run marginal cost of production + true + + + 1271 + 227 + 8 + 131 + Capacity Payments + Capacity Payments + 14 + 34 + true + true + false + false + true + false + true + true + 883 + 883 + Payments made for capacity + true + + + 1272 + 227 + 8 + 132 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the zone + true + + + 1273 + 227 + 8 + 133 + Capacity Shortage Cost + Capacity Shortage Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1225 + 1225 + Cost of capacity shortage priced at [Capacity Shortage Price]. + true + + + 1274 + 227 + 8 + 134 + Capacity Excess Cost + Capacity Excess Cost + 14 + 34 + true + true + false + true + true + false + false + false + 1226 + 1226 + Cost of capacity excess priced at [Capacity Excess Price]. + true + + + 1275 + 227 + 8 + 135 + Total Generator Revenue + Total Generator Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1140 + 1140 + Total generator revenue including capacity payments. + true + + + 1276 + 227 + 8 + 136 + Generator Build Cost + Generator Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 241 + 241 + Cost of units built + true + + + 1277 + 227 + 8 + 137 + Generator Retirement Cost + Generator Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 251 + 251 + Cost of units retired + true + + + 1278 + 227 + 8 + 138 + Transmission Build Cost + Transmission Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 794 + 794 + Cost of transmission lines built + true + + + 1279 + 227 + 8 + 139 + Transmission Retirement Cost + Transmission Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 799 + 799 + Cost of transmission lines retired + true + + + 1280 + 227 + 8 + 140 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 1281 + 227 + 8 + 141 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 1282 + 227 + 8 + 142 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 1283 + 227 + 12 + 143 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1284 + 227 + 12 + 144 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1285 + 227 + 12 + 145 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1286 + 234 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Emissions + true + + + 1287 + 234 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 1288 + 234 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 1289 + 234 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 1290 + 234 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 1291 + 234 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 1292 + 234 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 1293 + 234 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 1294 + 234 + 1 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost + true + + + 1295 + 242 + 1 + 1 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability between the zones in the reference direction. + true + + + 1296 + 242 + 1 + 2 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability between the zones in the counter-reference direction. + true + + + 1297 + 242 + 1 + 3 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the zone + true + + + 1298 + 242 + 1 + 4 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to parent zone from child zone. + true + + + 1299 + 242 + 1 + 5 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) from parent zone to child zone. + true + + + 1300 + 242 + 1 + 6 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the zone + true + + + 1301 + 242 + 1 + 7 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the zone + true + + + 1302 + 242 + 1 + 8 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost). + true + + + 1303 + 242 + 1 + 9 + Wheeling Cost + Wheeling Cost + 14 + 14 + true + true + false + false + true + false + true + true + 860 + 860 + Wheeling cost on exports to the zone + true + + + 1304 + 261 + 3 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Load + true + + + 1305 + 261 + 3 + 2 + Native Load + Native Load + 1 + 2 + true + true + false + false + true + false + true + true + 1817 + 1817 + Native load + true + + + 1306 + 261 + 3 + 3 + Fixed Load + Fixed Load + 1 + 2 + true + true + false + false + true + false + true + true + 200 + 200 + Fixed load at the node + true + + + 1307 + 261 + 3 + 4 + Fixed Generation + Fixed Generation + 1 + 2 + true + true + false + false + true + false + true + true + 198 + 198 + Fixed (or embedded) generation at the node + true + + + 1308 + 261 + 3 + 5 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation + true + + + 1309 + 261 + 3 + 6 + Generator Auxiliary Use + Generator Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 1243 + 1243 + Load from generator auxiliaries + true + + + 1310 + 261 + 3 + 7 + Generation Sent Out + Generation Sent Out + 1 + 2 + true + true + false + false + true + false + true + true + 1244 + 1244 + Generation net of auxiliaries + true + + + 1311 + 261 + 3 + 8 + Pump Generation + Pump Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2232 + 2232 + Generation from pumped storage + true + + + 1312 + 261 + 3 + 9 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Pump load + true + + + 1313 + 261 + 3 + 10 + Battery Generation + Battery Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2233 + 2233 + Generation from batteries + true + + + 1314 + 261 + 3 + 11 + Battery Load + Battery Load + 1 + 2 + true + true + false + false + true + false + true + true + 2234 + 2234 + Charging load from batteries + true + + + 1315 + 261 + 3 + 12 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 1316 + 261 + 3 + 13 + Net Contract Load + Net Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 532 + 532 + Net of contract sales and generation + true + + + 1317 + 261 + 3 + 14 + Charging Station Load + Charging Station Load + 1 + 2 + true + true + false + false + true + false + true + true + 2123 + 2123 + Load from Charging Stations + true + + + 1318 + 261 + 3 + 15 + Charging Station Deferred Load + Charging Station Deferred Load + 1 + 2 + true + true + false + false + true + false + true + true + 2127 + 2127 + Load from Charging Stations deferred + true + + + 1319 + 261 + 3 + 16 + Charging Station Hours Deferred + Charging Station Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2155 + 2155 + Average hours Charging Station load is deferred in the period + true + + + 1320 + 261 + 3 + 17 + Charging Station Generation + Charging Station Generation + 1 + 2 + true + true + false + false + true + false + true + true + 2124 + 2124 + Generation from Charging Stations + true + + + 1321 + 261 + 3 + 18 + Net Market Sales + Net Market Sales + 1 + 2 + true + true + false + false + true + false + true + true + 545 + 545 + Net sales to external energy markets + true + + + 1322 + 261 + 3 + 19 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1323 + 261 + 3 + 20 + Demand Curtailed + Demand Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 135 + 135 + Demand-side participation bids cleared + true + + + 1324 + 261 + 3 + 21 + DSP Bid Quantity + DSP Bid Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 156 + 156 + Demand-side participation bid quantity + true + + + 1325 + 261 + 3 + 22 + DSP Bid Price + DSP Bid Price + 33 + 33 + true + true + true + false + true + false + true + true + 155 + 155 + Demand-side participation bid price + true + + + 1326 + 261 + 3 + 23 + DSP Bid Cleared + DSP Bid Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 1398 + 1398 + Quantity cleared in demand-side participation bid band + true + + + 1327 + 261 + 3 + 24 + Cleared DSP Bid Price + Cleared DSP Bid Price + 33 + 33 + true + true + false + false + true + false + true + true + 1400 + 1400 + Price of marginal demand-side participation bid band + true + + + 1328 + 261 + 3 + 25 + Cleared DSP Bid Cost + Cleared DSP Bid Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1401 + 1401 + Value of cleared demand-side participation bids + true + + + 1329 + 261 + 3 + 26 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load served to customers at the node + true + + + 1330 + 261 + 3 + 27 + Imports + Imports + 1 + 2 + true + true + false + false + true + false + true + true + 294 + 294 + Imports to the node + true + + + 1331 + 261 + 3 + 28 + Exports + Exports + 1 + 2 + true + true + false + false + true + false + true + true + 192 + 192 + Exports from the node + true + + + 1332 + 261 + 3 + 29 + Net DC Export + Net DC Export + 1 + 2 + true + true + false + false + true + false + true + true + 929 + 929 + Export from the node on DC lines net of losses + true + + + 1333 + 261 + 3 + 30 + Net Injection + Net Injection + 1 + 2 + true + true + false + false + true + false + true + true + 542 + 542 + Net injection (exports - imports) + true + + + 1334 + 261 + 3 + 31 + Unserved Energy + Unserved Energy + 1 + 2 + true + true + false + false + true + false + true + true + 825 + 825 + Unserved energy (USE) + true + + + 1335 + 261 + 3 + 32 + Dump Energy + Dump Energy + 1 + 2 + true + true + false + false + true + false + true + true + 158 + 158 + Dump energy + true + + + 1336 + 261 + 3 + 33 + Losses + Losses + 1 + 2 + true + true + false + false + true + false + true + true + 924 + 924 + Losses allocated to the node + true + + + 1337 + 261 + 3 + 34 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow through the node + true + + + 1338 + 261 + 3 + 35 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Locational marginal price + true + + + 1339 + 261 + 3 + 36 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of locational marginal price + true + + + 1340 + 261 + 3 + 37 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of locational marginal price + true + + + 1341 + 261 + 3 + 38 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of locational marginal price + true + + + 1342 + 261 + 3 + 39 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Marginal loss factor to slack bus(es) + true + + + 1343 + 261 + 3 + 40 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage + true + + + 1344 + 261 + 3 + 41 + Phase Angle + Phase Angle + 11 + 11 + true + false + false + false + true + false + true + true + 607 + 607 + Node phase angle + true + + + 1345 + 261 + 3 + 42 + Injection Mismatch + Injection Mismatch + 1 + 2 + true + true + false + false + true + false + true + true + 2067 + 2067 + Absolute value of mismatch of injection due to PTDF threshold. + true + + + 1346 + 261 + 6 + 43 + Peak Load + Peak Load + 1 + 1 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load across the current period + true + + + 1347 + 261 + 6 + 44 + Generation Capacity + Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 229 + 229 + Rated capacity (Rating x Units) + true + + + 1348 + 261 + 6 + 45 + Firm Generation Capacity + Firm Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 1011 + 1011 + Firm capacity provided by generators + true + + + 1349 + 261 + 6 + 46 + Curtailable Load + Curtailable Load + 1 + 1 + true + true + false + false + true + true + true + true + 121 + 121 + Curtailable (dispatchable) load + true + + + 1350 + 261 + 6 + 47 + Contract Generation Capacity + Contract Generation Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 103 + 103 + Physical contract generation capacity + true + + + 1351 + 261 + 6 + 48 + Contract Load Obligation + Contract Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 105 + 105 + Physical contract load obligation + true + + + 1352 + 261 + 6 + 49 + Import Capacity + Import Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 288 + 288 + Total import capacity to the Node. + true + + + 1353 + 261 + 6 + 50 + Export Capacity + Export Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 186 + 186 + Total export capacity from the Node. + true + + + 1354 + 261 + 6 + 51 + Net Capacity Interchange + Net Capacity Interchange + 1 + 1 + true + true + false + false + true + true + true + true + 531 + 531 + Export Capability - Import Capability + true + + + 1355 + 261 + 6 + 52 + Min Capacity Reserves + Min Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves + true + + + 1356 + 261 + 6 + 53 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 1357 + 261 + 6 + 54 + Min Load + Min Load + 1 + 1 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 1358 + 261 + 7 + 55 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Discrete maintenance (defined by Units Out) + true + + + 1359 + 261 + 7 + 56 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Maintenance notionally allocated to period + true + + + 1360 + 261 + 7 + 57 + Maintenance Factor + Maintenance Factor + 0 + 0 + true + true + false + false + false + true + false + false + 394 + 394 + Maintenance biasing factor + true + + + 1361 + 261 + 7 + 58 + EENS + EENS + 3 + 3 + true + true + false + false + false + true + false + false + 161 + 161 + Expected Energy Not Served (summary type "Sum") + true + + + 1362 + 261 + 7 + 59 + EDNS + EDNS + 1 + 1 + true + true + false + false + false + true + false + false + 160 + 160 + Expected Demand Not Served (summary type "Average") + true + + + 1363 + 261 + 7 + 60 + LOLE + LOLE + 7 + 7 + true + true + false + false + false + true + false + false + 365 + 365 + Loss Of Load Expected (summary type "Sum") + true + + + 1364 + 261 + 7 + 61 + LOLP + LOLP + 12 + 12 + true + true + false + false + false + true + false + false + 366 + 366 + Loss Of Load Probability (summary type "Average") + true + + + 1365 + 261 + 12 + 62 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1366 + 261 + 12 + 63 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1367 + 261 + 12 + 64 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1368 + 272 + 1 + 1 + Sales + Sales + 1 + 2 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 1369 + 272 + 1 + 2 + Purchases + Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 1370 + 272 + 1 + 3 + Net Sales + Net Sales + 1 + 2 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 1371 + 272 + 1 + 4 + Net Purchases + Net Purchases + 1 + 2 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 1372 + 272 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 1373 + 272 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 1374 + 272 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 1375 + 272 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 1376 + 278 + 12 + 1 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1377 + 278 + 12 + 2 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1378 + 278 + 12 + 3 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1379 + 283 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Flag if the line is in service (0,1) + true + + + 1380 + 283 + 3 + 2 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow + true + + + 1381 + 283 + 3 + 3 + Flow Back + Flow Back + 1 + 2 + true + true + false + false + true + false + true + true + 206 + 206 + Flow on the line in the counter-reference direction + true + + + 1382 + 283 + 3 + 4 + Net Flow + Net Flow + 1 + 2 + false + true + false + false + true + false + true + true + 1816 + 1816 + Net Flow on the line + true + + + 1383 + 283 + 3 + 5 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the line + true + + + 1384 + 283 + 3 + 6 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the line + true + + + 1385 + 283 + 3 + 7 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1386 + 283 + 3 + 8 + Loading Back + Loading Back + 12 + 12 + false + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1387 + 283 + 3 + 9 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours line is congested in the reference direction + true + + + 1388 + 283 + 3 + 10 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours line is congested in the counter-reference direction + true + + + 1389 + 283 + 3 + 11 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow/expansion price + true + + + 1390 + 283 + 3 + 12 + Shadow Price Back + Shadow Price Back + 32 + 32 + true + true + false + false + true + false + true + true + 743 + 743 + Shadow/expansion price for counter-reference direction flows + true + + + 1391 + 283 + 3 + 13 + Violation Hours + Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 283 + 283 + If the line is flowing above is minimum or maximum rating + true + + + 1392 + 283 + 3 + 14 + Violation Back Hours + Violation Back Hours + 6 + 6 + false + true + false + false + true + false + true + true + 284 + 284 + Number of hours the flow limit is violated in the counter-reference direction. + true + + + 1393 + 283 + 3 + 15 + Violation + Violation + 1 + 2 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of flow limit + true + + + 1394 + 283 + 3 + 16 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the flow limit in the counter-reference direction. + true + + + 1395 + 283 + 3 + 17 + Violation Cost + Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 845 + 845 + Cost of violating flow limits + true + + + 1396 + 283 + 3 + 18 + Violation Cost Back + Violation Cost Back + 14 + 34 + false + true + false + true + true + false + true + true + 846 + 846 + Cost of violating the flow limit in the counter-reference direction. + true + + + 1397 + 283 + 3 + 19 + Ramp + Ramp + 1 + 1 + true + false + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 1398 + 283 + 3 + 20 + Ramp Cost + Ramp Cost + 14 + 34 + true + true + false + true + true + false + true + true + 869 + 869 + Cost of ramping + true + + + 1399 + 283 + 3 + 21 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow + true + + + 1400 + 283 + 3 + 22 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow + true + + + 1401 + 283 + 3 + 23 + Fixed Flow + Fixed Flow + 1 + 2 + true + true + false + false + true + false + true + true + 197 + 197 + Fixed flow on line + true + + + 1402 + 283 + 3 + 24 + Fixed Flow Violation + Fixed Flow Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1325 + 1325 + Violation of [Fixed Flow] constraint. + true + + + 1403 + 283 + 3 + 25 + Fixed Flow Violation Hours + Fixed Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1327 + 1327 + Number of hours that [Fixed Flow] is violated. + true + + + 1404 + 283 + 3 + 26 + Fixed Flow Violation Cost + Fixed Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1326 + 1326 + Cost of [Fixed Flow] violations. + true + + + 1405 + 283 + 3 + 27 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of energy exported + true + + + 1406 + 283 + 3 + 28 + Import Cost + Import Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1234 + 1234 + Cost of energy imported + true + + + 1407 + 283 + 3 + 29 + Export Revenue + Export Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1235 + 1235 + Revenue from energy exported + true + + + 1408 + 283 + 3 + 30 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from energy imported + true + + + 1409 + 283 + 3 + 31 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Rental / settlement surplus + true + + + 1410 + 283 + 3 + 32 + Rental Back + Rental Back + 14 + 34 + false + true + false + false + true + false + true + true + 679 + 679 + Rental / settlement surplus in the counter-reference direction + true + + + 1411 + 283 + 3 + 33 + Wheeling Cost + Wheeling Cost + 14 + 34 + true + true + false + true + true + false + true + true + 860 + 860 + Wheeling cost + true + + + 1412 + 283 + 3 + 34 + Wheeling Cost Back + Wheeling Cost Back + 14 + 34 + true + true + false + false + true + false + true + true + 861 + 861 + Wheeling cost of flows in the counter-reference direction + true + + + 1413 + 283 + 3 + 35 + Loss + Loss + 1 + 2 + true + true + false + false + true + false + true + true + 372 + 372 + Losses + true + + + 1414 + 283 + 3 + 36 + Loss Back + Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 374 + 374 + Losses on flows in the counter-reference direction + true + + + 1415 + 283 + 3 + 37 + Marginal Loss + Marginal Loss + 12 + 12 + true + true + false + false + true + false + true + true + 403 + 403 + Marginal loss + true + + + 1416 + 283 + 3 + 38 + Marginal Loss Factor + Marginal Loss Factor + 0 + 0 + true + true + false + false + true + false + true + true + 377 + 377 + Transmission marginal loss factor (MLF or TLF) for exports + true + + + 1417 + 283 + 3 + 39 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage of the line + true + + + 1418 + 283 + 3 + 40 + Offer Base + Offer Base + 1 + 1 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for balancing offer + true + + + 1419 + 283 + 3 + 41 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band for reference direction flows + true + + + 1420 + 283 + 3 + 42 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price offered in band for reference direction flows + true + + + 1421 + 283 + 3 + 43 + Offer Quantity Back + Offer Quantity Back + 1 + 2 + true + true + true + false + true + false + true + true + 573 + 573 + Quantity offered in band for counter-reference direction flows + true + + + 1422 + 283 + 3 + 44 + Offer Price Back + Offer Price Back + 33 + 33 + true + true + true + false + true + false + true + true + 570 + 570 + Price offered in band for counter-reference direction flows + true + + + 1423 + 283 + 3 + 45 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 1424 + 283 + 3 + 46 + Offer Cleared Back + Offer Cleared Back + 1 + 2 + true + true + true + false + true + false + true + true + 567 + 567 + Quantity cleared in band + true + + + 1425 + 283 + 3 + 47 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 1426 + 283 + 3 + 48 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under offer curve + true + + + 1427 + 283 + 3 + 49 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1428 + 283 + 3 + 50 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 1429 + 283 + 3 + 51 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 1430 + 283 + 3 + 52 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 1431 + 283 + 6 + 53 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Capacity x Units) + false + + + 1432 + 283 + 6 + 54 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Net capacity reserves exported + true + + + 1433 + 283 + 6 + 55 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + false + false + 1012 + 1012 + Contribution of the line to region capacity reserves + true + + + 1434 + 283 + 6 + 56 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the line. + true + + + 1435 + 283 + 6 + 57 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the line in the counter-reference direction. + true + + + 1436 + 283 + 7 + 58 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units (circuits) out of service + true + + + 1437 + 283 + 7 + 59 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Total capacity out of service in the reference direction (discrete + distributed) + true + + + 1438 + 283 + 7 + 60 + Maintenance Back + Maintenance Back + 1 + 2 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 1439 + 283 + 7 + 61 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 1440 + 283 + 7 + 62 + Discrete Maintenance Back + Discrete Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 1441 + 283 + 7 + 63 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 1442 + 283 + 7 + 64 + Distributed Maintenance Back + Distributed Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 1443 + 283 + 7 + 65 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 1444 + 283 + 7 + 66 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1445 + 283 + 7 + 67 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 1446 + 283 + 7 + 68 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for transfer + true + + + 1447 + 283 + 8 + 69 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 1448 + 283 + 8 + 70 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 1449 + 283 + 8 + 71 + Export Capacity Built + Export Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 187 + 187 + Export capacity gained from new builds + true + + + 1450 + 283 + 8 + 72 + Import Capacity Built + Import Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 289 + 289 + Import capacity gained from new builds + true + + + 1451 + 283 + 8 + 73 + Export Capacity Retired + Export Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 190 + 190 + Export capacity lost to retirements + true + + + 1452 + 283 + 8 + 74 + Import Capacity Retired + Import Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 292 + 292 + Import capacity lost to retirements + true + + + 1453 + 283 + 8 + 75 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the line + true + + + 1454 + 283 + 8 + 76 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the line + true + + + 1455 + 283 + 12 + 77 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1456 + 283 + 12 + 78 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1457 + 283 + 12 + 79 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1458 + 299 + 3 + 1 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow through the transformer (sent out) + true + + + 1459 + 299 + 3 + 2 + Flow Back + Flow Back + 1 + 2 + false + true + false + false + true + false + true + true + 206 + 206 + Flow through the transformer in the counter-reference direction + true + + + 1460 + 299 + 3 + 3 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the transformer + true + + + 1461 + 299 + 3 + 4 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the line + true + + + 1462 + 299 + 3 + 5 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1463 + 299 + 3 + 6 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1464 + 299 + 3 + 7 + Loss + Loss + 1 + 2 + true + true + false + false + true + false + true + true + 372 + 372 + Losses (sent out) + true + + + 1465 + 299 + 3 + 8 + Loss Back + Loss Back + 1 + 2 + true + true + false + false + true + false + true + true + 374 + 374 + Losses on flows in the counter-reference direction + true + + + 1466 + 299 + 3 + 9 + Voltage + Voltage + 4 + 4 + true + true + false + false + true + false + true + true + 848 + 848 + Voltage of the transformer + true + + + 1467 + 299 + 3 + 10 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the Transformer is flowing at its [Rating]. + true + + + 1468 + 299 + 3 + 11 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow/expansion price + true + + + 1469 + 299 + 3 + 12 + Violation Hours + Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 283 + 283 + Number of hours the Transformer Flow exceeds the [Rating]. + true + + + 1470 + 299 + 3 + 13 + Violation Back Hours + Violation Back Hours + 6 + 6 + false + true + false + false + true + false + true + true + 284 + 284 + Number of hours the flow limit is violated in the counter-reference direction. + true + + + 1471 + 299 + 3 + 14 + Violation + Violation + 1 + 2 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of flow limit + true + + + 1472 + 299 + 3 + 15 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the flow limit in the counter-reference direction. + true + + + 1473 + 299 + 3 + 16 + Violation Cost + Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 845 + 845 + Cost of violating flow limits + true + + + 1474 + 299 + 3 + 17 + Violation Cost Back + Violation Cost Back + 14 + 34 + false + true + false + true + true + false + true + true + 846 + 846 + Cost of violating the flow limit in the counter-reference direction. + true + + + 1475 + 299 + 3 + 18 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow + true + + + 1476 + 299 + 3 + 19 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow + true + + + 1477 + 299 + 3 + 20 + Export Cost + Export Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1233 + 1233 + Cost of energy exported + true + + + 1478 + 299 + 3 + 21 + Import Cost + Import Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1234 + 1234 + Cost of energy imported + true + + + 1479 + 299 + 3 + 22 + Export Revenue + Export Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1235 + 1235 + Revenue from energy exported + true + + + 1480 + 299 + 3 + 23 + Import Revenue + Import Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1236 + 1236 + Revenue from energy imported + true + + + 1481 + 299 + 3 + 24 + Rental + Rental + 14 + 34 + true + true + false + false + true + false + true + true + 678 + 678 + Transmission rent + true + + + 1482 + 299 + 3 + 25 + Rental Back + Rental Back + 14 + 34 + false + true + false + false + true + false + true + true + 679 + 679 + Rental / settlement surplus in the counter-reference direction + true + + + 1483 + 299 + 7 + 26 + Maintenance + Maintenance + 1 + 2 + true + true + false + false + true + true + true + true + 392 + 392 + Total capacity out of service in the reference direction (discrete + distributed) + true + + + 1484 + 299 + 7 + 27 + Maintenance Back + Maintenance Back + 1 + 2 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 1485 + 299 + 7 + 28 + Discrete Maintenance + Discrete Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 1486 + 299 + 7 + 29 + Discrete Maintenance Back + Discrete Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 1487 + 299 + 7 + 30 + Distributed Maintenance + Distributed Maintenance + 1 + 2 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 1488 + 299 + 7 + 31 + Distributed Maintenance Back + Distributed Maintenance Back + 1 + 2 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 1489 + 299 + 7 + 32 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of installed capacity on maintenance outage + true + + + 1490 + 299 + 7 + 33 + Forced Outage + Forced Outage + 1 + 2 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1491 + 299 + 7 + 34 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of installed capacity on forced outage + true + + + 1492 + 299 + 7 + 35 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of installed capacity available for transfer + true + + + 1493 + 299 + 6 + 36 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the transformer. + true + + + 1494 + 299 + 6 + 37 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the transformer in the counter-reference direction. + true + + + 1495 + 299 + 6 + 38 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Rating (o.w. Max Flow) x Units) + false + + + 1496 + 299 + 12 + 39 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1497 + 299 + 12 + 40 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1498 + 299 + 12 + 41 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1499 + 306 + 3 + 1 + Angle + Angle + 11 + 11 + true + true + false + false + true + false + true + true + 14 + 14 + Angle (initial angle when used as input) + true + + + 1500 + 306 + 3 + 2 + Min Angle + Min Angle + 11 + 11 + true + true + false + false + true + false + true + true + 472 + 472 + Min angle set on the flow control + true + + + 1501 + 306 + 3 + 3 + Max Angle + Max Angle + 11 + 11 + true + true + false + false + true + false + true + true + 411 + 411 + Max angle set on the flow control + true + + + 1502 + 306 + 3 + 4 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Equivalent flow in reference direction due to phase shift + true + + + 1503 + 306 + 3 + 5 + Flow Back + Flow Back + 1 + 2 + true + true + false + false + true + false + true + true + 206 + 206 + Equivalent flow against reference direction due to phase shift + true + + + 1504 + 306 + 3 + 6 + Impedance + Impedance + 10 + 10 + true + true + false + false + true + false + true + true + 1782 + 1782 + Equivalent impedance + true + + + 1505 + 306 + 3 + 7 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + false + true + true + 276 + 276 + Number of hours the flow control is operating at maximum angle. + true + + + 1506 + 306 + 3 + 8 + Shadow Price + Shadow Price + 43 + 43 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow (expansion) price + true + + + 1507 + 306 + 3 + 9 + Rental + Rental + 14 + 34 + true + true + false + false + true + false + true + true + 678 + 678 + Rental + true + + + 1508 + 306 + 3 + 10 + Penalty + Penalty + 14 + 34 + true + true + false + false + true + false + true + true + 602 + 602 + Penalty incurred for shifting the angle + true + + + 1509 + 306 + 8 + 11 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Binary indicating if the unit was built + true + + + 1510 + 306 + 8 + 12 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the flow control + true + + + 1511 + 306 + 12 + 13 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1512 + 306 + 12 + 14 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1513 + 306 + 12 + 15 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1514 + 313 + 3 + 1 + Flow + Flow + 1 + 2 + true + true + false + false + true + false + true + true + 205 + 205 + Flow on the interface + true + + + 1515 + 313 + 3 + 2 + Flow Back + Flow Back + 1 + 2 + false + true + false + false + true + false + true + true + 206 + 206 + Flow on the interface in the counter-reference direction + true + + + 1516 + 313 + 3 + 3 + Net Flow + Net Flow + 1 + 2 + false + true + false + false + true + false + true + true + 1816 + 1816 + Net Flow on the interface + true + + + 1517 + 313 + 3 + 4 + Export Limit + Export Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the interface + true + + + 1518 + 313 + 3 + 5 + Import Limit + Import Limit + 1 + 1 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the interface + true + + + 1519 + 313 + 3 + 6 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to thermal limit. + true + + + 1520 + 313 + 3 + 7 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to thermal limit. + true + + + 1521 + 313 + 3 + 8 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the interface is congested. + true + + + 1522 + 313 + 3 + 9 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the interface flow is congested in the counter-reference direction + true + + + 1523 + 313 + 3 + 10 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of interface limit in the reference direction + true + + + 1524 + 313 + 3 + 11 + Shadow Price Back + Shadow Price Back + 32 + 32 + false + true + false + false + true + false + true + true + 743 + 743 + Shadow price of interface limit in the counter-reference direction + true + + + 1525 + 313 + 3 + 12 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Flowgate rental + true + + + 1526 + 313 + 3 + 13 + Violation + Violation + 1 + 1 + true + true + false + false + true + false + true + true + 843 + 843 + Violation of the interface limit. + true + + + 1527 + 313 + 3 + 14 + Violation Back + Violation Back + 1 + 2 + false + true + false + false + true + false + true + true + 844 + 844 + Violation of the interface limit in the counter-reference direction. + true + + + 1528 + 313 + 3 + 15 + Ramp + Ramp + 1 + 1 + true + false + false + false + true + false + true + true + 655 + 655 + Change in flow + true + + + 1529 + 313 + 3 + 16 + Ramp Cost + Ramp Cost + 14 + 34 + true + true + false + true + true + false + true + true + 869 + 869 + Cost of ramping + true + + + 1530 + 313 + 3 + 17 + Max Flow + Max Flow + 1 + 1 + false + true + false + false + true + false + true + true + 429 + 429 + Maximum flow on interface + true + + + 1531 + 313 + 3 + 18 + Min Flow + Min Flow + 1 + 1 + false + true + false + false + true + false + true + true + 481 + 481 + Minimum flow on interface + true + + + 1532 + 313 + 3 + 19 + Fixed Flow + Fixed Flow + 1 + 2 + true + true + false + false + true + false + true + true + 197 + 197 + Fixed flow on interface + true + + + 1533 + 313 + 3 + 20 + Fixed Flow Violation + Fixed Flow Violation + 1 + 2 + true + true + false + false + true + false + true + true + 1325 + 1325 + Violation of [Fixed Flow] constraint. + true + + + 1534 + 313 + 3 + 21 + Fixed Flow Violation Hours + Fixed Flow Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1327 + 1327 + Number of hours that [Fixed Flow] is violated. + true + + + 1535 + 313 + 3 + 22 + Fixed Flow Violation Cost + Fixed Flow Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1326 + 1326 + Cost of [Fixed Flow] violations. + true + + + 1536 + 313 + 3 + 23 + Offer Base + Offer Base + 1 + 1 + true + true + false + false + true + false + true + true + 565 + 565 + Base dispatch point for balancing offer + true + + + 1537 + 313 + 3 + 24 + Offer Quantity + Offer Quantity + 1 + 2 + true + true + true + false + true + false + true + true + 572 + 572 + Quantity offered in band for reference direction flows + true + + + 1538 + 313 + 3 + 25 + Offer Price + Offer Price + 33 + 33 + true + true + true + false + true + false + true + true + 569 + 569 + Price offered in band for reference direction flows + true + + + 1539 + 313 + 3 + 26 + Offer Quantity Back + Offer Quantity Back + 1 + 2 + true + true + true + false + true + false + true + true + 573 + 573 + Quantity offered in band for counter-reference direction flows + true + + + 1540 + 313 + 3 + 27 + Offer Price Back + Offer Price Back + 33 + 33 + true + true + true + false + true + false + true + true + 570 + 570 + Price offered in band for counter-reference direction flows + true + + + 1541 + 313 + 3 + 28 + Offer Cleared + Offer Cleared + 1 + 2 + true + true + true + false + true + false + true + true + 566 + 566 + Quantity cleared in band + true + + + 1542 + 313 + 3 + 29 + Offer Cleared Back + Offer Cleared Back + 1 + 2 + true + true + true + false + true + false + true + true + 567 + 567 + Quantity cleared in band + true + + + 1543 + 313 + 3 + 30 + Cleared Offer Price + Cleared Offer Price + 33 + 33 + true + true + false + false + true + false + true + true + 886 + 886 + Price of marginal offer band + true + + + 1544 + 313 + 3 + 31 + Cleared Offer Cost + Cleared Offer Cost + 14 + 34 + true + true + false + true + true + false + true + true + 82 + 82 + Area cleared under offer curve + true + + + 1545 + 313 + 6 + 32 + Available Transfer Capability + Available Transfer Capability + 1 + 2 + true + true + false + false + true + false + true + true + 1184 + 1184 + Available transfer capability on the interface. + true + + + 1546 + 313 + 6 + 33 + Available Transfer Capability Back + Available Transfer Capability Back + 1 + 2 + true + true + false + false + true + false + true + true + 1333 + 1333 + Available transfer capability on the interface in the counter-reference direction. + true + + + 1547 + 313 + 6 + 34 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the interface to region capacity reserves + true + + + 1548 + 313 + 6 + 35 + Capacity Reserves + Capacity Reserves + 1 + 1 + true + true + false + false + true + true + true + true + 1012 + 1012 + Reserve provided by lines in the interface + true + + + 1549 + 313 + 8 + 36 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (expansion of interface in both directions) + true + + + 1550 + 313 + 8 + 37 + Expansion Cost + Expansion Cost + 34 + 34 + true + true + false + false + true + false + false + false + 184 + 184 + Cost of expanding the interface by one megawatt + true + + + 1551 + 313 + 12 + 38 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1552 + 313 + 12 + 39 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1553 + 313 + 12 + 40 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1554 + 321 + 3 + 1 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + false + true + true + 276 + 276 + Number of hours that any monitored limit under the Contingency is binding. + true + + + 1555 + 321 + 3 + 2 + Shadow Price + Shadow Price + 32 + 32 + true + true + false + false + true + false + true + true + 742 + 742 + Contingency shadow price + true + + + 1556 + 321 + 12 + 3 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1557 + 321 + 12 + 4 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1558 + 321 + 12 + 5 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1559 + 326 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Post-Contingent Flows + true + + + 1560 + 326 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price for contingency constraint + true + + + 1561 + 328 + 1 + 1 + Post-Contingency Flow + Post-Contingency Flow + 1 + 2 + true + true + false + false + true + false + true + true + 2238 + 2238 + Post-Contingent Flows + true + + + 1562 + 328 + 1 + 2 + Shadow Price + Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price for contingency constraint + true + + + 1563 + 330 + 3 + 1 + Price + Price + 33 + 33 + true + true + false + false + true + false + true + true + 612 + 612 + Price at the hub + true + + + 1564 + 330 + 3 + 2 + Customer Load + Customer Load + 1 + 2 + true + true + false + false + true + false + true + true + 123 + 123 + Load net of generator auxiliaries and losses + true + + + 1565 + 330 + 3 + 3 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Generation net of pump load + true + + + 1566 + 330 + 3 + 4 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Cost to load their energy purchases + true + + + 1567 + 330 + 3 + 5 + Generator Pool Revenue + Generator Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 248 + 248 + Total generator pool revenue + true + + + 1568 + 330 + 3 + 6 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 1569 + 330 + 3 + 7 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 1570 + 330 + 3 + 8 + Marginal Loss Charge + Marginal Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 404 + 404 + Marginal loss component of the hub price + true + + + 1571 + 330 + 3 + 9 + Energy Charge + Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 174 + 174 + Energy component of the hub price + true + + + 1572 + 330 + 3 + 10 + Congestion Charge + Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 90 + 90 + Congestion component of the hub price + true + + + 1573 + 330 + 12 + 11 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1574 + 330 + 12 + 12 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1575 + 330 + 12 + 13 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1576 + 335 + 1 + 1 + Quantity + Quantity + 1 + 2 + true + true + false + false + true + false + true + true + 650 + 650 + Contract quantity + true + + + 1577 + 335 + 1 + 2 + Settlement + Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 738 + 738 + Settlement + true + + + 1578 + 335 + 1 + 3 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Settlement net of scheduled Price + true + + + 1579 + 335 + 1 + 4 + Source Price + Source Price + 33 + 33 + true + true + false + false + true + false + true + true + 1783 + 1783 + Price on source side + true + + + 1580 + 335 + 1 + 5 + Source Energy Charge + Source Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1784 + 1784 + Energy charge on source side + true + + + 1581 + 335 + 1 + 6 + Source Congestion Charge + Source Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1785 + 1785 + Congestion charge on source side + true + + + 1582 + 335 + 1 + 7 + Source Loss Charge + Source Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1786 + 1786 + Loss charge on source side + true + + + 1583 + 335 + 1 + 8 + Sink Price + Sink Price + 33 + 33 + true + true + false + false + true + false + true + true + 1787 + 1787 + Price on sink side + true + + + 1584 + 335 + 1 + 9 + Sink Energy Charge + Sink Energy Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1788 + 1788 + Energy charge on sink side + true + + + 1585 + 335 + 1 + 10 + Sink Congestion Charge + Sink Congestion Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1789 + 1789 + Congestion charge on sink side + true + + + 1586 + 335 + 1 + 11 + Sink Loss Charge + Sink Loss Charge + 33 + 33 + true + true + false + false + true + false + true + true + 1790 + 1790 + Loss charge on sink side + true + + + 1587 + 335 + 1 + 12 + Settlement Price + Settlement Price + 33 + 33 + true + true + false + false + true + false + true + true + 739 + 739 + Price difference between the source and sink side + true + + + 1588 + 346 + 3 + 1 + Heat Production + Heat Production + 15 + 16 + true + true + false + true + true + false + true + true + 257 + 257 + Heat production + true + + + 1589 + 346 + 3 + 2 + Heat Production Cost + Heat Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 259 + 259 + Heat production cost + true + + + 1590 + 346 + 3 + 3 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 1591 + 346 + 3 + 4 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1592 + 346 + 3 + 5 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit starts and shutdowns + true + + + 1593 + 346 + 3 + 6 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + false + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 1594 + 346 + 3 + 7 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 1595 + 346 + 3 + 8 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 1596 + 346 + 3 + 9 + Electrical Usage + Electrical Usage + 1 + 2 + true + true + false + false + true + false + true + true + 1938 + 1938 + Electrical usage from the electric boiler + true + + + 1597 + 346 + 3 + 10 + Units Producing Heat + Units Producing Heat + 0 + 0 + true + false + false + false + true + false + true + true + 1939 + 1939 + Number of units producing heat + true + + + 1598 + 346 + 3 + 11 + Ramp + Ramp + 35 + 35 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 1599 + 346 + 3 + 12 + Ramp Up + Ramp Up + 15 + 15 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 1600 + 346 + 3 + 13 + Ramp Down + Ramp Down + 15 + 15 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 1601 + 346 + 3 + 14 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation. + true + + + 1602 + 346 + 3 + 15 + Efficiency + Efficiency + 37 + 37 + true + true + false + false + true + false + true + true + 1209 + 1209 + Efficiency of heat production + true + + + 1603 + 346 + 3 + 16 + Marginal Heat Rate + Marginal Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal heat production level + true + + + 1604 + 346 + 3 + 17 + Average Heat Rate + Average Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 25 + 25 + Average heat rate + true + + + 1605 + 346 + 3 + 18 + SRMC + SRMC + 29 + 29 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 1606 + 346 + 6 + 19 + Installed Capacity + Installed Capacity + 35 + 35 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity + true + + + 1607 + 346 + 8 + 20 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of Heat Plant units built in this year + true + + + 1608 + 346 + 8 + 21 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 1609 + 346 + 8 + 22 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 1610 + 346 + 8 + 23 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of Heat Plant units retired in this year + true + + + 1611 + 346 + 8 + 24 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the Heat Plant + true + + + 1612 + 346 + 12 + 25 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1613 + 346 + 12 + 26 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1614 + 346 + 12 + 27 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1615 + 349 + 3 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 1616 + 349 + 3 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the heat plant + true + + + 1617 + 349 + 3 + 3 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 1618 + 349 + 3 + 4 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used + true + + + 1619 + 349 + 3 + 5 + Marginal Heat Rate + Marginal Heat Rate + 37 + 37 + true + true + false + false + true + false + true + true + 402 + 402 + Marginal heat rate at optimal heat production level + true + + + 1620 + 349 + 3 + 6 + SRMC + SRMC + 29 + 29 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost (Fuel + VO&M + Emissions) + true + + + 1621 + 349 + 3 + 7 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours the Fuel is in use by the heat plant + true + + + 1622 + 350 + 3 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 1623 + 350 + 3 + 2 + Price + Price + 29 + 29 + true + true + false + false + true + false + true + true + 612 + 612 + Fuel price + true + + + 1624 + 350 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Total cost of fuel used + true + + + 1625 + 358 + 3 + 1 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from heat node + true + + + 1626 + 358 + 3 + 2 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into heat node + true + + + 1627 + 358 + 3 + 3 + Heat Demand + Heat Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1941 + 1941 + Demand at the heat node + true + + + 1628 + 358 + 3 + 4 + Facility Load + Facility Load + 1 + 2 + true + true + false + false + true + false + true + true + 2731 + 2731 + Load from connected Facilities + true + + + 1629 + 358 + 12 + 5 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1630 + 358 + 12 + 6 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1631 + 358 + 12 + 7 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1632 + 364 + 1 + 1 + Sales + Sales + 15 + 16 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 1633 + 364 + 1 + 2 + Purchases + Purchases + 15 + 16 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 1634 + 364 + 1 + 3 + Net Sales + Net Sales + 15 + 16 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 1635 + 364 + 1 + 4 + Net Purchases + Net Purchases + 15 + 16 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 1636 + 364 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 1637 + 364 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 1638 + 364 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 1639 + 364 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 1640 + 368 + 3 + 1 + End Heat + End Heat + 15 + 15 + true + true + false + false + true + false + true + true + 2213 + 2213 + Heat in storage at the end of the period + true + + + 1641 + 368 + 3 + 2 + Initial Heat + Initial Heat + 15 + 15 + true + true + false + false + true + false + true + true + 2212 + 2212 + Initial heat in the storage + true + + + 1642 + 368 + 3 + 3 + Heat Injection + Heat Injection + 15 + 16 + true + true + false + true + true + false + true + true + 1541 + 1541 + Heat injected into storage + true + + + 1643 + 368 + 3 + 4 + Heat Injection Cost + Heat Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1544 + 1544 + Cost of injecting heat into storage + true + + + 1644 + 368 + 3 + 5 + Heat Loss + Heat Loss + 15 + 16 + true + true + false + true + true + false + true + true + 1516 + 1516 + Rate at which heat is lost from storage + true + + + 1645 + 368 + 3 + 6 + Heat Shadow Price + Heat Shadow Price + 61 + 61 + true + true + false + false + true + false + true + true + 1545 + 1545 + Shadow price of heat in storage + true + + + 1646 + 368 + 3 + 7 + Heat Withdrawal + Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1540 + 1540 + Heat withdrawn from storage + true + + + 1647 + 368 + 3 + 8 + Heat Withdrawal Cost + Heat Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1543 + 1543 + Cost of withdrawing heat from storage + true + + + 1648 + 368 + 3 + 9 + Net Heat Withdrawal + Net Heat Withdrawal + 15 + 16 + true + true + false + true + true + false + true + true + 1542 + 1542 + Net of withdrawal and injection + true + + + 1649 + 368 + 3 + 10 + Max Heat + Max Heat + 15 + 15 + true + true + false + true + true + false + true + true + 1514 + 1514 + Maximum heat allowed in storage + true + + + 1650 + 368 + 3 + 11 + Min Heat + Min Heat + 15 + 15 + true + true + false + true + true + false + true + true + 1515 + 1515 + Minimum heat allowed in storage + true + + + 1651 + 368 + 8 + 12 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of Heat Storage units built in this year + true + + + 1652 + 368 + 8 + 13 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building the heat storage + true + + + 1653 + 368 + 8 + 14 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of Heat Storage units retired in this year + true + + + 1654 + 368 + 8 + 15 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring the heat storage + true + + + 1655 + 374 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Gas Field is in service + true + + + 1656 + 374 + 3 + 2 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume of gas in the field + true + + + 1657 + 374 + 3 + 3 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 1658 + 374 + 3 + 4 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas field + true + + + 1659 + 374 + 3 + 5 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Incremental cost of extracting gas from the field + true + + + 1660 + 374 + 3 + 6 + Carrying Cost + Carrying Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2039 + 2039 + Total cost of gas carried in the gas field + true + + + 1661 + 374 + 3 + 7 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost from the Inventory Price of holding gas in a field + true + + + 1662 + 374 + 3 + 8 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Average price of producing gas + true + + + 1663 + 374 + 3 + 9 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch Price + true + + + 1664 + 374 + 3 + 10 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1665 + 374 + 3 + 11 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1666 + 374 + 3 + 12 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the field + true + + + 1667 + 374 + 3 + 13 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas field expansion + true + + + 1668 + 374 + 3 + 14 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by extracting gas from the field + true + + + 1669 + 374 + 7 + 15 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1670 + 374 + 7 + 16 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 1671 + 374 + 7 + 17 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas field is on maintenance + true + + + 1672 + 374 + 7 + 18 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 1673 + 374 + 7 + 19 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas field is on forced outage of production + true + + + 1674 + 374 + 7 + 20 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Field capacity available in production + true + + + 1675 + 374 + 8 + 21 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the gas field is built in this year + true + + + 1676 + 374 + 8 + 22 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of developing the gas field + true + + + 1677 + 374 + 12 + 23 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1678 + 374 + 12 + 24 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1679 + 374 + 12 + 25 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1680 + 379 + 3 + 1 + Production + Production + 58 + 58 + true + true + false + true + true + false + true + true + 624 + 624 + Total production from gas field + true + + + 1681 + 379 + 3 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Production costs associated with company gas field production + true + + + 1682 + 379 + 3 + 3 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance costs + true + + + 1683 + 379 + 3 + 4 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1684 + 379 + 3 + 5 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with gas scarcity + true + + + 1685 + 379 + 3 + 6 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net Revenue + true + + + 1686 + 379 + 3 + 7 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net Profit = Net Revenue - Fixed Costs + true + + + 1687 + 383 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of Gas Plant units in service + true + + + 1688 + 383 + 3 + 2 + Raw Gas + Raw Gas + 58 + 76 + true + true + false + true + true + false + true + true + 1739 + 1739 + The amount of raw gas processed + true + + + 1689 + 383 + 3 + 3 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + The amount of saleable gas processed + true + + + 1690 + 383 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + The total cost for processing the gas + true + + + 1691 + 383 + 3 + 5 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Incremental dispatch price of processing gas + true + + + 1692 + 383 + 3 + 6 + Consumption + Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 1437 + 1437 + The amount of pipeline quality gas consumed in processing + true + + + 1693 + 383 + 3 + 7 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 1815 + 1815 + The total electric consumption of the Gas Plant + true + + + 1694 + 383 + 3 + 8 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Variable operations and maintenance cost + true + + + 1695 + 383 + 3 + 9 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1696 + 383 + 3 + 10 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1697 + 383 + 3 + 11 + SRMC + SRMC + 60 + 60 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost of gas production + true + + + 1698 + 383 + 3 + 12 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served as raw gas to the gas plant + true + + + 1699 + 383 + 3 + 13 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity producing + false + + + 1700 + 383 + 6 + 14 + Installed Capacity + Installed Capacity + 75 + 76 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Production x Units) + false + + + 1701 + 383 + 6 + 15 + Rated Capacity + Rated Capacity + 75 + 76 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + false + + + 1702 + 383 + 3 + 16 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas plant expansion + true + + + 1703 + 383 + 3 + 17 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by extracting gas from the gas plant + true + + + 1704 + 383 + 7 + 18 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1705 + 383 + 7 + 19 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 1706 + 383 + 7 + 20 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas plant is on maintenance + true + + + 1707 + 383 + 7 + 21 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 1708 + 383 + 7 + 22 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas plant is on forced outage of Production + true + + + 1709 + 383 + 7 + 23 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of plant capacity available in production + true + + + 1710 + 383 + 8 + 24 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of gas plant units built + true + + + 1711 + 383 + 8 + 25 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the plant for capacity + false + + + 1712 + 383 + 8 + 26 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + false + + + 1713 + 383 + 8 + 27 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Gas Plant + true + + + 1714 + 383 + 8 + 28 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of gas plant units retired + true + + + 1715 + 383 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Gas Plant + true + + + 1716 + 383 + 12 + 30 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1717 + 383 + 12 + 31 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1718 + 383 + 12 + 32 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1719 + 393 + 3 + 1 + Flow In + Flow In + 75 + 76 + true + true + false + true + true + false + true + true + 1974 + 1974 + Quantity of gas pumped into the pipeline + true + + + 1720 + 393 + 3 + 2 + Flow Out + Flow Out + 75 + 76 + true + true + false + true + true + false + true + true + 1975 + 1975 + Quantity of gas extracted from the pipeline + true + + + 1721 + 393 + 3 + 3 + Max Daily Flow + Max Daily Flow + 75 + 76 + true + true + false + false + true + false + true + true + 2031 + 2031 + Maximum daily flow limit of the pipeline + true + + + 1722 + 393 + 3 + 4 + Max Observed Flow + Max Observed Flow + 75 + 76 + true + true + false + true + true + false + true + true + 2146 + 2146 + Quantity of max observed flow in a pipeline. + true + + + 1723 + 393 + 3 + 5 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the pipeline is congested in the reference direction + true + + + 1724 + 393 + 3 + 6 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the pipeline is congested in the counter-reference direction + true + + + 1725 + 393 + 3 + 7 + Max Volume + Max Volume + 76 + 76 + true + true + false + true + true + false + true + true + 466 + 466 + Maximum volume of gas stored in the pipeline + true + + + 1726 + 393 + 3 + 8 + Min Volume + Min Volume + 76 + 76 + true + true + false + true + true + false + true + true + 510 + 510 + Minimum volume of gas stored in the pipeline + true + + + 1727 + 393 + 3 + 9 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Volume of gas stored in the pipeline at the beginning of the horizon + true + + + 1728 + 393 + 3 + 10 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Volume of gas in the pipeline at the end of the period + true + + + 1729 + 393 + 3 + 11 + Volume Imbalance + Volume Imbalance + 76 + 76 + true + true + false + true + true + false + true + true + 1654 + 1654 + Absolute value of the difference between delivery volume into the pipeline and the redelivered volume off the pipeline. + true + + + 1730 + 393 + 3 + 12 + Utilization Forward + Utilization Forward + 12 + 12 + true + true + false + false + true + false + true + true + 2556 + 2556 + Flow forward capacity utilization + true + + + 1731 + 393 + 3 + 13 + Utilization Back + Utilization Back + 12 + 12 + true + true + false + false + true + false + true + true + 2557 + 2557 + Flow back capacity utilization + true + + + 1732 + 393 + 3 + 14 + Imbalance Cost + Imbalance Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1656 + 1656 + Cost of imbalances + true + + + 1733 + 393 + 3 + 15 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting gas from the pipeline + true + + + 1734 + 393 + 3 + 16 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1735 + 393 + 3 + 17 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1736 + 393 + 3 + 18 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Gas pipeline reservation cost + true + + + 1737 + 393 + 3 + 19 + Loss + Loss + 75 + 76 + true + true + false + true + true + false + true + true + 372 + 372 + Gas pipeline flow loss amount + true + + + 1738 + 393 + 3 + 20 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Gas pipeline total cost + true + + + 1739 + 393 + 3 + 21 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Total Variable Costs of gas from the pipeline + true + + + 1740 + 393 + 3 + 22 + Pressure + Pressure + 89 + 89 + true + true + false + true + true + false + true + true + 2425 + 2425 + Pressure of gas stored in the pipeline at the start of the period + true + + + 1741 + 393 + 3 + 23 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas pipeline expansion + true + + + 1742 + 393 + 3 + 24 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by flowing gas through the pipeline + true + + + 1743 + 393 + 7 + 25 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1744 + 393 + 7 + 26 + Flow Capacity Outage + Flow Capacity Outage + 75 + 76 + true + true + false + false + true + false + true + true + 2147 + 2147 + Flow capacity on outage due to maintenance or forced outage + true + + + 1745 + 393 + 7 + 27 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity on maintenance + true + + + 1746 + 393 + 7 + 28 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the pipeline is on maintenance + true + + + 1747 + 393 + 7 + 29 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 1748 + 393 + 7 + 30 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the pipeline is on forced outage + true + + + 1749 + 393 + 7 + 31 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of pipeline capacity available + true + + + 1750 + 393 + 8 + 32 + Max Daily Flow Built + Max Daily Flow Built + 75 + 76 + true + true + false + false + true + false + false + false + 2148 + 2148 + Amount of increase in Gas Pipeline Max Daily Flow + true + + + 1751 + 393 + 8 + 33 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas pipeline + true + + + 1752 + 393 + 8 + 34 + Max Daily Flow Retired + Max Daily Flow Retired + 75 + 76 + true + true + false + false + true + false + false + false + 2149 + 2149 + Amount of reduction in Gas Pipeline Max Daily Flow + true + + + 1753 + 393 + 8 + 35 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas pipeline + true + + + 1754 + 393 + 8 + 36 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 1755 + 393 + 12 + 37 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1756 + 393 + 12 + 38 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1757 + 393 + 12 + 39 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1758 + 396 + 3 + 1 + Participation Factor + Participation Factor + 12 + 12 + true + true + true + false + true + false + true + true + 1840 + 1840 + Percentage of total Gas Node inflow from a given exporting Gas Pipeline + true + + + 1759 + 397 + 3 + 1 + Participation Factor + Participation Factor + 12 + 12 + true + true + true + false + true + false + true + true + 1840 + 1840 + Percentage of total Gas Node inflow from a given importing Gas Pipeline + true + + + 1760 + 402 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Gas Node is in service + true + + + 1761 + 402 + 3 + 2 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas fields + true + + + 1762 + 402 + 3 + 3 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Demand at the gas node + true + + + 1763 + 402 + 3 + 4 + Flow + Flow + 75 + 76 + true + true + false + true + true + false + true + true + 205 + 205 + Flow of gas through the node + true + + + 1764 + 402 + 3 + 5 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on connected Gas Pipelines, Gas Plants and Gas Transports + true + + + 1765 + 402 + 3 + 6 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on connected Gas Pipelines, Gas Plants and Gas Transports + true + + + 1766 + 402 + 3 + 7 + Net Interchange + Net Interchange + 75 + 76 + true + true + false + true + true + false + true + true + 543 + 543 + Net exports on gas pipelines + true + + + 1767 + 402 + 3 + 8 + Net Market Sales + Net Market Sales + 75 + 76 + true + true + false + true + true + false + true + true + 545 + 545 + Net sales to external gas markets + true + + + 1768 + 402 + 3 + 9 + Facility Consumption + Facility Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 2732 + 2732 + Gas consumed by connected Facilities + true + + + 1769 + 402 + 3 + 10 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume in gas storage + true + + + 1770 + 402 + 3 + 11 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + End volume in gas storage + true + + + 1771 + 402 + 3 + 12 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2382 + 2382 + Cost of flowing gas through the node + true + + + 1772 + 402 + 3 + 13 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in supply of gas at the node + true + + + 1773 + 402 + 3 + 14 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 1774 + 402 + 3 + 15 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 1775 + 402 + 3 + 16 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas at the node + true + + + 1776 + 402 + 3 + 17 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 1777 + 402 + 3 + 18 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 1778 + 402 + 3 + 19 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas at the gas node + true + + + 1779 + 402 + 3 + 20 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Settlement price for gas at the gas node + true + + + 1780 + 402 + 3 + 21 + Delivered Price + Delivered Price + 60 + 60 + true + true + false + false + true + false + true + true + 2157 + 2157 + Delivered price for gas at the gas node + true + + + 1781 + 402 + 3 + 22 + Delivered Cost + Delivered Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2158 + 2158 + Delivered cost of gas at the gas node + true + + + 1782 + 402 + 3 + 23 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1783 + 402 + 3 + 24 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1784 + 402 + 3 + 25 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 1785 + 402 + 8 + 26 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the gas node is built in this year + true + + + 1786 + 402 + 8 + 27 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas node + true + + + 1787 + 402 + 8 + 28 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the gas node is retired in this year + true + + + 1788 + 402 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas node + true + + + 1789 + 402 + 3 + 30 + Shipments Imported + Shipments Imported + 0 + 0 + true + true + false + true + true + false + true + true + 2759 + 2759 + Number of shipments received from Gas Transports + true + + + 1790 + 402 + 3 + 31 + Shipments Exported + Shipments Exported + 0 + 0 + true + true + false + true + true + false + true + true + 2760 + 2760 + Number of shipments sent through Gas Transports + true + + + 1791 + 402 + 12 + 32 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1792 + 402 + 12 + 33 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1793 + 402 + 12 + 34 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1794 + 406 + 3 + 1 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on connected Gas Transports + true + + + 1795 + 406 + 3 + 2 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on connected Gas Transports + true + + + 1796 + 406 + 3 + 3 + Shipments Imported + Shipments Imported + 0 + 0 + true + true + false + true + true + false + true + true + 2759 + 2759 + Number of shipments received from the Gas Transport + true + + + 1797 + 406 + 3 + 4 + Shipments Exported + Shipments Exported + 0 + 0 + true + true + false + true + true + false + true + true + 2760 + 2760 + Number of shipments exported through the Gas Transport + true + + + 1798 + 409 + 1 + 1 + Sales + Sales + 58 + 58 + true + true + false + true + true + false + true + true + 718 + 718 + Sales to the market + true + + + 1799 + 409 + 1 + 2 + Purchases + Purchases + 58 + 58 + true + true + false + true + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 1800 + 409 + 1 + 3 + Net Sales + Net Sales + 58 + 58 + true + true + false + true + true + false + true + true + 553 + 553 + Net sales to the market + true + + + 1801 + 409 + 1 + 4 + Net Purchases + Net Purchases + 58 + 58 + true + true + false + true + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 1802 + 409 + 1 + 5 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue from sales to the market + true + + + 1803 + 409 + 1 + 6 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 1804 + 409 + 1 + 7 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net of cost and revenue + true + + + 1805 + 409 + 1 + 8 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of revenue and cost + true + + + 1806 + 412 + 3 + 1 + Max Volume + Max Volume + 76 + 76 + true + true + false + true + true + false + true + true + 466 + 466 + Maximum volume of gas allowed in storage + true + + + 1807 + 412 + 3 + 2 + Min Volume + Min Volume + 76 + 76 + true + true + false + true + true + false + true + true + 510 + 510 + Minimum volume of gas allowed in storage + true + + + 1808 + 412 + 3 + 3 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume of gas in the storage + true + + + 1809 + 412 + 3 + 4 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 1810 + 412 + 3 + 5 + Working Volume + Working Volume + 76 + 76 + true + true + false + true + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 1811 + 412 + 3 + 6 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization based on end volume + true + + + 1812 + 412 + 3 + 7 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 1813 + 412 + 3 + 8 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 1814 + 412 + 3 + 9 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 1815 + 412 + 3 + 10 + Withdrawal + Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of gas withdrawn from the storage + true + + + 1816 + 412 + 3 + 11 + Max Withdrawal Available + Max Withdrawal Available + 75 + 76 + true + true + false + true + true + false + true + true + 2431 + 2431 + Quantity of gas available to withdraw based on the specified gas storage ratchets + true + + + 1817 + 412 + 3 + 12 + Injection + Injection + 75 + 76 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of gas injected into the gas storage + true + + + 1818 + 412 + 3 + 13 + Max Injection Available + Max Injection Available + 75 + 76 + true + true + false + true + true + false + true + true + 2432 + 2432 + Quantity of gas available to inject based on the specified gas storage ratchets + true + + + 1819 + 412 + 3 + 14 + Net Utilization + Net Utilization + 75 + 76 + true + true + false + true + true + false + true + true + 2052 + 2052 + Net of withdrawal and injection + true + + + 1820 + 412 + 3 + 15 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawing gas from the storage + true + + + 1821 + 412 + 3 + 16 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injecting gas into the storage + true + + + 1822 + 412 + 3 + 17 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of injections and withdrawals + true + + + 1823 + 412 + 3 + 18 + Carrying Cost + Carrying Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2039 + 2039 + Total cost of gas carried in storage + true + + + 1824 + 412 + 3 + 19 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the storage + true + + + 1825 + 412 + 3 + 20 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch price + true + + + 1826 + 412 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1827 + 412 + 3 + 22 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1828 + 412 + 3 + 23 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Reservation cost for Gas Storage + true + + + 1829 + 412 + 3 + 24 + Injection Fuel + Injection Fuel + 75 + 76 + true + true + false + true + true + false + true + true + 1970 + 1970 + Fuel amount lost in the gas storage injection + true + + + 1830 + 412 + 3 + 25 + Withdraw Fuel + Withdraw Fuel + 75 + 76 + true + true + false + true + true + false + true + true + 1971 + 1971 + Fuel amount lost in the gas storage withdrawal + true + + + 1831 + 412 + 3 + 26 + Net Injection + Net Injection + 75 + 76 + true + true + false + true + true + false + true + true + 542 + 542 + Net injection after injection fuel loss + true + + + 1832 + 412 + 3 + 27 + Net Injection Cost + Net Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2053 + 2053 + Net injection Cost for the gas storage + true + + + 1833 + 412 + 3 + 28 + Net Withdrawal + Net Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net withdrawal after withdrawal fuel loss + true + + + 1834 + 412 + 3 + 29 + Net Withdrawal Cost + Net Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2054 + 2054 + Net withdrawal cost for the gas storage + true + + + 1835 + 412 + 3 + 30 + Loss + Loss + 75 + 76 + true + true + false + true + true + false + true + true + 372 + 372 + Gas storage flow loss amount + true + + + 1836 + 412 + 3 + 31 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Total variable cost for the gas storage + true + + + 1837 + 412 + 3 + 32 + Initial Inventory Value + Initial Inventory Value + 34 + 34 + true + true + false + true + true + false + true + true + 2073 + 2073 + Value of inventory in gas storage at the start of a period. + true + + + 1838 + 412 + 3 + 33 + Ending Inventory Value + Ending Inventory Value + 34 + 34 + true + true + false + true + true + false + true + true + 2211 + 2211 + Value of inventory in gas storage at the end of period. + true + + + 1839 + 412 + 3 + 34 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost from the Inventory Charge of holding gas in storage + true + + + 1840 + 412 + 3 + 35 + Initial Energy + Initial Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2406 + 2406 + Value of heat energy in gas storage at the start of period + true + + + 1841 + 412 + 3 + 36 + Ending Energy + Ending Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2409 + 2409 + Value of heat energy in gas storage at the end of period + true + + + 1842 + 412 + 3 + 37 + Initial Carbon Quantity + Initial Carbon Quantity + 20 + 20 + true + true + false + true + true + false + true + true + 2444 + 2444 + Carbon quantity of the gas storage at the start of period + true + + + 1843 + 412 + 3 + 38 + Ending Carbon Quantity + Ending Carbon Quantity + 20 + 20 + true + true + false + true + true + false + true + true + 2410 + 2410 + Carbon Quantity of the gas storage at the end of period + true + + + 1844 + 412 + 3 + 39 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend injected into the gas storage + true + + + 1845 + 412 + 3 + 40 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas storage expansion + true + + + 1846 + 412 + 3 + 41 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered in the gas storage operation + true + + + 1847 + 412 + 7 + 42 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 1848 + 412 + 7 + 43 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Withdrawal/Injection on maintenance + true + + + 1849 + 412 + 7 + 44 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the gas storage is on maintenance + true + + + 1850 + 412 + 7 + 45 + Forced Outage + Forced Outage + 75 + 76 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Withdrawal/Injection on Forced Outage + true + + + 1851 + 412 + 7 + 46 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the gas storage is on forced outage of Withdrawal/Injection + true + + + 1852 + 412 + 7 + 47 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Storage capacity available in withdrawal/injection + true + + + 1853 + 412 + 8 + 48 + Max Volume Built + Max Volume Built + 76 + 76 + true + true + false + false + true + false + false + false + 2152 + 2152 + Amount of increase in Gas Storage Max Volume + true + + + 1854 + 412 + 8 + 49 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the gas storage + true + + + 1855 + 412 + 8 + 50 + Max Volume Retired + Max Volume Retired + 76 + 76 + true + true + false + false + true + false + false + false + 2153 + 2153 + Amount of reduction in Gas Storage Max Volume + true + + + 1856 + 412 + 8 + 51 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the gas storage + true + + + 1857 + 412 + 8 + 52 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 1858 + 412 + 12 + 53 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1859 + 412 + 12 + 54 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1860 + 412 + 12 + 55 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1861 + 415 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas storage + true + + + 1862 + 415 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas storage + true + + + 1863 + 416 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas storage + true + + + 1864 + 416 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas storage + true + + + 1865 + 417 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas storage + true + + + 1866 + 417 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas storage + true + + + 1867 + 419 + 3 + 1 + Delivered Energy + Delivered Energy + 75 + 76 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the gas storage + true + + + 1868 + 419 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the gas storage + true + + + 1869 + 420 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas storage + true + + + 1870 + 420 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas storage + true + + + 1871 + 421 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas storage + true + + + 1872 + 421 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas storage + true + + + 1873 + 425 + 3 + 1 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Demand for gas + true + + + 1874 + 425 + 3 + 2 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in gas supply + true + + + 1875 + 425 + 3 + 3 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 1876 + 425 + 3 + 4 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 1877 + 425 + 3 + 5 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas + true + + + 1878 + 425 + 3 + 6 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 1879 + 425 + 3 + 7 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 1880 + 425 + 3 + 8 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages and excesses + true + + + 1881 + 425 + 3 + 9 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 1882 + 425 + 3 + 10 + Price Paid + Price Paid + 60 + 60 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for gas demand + true + + + 1883 + 425 + 3 + 11 + Bid Quantity + Bid Quantity + 75 + 76 + true + true + true + true + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 1884 + 425 + 3 + 12 + Bid Price + Bid Price + 60 + 60 + true + true + true + false + true + false + true + true + 33 + 33 + Value of gas in band + true + + + 1885 + 425 + 3 + 13 + Bid Cleared + Bid Cleared + 75 + 76 + true + true + true + true + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 1886 + 425 + 3 + 14 + Cleared Bid Price + Cleared Bid Price + 60 + 60 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 1887 + 425 + 3 + 15 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 1888 + 425 + 3 + 16 + Baseline Demand + Baseline Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2023 + 2023 + Demand without DSM reduction + true + + + 1889 + 425 + 3 + 17 + Total DSM Reduction + Total DSM Reduction + 75 + 76 + true + true + false + true + true + false + true + true + 2024 + 2024 + DSM reduction + true + + + 1890 + 425 + 3 + 18 + Served Demand + Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2070 + 2070 + Served Demand (with respect to excess and shortage) + true + + + 1891 + 425 + 3 + 19 + Peak Served Demand + Peak Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2143 + 2143 + Peak Served Demand (with respect to excess and shortage) + true + + + 1892 + 425 + 3 + 20 + Peak Unserved Demand + Peak Unserved Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2144 + 2144 + Peak Unserved Demand (with respect to excess and shortage) + true + + + 1893 + 425 + 3 + 21 + Unaccounted Demand + Unaccounted Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2351 + 2351 + Percentage of unaccounted gas demand + true + + + 1894 + 425 + 3 + 22 + Gross Emissions + Gross Emissions + 19 + 20 + true + true + false + true + true + false + true + true + 1432 + 1432 + Total emissions made by the blend of gas serving the Gas Demand + true + + + 1895 + 425 + 3 + 23 + Average Heat Value + Average Heat Value + 0 + 0 + true + true + false + false + true + false + true + true + 2430 + 2430 + Weighted average heat value of the gas blend served to meet the gas demand + true + + + 1896 + 425 + 12 + 24 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1897 + 425 + 12 + 25 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1898 + 425 + 12 + 26 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1899 + 428 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas demand + true + + + 1900 + 428 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas demand + true + + + 1901 + 429 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas demand + true + + + 1902 + 429 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas demand + true + + + 1903 + 430 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas demand + true + + + 1904 + 430 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas demand + true + + + 1905 + 432 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the gas demand + true + + + 1906 + 432 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the gas demand + true + + + 1907 + 434 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas demand + true + + + 1908 + 434 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas demand + true + + + 1909 + 435 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas demand + true + + + 1910 + 435 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas demand + true + + + 1911 + 436 + 1 + 1 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Gas demand + true + + + 1912 + 436 + 1 + 2 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 1913 + 436 + 1 + 3 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 1914 + 436 + 1 + 4 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 1915 + 436 + 1 + 5 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 1916 + 436 + 1 + 6 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages and excesses + true + + + 1917 + 436 + 1 + 7 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 1918 + 437 + 3 + 1 + Reduction Amount + Reduction Amount + 75 + 76 + true + true + false + true + true + false + true + true + 2025 + 2025 + Demand reduction caused by gas dsm program + true + + + 1919 + 437 + 3 + 2 + Variable Cost + Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2017 + 2017 + Variable cost of gas dsm program + true + + + 1920 + 437 + 3 + 3 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1921 + 437 + 3 + 4 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs + true + + + 1922 + 437 + 8 + 5 + Reduction Amount Built + Reduction Amount Built + 76 + 76 + true + true + false + false + true + false + false + false + 2687 + 2687 + Amount of reduction caused by gas dsm program + true + + + 1923 + 437 + 8 + 6 + Capital Cost + Capital Cost + 34 + 34 + true + true + false + true + true + false + false + false + 2018 + 2018 + Capital cost of the gas dsm program + true + + + 1924 + 437 + 12 + 7 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1925 + 437 + 12 + 8 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1926 + 437 + 12 + 9 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1927 + 443 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of gas fields in the basin + true + + + 1928 + 443 + 3 + 2 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Volume of gas in the basin at the start of the period + true + + + 1929 + 443 + 3 + 3 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + Volume of gas in the basin at the end of the period + true + + + 1930 + 443 + 3 + 4 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced from the basin + true + + + 1931 + 443 + 3 + 5 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting gas from the basin + true + + + 1932 + 443 + 3 + 6 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Average price of producing gas from basin fields + true + + + 1933 + 443 + 3 + 7 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Average dispatch price from basin fields + true + + + 1934 + 443 + 3 + 8 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 1935 + 443 + 3 + 9 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 1936 + 443 + 3 + 10 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of gas in the basin + true + + + 1937 + 443 + 8 + 11 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of gas fields built in the basin + true + + + 1938 + 443 + 8 + 12 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building gas fields in the basin + true + + + 1939 + 443 + 12 + 13 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1940 + 443 + 12 + 14 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1941 + 443 + 12 + 15 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1942 + 448 + 3 + 1 + Production + Production + 75 + 76 + true + true + false + true + true + false + true + true + 624 + 624 + Quantity of gas produced by the gas fields + true + + + 1943 + 448 + 3 + 2 + Peak Served Zone Demand + Peak Served Zone Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2203 + 2203 + Gas Peak Served Demand in gas zone + true + + + 1944 + 448 + 3 + 3 + Demand + Demand + 75 + 76 + true + true + false + true + true + false + true + true + 133 + 133 + Gas demand + true + + + 1945 + 448 + 3 + 4 + Generator Offtake + Generator Offtake + 75 + 76 + true + true + false + true + true + false + true + true + 2692 + 2692 + Generator Offtake from Gas Nodes in Gas Zone + true + + + 1946 + 448 + 3 + 5 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Imports on gas pipelines + true + + + 1947 + 448 + 3 + 6 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Exports on gas pipelines + true + + + 1948 + 448 + 3 + 7 + Net Interchange + Net Interchange + 75 + 76 + true + true + false + true + true + false + true + true + 543 + 543 + Net exports on gas pipelines + true + + + 1949 + 448 + 3 + 8 + Initial Volume + Initial Volume + 76 + 76 + true + true + false + true + true + false + true + true + 318 + 318 + Initial volume in gas storage + true + + + 1950 + 448 + 3 + 9 + End Volume + End Volume + 76 + 76 + true + true + false + true + true + false + true + true + 170 + 170 + End volume in gas storage + true + + + 1951 + 448 + 3 + 10 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in gas supply + true + + + 1952 + 448 + 3 + 11 + Shortage + Shortage + 75 + 76 + true + true + false + true + true + false + true + true + 746 + 746 + Shortage of gas supply + true + + + 1953 + 448 + 3 + 12 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of gas supply shortages + true + + + 1954 + 448 + 3 + 13 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of gas + true + + + 1955 + 448 + 3 + 14 + Excess + Excess + 75 + 76 + true + true + false + true + true + false + true + true + 1285 + 1285 + Excess of gas supply + true + + + 1956 + 448 + 3 + 15 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of gas excesses + true + + + 1957 + 448 + 3 + 16 + Net Demand + Net Demand + 75 + 76 + true + true + false + true + true + false + true + true + 1269 + 1269 + Gas demand net of shortages and excesses + true + + + 1958 + 448 + 3 + 17 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas demand + true + + + 1959 + 448 + 3 + 18 + Price Paid + Price Paid + 60 + 60 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for gas demand + true + + + 1960 + 448 + 3 + 19 + Weighted Average Cost + Weighted Average Cost + 60 + 60 + true + true + false + false + true + false + true + true + 1992 + 1992 + Average cost for gas in entire model + true + + + 1961 + 448 + 3 + 20 + Total Fixed Costs + Total Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 243 + 243 + Total fixed costs for gas in entire model, including FOM and reservation costs + true + + + 1962 + 448 + 3 + 21 + Total Variable Costs + Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 1994 + 1994 + Equal to Total Gas Purchase Cost + Total Penalty Cost. + true + + + 1963 + 448 + 3 + 22 + Grand Total Cost + Grand Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2055 + 2055 + Equal to Total Fixed Cost + Total Variable Costs (Total Variable Cost Includes penalty costs) + true + + + 1964 + 448 + 3 + 23 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Equal to Total Fixed Cost + Total Variable Cost – Total Penalty Cost {Excludes penalty costs} + true + + + 1965 + 448 + 3 + 24 + Net Total Cost + Net Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2056 + 2056 + Equal to Grand Total Cost – Total Market Revenue + true + + + 1966 + 448 + 3 + 25 + Injection + Injection + 75 + 76 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of gas injected into the gas storages in the zone + true + + + 1967 + 448 + 3 + 26 + Net Injection + Net Injection + 75 + 76 + true + true + false + true + true + false + true + true + 542 + 542 + Quantity of gas injected into the gas storages in the zone after injection fuel loss + true + + + 1968 + 448 + 3 + 27 + Net Injection Cost + Net Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2053 + 2053 + Summation of gas storage net injection cost + true + + + 1969 + 448 + 3 + 28 + Withdrawal + Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of gas withdrawn from the storages in the zone + true + + + 1970 + 448 + 3 + 29 + Net Withdrawal + Net Withdrawal + 75 + 76 + true + true + false + true + true + false + true + true + 1393 + 1393 + Quantity of gas withdrawn from the storages in the zone after withdrawal fuel loss + true + + + 1971 + 448 + 3 + 30 + Net Withdrawal Cost + Net Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2054 + 2054 + Summation of gas storage net withdrawal cost + true + + + 1972 + 448 + 3 + 31 + Costs of Gas Delivered + Costs of Gas Delivered + 14 + 34 + true + true + false + true + true + false + true + true + 2057 + 2057 + Equal to Total System Cost – Net Injection Cost + Net Withdrawal Cost {Please note that withdrawal and injection fuel is subtracted to get the net} + true + + + 1973 + 448 + 3 + 32 + Net Variable Cost + Net Variable Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1995 + 1995 + Equal to Total Variable Cost – Total Market Revenue + true + + + 1974 + 448 + 3 + 33 + Forward Zone Flow + Forward Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1997 + 1997 + Quantity of gas pipeline flow in forward direction + true + + + 1975 + 448 + 3 + 34 + Back Zone Flow + Back Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1998 + 1998 + Quantity of gas pipeline flow in backward direction + true + + + 1976 + 448 + 3 + 35 + Net Zone Flow + Net Zone Flow + 75 + 76 + true + true + false + true + true + false + true + true + 1999 + 1999 + Net Quantity of gas pipeline flow (forward-backward) + true + + + 1977 + 448 + 3 + 36 + Gas Supply Total Commodity Costs + Gas Supply Total Commodity Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2078 + 2078 + Total supply commodity costs + true + + + 1978 + 448 + 3 + 37 + Gas Storage Total Variable Costs + Gas Storage Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2079 + 2079 + Total variable costs for gas storages + true + + + 1979 + 448 + 3 + 38 + Gas Pipeline Total Variable Costs + Gas Pipeline Total Variable Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2080 + 2080 + Total variable costs for gas pipelines + true + + + 1980 + 448 + 3 + 39 + Gas Storage Total Reservation Costs + Gas Storage Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2081 + 2081 + Total reservation costs for gas storages + true + + + 1981 + 448 + 3 + 40 + Gas Pipeline Total Reservation Costs + Gas Pipeline Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2082 + 2082 + Total reservation costs for gas pipelines + true + + + 1982 + 448 + 3 + 41 + Gas Contract Total Reservation Costs + Gas Contract Total Reservation Costs + 14 + 34 + true + true + false + true + true + false + true + true + 2083 + 2083 + Total reservation costs for gas contracts + true + + + 1983 + 448 + 3 + 42 + Emission Cost + Emission Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2559 + 2559 + Cost from production of emissions + true + + + 1984 + 448 + 6 + 43 + Available Capacity + Available Capacity + 75 + 76 + true + true + false + false + true + false + true + true + 23 + 23 + Available Capacity of the Gas Plants + false + + + 1985 + 448 + 6 + 44 + Min Capacity Reserves + Min Capacity Reserves + 75 + 76 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + false + + + 1986 + 448 + 6 + 45 + Max Capacity Reserves + Max Capacity Reserves + 75 + 76 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + false + + + 1987 + 448 + 6 + 46 + Capacity Reserves + Capacity Reserves + 75 + 76 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + false + + + 1988 + 448 + 6 + 47 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + false + + + 1989 + 448 + 6 + 48 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + false + + + 1990 + 448 + 6 + 49 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + false + + + 1991 + 448 + 6 + 50 + Min Load + Min Load + 75 + 76 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + false + + + 1992 + 448 + 6 + 51 + Peak Load + Peak Load + 75 + 76 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + false + + + 1993 + 448 + 12 + 52 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 1994 + 448 + 12 + 53 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 1995 + 448 + 12 + 54 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 1996 + 465 + 3 + 1 + Take Quantity + Take Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 1978 + 1978 + Gas offtake associated with the contract + true + + + 1997 + 465 + 3 + 2 + Supply Excess + Supply Excess + 75 + 76 + true + true + false + true + true + false + true + true + 2156 + 2156 + Gas supply excess + true + + + 1998 + 465 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of gas used under contract + true + + + 1999 + 465 + 3 + 4 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Price of gas contract + true + + + 2000 + 465 + 3 + 5 + Dispatch Price + Dispatch Price + 60 + 60 + true + true + false + false + true + false + true + true + 2141 + 2141 + Dispatch Price of Gas Contract + true + + + 2001 + 465 + 3 + 6 + Shadow Price + Shadow Price + 60 + 60 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price associated with gas scarcity + true + + + 2002 + 465 + 3 + 7 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 2003 + 465 + 3 + 8 + Commodity Cost + Commodity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2319 + 2319 + Total of node commodity costs for Gas Contract + true + + + 2004 + 465 + 3 + 9 + Differential Cost + Differential Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2320 + 2320 + Total of basis differential costs for Gas Contract + true + + + 2005 + 465 + 3 + 10 + Take-or-Pay Excess + Take-or-Pay Excess + 75 + 76 + true + true + false + true + true + false + true + true + 2741 + 2741 + Excess take of Take or Pay contract + true + + + 2006 + 465 + 3 + 11 + Take-or-Pay Violation + Take-or-Pay Violation + 75 + 76 + true + true + false + true + true + false + true + true + 1439 + 1439 + Violation of take-or-pay constraint + true + + + 2007 + 465 + 3 + 12 + Take-or-Pay Violation Cost + Take-or-Pay Violation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1440 + 1440 + Cost of take-or-pay constraint violation + true + + + 2008 + 465 + 3 + 13 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Reservation cost for gas contract + true + + + 2009 + 465 + 3 + 14 + Min Daily Take + Min Daily Take + 75 + 75 + true + true + false + false + true + false + true + true + 2239 + 2239 + Min daily gas offtake associated with the contract + true + + + 2010 + 465 + 3 + 15 + Max Daily Take + Max Daily Take + 75 + 75 + true + true + false + false + true + false + true + true + 1985 + 1985 + Max daily gas offtake associated with the contract + true + + + 2011 + 465 + 3 + 16 + Recovery Price + Recovery Price + 60 + 60 + true + true + false + false + true + false + true + true + 2589 + 2589 + Capital cost recovery price of gas contract expansion + true + + + 2012 + 465 + 3 + 17 + Recovered Capital Cost + Recovered Capital Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2590 + 2590 + Capital cost recovered by the gas contract production + true + + + 2013 + 465 + 8 + 18 + Build Events + Build Events + 0 + 0 + true + true + false + false + true + false + false + false + 2666 + 2666 + Number of build events + true + + + 2014 + 465 + 8 + 19 + Quantity Day Built + Quantity Day Built + 76 + 76 + true + true + false + false + true + false + false + false + 2688 + 2688 + Expansion quantity daily gas offtake associated with the contract + true + + + 2015 + 465 + 8 + 20 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building an expansion gas contract + true + + + 2016 + 465 + 8 + 21 + Quantity Day Retired + Quantity Day Retired + 76 + 76 + true + true + false + false + true + false + false + false + 2689 + 2689 + Amount of reduction in quantity daily gas offtake associated with the contract + true + + + 2017 + 465 + 12 + 22 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Pass-through value (summed in summary) + true + + + 2018 + 465 + 12 + 23 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Pass-through value (summed in summary) + true + + + 2019 + 465 + 12 + 24 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Pass-through value (summed in summary) + true + + + 2020 + 470 + 3 + 1 + Take Quantity + Take Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 1978 + 1978 + Gas offtake associated with the contract at a specific node + true + + + 2021 + 470 + 3 + 2 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Sum of commodity cost and basis differential cost under contract-gas node + true + + + 2022 + 470 + 3 + 3 + Commodity Cost + Commodity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2319 + 2319 + Commodity costs for the Gas contract-Gas Node. + true + + + 2023 + 470 + 3 + 4 + Differential Cost + Differential Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2320 + 2320 + Basis differential costs for the Gas contract-Gas Node. + true + + + 2024 + 470 + 3 + 5 + Price + Price + 60 + 60 + true + true + false + false + true + false + true + true + 612 + 612 + Gas contract-gas node price + true + + + 2025 + 472 + 3 + 1 + Gas Supply + Gas Supply + 75 + 76 + true + true + false + true + true + false + true + true + 2138 + 2138 + Total supply provided by the company + true + + + 2026 + 475 + 3 + 1 + Imports + Imports + 75 + 76 + true + true + false + true + true + false + true + true + 294 + 294 + Gas discharged at the import gas node + true + + + 2027 + 475 + 3 + 2 + Exports + Exports + 75 + 76 + true + true + false + true + true + false + true + true + 192 + 192 + Gas loaded at the export gas node + true + + + 2028 + 475 + 3 + 3 + Losses + Losses + 75 + 76 + true + true + false + true + true + false + true + true + 924 + 924 + Gas lost during the voyage + true + + + 2029 + 475 + 3 + 4 + Contract Imports + Contract Imports + 75 + 76 + true + true + false + true + true + false + true + true + 1852 + 1852 + Delivered gas associated with gas contracts + true + + + 2030 + 475 + 3 + 5 + Spot Imports + Spot Imports + 75 + 76 + true + true + false + true + true + false + true + true + 1853 + 1853 + Delivered gas associated with spot market shipments + true + + + 2031 + 475 + 3 + 6 + Shipping Cost + Shipping Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1854 + 1854 + Cost of shipping + true + + + 2032 + 475 + 3 + 7 + Shipments + Shipments + 0 + 0 + true + true + false + true + true + false + true + true + 2761 + 2761 + Number of shipments delivered + true + + + 2033 + 475 + 7 + 8 + Maintenance + Maintenance + 75 + 76 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2034 + 475 + 12 + 9 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Pass-through value (summed in summary) + true + + + 2035 + 475 + 12 + 10 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Pass-through value (summed in summary) + true + + + 2036 + 475 + 12 + 11 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Pass-through value (averaged in summary) + true + + + 2037 + 478 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Power2X to the gas transport + true + + + 2038 + 478 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Power2X to the gas transport + true + + + 2039 + 479 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas field to the gas transport + true + + + 2040 + 479 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas field to the gas transport + true + + + 2041 + 480 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas plant to the gas transport + true + + + 2042 + 480 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas plant to the gas transport + true + + + 2043 + 483 + 3 + 1 + Delivered Energy + Delivered Energy + 75 + 76 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas storage to the gas transport + true + + + 2044 + 483 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas storage to the gas transport + true + + + 2045 + 484 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by gas contract to the gas transport + true + + + 2046 + 484 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by gas contract to the gas transport + true + + + 2047 + 485 + 3 + 1 + Delivered Energy + Delivered Energy + 0 + 0 + true + true + false + true + true + false + true + true + 2408 + 2408 + Heat energy delivered by Gas Transport to the gas transport + true + + + 2048 + 485 + 3 + 2 + Delivered Quantity + Delivered Quantity + 75 + 76 + true + true + false + true + true + false + true + true + 2159 + 2159 + Gas delivered by Gas Transport to the gas transport + true + + + 2049 + 493 + 3 + 1 + Capacity Released + Capacity Released + 75 + 76 + true + true + false + true + true + false + true + true + 2038 + 2038 + Gas capacity released on pipelines or storages + true + + + 2050 + 493 + 3 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Total revenue from capacity released + true + + + 2051 + 493 + 12 + 3 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2052 + 493 + 12 + 4 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2053 + 493 + 12 + 5 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2054 + 500 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Number of Water Plant units in service + true + + + 2055 + 500 + 3 + 2 + Raw Water + Raw Water + 65 + 64 + true + true + false + false + true + false + true + true + 1810 + 1810 + Quantity of raw water input to the water plant + true + + + 2056 + 500 + 3 + 3 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Quantity of water produced by the water plant + true + + + 2057 + 500 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Water production cost + true + + + 2058 + 500 + 3 + 5 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Variable operations and maintenance cost + true + + + 2059 + 500 + 3 + 6 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2060 + 500 + 3 + 7 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2061 + 500 + 3 + 8 + SRMC + SRMC + 67 + 67 + true + true + false + false + true + false + true + true + 759 + 759 + Short-run marginal cost of water production + true + + + 2062 + 500 + 3 + 9 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 1815 + 1815 + The total electric and heat consumption of the Water Plant + true + + + 2063 + 500 + 3 + 10 + Cost of Energy Consumption + Cost of Energy Consumption + 14 + 34 + true + true + false + true + true + false + true + true + 2526 + 2526 + Cost of energy consumption + false + + + 2064 + 500 + 3 + 11 + Electric Load + Electric Load + 1 + 2 + true + true + false + false + true + false + true + true + 1890 + 1890 + The part of the [Energy Consumption] met by electric + true + + + 2065 + 500 + 3 + 12 + Cost of Electric Load + Cost of Electric Load + 14 + 34 + true + true + false + true + true + false + true + true + 2527 + 2527 + Cost of electric load + false + + + 2066 + 500 + 3 + 13 + Heat Load + Heat Load + 15 + 16 + true + true + false + false + true + false + true + true + 255 + 255 + The part of the [Energy Consumption] met by heat + true + + + 2067 + 500 + 3 + 14 + Cost of Heat Load + Cost of Heat Load + 14 + 34 + true + true + false + true + true + false + true + true + 2528 + 2528 + Cost of heat load + false + + + 2068 + 500 + 3 + 15 + Auxiliary Use + Auxiliary Use + 65 + 64 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 2069 + 500 + 3 + 16 + Units Operating + Units Operating + 0 + 0 + true + true + false + false + true + false + true + true + 2049 + 2049 + Number of water plant units operating + true + + + 2070 + 500 + 3 + 17 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of installed or rated capacity producing + true + + + 2071 + 500 + 3 + 18 + Capacity Curtailed + Capacity Curtailed + 65 + 64 + true + true + false + false + true + false + true + true + 1163 + 1163 + Amount of non-positive-priced production curtailed + true + + + 2072 + 500 + 3 + 19 + Curtailment Factor + Curtailment Factor + 12 + 12 + true + true + false + false + true + false + true + true + 1061 + 1061 + Proportion of non-positive-priced generation curtailed + true + + + 2073 + 500 + 3 + 20 + Water Availability + Water Availability + 65 + 64 + true + true + false + false + true + false + true + true + 2529 + 2529 + Availability of water + true + + + 2074 + 500 + 3 + 21 + Incremental Fuel Offtake + Incremental Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 2530 + 2530 + Incremental offtake of fuel + false + + + 2075 + 500 + 6 + 22 + Installed Capacity + Installed Capacity + 65 + 64 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Production x Units) + false + + + 2076 + 500 + 6 + 23 + Rated Capacity + Rated Capacity + 65 + 64 + true + true + false + false + true + true + true + true + 663 + 663 + Installed capacity accounting for [Rating] and [Rating Factor] + false + + + 2077 + 500 + 7 + 24 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2078 + 500 + 7 + 25 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Production on maintenance + true + + + 2079 + 500 + 7 + 26 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the Water plant is on maintenance + true + + + 2080 + 500 + 7 + 27 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Production on Forced Outage + true + + + 2081 + 500 + 7 + 28 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the Water plant is on forced outage of Production + true + + + 2082 + 500 + 7 + 29 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of plant capacity available in production + true + + + 2083 + 500 + 8 + 30 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of water plant units built + true + + + 2084 + 500 + 8 + 31 + Capacity Price + Capacity Price + 99 + 99 + true + true + false + false + true + false + true + true + 881 + 881 + Price received by the plant for capacity + true + + + 2085 + 500 + 8 + 32 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 2086 + 500 + 8 + 33 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of developing the Water Plant + true + + + 2087 + 500 + 8 + 34 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of water plant units retired + true + + + 2088 + 500 + 8 + 35 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the water plant + true + + + 2089 + 500 + 12 + 36 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2090 + 500 + 12 + 37 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2091 + 500 + 12 + 38 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2092 + 510 + 3 + 1 + Flow + Flow + 65 + 64 + true + true + false + false + true + false + true + true + 205 + 205 + Quantity of water extracted from the pipeline + true + + + 2093 + 510 + 3 + 2 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the pipeline is congested in the reference direction + true + + + 2094 + 510 + 3 + 3 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the pipeline is congested in the counter-reference direction + true + + + 2095 + 510 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of extracting water from the pipeline + true + + + 2096 + 510 + 3 + 5 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2097 + 510 + 3 + 6 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2098 + 510 + 3 + 7 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + Total energy consumed for pipeline utilization + true + + + 2099 + 510 + 7 + 8 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2100 + 510 + 7 + 9 + Flow Capacity Outage + Flow Capacity Outage + 65 + 65 + true + false + false + false + true + false + true + true + 2147 + 2147 + Flow capacity on outage due to maintenance or forced outage + true + + + 2101 + 510 + 7 + 10 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2102 + 510 + 7 + 11 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the pipeline is on maintenance + true + + + 2103 + 510 + 7 + 12 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity forced out + true + + + 2104 + 510 + 7 + 13 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the pipeline is on forced outage + true + + + 2105 + 510 + 7 + 14 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of pipeline capacity available + true + + + 2106 + 510 + 8 + 15 + Max Capacity Built + Max Capacity Built + 65 + 65 + true + true + false + false + true + false + false + false + 2150 + 2150 + Amount of increase in Water Pipeline Max Capacity + true + + + 2107 + 510 + 8 + 16 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Water pipeline + true + + + 2108 + 510 + 8 + 17 + Max Capacity Retired + Max Capacity Retired + 65 + 65 + true + true + false + false + true + false + false + false + 2151 + 2151 + Amount of reduction in Water Pipeline Max Capacity + true + + + 2109 + 510 + 8 + 18 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Water pipeline + true + + + 2110 + 510 + 12 + 19 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2111 + 510 + 12 + 20 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2112 + 510 + 12 + 21 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2113 + 518 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Water Node is in service + true + + + 2114 + 518 + 3 + 2 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Total quantity of water supplied by Supplying Water Plants + true + + + 2115 + 518 + 3 + 3 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Demand at the water node + true + + + 2116 + 518 + 3 + 4 + Flow + Flow + 65 + 64 + true + true + false + false + true + false + true + true + 205 + 205 + Flow of water through the node + true + + + 2117 + 518 + 3 + 5 + Imports + Imports + 65 + 64 + true + true + false + false + true + false + true + true + 294 + 294 + Imports on water pipelines + true + + + 2118 + 518 + 3 + 6 + Exports + Exports + 65 + 64 + true + true + false + false + true + false + true + true + 192 + 192 + Exports on water pipelines + true + + + 2119 + 518 + 3 + 7 + Net Interchange + Net Interchange + 65 + 64 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on water pipelines + true + + + 2120 + 518 + 3 + 8 + Initial Volume + Initial Volume + 64 + 64 + true + true + false + false + true + false + true + true + 318 + 318 + Initial volume in water storage + true + + + 2121 + 518 + 3 + 9 + End Volume + End Volume + 64 + 64 + true + true + false + false + true + false + true + true + 170 + 170 + End volume in water storage + true + + + 2122 + 518 + 3 + 10 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2382 + 2382 + Cost of flowing water through the node + true + + + 2123 + 518 + 3 + 11 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in supply of water at the node + true + + + 2124 + 518 + 3 + 12 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2125 + 518 + 3 + 13 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2126 + 518 + 3 + 14 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water at the node + true + + + 2127 + 518 + 3 + 15 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2128 + 518 + 3 + 16 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2129 + 518 + 3 + 17 + Shadow Price + Shadow Price + 67 + 67 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of water at the water node + true + + + 2130 + 518 + 3 + 18 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2131 + 518 + 3 + 19 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2132 + 518 + 3 + 20 + Energy Consumption + Energy Consumption + 1 + 2 + true + true + false + true + true + false + true + true + 1815 + 1815 + Total energy consumed for pipeline utilization + true + + + 2133 + 518 + 3 + 21 + Facility Consumption + Facility Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 2732 + 2732 + Water consumed by connected Facilities + true + + + 2134 + 518 + 8 + 22 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the water node is built in this year + true + + + 2135 + 518 + 8 + 23 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the water node + true + + + 2136 + 518 + 8 + 24 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of water node units retired + true + + + 2137 + 518 + 8 + 25 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the water node + true + + + 2138 + 518 + 12 + 26 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2139 + 518 + 12 + 27 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2140 + 518 + 12 + 28 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2141 + 527 + 3 + 1 + Max Volume + Max Volume + 64 + 64 + true + true + false + false + true + false + true + true + 466 + 466 + Maximum volume of Water allowed in storage + true + + + 2142 + 527 + 3 + 2 + Min Volume + Min Volume + 64 + 64 + true + true + false + false + true + false + true + true + 510 + 510 + Minimum volume of Water allowed in storage + true + + + 2143 + 527 + 3 + 3 + Initial Volume + Initial Volume + 64 + 64 + true + true + false + false + true + false + true + true + 318 + 318 + Initial volume of Water in the storage + true + + + 2144 + 527 + 3 + 4 + End Volume + End Volume + 64 + 64 + true + true + false + false + true + false + true + true + 170 + 170 + Storage volume at the end of the period + true + + + 2145 + 527 + 3 + 5 + Working Volume + Working Volume + 64 + 64 + true + true + false + false + true + false + true + true + 1461 + 1461 + Working storage volume at the end of the period + true + + + 2146 + 527 + 3 + 6 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Storage utilization based on end volume + true + + + 2147 + 527 + 3 + 7 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Storage utilization based on working volume + true + + + 2148 + 527 + 3 + 8 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average storage utilization based on end volume + true + + + 2149 + 527 + 3 + 9 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average storage utilization based on working volume + true + + + 2150 + 527 + 3 + 10 + Withdrawal + Withdrawal + 64 + 64 + true + true + false + true + true + false + true + true + 1391 + 1391 + Quantity of water withdrawn from the storage + true + + + 2151 + 527 + 3 + 11 + Injection + Injection + 64 + 64 + true + true + false + true + true + false + true + true + 1392 + 1392 + Quantity of water injected into the water storage + true + + + 2152 + 527 + 3 + 12 + Net Withdrawal + Net Withdrawal + 64 + 64 + true + true + false + true + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 2153 + 527 + 3 + 13 + Shadow Price + Shadow Price + 67 + 67 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of water in the storage + true + + + 2154 + 527 + 3 + 14 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2155 + 527 + 3 + 15 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2156 + 527 + 3 + 16 + End Level + End Level + 23 + 23 + true + true + false + true + true + false + true + true + 169 + 169 + Water storage level at the end of period + true + + + 2157 + 527 + 7 + 17 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2158 + 527 + 7 + 18 + Maintenance + Maintenance + 65 + 64 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity of Withdrawal/Injection on maintenance + true + + + 2159 + 527 + 7 + 19 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours the Water storage is on maintenance + true + + + 2160 + 527 + 7 + 20 + Forced Outage + Forced Outage + 65 + 64 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity of Withdrawal/Injection on Forced Outage + true + + + 2161 + 527 + 7 + 21 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours the Water storage is on forced outage of Withdrawal/Injection + true + + + 2162 + 527 + 7 + 22 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of Storage capacity available in withdrawal/injection + true + + + 2163 + 527 + 8 + 23 + Max Volume Built + Max Volume Built + 64 + 64 + true + true + false + false + true + false + false + false + 2152 + 2152 + Amount of increase in Water Storage Max Volume + true + + + 2164 + 527 + 8 + 24 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Water storage + true + + + 2165 + 527 + 8 + 25 + Max Volume Retired + Max Volume Retired + 64 + 64 + true + true + false + false + true + false + false + false + 2153 + 2153 + Amount of reduction in Water Storage Max Volume + true + + + 2166 + 527 + 8 + 26 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Water storage + true + + + 2167 + 527 + 12 + 27 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2168 + 527 + 12 + 28 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2169 + 527 + 12 + 29 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2170 + 534 + 3 + 1 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Demand for water + true + + + 2171 + 534 + 3 + 2 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in water supply + true + + + 2172 + 534 + 3 + 3 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2173 + 534 + 3 + 4 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2174 + 534 + 3 + 5 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water + true + + + 2175 + 534 + 3 + 6 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2176 + 534 + 3 + 7 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2177 + 534 + 3 + 8 + Net Demand + Net Demand + 65 + 64 + true + true + false + false + true + false + true + true + 1269 + 1269 + Water demand net of shortages and excesses + true + + + 2178 + 534 + 3 + 9 + Served Demand + Served Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2070 + 2070 + Served Demand (with respect to excess and shortage) + true + + + 2179 + 534 + 3 + 10 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of water demand + true + + + 2180 + 534 + 3 + 11 + Price Paid + Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for water demand + true + + + 2181 + 534 + 3 + 12 + Bid Quantity + Bid Quantity + 65 + 64 + true + true + true + false + true + false + true + true + 34 + 34 + Quantity bid in band + true + + + 2182 + 534 + 3 + 13 + Bid Price + Bid Price + 67 + 67 + true + true + true + false + true + false + true + true + 33 + 33 + Value of water in band + true + + + 2183 + 534 + 3 + 14 + Bid Cleared + Bid Cleared + 65 + 64 + true + true + true + false + true + false + true + true + 31 + 31 + Bid cleared in band + true + + + 2184 + 534 + 3 + 15 + Cleared Bid Price + Cleared Bid Price + 67 + 67 + true + true + false + false + true + false + true + true + 1685 + 1685 + Price of marginal bid band + true + + + 2185 + 534 + 3 + 16 + Cleared Bid Value + Cleared Bid Value + 14 + 34 + true + true + false + true + true + false + true + true + 1658 + 1658 + Area cleared under demand curve + true + + + 2186 + 534 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2187 + 534 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2188 + 534 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2189 + 538 + 3 + 1 + Production + Production + 65 + 64 + true + true + false + false + true + false + true + true + 624 + 624 + Quantity of water produced by the water plants + true + + + 2190 + 538 + 3 + 2 + Demand + Demand + 65 + 64 + true + true + false + false + true + false + true + true + 133 + 133 + Water demand + true + + + 2191 + 538 + 3 + 3 + Imports + Imports + 65 + 64 + true + true + false + false + true + false + true + true + 294 + 294 + Imports on water pipelines + true + + + 2192 + 538 + 3 + 4 + Exports + Exports + 65 + 64 + true + true + false + false + true + false + true + true + 192 + 192 + Exports on water pipelines + true + + + 2193 + 538 + 3 + 5 + Net Interchange + Net Interchange + 65 + 64 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on water pipelines + true + + + 2194 + 538 + 3 + 6 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours of shortage in water supply + true + + + 2195 + 538 + 3 + 7 + Shortage + Shortage + 65 + 64 + true + true + false + false + true + false + true + true + 746 + 746 + Shortage of water supply + true + + + 2196 + 538 + 3 + 8 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of water supply shortages + true + + + 2197 + 538 + 3 + 9 + Excess Hours + Excess Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1286 + 1286 + Number of hours of excess supply of water + true + + + 2198 + 538 + 3 + 10 + Excess + Excess + 65 + 64 + true + true + false + false + true + false + true + true + 1285 + 1285 + Excess of water supply + true + + + 2199 + 538 + 3 + 11 + Excess Cost + Excess Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1272 + 1272 + Cost of water excesses + true + + + 2200 + 538 + 3 + 12 + Net Demand + Net Demand + 65 + 64 + true + true + false + false + true + false + true + true + 1269 + 1269 + Water demand net of shortages and excesses + true + + + 2201 + 538 + 3 + 13 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of water demand + true + + + 2202 + 538 + 3 + 14 + Price Paid + Price Paid + 67 + 67 + true + true + false + false + true + false + true + true + 617 + 617 + Price paid for water demand + true + + + 2203 + 538 + 6 + 15 + Available Capacity + Available Capacity + 65 + 65 + true + true + false + false + true + false + true + true + 23 + 23 + Aggregate of Water Availability of Water Plants in the Water Zone + true + + + 2204 + 538 + 6 + 16 + Min Capacity Reserves + Min Capacity Reserves + 65 + 65 + true + true + false + false + true + true + true + true + 479 + 479 + Minimum capacity reserves allowed + true + + + 2205 + 538 + 6 + 17 + Max Capacity Reserves + Max Capacity Reserves + 65 + 65 + true + true + false + false + true + false + true + true + 421 + 421 + Maximum capacity reserves allowed + true + + + 2206 + 538 + 6 + 18 + Capacity Reserves + Capacity Reserves + 65 + 65 + true + true + false + false + true + true + true + true + 1012 + 1012 + Capacity reserves (net of Peak Load) + true + + + 2207 + 538 + 6 + 19 + Min Capacity Reserve Margin + Min Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 478 + 478 + Minimum capacity reserve margin for capacity planning + true + + + 2208 + 538 + 6 + 20 + Max Capacity Reserve Margin + Max Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + false + true + true + 420 + 420 + Maximum capacity reserve margin for capacity planning + true + + + 2209 + 538 + 6 + 21 + Capacity Reserve Margin + Capacity Reserve Margin + 12 + 12 + true + true + false + false + true + true + true + true + 63 + 63 + Capacity reserve margin + true + + + 2210 + 538 + 6 + 22 + Min Load + Min Load + 65 + 65 + true + true + false + false + true + true + true + true + 486 + 486 + Minimum load across the current period + true + + + 2211 + 538 + 6 + 23 + Peak Load + Peak Load + 65 + 65 + true + true + false + false + true + true + true + true + 598 + 598 + Peak load + true + + + 2212 + 538 + 12 + 24 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2213 + 538 + 12 + 25 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2214 + 538 + 12 + 26 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2215 + 548 + 3 + 1 + Head + Head + 23 + 23 + true + true + false + false + true + false + true + true + 2265 + 2265 + Pump station head + true + + + 2216 + 548 + 3 + 2 + Flow Rate + Flow Rate + 65 + 65 + true + true + false + false + true + false + true + true + 2266 + 2266 + Pump station flow rate + true + + + 2217 + 548 + 3 + 3 + Power + Power + 1 + 1 + true + true + false + false + true + false + true + true + 2267 + 2267 + Power consumed by the pump station to achieve the given head and flow rate + true + + + 2218 + 548 + 3 + 4 + Energy + Energy + 3 + 3 + true + true + false + true + true + false + true + true + 173 + 173 + Energy consumption over a given period + true + + + 2219 + 548 + 3 + 5 + Volume Pumped + Volume Pumped + 64 + 64 + true + true + false + true + true + false + true + true + 2268 + 2268 + Volume pumped over a given period + true + + + 2220 + 557 + 3 + 1 + Units Operating + Units Operating + 0 + 0 + true + true + false + false + true + false + true + true + 2049 + 2049 + the number of units on the pump operating in a given period + true + + + 2221 + 557 + 3 + 2 + Head + Head + 23 + 23 + true + true + false + false + true + false + true + true + 2265 + 2265 + Pump head + true + + + 2222 + 557 + 3 + 3 + Flow Rate + Flow Rate + 65 + 65 + true + true + false + false + true + false + true + true + 2266 + 2266 + Pump flow rate + true + + + 2223 + 557 + 3 + 4 + Power + Power + 1 + 1 + true + true + false + false + true + false + true + true + 2267 + 2267 + Power consumed by the pump + true + + + 2224 + 557 + 3 + 5 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of pump starts and shutdowns + true + + + 2225 + 557 + 3 + 6 + Operating Cost + Operating Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2555 + 2555 + Electric cost of operating the pump + true + + + 2226 + 561 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of vehicles + true + + + 2227 + 561 + 3 + 2 + Installed Capacity + Installed Capacity + 80 + 80 + true + true + false + false + true + true + true + true + 320 + 320 + Total battery capacity + true + + + 2228 + 561 + 3 + 3 + Distance + Distance + 81 + 81 + true + true + false + false + true + false + true + true + 2111 + 2111 + Distance travelled + true + + + 2229 + 561 + 3 + 4 + Energy Consumption + Energy Consumption + 80 + 3 + true + true + false + false + true + false + true + true + 1815 + 1815 + Energy consumed + true + + + 2230 + 561 + 3 + 5 + Efficiency + Efficiency + 82 + 82 + true + true + false + false + true + false + true + true + 1209 + 1209 + Energy used per unit travelled + true + + + 2231 + 561 + 3 + 6 + Range + Range + 81 + 81 + true + true + false + false + true + false + true + true + 2112 + 2112 + Remaining range + true + + + 2232 + 561 + 3 + 7 + Energy + Energy + 80 + 80 + true + true + false + false + true + false + true + true + 173 + 173 + Energy stored + true + + + 2233 + 561 + 3 + 8 + SoC + SoC + 12 + 12 + true + true + false + false + true + false + true + true + 1660 + 1660 + State of charge + true + + + 2234 + 561 + 3 + 9 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Charge rate/energy + true + + + 2235 + 561 + 3 + 10 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Discharge rate/energy + true + + + 2236 + 561 + 3 + 11 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2237 + 561 + 3 + 12 + Hours in Use + Hours in Use + 6 + 6 + true + true + false + false + true + false + true + true + 1383 + 1383 + Number of hours in use + true + + + 2238 + 561 + 3 + 13 + Hours Charging + Hours Charging + 6 + 6 + true + true + false + false + true + false + true + true + 1662 + 1662 + Number of hours in charging state + true + + + 2239 + 561 + 3 + 14 + Hours Discharging + Hours Discharging + 6 + 6 + true + true + false + false + true + false + true + true + 1663 + 1663 + Number of hours in discharging state + true + + + 2240 + 561 + 3 + 15 + Hours Idle + Hours Idle + 6 + 6 + true + true + false + false + true + false + true + true + 1664 + 1664 + Number of hours in idle state + true + + + 2241 + 561 + 3 + 16 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2242 + 561 + 3 + 17 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2243 + 561 + 3 + 18 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2244 + 561 + 3 + 19 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2245 + 561 + 3 + 20 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2246 + 561 + 3 + 21 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2247 + 561 + 3 + 22 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid charging + true + + + 2248 + 561 + 3 + 23 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2249 + 561 + 3 + 24 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2250 + 561 + 3 + 25 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2251 + 561 + 3 + 26 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2252 + 561 + 3 + 27 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2253 + 561 + 3 + 28 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2254 + 561 + 3 + 29 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2255 + 561 + 3 + 30 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2256 + 561 + 8 + 31 + Units Purchased + Units Purchased + 0 + 0 + true + true + false + false + true + false + false + false + 2453 + 2453 + Number of vehicles purchased + true + + + 2257 + 561 + 8 + 32 + Capacity Added + Capacity Added + 80 + 80 + true + true + false + false + true + false + false + false + 2454 + 2454 + Battery capacity added + true + + + 2258 + 561 + 8 + 33 + Purchase Cost + Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2451 + 2451 + Cost of vehicles purchased + true + + + 2259 + 561 + 8 + 34 + Annualized Purchase Cost + Annualized Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2455 + 2455 + Annualized cost of vehicle purchases + true + + + 2260 + 561 + 8 + 35 + Units Disposed + Units Disposed + 0 + 0 + true + true + false + false + true + false + false + false + 2456 + 2456 + Number of vehicles disposed of + true + + + 2261 + 561 + 8 + 36 + Capacity Removed + Capacity Removed + 80 + 80 + true + true + false + false + true + false + false + false + 2457 + 2457 + Battery capacity removed + true + + + 2262 + 561 + 8 + 37 + Disposal Cost + Disposal Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2452 + 2452 + Cost of disposing of vehicles + true + + + 2263 + 561 + 8 + 38 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2264 + 561 + 12 + 39 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2265 + 561 + 12 + 40 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2266 + 561 + 12 + 41 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2267 + 566 + 3 + 1 + Consumption + Consumption + 0 + 0 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Commodity + true + + + 2268 + 566 + 3 + 2 + Energy Consumption + Energy Consumption + 80 + 3 + true + true + false + false + true + false + true + true + 1815 + 1815 + Energy from the Commodity + true + + + 2269 + 566 + 3 + 3 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Cost for Energy from the Commodity + true + + + 2270 + 569 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of chargers + true + + + 2271 + 569 + 3 + 2 + Installed Capacity + Installed Capacity + 79 + 79 + true + true + false + false + true + true + true + true + 320 + 320 + Total charging capacity of the station + true + + + 2272 + 569 + 3 + 3 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Load from charging + true + + + 2273 + 569 + 3 + 4 + Deferred Load + Deferred Load + 79 + 3 + true + true + false + false + true + false + true + true + 2126 + 2126 + Deferred charging load + true + + + 2274 + 569 + 3 + 5 + Hours Deferred + Hours Deferred + 6 + 6 + true + true + false + false + true + false + true + true + 2154 + 2154 + Average hours load is deferred in the period + true + + + 2275 + 569 + 3 + 6 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Generation from discharging + true + + + 2276 + 569 + 3 + 7 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2277 + 569 + 3 + 8 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2278 + 569 + 3 + 9 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2279 + 569 + 3 + 10 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2280 + 569 + 3 + 11 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2281 + 569 + 3 + 12 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2282 + 569 + 3 + 13 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2283 + 569 + 3 + 14 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid charging + true + + + 2284 + 569 + 3 + 15 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2285 + 569 + 3 + 16 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2286 + 569 + 3 + 17 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2287 + 569 + 3 + 18 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2288 + 569 + 3 + 19 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2289 + 569 + 3 + 20 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2290 + 569 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2291 + 569 + 8 + 22 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2292 + 569 + 8 + 23 + Capacity Built + Capacity Built + 79 + 79 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2293 + 569 + 8 + 24 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of building a unit + true + + + 2294 + 569 + 8 + 25 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2295 + 569 + 8 + 26 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2296 + 569 + 8 + 27 + Capacity Retired + Capacity Retired + 79 + 79 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2297 + 569 + 8 + 28 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2298 + 569 + 8 + 29 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2299 + 569 + 12 + 30 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2300 + 569 + 12 + 31 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2301 + 569 + 12 + 32 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2302 + 575 + 3 + 1 + Installed Capacity + Installed Capacity + 80 + 80 + true + true + false + false + true + true + true + true + 320 + 320 + Total battery capacity + true + + + 2303 + 575 + 3 + 2 + Distance + Distance + 81 + 81 + true + true + false + false + true + false + true + true + 2111 + 2111 + Distance travelled + true + + + 2304 + 575 + 3 + 3 + Charging + Charging + 79 + 3 + true + true + false + false + true + false + true + true + 2113 + 2113 + Load from charging + true + + + 2305 + 575 + 3 + 4 + Discharging + Discharging + 79 + 3 + true + true + false + false + true + false + true + true + 2114 + 2114 + Generation from discharging + true + + + 2306 + 575 + 3 + 5 + Losses + Losses + 79 + 3 + true + true + false + false + true + false + true + true + 924 + 924 + Total charge and discharge losses + true + + + 2307 + 575 + 3 + 6 + Raise Reserve + Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2308 + 575 + 3 + 7 + Lower Reserve + Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2309 + 575 + 3 + 8 + Regulation Raise Reserve + Regulation Raise Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2310 + 575 + 3 + 9 + Regulation Lower Reserve + Regulation Lower Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2311 + 575 + 3 + 10 + Replacement Reserve + Replacement Reserve + 79 + 3 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2312 + 575 + 3 + 11 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2313 + 575 + 3 + 12 + Charge Price + Charge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2115 + 2115 + Price paid for charging + true + + + 2314 + 575 + 3 + 13 + Discharge Price + Discharge Price + 84 + 84 + true + true + false + false + true + false + true + true + 2116 + 2116 + Price received discharging + true + + + 2315 + 575 + 3 + 14 + Charge Cost + Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2117 + 2117 + Cost of charging + true + + + 2316 + 575 + 3 + 15 + Discharge Revenue + Discharge Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 2118 + 2118 + Revenue from discharging + true + + + 2317 + 575 + 3 + 16 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2318 + 575 + 3 + 17 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2319 + 575 + 3 + 18 + Net Charge Cost + Net Charge Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2119 + 2119 + Net of cost of charging and revenue from discharging + true + + + 2320 + 575 + 3 + 19 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2321 + 575 + 3 + 20 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2322 + 575 + 8 + 21 + Units Purchased + Units Purchased + 0 + 0 + true + true + false + false + true + false + false + false + 2453 + 2453 + Number of vehicles purchased + true + + + 2323 + 575 + 8 + 22 + Capacity Added + Capacity Added + 80 + 80 + true + true + false + false + true + false + false + false + 2454 + 2454 + Battery capacity added + true + + + 2324 + 575 + 8 + 23 + Purchase Cost + Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2451 + 2451 + Cost of vehicles purchased + true + + + 2325 + 575 + 8 + 24 + Annualized Purchase Cost + Annualized Purchase Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2455 + 2455 + Annualized cost of vehicle purchases + true + + + 2326 + 575 + 8 + 25 + Units Disposed + Units Disposed + 0 + 0 + true + true + false + false + true + false + false + false + 2456 + 2456 + Number of vehicles disposed of + true + + + 2327 + 575 + 8 + 26 + Capacity Removed + Capacity Removed + 80 + 80 + true + true + false + false + true + false + false + false + 2457 + 2457 + Battery capacity removed + true + + + 2328 + 575 + 8 + 27 + Disposal Cost + Disposal Cost + 34 + 34 + true + true + false + false + true + false + false + false + 2452 + 2452 + Cost of disposing of vehicles + true + + + 2329 + 575 + 8 + 28 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2330 + 575 + 12 + 29 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2331 + 575 + 12 + 30 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2332 + 575 + 12 + 31 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2333 + 579 + 3 + 1 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Own generation + generation contracts + true + + + 2334 + 579 + 3 + 2 + Fuel Offtake + Fuel Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 223 + 223 + Fuel offtake + true + + + 2335 + 579 + 3 + 3 + Fuel Production Rate + Fuel Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 2036 + 2742 + Fuel production from Power2X + true + + + 2336 + 579 + 3 + 4 + Waste Heat + Waste Heat + 15 + 16 + true + true + false + true + true + false + true + true + 954 + 954 + Waste heat from generation + true + + + 2337 + 579 + 3 + 5 + Start Fuel Offtake + Start Fuel Offtake + 15 + 16 + true + true + false + false + true + false + true + true + 762 + 762 + Start fuel offtake + true + + + 2338 + 579 + 3 + 6 + Dispatchable Capacity + Dispatchable Energy + 1 + 2 + true + true + false + false + true + false + true + true + 149 + 2341 + On-line capacity + true + + + 2339 + 579 + 3 + 7 + Undispatched Capacity + Undispatched Energy + 1 + 2 + true + true + false + false + true + false + true + true + 803 + 2342 + Capacity on-line but undispatched + true + + + 2340 + 579 + 3 + 8 + No Cost Capacity + No Cost Energy + 1 + 2 + true + true + false + false + true + false + true + true + 1161 + 2343 + Capacity available at no cost. + true + + + 2341 + 579 + 3 + 9 + Capacity Curtailed + Energy Curtailed + 1 + 2 + true + true + false + false + true + false + true + true + 1163 + 2344 + Amount of non-positive-priced generation curtailed. + true + + + 2342 + 579 + 3 + 10 + Fixed Load Generation + Fixed Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1282 + 1282 + Generation attributable to [Fixed Load] constraint. + true + + + 2343 + 579 + 3 + 11 + Min Load Generation + Min Load Generation + 1 + 2 + true + true + false + false + true + false + true + true + 879 + 879 + Generation attributable to Min Load constraint + true + + + 2344 + 579 + 3 + 12 + Raise Reserve + Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 919 + 919 + Provision of raise (spin up) reserve + true + + + 2345 + 579 + 3 + 13 + Lower Reserve + Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 920 + 920 + Provision of lower (spin down) reserve + true + + + 2346 + 579 + 3 + 14 + Regulation Raise Reserve + Regulation Raise Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 921 + 921 + Provision of regulation raise reserve + true + + + 2347 + 579 + 3 + 15 + Regulation Lower Reserve + Regulation Lower Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 922 + 922 + Provision of regulation lower reserve + true + + + 2348 + 579 + 3 + 16 + Replacement Reserve + Replacement Reserve + 1 + 2 + true + true + false + false + true + false + true + true + 923 + 923 + Provision of replacement reserve + true + + + 2349 + 579 + 3 + 17 + Inertia + Inertia + 97 + 98 + true + true + false + false + true + false + true + true + 2516 + 2516 + Provision of inertia + true + + + 2350 + 579 + 3 + 18 + Auxiliary Use + Auxiliary Use + 1 + 2 + true + true + false + false + true + false + true + true + 22 + 22 + Auxiliary use + true + + + 2351 + 579 + 3 + 19 + Pump Load + Pump Load + 1 + 2 + true + true + false + false + true + false + true + true + 642 + 642 + Load drawn by pump storage generators + true + + + 2352 + 579 + 3 + 20 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Own load + load contracts + true + + + 2353 + 579 + 3 + 21 + Purchaser Load + Purchaser Load + 1 + 2 + true + true + false + false + true + false + true + true + 647 + 647 + Load from cleared purchaser bids + true + + + 2354 + 579 + 3 + 22 + Net Generation + Net Generation + 1 + 2 + true + true + false + false + true + false + true + true + 539 + 539 + Max(0, generation - purchase) + true + + + 2355 + 579 + 3 + 23 + Net Load + Net Load + 1 + 2 + true + true + false + false + true + false + true + true + 544 + 544 + Max(0, load - generation) + true + + + 2356 + 579 + 3 + 24 + Fuel Price + Fuel Price + 29 + 29 + true + true + false + true + true + false + true + true + 225 + 225 + Average fuel price + true + + + 2357 + 579 + 3 + 25 + Fuel Cost + Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 882 + 882 + Total fuel bill + true + + + 2358 + 579 + 3 + 26 + Fuel Transport Cost + Fuel Transport Cost + 14 + 34 + true + true + false + true + true + false + true + true + 997 + 997 + Cost of transporting fuel to the generator + true + + + 2359 + 579 + 3 + 27 + Fuel Transition Cost + Fuel Transition Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1138 + 1138 + Cost of transitioning between Fuels. + true + + + 2360 + 579 + 3 + 28 + Fuel Inventory Cost + Fuel Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1604 + 1604 + Cost of fuel stockpile. + true + + + 2361 + 579 + 3 + 29 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2362 + 579 + 3 + 30 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2363 + 579 + 3 + 31 + UoS Cost + UoS Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1038 + 1038 + Total use of system cost + true + + + 2364 + 579 + 3 + 32 + Pump Cost + Pump Cost + 14 + 34 + true + true + false + true + true + false + true + true + 638 + 638 + Pool cost for pump energy + true + + + 2365 + 579 + 3 + 33 + Reserves VO&M Cost + Reserves VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 955 + 955 + Variable operations and maintenance cost associated with providing reserves + true + + + 2366 + 579 + 3 + 34 + Reserves Cost + Reserves Cost + 14 + 34 + true + true + false + true + true + false + true + true + 691 + 691 + Cost from reserves + true + + + 2367 + 579 + 3 + 35 + Generation Cost + Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 236 + 236 + Generation cost + true + + + 2368 + 579 + 3 + 36 + Generator Start & Shutdown Cost + Generator Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 253 + 253 + Total cost of generation unit starts + true + + + 2369 + 579 + 3 + 37 + Start Fuel Cost + Start Fuel Cost + 14 + 34 + true + true + false + true + true + false + true + true + 977 + 977 + Cost of fuel for unit starts + true + + + 2370 + 579 + 3 + 38 + Emissions Cost + Emissions Cost + 14 + 34 + true + true + false + true + true + false + true + true + 166 + 166 + Cost from production of emissions + true + + + 2371 + 579 + 3 + 39 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2372 + 579 + 3 + 40 + Total Generation Cost + Total Generation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1013 + 1013 + Total of generation and start and shutdown costs and emissions costs + true + + + 2373 + 579 + 3 + 41 + Fuel Production Cost + Fuel Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2743 + 2743 + Cost of fuel production from Power2X + true + + + 2374 + 579 + 3 + 42 + Total System Cost + Total System Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1825 + 1825 + Total system cost including fuel, VO&M, start and shutdown costs, emissions costs and ramp costs. + true + + + 2375 + 579 + 3 + 43 + Fuel Contract Cost + Fuel Contract Cost + 14 + 34 + true + true + false + true + true + false + true + true + 220 + 220 + Cost of fuel purchased under contract + true + + + 2376 + 579 + 3 + 44 + Equity Cost + Equity Cost + 14 + 34 + true + true + false + true + true + false + true + true + 181 + 181 + Cost of equity + true + + + 2377 + 579 + 3 + 45 + Debt Cost + Debt Cost + 14 + 34 + true + true + false + true + true + false + true + true + 128 + 128 + Cost of debt + true + + + 2378 + 579 + 3 + 46 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs + true + + + 2379 + 579 + 3 + 47 + Cost to Load + Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 120 + 120 + Pool purchase cost from own load + load contracts + true + + + 2380 + 579 + 3 + 48 + SRMC + SRMC + 33 + 33 + true + true + false + false + true + false + true + true + 759 + 759 + Weighted average SRMC of the company sent out generation + true + + + 2381 + 579 + 3 + 49 + Bid-Cost Mark-up + Bid-Cost Mark-up + 12 + 12 + true + true + true + false + true + false + true + true + 32 + 32 + Percentage mark-up applied to generator offer prices = (P - C) / C + true + + + 2382 + 579 + 3 + 50 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Weighted average price received for generation + true + + + 2383 + 579 + 3 + 51 + Price Paid + Price Paid + 33 + 33 + true + true + false + false + true + false + true + true + 617 + 617 + Weighted average price paid for purchases + true + + + 2384 + 579 + 3 + 52 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue from own generation + generation contracts + true + + + 2385 + 579 + 3 + 53 + Reserves Revenue + Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 692 + 692 + Revenue from provision of reserves + true + + + 2386 + 579 + 3 + 54 + Gas Market Revenue + Gas Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1683 + 1683 + Revenue from gas markets + true + + + 2387 + 579 + 3 + 55 + Heat Market Revenue + Heat Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 256 + 256 + Revenue from heat markets + true + + + 2388 + 579 + 3 + 56 + Fuel Market Revenue + Fuel Market Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 221 + 221 + Revenue from fuel markets + true + + + 2389 + 579 + 3 + 57 + Transmission Rental + Transmission Rental + 14 + 34 + true + true + false + true + true + false + true + true + 798 + 798 + Settlement surplus on own transmission lines + true + + + 2390 + 579 + 3 + 58 + Net Generation Revenue + Net Generation Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 541 + 541 + Net generator pool revenue + true + + + 2391 + 579 + 3 + 59 + Net Cost to Load + Net Cost to Load + 14 + 34 + true + true + false + true + true + false + true + true + 538 + 538 + Net cost to load + true + + + 2392 + 579 + 3 + 60 + Net Reserves Revenue + Net Reserves Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 551 + 551 + Net revenue from provision of reserves + true + + + 2393 + 579 + 3 + 61 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue + true + + + 2394 + 579 + 3 + 62 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit + true + + + 2395 + 579 + 3 + 63 + Generation at RRN + Generation at RRN + 1 + 2 + true + true + false + false + true + false + true + true + 228 + 228 + Own generation taken to the regional reference node + true + + + 2396 + 579 + 3 + 64 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Volume of financial contracts (CfDs) + true + + + 2397 + 579 + 3 + 65 + Net Contract Volume + Net Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 535 + 535 + Net volume on CfDs (generation - contract volume) + true + + + 2398 + 579 + 3 + 66 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on CfDs + true + + + 2399 + 579 + 3 + 67 + Net Contract Settlement + Net Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 534 + 534 + Monies received (+ve) or paid out (-ve) on CfDs net of interconnector surpluses + true + + + 2400 + 579 + 3 + 68 + Net Pool Revenue + Net Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 547 + 547 + Pool revenue plus financial contract settlement + true + + + 2401 + 579 + 3 + 69 + Contract Generation + Contract Generation + 1 + 2 + true + true + false + false + true + false + true + true + 102 + 102 + Generation from physical contracts + true + + + 2402 + 579 + 3 + 70 + Contract Load + Contract Load + 1 + 2 + true + true + false + false + true + false + true + true + 104 + 104 + Load from physical contracts + true + + + 2403 + 579 + 3 + 71 + Contract Cost + Contract Cost + 14 + 34 + true + true + false + true + true + false + true + true + 101 + 101 + Generation cost from physical contracts + true + + + 2404 + 579 + 3 + 72 + Contract Revenue + Contract Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 106 + 106 + Revenue from physical contracts + true + + + 2405 + 579 + 3 + 73 + Net Contract Revenue + Net Contract Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 533 + 533 + Net revenue from physical contracts + true + + + 2406 + 579 + 3 + 74 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 2407 + 579 + 3 + 75 + Generator Monopoly Rent + Generator Monopoly Rent + 14 + 34 + true + true + false + true + true + false + true + true + 244 + 244 + Monopoly rent from competitive bidding + true + + + 2408 + 579 + 3 + 76 + Strategic Shadow Price + Strategic Shadow Price + 33 + 33 + true + true + false + false + true + false + true + true + 767 + 767 + Shadow price on the Company [Strategic] constraint. + true + + + 2409 + 579 + 3 + 77 + Constrained On Revenue + Constrained On Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 94 + 94 + Constrained on revenue + true + + + 2410 + 579 + 3 + 78 + Constrained Off Revenue + Constrained Off Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 92 + 92 + Constrained off revenue + true + + + 2411 + 579 + 3 + 79 + Gas Demand + Gas Demand + 75 + 76 + true + true + false + true + true + false + true + true + 2137 + 2137 + Total gas demand for the company + true + + + 2412 + 579 + 3 + 80 + Gas Supply + Gas Supply + 75 + 76 + true + true + false + true + true + false + true + true + 2138 + 2138 + Total gas supply for the company + true + + + 2413 + 579 + 3 + 81 + Gas Imbalance + Gas Imbalance + 75 + 76 + true + true + false + true + true + false + true + true + 2139 + 2139 + Total gas supply imbalance for the company (Gas Demand - Gas Supply) + true + + + 2414 + 579 + 3 + 82 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from the company + true + + + 2415 + 579 + 3 + 83 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the company + true + + + 2416 + 579 + 3 + 84 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange for the company (Financial Exports - Financial Imports) + true + + + 2417 + 579 + 3 + 85 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the company + true + + + 2418 + 579 + 3 + 86 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the company + true + + + 2419 + 579 + 3 + 87 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 2420 + 579 + 3 + 88 + Load-weighted Price + Load-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 364 + 364 + Load-weighted average price + true + + + 2421 + 579 + 3 + 89 + Generation-weighted Price + Generation-weighted Price + 33 + 33 + true + true + false + false + true + false + true + true + 1404 + 1404 + Generation-weighted average price + true + + + 2422 + 579 + 3 + 90 + Dump Energy Allocation + Dump Energy Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 2390 + 2390 + Dump energy allocated to the company. + true + + + 2423 + 579 + 3 + 91 + Unserved Energy Allocation + Unserved Energy Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 2391 + 2391 + Unserved energy (USE) allocated to the company. + true + + + 2424 + 579 + 3 + 92 + Loss Allocation + Loss Allocation + 1 + 2 + true + true + false + false + true + false + true + true + 373 + 373 + Losses allocated to the company. + true + + + 2425 + 579 + 6 + 93 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed generation capacity + true + + + 2426 + 579 + 6 + 94 + Available Capacity + Available Energy + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 2345 + Available generation capacity + true + + + 2427 + 579 + 6 + 95 + Generator Firm Capacity + Generator Firm Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 242 + 242 + Capacity provided by generators + true + + + 2428 + 579 + 8 + 96 + Capacity Built + Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built (Max Capacity x Units Built) + true + + + 2429 + 579 + 8 + 97 + Capacity Retired + Capacity Retired + 1 + 1 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired (Max Capacity x Units Retired) + true + + + 2430 + 579 + 8 + 98 + Net New Capacity + Net New Capacity + 1 + 1 + true + true + false + false + true + false + false + false + 546 + 546 + Net Capacity (cumulative Max Capacity x (Units Built - Units Retired)) + true + + + 2431 + 579 + 8 + 99 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments to generators in the company + true + + + 2432 + 579 + 8 + 100 + Capacity Price + Capacity Price + 31 + 31 + true + true + false + false + true + false + true + true + 881 + 881 + Average price paid for capacity in the company + true + + + 2433 + 579 + 8 + 101 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2434 + 579 + 8 + 102 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of units retired + true + + + 2435 + 579 + 8 + 103 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of generating units built + true + + + 2436 + 579 + 8 + 104 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable generation costs + true + + + 2437 + 579 + 8 + 105 + Levelized Cost + Levelized Cost + 33 + 33 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of electricity + true + + + 2438 + 579 + 8 + 106 + Shadow Capacity Built + Shadow Capacity Built + 1 + 1 + true + true + false + false + true + false + false + false + 1823 + 1823 + Capacity built (Max Capacity x Units Built) before Competition models. + true + + + 2439 + 579 + 12 + 107 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2440 + 579 + 12 + 108 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2441 + 579 + 12 + 109 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2442 + 582 + 1 + 1 + Offtake + Offtake + 15 + 16 + true + true + false + true + true + false + true + true + 577 + 577 + Fuel offtake + true + + + 2443 + 582 + 1 + 2 + Offtake Ratio + Offtake Ratio + 12 + 12 + true + true + false + false + true + false + true + true + 884 + 884 + Proportion of fuel used by the generators + true + + + 2444 + 582 + 1 + 3 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Costs associated with fuel stockpile + true + + + 2445 + 582 + 1 + 4 + Production Rate + Production Volume + 15 + 16 + true + true + false + true + true + false + true + true + 627 + 1743 + Rate of production/volume of production from Power2X + true + + + 2446 + 582 + 1 + 5 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Total cost of production from Power2X + true + + + 2447 + 582 + 1 + 6 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Total of fixed and variable costs across the entire portfolio + true + + + 2448 + 582 + 1 + 7 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of the fuel produced + true + + + 2449 + 583 + 1 + 1 + Production + Production + 19 + 20 + true + true + false + true + true + false + true + true + 624 + 624 + Net production of the emission + true + + + 2450 + 583 + 1 + 2 + Gross Production + Gross Production + 19 + 20 + true + true + false + true + true + false + true + true + 1438 + 1438 + Emissions prior to removal or abatement + true + + + 2451 + 583 + 1 + 3 + Removal + Removal + 19 + 20 + true + true + false + false + true + false + true + true + 1441 + 1441 + Emissions removed + true + + + 2452 + 583 + 1 + 4 + Removal Cost + Removal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 911 + 911 + Cost of emission removal + true + + + 2453 + 583 + 1 + 5 + Abatement + Abatement + 19 + 20 + true + true + false + true + true + false + true + true + 1431 + 1431 + Emissions abated + true + + + 2454 + 583 + 1 + 6 + Abatement Cost + Abatement Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1426 + 1426 + Cost of emission abatement + true + + + 2455 + 583 + 1 + 7 + Generation + Generation + 25 + 24 + true + true + false + false + true + false + true + true + 227 + 227 + Generation associated with the emission + true + + + 2456 + 583 + 1 + 8 + Intensity + Intensity + 40 + 40 + true + true + false + false + true + false + true + true + 1297 + 1297 + Emission intensity of generation + true + + + 2457 + 583 + 1 + 9 + Allocation + Allocation + 19 + 20 + true + true + false + false + true + false + true + true + 3 + 3 + Emission rights allocation + true + + + 2458 + 583 + 1 + 10 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Emission cost net of rights allocation + true + + + 2459 + 584 + 1 + 1 + Provision + Provision + 1 + 2 + true + true + false + false + true + false + true + true + 634 + 634 + Reserve provision + true + + + 2460 + 584 + 1 + 2 + Revenue + Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 696 + 696 + Reserve revenue + true + + + 2461 + 585 + 1 + 1 + Load + Load + 1 + 2 + true + true + false + false + true + false + true + true + 349 + 349 + Own load in region + true + + + 2462 + 585 + 1 + 2 + Installed Capacity + Installed Capacity + 1 + 1 + true + true + false + false + true + false + true + true + 320 + 320 + Installed capacity in region + true + + + 2463 + 585 + 1 + 3 + Available Capacity + Available Capacity + 1 + 2 + true + true + false + false + true + false + true + true + 23 + 23 + Available generation capacity in region + true + + + 2464 + 585 + 1 + 4 + Generation + Generation + 1 + 2 + true + true + false + false + true + false + true + true + 227 + 227 + Generation in region + true + + + 2465 + 585 + 1 + 5 + Marginal Cost + Marginal Cost + 33 + 33 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of generation in the Region + true + + + 2466 + 585 + 1 + 6 + Price Received + Price Received + 33 + 33 + true + true + false + false + true + false + true + true + 618 + 618 + Weighted average price received for generation in region + true + + + 2467 + 585 + 1 + 7 + Pool Revenue + Pool Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 609 + 609 + Pool revenue from own generation + generation contracts in region + true + + + 2468 + 585 + 1 + 8 + Generation at RRN + Generation at RRN + 1 + 2 + true + true + false + false + true + false + true + true + 228 + 228 + Own generation taken to the regional reference node + true + + + 2469 + 585 + 1 + 9 + Contract Volume + Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 109 + 109 + Volume of financial contracts (CfDs) sold in the region + true + + + 2470 + 585 + 1 + 10 + Net Contract Volume + Net Contract Volume + 1 + 2 + true + true + false + false + true + false + true + true + 535 + 535 + Net volume on CfDs (generation - contract volume) + true + + + 2471 + 585 + 1 + 11 + Contract Shortfall + Contract Shortfall + 1 + 2 + true + true + false + false + true + false + true + true + 108 + 108 + Shortfall of generation for contracts in region (pro-rated) + true + + + 2472 + 585 + 1 + 12 + Contract Settlement + Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 107 + 107 + Monies received (+ve) or paid out (-ve) on CfDs in the region + true + + + 2473 + 585 + 1 + 13 + Net Contract Settlement + Net Contract Settlement + 14 + 34 + true + true + false + true + true + false + true + true + 534 + 534 + Monies received (+ve) or paid out (-ve) on CfDs net of interconnector surpluses + true + + + 2474 + 585 + 1 + 14 + Shadow Generation + Shadow Generation + 1 + 2 + true + true + false + false + true + false + true + true + 1144 + 1144 + Generation before uplift or Competition models. + true + + + 2475 + 587 + 1 + 1 + Balancing Area Interchange Exports + Balancing Area Interchange Exports + 1 + 2 + true + true + false + false + true + false + true + true + 2058 + 2058 + Financial exports from parent company to child company + true + + + 2476 + 587 + 1 + 2 + Balancing Area Interchange Imports + Balancing Area Interchange Imports + 1 + 2 + true + true + false + false + true + false + true + true + 2059 + 2059 + Financial imports to the parent region from child region + true + + + 2477 + 587 + 1 + 3 + Net Balancing Area Interchange + Net Balancing Area Interchange + 1 + 2 + true + true + false + false + true + false + true + true + 2060 + 2060 + Net Financial Interchange (Financial Exports - Financial Imports) + true + + + 2478 + 587 + 1 + 4 + Balancing Area Interchange Exports Revenue + Balancing Area Interchange Exports Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2062 + 2062 + Revenue from financial exports from the region + true + + + 2479 + 587 + 1 + 5 + Balancing Area Interchange Imports Cost + Balancing Area Interchange Imports Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2063 + 2063 + Cost of financial imports to the region + true + + + 2480 + 587 + 1 + 6 + Net Balancing Area Interchange Revenue + Net Balancing Area Interchange Revenue + 14 + 34 + true + true + false + false + true + false + true + true + 2064 + 2064 + Net Financial Revenue (Financial Export Revenue - Financial Imports Cost) + true + + + 2481 + 588 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 2482 + 588 + 1 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1274 + 1274 + Production cost from Facilities producing the Commodity + true + + + 2483 + 588 + 1 + 3 + Total Cost + Total Cost + 14 + 34 + true + true + false + false + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 2484 + 588 + 1 + 4 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + true + true + 1388 + 1388 + Levelized cost of production + true + + + 2485 + 593 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of units + true + + + 2486 + 593 + 3 + 2 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Commodity + true + + + 2487 + 593 + 3 + 3 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 2488 + 593 + 3 + 4 + Net Consumption + Net Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 2282 + 2282 + Net of consumption and production of the Commodity + true + + + 2489 + 593 + 3 + 5 + Energy Consumption + Energy Consumption + 15 + 16 + true + true + false + false + true + false + true + true + 1815 + 1815 + Equivalent energy consumption + true + + + 2490 + 593 + 3 + 6 + Energy Production + Energy Production + 15 + 16 + true + true + false + false + true + false + true + true + 2471 + 2471 + Equivalent energy production + true + + + 2491 + 593 + 3 + 7 + Net Energy Consumption + Net Energy Consumption + 15 + 16 + true + true + false + false + true + false + true + true + 2472 + 2472 + Net equivalent energy consumption + true + + + 2492 + 593 + 3 + 8 + Electric Energy Consumption + Electric Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 2473 + 2473 + Equivalent electric energy consumption + true + + + 2493 + 593 + 3 + 9 + Electric Energy Production + Electric Energy Production + 1 + 2 + true + true + false + false + true + false + true + true + 2474 + 2474 + Equivalent electric energy production + true + + + 2494 + 593 + 3 + 10 + Net Electric Energy Consumption + Net Electric Energy Consumption + 1 + 2 + true + true + false + false + true + false + true + true + 2475 + 2475 + Net equivalent electric energy consumption + true + + + 2495 + 593 + 3 + 11 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Price of the Commodity for the given level of Net Consumption + true + + + 2496 + 593 + 3 + 12 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity from binding constraints + true + + + 2497 + 593 + 3 + 13 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost incurred by consumption of the Commodity + true + + + 2498 + 593 + 3 + 14 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue earned from production of the Commodity + true + + + 2499 + 593 + 3 + 15 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net of Cost and Revenue from consumption and production of the Commodity + true + + + 2500 + 593 + 3 + 16 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2501 + 593 + 3 + 17 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2502 + 593 + 10 + 18 + Max Inventory + Max Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1589 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 2503 + 593 + 10 + 19 + Min Inventory + Min Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1590 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 2504 + 593 + 10 + 20 + Opening Inventory + Opening Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial amount of the Commodity in inventory + true + + + 2505 + 593 + 10 + 21 + Closing Inventory + Closing Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1593 + 1593 + Amount of the Commodity in inventory + true + + + 2506 + 593 + 10 + 22 + Inventory Change + Inventory Change + 86 + 86 + true + true + false + false + true + false + true + true + 2340 + 2340 + Change in Commodity in inventory + true + + + 2507 + 593 + 10 + 23 + Working Inventory + Working Inventory + 86 + 86 + true + true + false + true + true + false + true + true + 2501 + 2501 + Working inventory capacity at the end of the period + true + + + 2508 + 593 + 10 + 24 + Utilization + Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1462 + 1462 + Inventory capacity utilization + true + + + 2509 + 593 + 10 + 25 + Working Utilization + Working Utilization + 12 + 12 + true + true + false + false + true + false + true + true + 1463 + 1463 + Working inventory capacity utilization + true + + + 2510 + 593 + 10 + 26 + Average Utilization + Average Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1464 + 1464 + Average inventory capacity utilization + true + + + 2511 + 593 + 10 + 27 + Average Working Utilization + Average Working Utilization + 12 + 12 + false + true + false + false + true + false + true + true + 1475 + 1475 + Average working inventory capacity utilization + true + + + 2512 + 593 + 10 + 28 + Delivery + Delivery + 86 + 86 + true + true + false + false + true + false + true + true + 1592 + 1592 + Amount of the Commodity added to inventory + true + + + 2513 + 593 + 10 + 29 + Injection + Injection + 86 + 86 + true + true + false + false + true + false + true + true + 1392 + 1392 + Amount of the Commodity added to inventory + true + + + 2514 + 593 + 10 + 30 + Withdrawal + Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1391 + 1391 + Amount of the Commodity withdrawn from inventory + true + + + 2515 + 593 + 10 + 31 + Net Withdrawal + Net Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 2516 + 593 + 10 + 32 + Injection Losses + Injection Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2509 + 2509 + Losses from injections + true + + + 2517 + 593 + 10 + 33 + Withdrawal Losses + Withdrawal Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2510 + 2510 + Losses from withdrawals + true + + + 2518 + 593 + 10 + 34 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of additions to inventory + true + + + 2519 + 593 + 10 + 35 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost of holding the Commodity in inventory + true + + + 2520 + 593 + 10 + 36 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost of unused inventory capacity + true + + + 2521 + 593 + 10 + 37 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injections to the inventory + true + + + 2522 + 593 + 10 + 38 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawals from inventory + true + + + 2523 + 593 + 8 + 39 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2524 + 593 + 8 + 40 + Capacity Built + Capacity Built + 0 + 0 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2525 + 593 + 8 + 41 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2526 + 593 + 8 + 42 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2527 + 593 + 8 + 43 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from all facilities involved in production of the commodity + true + + + 2528 + 593 + 8 + 44 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of production + true + + + 2529 + 593 + 8 + 45 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2530 + 593 + 8 + 46 + Capacity Retired + Capacity Retired + 0 + 0 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2531 + 593 + 8 + 47 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2532 + 593 + 8 + 48 + Net New Capacity + Net New Capacity + 0 + 0 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 2533 + 593 + 12 + 49 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2534 + 593 + 12 + 50 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2535 + 593 + 12 + 51 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2536 + 599 + 3 + 1 + Consumption + Consumption + 93 + 93 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Primary Input Commodity by the Process + true + + + 2537 + 599 + 3 + 2 + Production + Production + 94 + 94 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Primary Output Commodity by the Process + true + + + 2538 + 599 + 3 + 3 + Capacity + Capacity + 94 + 94 + true + true + false + false + true + false + true + true + 1665 + 1665 + Capacity of production measured in units of the primary output + true + + + 2539 + 599 + 3 + 4 + Surplus + Surplus + 94 + 94 + true + true + false + false + true + false + true + true + 2332 + 2332 + Surplus production capacity + true + + + 2540 + 599 + 3 + 5 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of production capacity used + true + + + 2541 + 599 + 3 + 6 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that of surplus capacity + true + + + 2542 + 599 + 3 + 7 + Surplus Factor + Surplus Factor + 12 + 12 + true + true + false + false + true + false + true + true + 2411 + 2411 + Proportion of production capacity not used + true + + + 2543 + 599 + 3 + 8 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Ratio of primary output production to primary input consumption + true + + + 2544 + 599 + 3 + 9 + Cost + Cost + 14 + 34 + true + true + false + false + true + false + true + true + 117 + 117 + Processing cost + true + + + 2545 + 599 + 3 + 10 + Marginal Cost + Marginal Cost + 96 + 96 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2546 + 599 + 3 + 11 + Average Cost + Average Cost + 96 + 96 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2547 + 599 + 3 + 12 + Shadow Price + Shadow Price + 96 + 96 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of production + true + + + 2548 + 599 + 3 + 13 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost from all facilities implementing the process + true + + + 2549 + 599 + 8 + 14 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built from all facilities implementing the process + true + + + 2550 + 599 + 8 + 15 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built from all facilities implementing the process + true + + + 2551 + 599 + 8 + 16 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from all facilities implementing the process + true + + + 2552 + 599 + 12 + 17 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2553 + 599 + 12 + 18 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2554 + 599 + 12 + 19 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2555 + 604 + 1 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Secondary Input Commodity by the Process + true + + + 2556 + 605 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Secondary Output Commodity by the Process + true + + + 2557 + 608 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of existing units + true + + + 2558 + 608 + 3 + 2 + Consumption + Consumption + 93 + 93 + true + true + false + false + true + false + true + true + 1437 + 1437 + Consumption of the Primary Input Commodity by the Facility + true + + + 2559 + 608 + 3 + 3 + Production + Production + 94 + 94 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Primary Output Commodity by the Facility + true + + + 2560 + 608 + 3 + 4 + Capacity Factor + Capacity Factor + 12 + 12 + true + true + false + false + true + false + true + true + 58 + 58 + Proportion of capacity in production + true + + + 2561 + 608 + 3 + 5 + Efficiency + Efficiency + 12 + 12 + true + true + false + false + true + false + true + true + 1209 + 1209 + Average efficiency of production + true + + + 2562 + 608 + 3 + 6 + Efficiency Incr + Efficiency Incr + 12 + 12 + true + true + false + false + true + false + true + true + 163 + 163 + Marginal efficiency of production + true + + + 2563 + 608 + 3 + 7 + Electric Energy Consumption + Electric Energy Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 2473 + 2473 + Electric energy consumption + true + + + 2564 + 608 + 3 + 8 + Heat Consumption + Heat Consumption + 3 + 2 + true + true + false + true + true + false + true + true + 2751 + 2751 + Heat consumption + true + + + 2565 + 608 + 3 + 9 + Gas Consumption + Gas Consumption + 75 + 76 + true + true + false + true + true + false + true + true + 2730 + 2730 + Gas consumption + true + + + 2566 + 608 + 3 + 10 + Water Consumption + Water Consumption + 64 + 64 + true + true + false + true + true + false + true + true + 1803 + 1803 + Water consumption + true + + + 2567 + 608 + 3 + 11 + Electric Energy Cost + Electric Energy Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2733 + 2733 + Cost of electric energy consumed + true + + + 2568 + 608 + 3 + 12 + Heat Cost + Heat Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2753 + 2753 + Cost of heat consumed + true + + + 2569 + 608 + 3 + 13 + Gas Cost + Gas Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2734 + 2734 + Cost of gas consumed + true + + + 2570 + 608 + 3 + 14 + Water Cost + Water Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1809 + 1809 + Cost of water consumed + true + + + 2571 + 608 + 3 + 15 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 2572 + 608 + 3 + 16 + Marginal Cost + Marginal Cost + 96 + 96 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2573 + 608 + 3 + 17 + Average Cost + Average Cost + 96 + 96 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2574 + 608 + 3 + 18 + Units Warming Up + Units Warming Up + 0 + 0 + true + false + false + false + true + false + true + true + 2499 + 2499 + Number of units in the warm up process + true + + + 2575 + 608 + 3 + 19 + Units Operating + Units Operating + 0 + 0 + true + false + false + false + true + false + true + true + 2049 + 2049 + Number of units operating + true + + + 2576 + 608 + 3 + 20 + Units Started + Units Started + 0 + 0 + true + true + false + false + true + false + true + true + 823 + 823 + Number of units started + true + + + 2577 + 608 + 3 + 21 + Units Shutdown + Units Shutdown + 0 + 0 + true + true + false + false + true + false + true + true + 1027 + 1027 + Number of units shutdown + true + + + 2578 + 608 + 3 + 22 + Warm Up Hours + Warm Up Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2497 + 2497 + Number of hours warming up + true + + + 2579 + 608 + 3 + 23 + Operating Hours + Operating Hours + 6 + 6 + true + true + false + false + true + false + true + true + 281 + 281 + Number of hours of operation + true + + + 2580 + 608 + 3 + 24 + Hours Up + Hours Up + 6 + 6 + true + false + false + false + true + false + true + true + 935 + 935 + Number of hours since the last start + true + + + 2581 + 608 + 3 + 25 + Hours Down + Hours Down + 6 + 6 + true + false + false + false + true + false + true + true + 936 + 936 + Number of hours since the last shutdown + true + + + 2582 + 608 + 3 + 26 + Ramp + Ramp + 94 + 94 + true + false + false + false + true + false + true + true + 655 + 655 + Rate at which units are ramping + true + + + 2583 + 608 + 3 + 27 + Ramp Up + Ramp Up + 94 + 94 + true + true + false + false + true + false + true + true + 1315 + 1315 + Total ramping up + true + + + 2584 + 608 + 3 + 28 + Minutes of Ramp Up + Minutes of Ramp Up + 57 + 57 + true + true + false + false + true + false + true + true + 1316 + 1316 + Total minutes spent ramping up + true + + + 2585 + 608 + 3 + 29 + Ramp Up Cost + Ramp Up Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1180 + 1180 + Cost of ramp up charged at [Ramp Up Charge] + true + + + 2586 + 608 + 3 + 30 + Ramp Up Price + Ramp Up Price + 14 + 14 + true + true + false + false + true + false + true + true + 1157 + 1157 + Shadow price of the maximum ramping up constraint + true + + + 2587 + 608 + 3 + 31 + Ramp Down + Ramp Down + 0 + 0 + true + true + false + false + true + false + true + true + 1314 + 1314 + Total ramping down + true + + + 2588 + 608 + 3 + 32 + Minutes of Ramp Down + Minutes of Ramp Down + 57 + 57 + true + true + false + false + true + false + true + true + 1317 + 1317 + Total minutes spent ramping down + true + + + 2589 + 608 + 3 + 33 + Ramp Down Cost + Ramp Down Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1181 + 1181 + Cost of ramp down charged at [Ramp Down Charge] + true + + + 2590 + 608 + 3 + 34 + Ramp Down Price + Ramp Down Price + 14 + 14 + true + true + false + false + true + false + true + true + 1158 + 1158 + Shadow price of the maximum ramping down constraint + true + + + 2591 + 608 + 3 + 35 + Ramp Up Violation Hours + Ramp Up Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1039 + 1039 + Number of hours of [Max Ramp Up] violation + true + + + 2592 + 608 + 3 + 36 + Ramp Down Violation Hours + Ramp Down Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1041 + 1041 + Number of hours of [Max Ramp Down] violation + true + + + 2593 + 608 + 3 + 37 + Ramp Up Violation + Ramp Up Violation + 94 + 94 + true + true + false + false + true + false + true + true + 1159 + 1159 + Violation of [Max Ramp Up] constraint + true + + + 2594 + 608 + 3 + 38 + Ramp Down Violation + Ramp Down Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1160 + 1160 + Violation of [Max Ramp Down] constraint + true + + + 2595 + 608 + 3 + 39 + Ramp Up Violation Cost + Ramp Up Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1043 + 1043 + Cost of [Max Ramp Up] violations + true + + + 2596 + 608 + 3 + 40 + Ramp Down Violation Cost + Ramp Down Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1044 + 1044 + Cost of [Max Ramp Down] violations + true + + + 2597 + 608 + 3 + 41 + Fixed Production + Fixed Production + 94 + 94 + true + true + false + false + true + false + true + true + 2304 + 2304 + Production attributable to [Fixed Operating Level] constraint + true + + + 2598 + 608 + 3 + 42 + Fixed Production Violation + Fixed Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 2305 + 2305 + Violation of [Fixed Operating Level] constraint + true + + + 2599 + 608 + 3 + 43 + Fixed Production Violation Hours + Fixed Production Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2306 + 2306 + Number of hours that [Fixed Operating Level] is violated + true + + + 2600 + 608 + 3 + 44 + Fixed Production Violation Cost + Fixed Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2307 + 2307 + Cost of [Fixed Operating Level] violations + true + + + 2601 + 608 + 3 + 45 + Min Production Violation + Min Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 2309 + 2309 + Violation of [Min Operating Level] constraint + true + + + 2602 + 608 + 3 + 46 + Min Production Violation Hours + Min Production Violation Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2310 + 2310 + Number of hours that [Min Operating Level] is violated + true + + + 2603 + 608 + 3 + 47 + Min Production Violation Cost + Min Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2311 + 2311 + Cost of [Min Operating Level] violations + true + + + 2604 + 608 + 3 + 48 + Max Production Violation + Max Production Violation + 94 + 94 + true + true + false + false + true + false + true + true + 1363 + 1363 + Violation of [Max Production] or [Max Capacity Factor] constraints + true + + + 2605 + 608 + 3 + 49 + Max Production Violation Cost + Max Production Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1364 + 1364 + Cost of [Max Production] or [Max Capacity Factor] constraint violations + true + + + 2606 + 608 + 3 + 50 + Max Starts Violation + Max Starts Violation + 0 + 0 + true + true + false + false + true + false + true + true + 1217 + 1217 + Violation of [Max Starts] constraints + true + + + 2607 + 608 + 3 + 51 + Max Starts Violation Cost + Max Starts Violation Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1218 + 1218 + Cost of [Max Starts] constraint violations + true + + + 2608 + 608 + 3 + 52 + VO&M Charge + VO&M Charge + 14 + 14 + true + true + false + false + true + false + true + true + 849 + 849 + Variable operation and maintenance charge + true + + + 2609 + 608 + 3 + 53 + VO&M Cost + VO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 850 + 850 + Total variable operation and maintenance cost + true + + + 2610 + 608 + 3 + 54 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2611 + 608 + 3 + 55 + Start & Shutdown Cost + Start & Shutdown Cost + 14 + 34 + true + true + false + false + true + false + true + true + 760 + 760 + Cost of unit start up and shutdown + true + + + 2612 + 608 + 3 + 56 + Start & Shutdown Penalty Cost + Start & Shutdown Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1183 + 1183 + Penalty cost of unit start up and shutdown + true + + + 2613 + 608 + 3 + 57 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including production, VO&M, start and shutdown costs + true + + + 2614 + 608 + 3 + 58 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2615 + 608 + 3 + 59 + Price Received + Price Received + 14 + 14 + true + true + false + false + true + false + true + true + 618 + 618 + Price received for production + true + + + 2616 + 608 + 3 + 60 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Revenue for production + true + + + 2617 + 608 + 3 + 61 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit = net revenue - fixed costs + true + + + 2618 + 608 + 6 + 62 + Installed Capacity + Installed Capacity + 94 + 94 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Operating Level x Units) + true + + + 2619 + 608 + 6 + 63 + Available Capacity + Available Capacity + 94 + 94 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 2620 + 608 + 7 + 64 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service due to maintenance + true + + + 2621 + 608 + 7 + 65 + Maintenance + Maintenance + 94 + 94 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2622 + 608 + 7 + 66 + Discrete Maintenance + Discrete Maintenance + 94 + 94 + true + true + false + false + false + true + false + false + 146 + 146 + Planned capacity out of service + true + + + 2623 + 608 + 7 + 67 + Distributed Maintenance + Distributed Maintenance + 94 + 94 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal capacity out of service + true + + + 2624 + 608 + 7 + 68 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 2625 + 608 + 7 + 69 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of capacity on maintenance outage + true + + + 2626 + 608 + 7 + 70 + Forced Outage + Forced Outage + 94 + 94 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 2627 + 608 + 7 + 71 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 2628 + 608 + 7 + 72 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of capacity on forced outage + true + + + 2629 + 608 + 7 + 73 + Outage + Outage + 1 + 2 + true + true + false + false + true + false + true + true + 2560 + 2560 + Capacity lost to outage + true + + + 2630 + 608 + 7 + 74 + Outage Hours + Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2561 + 2561 + Number of hours on outage + true + + + 2631 + 608 + 7 + 75 + Outage Rate + Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 2562 + 2562 + Proportion of installed capacity on outage + true + + + 2632 + 608 + 7 + 76 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of capacity available for production + true + + + 2633 + 608 + 8 + 77 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2634 + 608 + 8 + 78 + Capacity Built + Capacity Built + 94 + 94 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2635 + 608 + 8 + 79 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2636 + 608 + 8 + 80 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2637 + 608 + 8 + 81 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2638 + 608 + 8 + 82 + Capacity Retired + Capacity Retired + 94 + 94 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2639 + 608 + 8 + 83 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2640 + 608 + 8 + 84 + Net New Capacity + Net New Capacity + 94 + 94 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 2641 + 608 + 8 + 85 + Capacity Price + Capacity Price + 14 + 14 + true + true + false + false + true + false + true + true + 881 + 881 + Price of new capacity + true + + + 2642 + 608 + 8 + 86 + Capacity Revenue + Capacity Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 62 + 62 + Revenue from capacity payments + true + + + 2643 + 608 + 8 + 87 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs + true + + + 2644 + 608 + 8 + 88 + Levelized Cost + Levelized Cost + 14 + 14 + true + true + false + false + true + false + false + false + 1388 + 1388 + Levelized cost of production + true + + + 2645 + 608 + 12 + 89 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2646 + 608 + 12 + 90 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2647 + 608 + 12 + 91 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2648 + 611 + 3 + 1 + Consumption + Consumption + 0 + 0 + true + true + true + false + true + false + true + true + 1437 + 1437 + Amount of Process Primary Input Commodity consumed by the Facility + true + + + 2649 + 612 + 3 + 1 + Production + Production + 0 + 0 + true + true + true + false + true + false + true + true + 624 + 624 + Amount of Process Primary Output Commodity produced by the Facility + true + + + 2650 + 613 + 3 + 1 + Consumption + Consumption + 0 + 0 + true + true + true + false + true + false + true + true + 1437 + 1437 + Amount of Process Secondary Input Commodity consumed by the Facility + true + + + 2651 + 614 + 3 + 1 + Production + Production + 0 + 0 + true + true + true + false + true + false + true + true + 624 + 624 + Amount of Process Secondary Output Commodity produced by the Facility + true + + + 2652 + 624 + 1 + 1 + Start Date + Start Date + 0 + 0 + true + true + false + false + true + false + true + true + 1719 + 1719 + Start date of next maintenance event. + true + + + 2653 + 624 + 1 + 2 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the maintenance is active. + true + + + 2654 + 624 + 1 + 3 + Duration + Duration + 6 + 6 + true + true + false + false + true + false + true + true + 1476 + 1476 + Duration of the maintenance event. + true + + + 2655 + 624 + 1 + 4 + Cost + Cost + 14 + 34 + true + true + true + false + true + false + true + true + 117 + 117 + Cost of the maintenance event. + true + + + 2656 + 624 + 1 + 5 + Crew + Crew + 0 + 0 + true + true + true + false + true + false + true + true + 1688 + 1688 + Maintenance event crew requirements. + true + + + 2657 + 624 + 1 + 6 + Equipment + Equipment + 0 + 0 + true + true + true + false + true + false + true + true + 1689 + 1689 + Maintenance event equipment requirements. + true + + + 2658 + 624 + 1 + 7 + Penalty Cost + Penalty Cost + 14 + 34 + true + true + false + false + true + false + true + true + 603 + 603 + Cost of not scheduling this maintenance event. + true + + + 2659 + 624 + 12 + 8 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2660 + 624 + 12 + 9 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2661 + 624 + 12 + 10 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2662 + 630 + 3 + 1 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Commodity consumed + true + + + 2663 + 630 + 3 + 2 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Commodity produced + true + + + 2664 + 630 + 3 + 3 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 2665 + 630 + 3 + 4 + Marginal Cost + Marginal Cost + 14 + 14 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2666 + 630 + 3 + 5 + Average Cost + Average Cost + 14 + 14 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2667 + 630 + 3 + 6 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Commodity flowed + true + + + 2668 + 630 + 3 + 7 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 2669 + 630 + 3 + 8 + Imports + Imports + 86 + 86 + true + true + false + false + true + false + true + true + 294 + 294 + Commodity imported + true + + + 2670 + 630 + 3 + 9 + Exports + Exports + 86 + 86 + true + true + false + false + true + false + true + true + 192 + 192 + Commodity exported + true + + + 2671 + 630 + 3 + 10 + Net Interchange + Net Interchange + 86 + 86 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on Flow Paths + true + + + 2672 + 630 + 3 + 11 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Total losses in the network + true + + + 2673 + 630 + 3 + 12 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 2674 + 630 + 3 + 13 + Shortage + Shortage + 86 + 86 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 2675 + 630 + 3 + 14 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 2676 + 630 + 3 + 15 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 2677 + 630 + 3 + 16 + Surplus + Surplus + 86 + 86 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 2678 + 630 + 3 + 17 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 2679 + 630 + 3 + 18 + Sales + Sales + 86 + 86 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to Markets + true + + + 2680 + 630 + 3 + 19 + Purchases + Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from Markets + true + + + 2681 + 630 + 3 + 20 + Net Sales + Net Sales + 86 + 86 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to Markets + true + + + 2682 + 630 + 3 + 21 + Net Purchases + Net Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from Markets + true + + + 2683 + 630 + 3 + 22 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours Market price cap was applied + true + + + 2684 + 630 + 3 + 23 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours Market price floor was applied + true + + + 2685 + 630 + 3 + 24 + Price + Price + 14 + 14 + true + true + false + false + true + false + true + true + 612 + 612 + Market price + true + + + 2686 + 630 + 3 + 25 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of Market sales + true + + + 2687 + 630 + 3 + 26 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Value of Market purchases + true + + + 2688 + 630 + 3 + 27 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net value of Market sales + true + + + 2689 + 630 + 3 + 28 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net value of Market purchases + true + + + 2690 + 630 + 3 + 29 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2691 + 630 + 3 + 30 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 2692 + 630 + 3 + 31 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 2693 + 630 + 3 + 32 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity in the Flow Network + true + + + 2694 + 630 + 6 + 33 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Flow capacity + true + + + 2695 + 630 + 6 + 34 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 2696 + 630 + 8 + 35 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Production capacity built + true + + + 2697 + 630 + 8 + 36 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of production capacity builds + true + + + 2698 + 630 + 8 + 37 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Production capacity retired + true + + + 2699 + 630 + 8 + 38 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of production capacity retirements + true + + + 2700 + 630 + 12 + 39 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2701 + 630 + 12 + 40 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2702 + 630 + 12 + 41 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2703 + 639 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Flow Node is in service + true + + + 2704 + 639 + 3 + 2 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Commodity consumed + true + + + 2705 + 639 + 3 + 3 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Commodity produced + true + + + 2706 + 639 + 3 + 4 + Production Cost + Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1274 + 1274 + Cost of production + true + + + 2707 + 639 + 3 + 5 + Marginal Cost + Marginal Cost + 88 + 88 + true + true + false + false + true + false + true + true + 398 + 398 + Marginal cost of production + true + + + 2708 + 639 + 3 + 6 + Average Cost + Average Cost + 88 + 88 + true + true + false + false + true + false + true + true + 979 + 979 + Average cost of production + true + + + 2709 + 639 + 3 + 7 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Commodity flowed + true + + + 2710 + 639 + 3 + 8 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 2711 + 639 + 3 + 9 + Imports + Imports + 86 + 86 + true + true + false + false + true + false + true + true + 294 + 294 + Commodity imported + true + + + 2712 + 639 + 3 + 10 + Exports + Exports + 86 + 86 + true + true + false + false + true + false + true + true + 192 + 192 + Commodity exported + true + + + 2713 + 639 + 3 + 11 + Net Interchange + Net Interchange + 86 + 86 + true + true + false + false + true + false + true + true + 543 + 543 + Net exports on Flow Paths + true + + + 2714 + 639 + 3 + 12 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Losses incurred at the Flow Node + true + + + 2715 + 639 + 3 + 13 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 2716 + 639 + 3 + 14 + Shortage + Shortage + 86 + 86 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 2717 + 639 + 3 + 15 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 2718 + 639 + 3 + 16 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 2719 + 639 + 3 + 17 + Surplus + Surplus + 86 + 86 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 2720 + 639 + 3 + 18 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 2721 + 639 + 3 + 19 + Sales + Sales + 86 + 86 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to Markets + true + + + 2722 + 639 + 3 + 20 + Purchases + Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from Markets + true + + + 2723 + 639 + 3 + 21 + Net Sales + Net Sales + 86 + 86 + true + true + false + false + true + false + true + true + 553 + 553 + Net sales to Markets + true + + + 2724 + 639 + 3 + 22 + Net Purchases + Net Purchases + 86 + 86 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from Markets + true + + + 2725 + 639 + 3 + 23 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours Market price cap was applied + true + + + 2726 + 639 + 3 + 24 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours Market price floor was applied + true + + + 2727 + 639 + 3 + 25 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Market price + true + + + 2728 + 639 + 3 + 26 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of Market sales + true + + + 2729 + 639 + 3 + 27 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Value of Market purchases + true + + + 2730 + 639 + 3 + 28 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net value of Market sales + true + + + 2731 + 639 + 3 + 29 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net value of Market purchases + true + + + 2732 + 639 + 3 + 30 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2733 + 639 + 3 + 31 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 2734 + 639 + 3 + 32 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 2735 + 639 + 3 + 33 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity at the Flow Node + true + + + 2736 + 639 + 6 + 34 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Flow capacity + true + + + 2737 + 639 + 6 + 35 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 2738 + 639 + 8 + 36 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the Flow Node is built in this year + true + + + 2739 + 639 + 8 + 37 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2740 + 639 + 8 + 38 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Flow Node + true + + + 2741 + 639 + 8 + 39 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the Flow Node is retired in this year + true + + + 2742 + 639 + 8 + 40 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2743 + 639 + 8 + 41 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Flow Node + true + + + 2744 + 639 + 12 + 42 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2745 + 639 + 12 + 43 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2746 + 639 + 12 + 44 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2747 + 645 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + false + false + 812 + 812 + Flag if the Flow Path is in service + true + + + 2748 + 645 + 3 + 2 + Flow + Flow + 86 + 86 + true + true + false + false + true + false + true + true + 205 + 205 + Net flow of the Commodity + true + + + 2749 + 645 + 3 + 3 + Flow Forward + Flow Forward + 86 + 86 + true + true + false + false + true + false + true + true + 2383 + 2383 + Commodity flow in the reference direction + true + + + 2750 + 645 + 3 + 4 + Flow Back + Flow Back + 86 + 86 + true + true + false + false + true + false + true + true + 206 + 206 + Commodity flow in the counter-reference direction + true + + + 2751 + 645 + 3 + 5 + Flows in Transit + Flows in Transit + 86 + 86 + true + true + false + false + true + false + true + true + 2735 + 2735 + Commodity flow in transit at the end of the period + true + + + 2752 + 645 + 3 + 6 + Flow Cost + Flow Cost + 14 + 34 + true + true + false + false + true + false + true + true + 2382 + 2382 + Cost of flows + true + + + 2753 + 645 + 3 + 7 + Export Limit + Export Limit + 86 + 86 + true + true + false + false + true + false + true + true + 1241 + 1241 + Maximum flow allowed on the Flow Path + true + + + 2754 + 645 + 3 + 8 + Import Limit + Import Limit + 86 + 86 + true + true + false + false + true + false + true + true + 1242 + 1242 + Minimum flow allowed on the Flow Path + true + + + 2755 + 645 + 3 + 9 + Loading + Loading + 12 + 12 + true + true + false + false + true + false + true + true + 1239 + 1239 + Loading relative to flow limit + true + + + 2756 + 645 + 3 + 10 + Loading Back + Loading Back + 12 + 12 + true + true + false + false + true + false + true + true + 1240 + 1240 + Loading in the counter-reference direction relative to flow limit + true + + + 2757 + 645 + 3 + 11 + Hours Congested + Hours Congested + 6 + 6 + true + true + false + false + true + false + true + true + 277 + 277 + Number of hours the Flow Path is congested + true + + + 2758 + 645 + 3 + 12 + Hours Congested Forward + Hours Congested Forward + 6 + 6 + false + true + false + false + true + false + true + true + 2369 + 2369 + Number of hours the Flow Path is congested in the reference direction + true + + + 2759 + 645 + 3 + 13 + Hours Congested Back + Hours Congested Back + 6 + 6 + false + true + false + false + true + false + true + true + 278 + 278 + Number of hours the Flow Path is congested in the counter-reference direction + true + + + 2760 + 645 + 3 + 14 + Losses + Losses + 86 + 86 + true + true + false + false + true + false + true + true + 924 + 924 + Losses incurred + true + + + 2761 + 645 + 3 + 15 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price + true + + + 2762 + 645 + 3 + 16 + Shadow Price Forward + Shadow Price Forward + 88 + 88 + false + true + false + false + true + false + true + true + 2370 + 2370 + Shadow price in the reference direction + true + + + 2763 + 645 + 3 + 17 + Shadow Price Back + Shadow Price Back + 88 + 88 + false + true + false + false + true + false + true + true + 743 + 743 + Shadow price of interface limit in the counter-reference direction + true + + + 2764 + 645 + 6 + 18 + Installed Capacity + Installed Capacity + 86 + 86 + true + true + false + false + true + true + true + true + 320 + 320 + Installed capacity (Max Flow x Units) + true + + + 2765 + 645 + 6 + 19 + Available Capacity + Available Capacity + 86 + 86 + true + true + false + false + true + false + true + true + 23 + 23 + Available capacity + true + + + 2766 + 645 + 7 + 20 + Units Out + Units Out + 0 + 0 + true + false + false + false + true + false + true + true + 818 + 818 + Number of units out of service + true + + + 2767 + 645 + 7 + 21 + Maintenance + Maintenance + 86 + 86 + true + true + false + false + true + true + true + true + 392 + 392 + Capacity out on maintenance + true + + + 2768 + 645 + 7 + 22 + Maintenance Back + Maintenance Back + 86 + 86 + true + true + false + false + true + true + true + true + 393 + 393 + Total capacity out of service in the reverse reference direction (discrete + distributed) + true + + + 2769 + 645 + 7 + 23 + Discrete Maintenance + Discrete Maintenance + 86 + 86 + true + true + false + false + false + true + false + false + 146 + 146 + Planned reference direction capacity out of service + true + + + 2770 + 645 + 7 + 24 + Discrete Maintenance Back + Discrete Maintenance Back + 86 + 86 + true + true + false + false + false + true + false + false + 147 + 147 + Planned counter-reference direction capacity out of service + true + + + 2771 + 645 + 7 + 25 + Distributed Maintenance + Distributed Maintenance + 86 + 86 + true + true + false + false + false + true + false + false + 150 + 150 + Ideal reference direction capacity out on maintenance + true + + + 2772 + 645 + 7 + 26 + Distributed Maintenance Back + Distributed Maintenance Back + 86 + 86 + true + true + false + false + false + true + false + false + 151 + 151 + Ideal counter-reference direction capacity out on maintenance + true + + + 2773 + 645 + 7 + 27 + Maintenance Hours + Maintenance Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1281 + 1281 + Number of hours on maintenance + true + + + 2774 + 645 + 7 + 28 + Maintenance Rate + Maintenance Rate + 12 + 12 + true + true + false + false + true + false + true + true + 396 + 396 + Proportion of capacity on maintenance outage + true + + + 2775 + 645 + 7 + 29 + Forced Outage + Forced Outage + 86 + 86 + true + true + false + false + true + false + true + true + 217 + 217 + Capacity lost to forced outage + true + + + 2776 + 645 + 7 + 30 + Forced Outage Hours + Forced Outage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1280 + 1280 + Number of hours on forced outage + true + + + 2777 + 645 + 7 + 31 + Forced Outage Rate + Forced Outage Rate + 12 + 12 + true + true + false + false + true + false + true + true + 219 + 219 + Proportion of capacity on forced outage + true + + + 2778 + 645 + 7 + 32 + Service Factor + Service Factor + 12 + 12 + true + true + false + false + true + false + true + true + 736 + 736 + Proportion of capacity available for production + true + + + 2779 + 645 + 3 + 33 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2780 + 645 + 8 + 34 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Flag if the Flow Node is built in this year + true + + + 2781 + 645 + 8 + 35 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2782 + 645 + 8 + 36 + Build Cost + Build Cost + 34 + 34 + true + true + false + true + true + false + false + false + 44 + 44 + Cost of building the Flow Path + true + + + 2783 + 645 + 8 + 37 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Flag if the Flow Node is retired in this year + true + + + 2784 + 645 + 8 + 38 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2785 + 645 + 8 + 39 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + true + true + false + false + false + 695 + 695 + Cost of retiring the Flow Path + true + + + 2786 + 645 + 12 + 40 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2787 + 645 + 12 + 41 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2788 + 645 + 12 + 42 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2789 + 652 + 3 + 1 + Units + Units + 0 + 0 + true + true + false + false + true + false + true + true + 812 + 812 + Number of units + true + + + 2790 + 652 + 3 + 2 + Max Inventory + Max Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1589 + 1589 + Maximum amount of the Commodity allowed in inventory + true + + + 2791 + 652 + 3 + 3 + Min Inventory + Min Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1590 + 1590 + Minimum amount of the Commodity required in inventory + true + + + 2792 + 652 + 3 + 4 + Opening Inventory + Opening Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1591 + 1591 + Initial amount of the Commodity in inventory + true + + + 2793 + 652 + 3 + 5 + Closing Inventory + Closing Inventory + 86 + 86 + true + true + false + false + true + false + true + true + 1593 + 1593 + Amount of the Commodity in inventory + true + + + 2794 + 652 + 3 + 6 + Inventory Change + Inventory Change + 86 + 86 + true + true + false + false + true + false + true + true + 2340 + 2340 + Change in Commodity in inventory + true + + + 2795 + 652 + 3 + 7 + Delivery + Delivery + 86 + 86 + true + true + false + false + true + false + true + true + 1592 + 1592 + Amount of the Commodity added to inventory + true + + + 2796 + 652 + 3 + 8 + Consumption + Consumption + 86 + 86 + true + true + false + false + true + false + true + true + 1437 + 1437 + Gross amount of the Commodity drawn from the Flow Node + true + + + 2797 + 652 + 3 + 9 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Net amount of the Commodity released to the Flow Node + true + + + 2798 + 652 + 3 + 10 + Injection + Injection + 86 + 86 + true + true + false + false + true + false + true + true + 1392 + 1392 + Net amount of the Commodity added to inventory + true + + + 2799 + 652 + 3 + 11 + Withdrawal + Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1391 + 1391 + Gross amount of the Commodity withdrawn from inventory + true + + + 2800 + 652 + 3 + 12 + Net Withdrawal + Net Withdrawal + 86 + 86 + true + true + false + false + true + false + true + true + 1393 + 1393 + Net of withdrawal and injection + true + + + 2801 + 652 + 3 + 13 + Injection Losses + Injection Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2509 + 2509 + Losses from injections + true + + + 2802 + 652 + 3 + 14 + Withdrawal Losses + Withdrawal Losses + 86 + 86 + true + true + false + false + true + false + true + true + 2510 + 2510 + Losses from withdrawals + true + + + 2803 + 652 + 3 + 15 + Delivery Cost + Delivery Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1595 + 1595 + Cost of additions to inventory + true + + + 2804 + 652 + 3 + 16 + Inventory Cost + Inventory Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1596 + 1596 + Cost of holding the Commodity in inventory + true + + + 2805 + 652 + 3 + 17 + Reservation Cost + Reservation Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1603 + 1603 + Cost of unused inventory capacity + true + + + 2806 + 652 + 3 + 18 + Injection Cost + Injection Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1284 + 1284 + Cost of injections to the inventory + true + + + 2807 + 652 + 3 + 19 + Withdrawal Cost + Withdrawal Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1283 + 1283 + Cost of withdrawals from inventory + true + + + 2808 + 652 + 3 + 20 + Shadow Price + Shadow Price + 88 + 88 + true + true + false + false + true + false + true + true + 742 + 742 + Shadow price of the Commodity from binding constraints + true + + + 2809 + 652 + 3 + 21 + FO&M Cost + FO&M Cost + 14 + 34 + true + true + false + true + true + false + true + true + 216 + 216 + Fixed operation and maintenance cost + true + + + 2810 + 652 + 3 + 22 + Fixed Costs + Fixed Costs + 14 + 34 + true + true + false + true + true + false + true + true + 196 + 196 + Total fixed costs including amortized build costs + true + + + 2811 + 652 + 8 + 23 + Units Built + Units Built + 0 + 0 + true + true + false + false + true + false + false + false + 813 + 813 + Number of units built + true + + + 2812 + 652 + 8 + 24 + Capacity Built + Capacity Built + 86 + 86 + true + true + false + false + true + false + false + false + 54 + 54 + Capacity built + true + + + 2813 + 652 + 8 + 25 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Cost of units built + true + + + 2814 + 652 + 8 + 26 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of units built + true + + + 2815 + 652 + 8 + 27 + Units Retired + Units Retired + 0 + 0 + true + true + false + false + true + false + false + false + 820 + 820 + Number of units retired + true + + + 2816 + 652 + 8 + 28 + Capacity Retired + Capacity Retired + 86 + 86 + true + true + false + false + true + false + false + false + 66 + 66 + Capacity retired + true + + + 2817 + 652 + 8 + 29 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Cost of retiring a unit + true + + + 2818 + 652 + 8 + 30 + Net New Capacity + Net New Capacity + 86 + 86 + true + true + false + false + true + false + false + false + 546 + 546 + Capacity net of build and retire + true + + + 2819 + 652 + 8 + 31 + Age + Age + 62 + 62 + true + true + false + false + true + false + true + true + 1373 + 1373 + Number of cycles completed + true + + + 2820 + 652 + 12 + 32 + x + x + 0 + 0 + true + true + true + false + true + false + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2821 + 652 + 12 + 33 + y + y + 0 + 0 + true + true + true + false + true + false + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2822 + 652 + 12 + 34 + z + z + 0 + 0 + true + true + true + false + true + false + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2823 + 658 + 3 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity by the Facilities + true + + + 2824 + 658 + 3 + 2 + Sales + Sales + 0 + 0 + true + true + false + false + true + false + true + true + 718 + 718 + Sales of the Commodity to the Markets + true + + + 2825 + 658 + 3 + 3 + Total Production Cost + Total Production Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2312 + 2312 + Total production cost including production, VO&M, start and shutdown costs + true + + + 2826 + 658 + 3 + 4 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of sales to the Markets + true + + + 2827 + 658 + 3 + 5 + Net Profit + Net Profit + 14 + 34 + true + true + false + true + true + false + true + true + 548 + 548 + Net profit of the Entity + true + + + 2828 + 658 + 8 + 6 + Build Cost + Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 44 + 44 + Build cost of Facilities + true + + + 2829 + 658 + 8 + 7 + Annualized Build Cost + Annualized Build Cost + 34 + 34 + true + true + false + false + true + false + false + false + 1389 + 1389 + Annualized cost of Facilities built + true + + + 2830 + 658 + 8 + 8 + Retirement Cost + Retirement Cost + 34 + 34 + true + true + false + false + true + false + false + false + 695 + 695 + Retirement costs of Facilities + true + + + 2831 + 658 + 8 + 9 + Total Cost + Total Cost + 34 + 34 + true + true + false + false + true + false + false + false + 898 + 898 + Total of fixed and variable costs from Facilities + true + + + 2832 + 658 + 12 + 10 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2833 + 658 + 12 + 11 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2834 + 658 + 12 + 12 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2835 + 661 + 1 + 1 + Production + Production + 86 + 86 + true + true + false + false + true + false + true + true + 624 + 624 + Production of the Commodity + true + + + 2836 + 661 + 1 + 2 + Production Cost + Production Cost + 14 + 34 + true + true + false + false + true + false + true + true + 1274 + 1274 + Production cost from Facilities producing the Commodity + true + + + 2837 + 661 + 1 + 3 + Total Cost + Total Cost + 14 + 34 + true + true + false + false + true + false + true + true + 898 + 898 + Total of fixed and variable costs + true + + + 2838 + 661 + 1 + 4 + Levelized Cost + Levelized Cost + 88 + 88 + true + true + false + false + true + false + true + true + 1388 + 1388 + Levelized cost of production + true + + + 2839 + 664 + 3 + 1 + Sales + Sales + 86 + 87 + true + true + false + false + true + false + true + true + 718 + 718 + Sales to the market + true + + + 2840 + 664 + 3 + 2 + Purchases + Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 648 + 648 + Purchases from the market + true + + + 2841 + 664 + 3 + 3 + Net Sales + Net Sales + 86 + 87 + true + true + false + false + true + false + true + true + 553 + 553 + Net reserve sold into the market + true + + + 2842 + 664 + 3 + 4 + Net Purchases + Net Purchases + 86 + 87 + true + true + false + false + true + false + true + true + 549 + 549 + Net purchases from the market + true + + + 2843 + 664 + 3 + 5 + Shortage Hours + Shortage Hours + 6 + 6 + true + true + false + false + true + false + true + true + 1075 + 1075 + Number of hours demand exceeds supply + true + + + 2844 + 664 + 3 + 6 + Shortage + Shortage + 86 + 87 + true + true + false + false + true + false + true + true + 746 + 746 + Amount that demand exceeds supply + true + + + 2845 + 664 + 3 + 7 + Shortage Cost + Shortage Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1076 + 1076 + Cost of shortage + true + + + 2846 + 664 + 3 + 8 + Surplus Hours + Surplus Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2327 + 2327 + Number of hours that supply exceeds demand + true + + + 2847 + 664 + 3 + 9 + Surplus + Surplus + 86 + 87 + true + true + false + false + true + false + true + true + 2332 + 2332 + Amount that supply exceeds demand + true + + + 2848 + 664 + 3 + 10 + Surplus Cost + Surplus Cost + 14 + 34 + true + true + false + true + true + false + true + true + 2329 + 2329 + Cost of surplus + true + + + 2849 + 664 + 3 + 11 + Price Cap Hours + Price Cap Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2330 + 2330 + Number of hours the price cap was applied + true + + + 2850 + 664 + 3 + 12 + Price Floor Hours + Price Floor Hours + 6 + 6 + true + true + false + false + true + false + true + true + 2331 + 2331 + Number of hours the price floor was applied + true + + + 2851 + 664 + 3 + 13 + Price + Price + 88 + 88 + true + true + false + false + true + false + true + true + 612 + 612 + Price point on market demand function + true + + + 2852 + 664 + 3 + 14 + Revenue + Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 696 + 696 + Value of sales to the market + true + + + 2853 + 664 + 3 + 15 + Cost + Cost + 14 + 34 + true + true + false + true + true + false + true + true + 117 + 117 + Cost of purchases from the market + true + + + 2854 + 664 + 3 + 16 + Net Revenue + Net Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 552 + 552 + Net revenue from reserve sales in the market + true + + + 2855 + 664 + 3 + 17 + Net Cost + Net Cost + 14 + 34 + true + true + false + true + true + false + true + true + 536 + 536 + Net cost of purchases from the market + true + + + 2856 + 664 + 3 + 18 + Total Cost + Total Cost + 14 + 34 + true + true + false + true + true + false + true + true + 898 + 898 + Cost including block fixed costs + true + + + 2857 + 664 + 3 + 19 + Price Received + Price Received + 88 + 88 + true + true + false + false + true + false + true + true + 618 + 618 + Average price received + true + + + 2858 + 664 + 3 + 20 + Price Paid + Price Paid + 88 + 88 + true + true + false + false + true + false + true + true + 617 + 617 + Average price paid + true + + + 2859 + 664 + 3 + 21 + Natural Revenue + Natural Revenue + 14 + 34 + true + true + false + true + true + false + true + true + 1624 + 1624 + Value of sales to the market ignoring bid-ask spread + true + + + 2860 + 664 + 3 + 22 + Natural Cost + Natural Cost + 14 + 34 + true + true + false + true + true + false + true + true + 1625 + 1625 + Cost of purchases from the market ignoring bid-ask spread + true + + + 2861 + 664 + 6 + 23 + Firm Capacity + Firm Capacity + 1 + 1 + true + true + false + false + true + true + true + true + 64 + 64 + Contribution of the market purchases to generation capacity for capacity reserves. + true + + + 2862 + 664 + 6 + 24 + Load Obligation + Load Obligation + 1 + 1 + true + true + false + false + true + true + true + true + 354 + 354 + Contribution of the market sales to the load obligation for capacity reserves. + true + + + 2863 + 664 + 12 + 25 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2864 + 664 + 12 + 26 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2865 + 664 + 12 + 27 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2866 + 670 + 1 + 1 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Constraint activity at optimal solution + true + + + 2867 + 670 + 1 + 2 + Slack + Slack + 0 + 0 + true + true + false + false + true + true + true + true + 748 + 748 + Constraint slack at optimal solution + true + + + 2868 + 670 + 1 + 3 + Violation + Violation + 0 + 0 + true + true + false + false + true + true + true + true + 843 + 843 + Constraint violation at optimal solution + true + + + 2869 + 670 + 1 + 4 + Hours Binding + Hours Binding + 6 + 6 + true + true + false + false + true + true + true + true + 276 + 276 + Number of hours the Constraint is binding. + true + + + 2870 + 670 + 1 + 5 + RHS + RHS + 0 + 0 + true + true + false + false + true + true + true + true + 700 + 700 + Constraint RHS constant + true + + + 2871 + 670 + 1 + 6 + Price + Price + 14 + 14 + true + true + false + false + true + false + true + true + 612 + 612 + Constraint dual variable value at optimal solution + true + + + 2872 + 670 + 1 + 7 + Hours Active + Hours Active + 6 + 6 + true + true + false + false + true + false + true + true + 274 + 274 + Number of hours the Constraint is active. + true + + + 2873 + 670 + 1 + 8 + Penalty Cost + Penalty Cost + 14 + 34 + true + true + false + true + true + false + true + true + 603 + 603 + Contribution of penalty violations to the primal objective function + true + + + 2874 + 670 + 1 + 9 + Rental + Rental + 14 + 34 + true + true + false + true + true + false + true + true + 678 + 678 + Contribution of activity to the dual objective function + true + + + 2875 + 670 + 12 + 10 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2876 + 670 + 12 + 11 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2877 + 670 + 12 + 12 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2878 + 674 + 1 + 1 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Objective value + true + + + 2879 + 674 + 1 + 2 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Variable part of objective value + true + + + 2880 + 674 + 1 + 3 + Constant + Constant + 0 + 0 + true + true + false + false + true + true + true + true + 2089 + 2089 + Is the constant term in objective a'x +b + true + + + 2881 + 674 + 12 + 4 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2882 + 674 + 12 + 5 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2883 + 674 + 12 + 6 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2884 + 677 + 1 + 1 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Value of generic decision variable + true + + + 2885 + 677 + 1 + 2 + Reduced Cost + Reduced Cost + 14 + 14 + true + true + false + true + true + true + true + true + 1496 + 1496 + Reduced cost of the generic decision variable + true + + + 2886 + 677 + 1 + 3 + Cost + Cost + 14 + 34 + true + true + false + true + true + true + true + true + 117 + 117 + Total objective function contribution of generic decision variable + true + + + 2887 + 677 + 1 + 4 + Objective Function Coefficient + Objective Function Coefficient + 14 + 14 + true + true + false + false + true + true + true + true + 1351 + 1351 + Objective function value of the generic decision variable + true + + + 2888 + 677 + 1 + 5 + Lower Bound + Lower Bound + 0 + 0 + true + true + false + false + true + true + true + true + 1494 + 1494 + Lower bound of the generic decision variable + true + + + 2889 + 677 + 1 + 6 + Upper Bound + Upper Bound + 0 + 0 + true + true + false + false + true + true + true + true + 1495 + 1495 + Upper bound of the generic decision variable + true + + + 2890 + 677 + 1 + 7 + Min Value + Min Value + 0 + 0 + true + true + false + false + true + true + true + true + 508 + 508 + Minimum value of generic decision variable + true + + + 2891 + 677 + 1 + 8 + Max Value + Max Value + 0 + 0 + true + true + false + false + true + true + true + true + 464 + 464 + Maximum value of generic decision variable + true + + + 2892 + 677 + 12 + 9 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2893 + 677 + 12 + 10 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2894 + 677 + 12 + 11 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2895 + 683 + 1 + 1 + X Value + X Value + 0 + 0 + true + true + false + false + true + false + true + true + 2205 + 2205 + Solution value for the x variable + true + + + 2896 + 683 + 1 + 2 + Y Value + Y Value + 0 + 0 + true + true + false + false + true + false + true + true + 2206 + 2206 + Solution value for the y variable + true + + + 2897 + 683 + 1 + 3 + Function Value + Function Value + 0 + 0 + true + true + false + false + true + false + true + true + 2207 + 2207 + Value of the input function at the current X value + true + + + 2898 + 683 + 12 + 4 + x + x + 0 + 0 + true + true + true + false + true + true + true + true + 1346 + 1346 + Value to pass-through to solution + true + + + 2899 + 683 + 12 + 5 + y + y + 0 + 0 + true + true + true + false + true + true + true + true + 1347 + 1347 + Value to pass-through to solution + true + + + 2900 + 683 + 12 + 6 + z + z + 0 + 0 + true + true + true + false + true + true + true + true + 1390 + 1390 + Value to pass-through to solution + true + + + 2901 + 690 + 1 + 1 + Expected Value + Expected Value + 0 + 0 + true + true + false + false + true + true + true + true + 1493 + 1493 + Expected value + true + + + 2902 + 690 + 1 + 2 + Raw Value + Raw Value + 0 + 0 + true + true + false + false + true + true + true + true + 1090 + 1090 + Raw sample value before application of [Min Value], [Max Value] or lookup table. + true + + + 2903 + 690 + 1 + 3 + Value + Value + 0 + 0 + true + true + false + false + true + true + true + true + 842 + 842 + Sample value + true + + + 2904 + 690 + 1 + 4 + Error + Error + 0 + 0 + true + true + false + false + true + true + true + true + 182 + 182 + Average sample error + true + + + 2905 + 690 + 1 + 5 + Volatility + Volatility + 0 + 0 + true + true + false + false + true + true + true + true + 1770 + 1770 + GARCH(1,1) volatility metric of sample values + true + + + 2906 + 690 + 1 + 6 + Activity + Activity + 0 + 0 + true + true + false + false + true + true + true + true + 1 + 1 + Value of the left hand side of the equation defining the conditional Variable + true + + + 2907 + 696 + 1 + 1 + Hours Included + Hours Included + 6 + 6 + true + true + false + false + true + true + true + true + 279 + 279 + Number of hours the Timeslice is included. + true + + + 2908 + 702 + 1 + 1 + Temperature + Temperature + 77 + 77 + true + true + false + false + true + false + true + true + 2009 + 2009 + Temperature value in each level + true + + + 2909 + 702 + 1 + 2 + Heating Degree Days + Heating Degree Days + 0 + 0 + true + true + false + false + true + false + true + true + 2007 + 2007 + Value for heating degree days + true + + + 2910 + 702 + 1 + 3 + Wind Speed + Wind Speed + 0 + 0 + true + true + false + false + true + false + true + true + 2011 + 2011 + Wind speed value + true + + + 8 + 2 + 1 + true + true + false + false + false + + + 8 + 23 + 1 + false + true + false + false + false + + + 8 + 209 + 1 + false + true + false + false + false + + + 8 + 235 + 1 + false + true + false + false + false + + + 8 + 240 + 1 + false + true + false + false + false + + + 8 + 360 + 1 + false + true + false + false + false + + + 8 + 363 + 1 + false + true + false + false + false + + + 8 + 364 + 1 + true + true + false + false + false + + + 8 + 374 + 1 + false + true + false + false + false + + + 8 + 685 + 1 + true + true + false + false + false + + + 8 + 603 + 1 + true + true + false + false + false + + + 8 + 604 + 1 + true + true + false + false + false + + + 8 + 613 + 1 + true + true + false + false + false + + + 8 + 614 + 1 + true + true + false + false + false + + + 8 + 666 + 1 + true + true + false + false + false + + + 8 + 771 + 1 + true + true + true + true + false + + + 8 + 772 + 1 + true + true + true + true + false + + + 8 + 790 + 1 + true + true + true + true + false + + + 8 + 497 + 1 + true + true + false + false + false + + + 8 + 499 + 1 + true + true + false + false + false + + + 8 + 500 + 1 + true + true + false + false + false + + + 8 + 501 + 1 + true + true + false + false + false + + + 8 + 560 + 1 + false + true + false + false + false + + + 8 + 2653 + 1 + true + true + false + false + false + + + 8 + 2655 + 1 + true + true + false + false + false + + + 8 + 1588 + 1 + true + true + false + false + false + + + 8 + 1589 + 1 + true + true + false + false + false + + + 8 + 1606 + 1 + false + true + false + false + false + + + 8 + 1608 + 1 + false + true + false + false + false + + + 8 + 1656 + 1 + false + true + false + false + false + + + 8 + 1657 + 1 + false + true + false + false + false + + + 8 + 1658 + 1 + false + true + false + false + false + + + 8 + 1689 + 1 + false + true + false + false + false + + + 8 + 1719 + 1 + false + true + false + false + false + + + 8 + 1720 + 1 + false + true + false + false + false + + + 8 + 1727 + 1 + false + true + false + false + false + + + 8 + 1728 + 1 + false + true + false + false + false + + + 8 + 1762 + 1 + false + true + false + false + false + + + 8 + 1763 + 1 + false + true + false + false + false + + + 8 + 1779 + 1 + false + true + false + false + false + + + 8 + 1808 + 1 + false + true + false + false + false + + + 8 + 1809 + 1 + false + true + false + false + false + + + 8 + 1833 + 1 + false + true + false + false + false + + + 8 + 1873 + 1 + false + true + false + false + false + + + 8 + 1875 + 1 + false + true + false + false + false + + + 8 + 1878 + 1 + false + true + false + false + false + + + 8 + 1928 + 1 + false + true + false + false + false + + + 8 + 1929 + 1 + false + true + false + false + false + + + 8 + 1930 + 1 + false + true + false + false + false + + + 8 + 1942 + 1 + false + true + false + false + false + + + 8 + 1944 + 1 + false + true + false + false + false + + + 8 + 1948 + 1 + false + true + false + false + false + + + 8 + 1949 + 1 + false + true + false + false + false + + + 8 + 1950 + 1 + false + true + false + false + false + + + 8 + 1958 + 1 + false + true + false + false + false + + + 8 + 1959 + 1 + false + true + false + false + false + + + 8 + 1998 + 1 + false + true + false + false + false + + + 8 + 1999 + 1 + false + true + false + false + false + + + 8 + 2026 + 1 + false + true + false + false + false + + + 8 + 2029 + 1 + false + true + false + false + false + + + 8 + 2031 + 1 + false + true + false + false + false + + + 8 + 2056 + 1 + false + true + false + false + false + + + 8 + 2092 + 1 + false + true + false + false + false + + + 8 + 2115 + 1 + false + true + false + false + false + + + 8 + 2116 + 1 + false + true + false + false + false + + + 8 + 2129 + 1 + false + true + false + false + false + + + 8 + 2143 + 1 + false + true + false + false + false + + + 8 + 2144 + 1 + false + true + false + false + false + + + 8 + 2152 + 1 + false + true + false + false + false + + + 8 + 2170 + 1 + false + true + false + false + false + + + 8 + 2172 + 1 + false + true + false + false + false + + + 8 + 2175 + 1 + false + true + false + false + false + + + 8 + 921 + 1 + true + true + false + false + false + + + 8 + 925 + 1 + true + true + false + false + false + + + 8 + 945 + 1 + true + true + false + false + false + + + 8 + 949 + 1 + true + true + false + false + false + + + 8 + 954 + 1 + false + true + false + false + false + + + 8 + 981 + 1 + true + true + false + false + false + + + 8 + 1036 + 1 + false + true + false + false + false + + + 8 + 1046 + 1 + false + true + false + false + false + + + 8 + 1068 + 1 + false + true + false + false + false + + + 8 + 1141 + 1 + true + true + false + false + false + + + 8 + 1145 + 1 + true + true + false + false + false + + + 8 + 1165 + 1 + true + true + false + false + false + + + 8 + 1169 + 1 + true + true + false + false + false + + + 8 + 1174 + 1 + true + true + false + false + false + + + 8 + 1201 + 1 + true + true + false + false + false + + + 8 + 1231 + 1 + false + true + false + false + false + + + 8 + 1241 + 1 + false + true + false + false + false + + + 8 + 1260 + 1 + false + true + false + false + false + + + 8 + 1380 + 1 + true + true + false + false + false + + + 8 + 1383 + 1 + false + true + false + false + false + + + 8 + 1384 + 1 + false + true + false + false + false + + + 8 + 1563 + 1 + true + true + false + false + false + + + 8 + 2839 + 1 + true + true + false + false + false + + + 8 + 2840 + 1 + true + true + false + false + false + + + 8 + 2851 + 1 + true + true + false + false + false + + + 8 + 2869 + 1 + true + true + false + false + false + + + 8 + 2871 + 1 + true + true + false + false + false + + + 8 + 2884 + 1 + true + true + false + false + false + + + 8 + 2885 + 1 + true + true + false + false + false + + + 8 + 2903 + 1 + true + true + false + false + false + + + 9 + 2 + 4 + true + true + false + false + false + + + 9 + 7 + 4 + true + false + false + false + false + + + 9 + 115 + 4 + true + true + false + false + false + + + 9 + 147 + 4 + true + true + false + false + false + + + 9 + 159 + 4 + true + true + false + false + false + + + 9 + 163 + 4 + true + true + false + false + false + + + 9 + 360 + 4 + true + true + false + false + false + + + 9 + 363 + 4 + true + true + false + false + false + + + 9 + 364 + 4 + true + true + false + false + false + + + 9 + 374 + 4 + true + true + false + false + false + + + 9 + 685 + 4 + true + true + false + false + false + + + 9 + 603 + 4 + true + true + false + false + false + + + 9 + 604 + 4 + true + true + false + false + false + + + 9 + 613 + 4 + true + true + false + false + false + + + 9 + 614 + 4 + true + true + false + false + false + + + 9 + 666 + 4 + true + true + false + false + false + + + 9 + 771 + 4 + true + true + true + true + false + + + 9 + 772 + 4 + true + true + true + true + false + + + 9 + 790 + 4 + true + true + true + true + false + + + 9 + 497 + 4 + true + true + false + false + false + + + 9 + 499 + 4 + true + true + false + false + false + + + 9 + 500 + 4 + true + true + false + false + false + + + 9 + 501 + 4 + true + true + false + false + false + + + 9 + 2653 + 4 + true + true + false + false + false + + + 9 + 2655 + 4 + true + true + false + false + false + + + 9 + 1588 + 4 + true + true + false + false + false + + + 9 + 1589 + 4 + true + true + false + false + false + + + 9 + 1656 + 4 + true + true + false + false + false + + + 9 + 1657 + 4 + true + true + false + false + false + + + 9 + 1658 + 4 + true + true + false + false + false + + + 9 + 1689 + 4 + true + true + false + false + false + + + 9 + 1719 + 4 + true + true + false + false + false + + + 9 + 1720 + 4 + true + true + false + false + false + + + 9 + 1727 + 4 + true + true + false + false + false + + + 9 + 1728 + 4 + true + true + false + false + false + + + 9 + 1762 + 4 + true + true + false + false + false + + + 9 + 1763 + 4 + true + true + false + false + false + + + 9 + 1779 + 4 + true + true + false + false + false + + + 9 + 1808 + 4 + true + true + false + false + false + + + 9 + 1809 + 4 + true + true + false + false + false + + + 9 + 1833 + 4 + true + true + false + false + false + + + 9 + 1873 + 4 + true + true + false + false + false + + + 9 + 1875 + 4 + true + true + false + false + false + + + 9 + 1878 + 4 + true + true + false + false + false + + + 9 + 1928 + 4 + true + true + false + false + false + + + 9 + 1929 + 4 + true + true + false + false + false + + + 9 + 1930 + 4 + true + true + false + false + false + + + 9 + 1942 + 4 + true + true + false + false + false + + + 9 + 1944 + 4 + true + true + false + false + false + + + 9 + 1948 + 4 + true + true + false + false + false + + + 9 + 1949 + 4 + true + true + false + false + false + + + 9 + 1950 + 4 + true + true + false + false + false + + + 9 + 1958 + 4 + true + true + false + false + false + + + 9 + 1959 + 4 + true + true + false + false + false + + + 9 + 1998 + 4 + true + true + false + false + false + + + 9 + 1999 + 4 + true + true + false + false + false + + + 9 + 2026 + 4 + true + true + false + false + false + + + 9 + 2029 + 4 + true + true + false + false + false + + + 9 + 2031 + 4 + true + true + false + false + false + + + 9 + 2056 + 4 + true + true + false + false + false + + + 9 + 2092 + 4 + true + true + false + false + false + + + 9 + 2115 + 4 + true + true + false + false + false + + + 9 + 2116 + 4 + true + true + false + false + false + + + 9 + 2129 + 4 + true + true + false + false + false + + + 9 + 2143 + 4 + true + true + false + false + false + + + 9 + 2144 + 4 + true + true + false + false + false + + + 9 + 2152 + 4 + true + true + false + false + false + + + 9 + 2170 + 4 + true + true + false + false + false + + + 9 + 2172 + 4 + true + true + false + false + false + + + 9 + 2175 + 4 + true + true + false + false + false + + + 9 + 921 + 4 + true + true + false + false + false + + + 9 + 925 + 4 + true + true + false + false + false + + + 9 + 945 + 4 + true + true + false + false + false + + + 9 + 949 + 4 + true + true + false + false + false + + + 9 + 954 + 4 + true + true + false + false + false + + + 9 + 981 + 4 + true + true + false + false + false + + + 9 + 987 + 4 + true + true + false + false + false + + + 9 + 988 + 4 + true + true + false + false + false + + + 9 + 990 + 4 + true + true + false + false + false + + + 9 + 1141 + 4 + true + true + false + false + false + + + 9 + 1145 + 4 + true + true + false + false + false + + + 9 + 1165 + 4 + true + true + false + false + false + + + 9 + 1169 + 4 + true + true + false + false + false + + + 9 + 1174 + 4 + true + true + false + false + false + + + 9 + 1201 + 4 + true + true + false + false + false + + + 9 + 1209 + 4 + true + true + false + false + false + + + 9 + 1210 + 4 + true + true + false + false + false + + + 9 + 1212 + 4 + true + true + false + false + false + + + 9 + 1380 + 4 + true + true + false + false + false + + + 9 + 1383 + 4 + true + true + false + false + false + + + 9 + 1384 + 4 + true + true + false + false + false + + + 9 + 1563 + 4 + true + true + false + false + false + + + 9 + 2839 + 4 + true + true + false + false + false + + + 9 + 2840 + 4 + true + true + false + false + false + + + 9 + 2851 + 4 + true + true + false + false + false + + + 9 + 2869 + 4 + true + true + false + false + false + + + 9 + 2871 + 4 + true + true + false + false + false + + + 9 + 2884 + 4 + true + true + false + false + false + + + 9 + 2885 + 4 + true + true + false + false + false + + + 9 + 2903 + 4 + true + true + false + false + false + + + 10 + 2 + 4 + true + true + false + false + false + + + 10 + 7 + 4 + true + false + false + false + false + + + 10 + 115 + 4 + true + true + false + false + false + + + 10 + 147 + 4 + true + true + false + false + false + + + 10 + 159 + 4 + true + true + false + false + false + + + 10 + 163 + 4 + true + true + false + false + false + + + 10 + 360 + 4 + true + true + false + false + false + + + 10 + 363 + 4 + true + true + false + false + false + + + 10 + 364 + 4 + true + true + false + false + false + + + 10 + 374 + 4 + true + true + false + false + false + + + 10 + 685 + 4 + true + true + false + false + false + + + 10 + 603 + 4 + true + true + false + false + false + + + 10 + 604 + 4 + true + true + false + false + false + + + 10 + 613 + 4 + true + true + false + false + false + + + 10 + 614 + 4 + true + true + false + false + false + + + 10 + 666 + 4 + true + true + false + false + false + + + 10 + 771 + 4 + true + true + true + true + false + + + 10 + 772 + 4 + true + true + true + true + false + + + 10 + 790 + 4 + true + true + true + true + false + + + 10 + 497 + 4 + true + true + false + false + false + + + 10 + 499 + 4 + true + true + false + false + false + + + 10 + 500 + 4 + true + true + false + false + false + + + 10 + 501 + 4 + true + true + false + false + false + + + 10 + 2653 + 4 + true + true + false + false + false + + + 10 + 2655 + 4 + true + true + false + false + false + + + 10 + 1588 + 4 + true + true + false + false + false + + + 10 + 1589 + 4 + true + true + false + false + false + + + 10 + 1656 + 4 + true + true + false + false + false + + + 10 + 1657 + 4 + true + true + false + false + false + + + 10 + 1658 + 4 + true + true + false + false + false + + + 10 + 1689 + 4 + true + true + false + false + false + + + 10 + 1719 + 4 + true + true + false + false + false + + + 10 + 1727 + 4 + true + true + false + false + false + + + 10 + 1728 + 4 + true + true + false + false + false + + + 10 + 1762 + 4 + true + true + false + false + false + + + 10 + 1763 + 4 + true + true + false + false + false + + + 10 + 1779 + 4 + true + true + false + false + false + + + 10 + 1808 + 4 + true + true + false + false + false + + + 10 + 1809 + 4 + true + true + false + false + false + + + 10 + 1833 + 4 + true + true + false + false + false + + + 10 + 1873 + 4 + true + true + false + false + false + + + 10 + 1875 + 4 + true + true + false + false + false + + + 10 + 1878 + 4 + true + true + false + false + false + + + 10 + 1928 + 4 + true + true + false + false + false + + + 10 + 1929 + 4 + true + true + false + false + false + + + 10 + 1930 + 4 + true + true + false + false + false + + + 10 + 1942 + 4 + true + true + false + false + false + + + 10 + 1944 + 4 + true + true + false + false + false + + + 10 + 1948 + 4 + true + true + false + false + false + + + 10 + 1949 + 4 + true + true + false + false + false + + + 10 + 1950 + 4 + true + true + false + false + false + + + 10 + 1958 + 4 + true + true + false + false + false + + + 10 + 1959 + 4 + true + true + false + false + false + + + 10 + 1998 + 4 + true + true + false + false + false + + + 10 + 1999 + 4 + true + true + false + false + false + + + 10 + 2026 + 4 + true + true + false + false + false + + + 10 + 2029 + 4 + true + true + false + false + false + + + 10 + 2031 + 4 + true + true + false + false + false + + + 10 + 2056 + 4 + true + true + false + false + false + + + 10 + 2092 + 4 + true + true + false + false + false + + + 10 + 2115 + 4 + true + true + false + false + false + + + 10 + 2116 + 4 + true + true + false + false + false + + + 10 + 2129 + 4 + true + true + false + false + false + + + 10 + 2143 + 4 + true + true + false + false + false + + + 10 + 2144 + 4 + true + true + false + false + false + + + 10 + 2152 + 4 + true + true + false + false + false + + + 10 + 2170 + 4 + true + true + false + false + false + + + 10 + 2172 + 4 + true + true + false + false + false + + + 10 + 2175 + 4 + true + true + false + false + false + + + 10 + 921 + 4 + true + true + false + false + false + + + 10 + 925 + 4 + true + true + false + false + false + + + 10 + 945 + 4 + true + true + false + false + false + + + 10 + 949 + 4 + true + true + false + false + false + + + 10 + 954 + 4 + true + true + false + false + false + + + 10 + 981 + 4 + true + true + false + false + false + + + 10 + 987 + 4 + true + true + false + false + false + + + 10 + 988 + 4 + true + true + false + false + false + + + 10 + 990 + 4 + true + true + false + false + false + + + 10 + 1141 + 4 + true + true + false + false + false + + + 10 + 1145 + 4 + true + true + false + false + false + + + 10 + 1165 + 4 + true + true + false + false + false + + + 10 + 1169 + 4 + true + true + false + false + false + + + 10 + 1174 + 4 + true + true + false + false + false + + + 10 + 1201 + 4 + true + true + false + false + false + + + 10 + 1209 + 4 + true + true + false + false + false + + + 10 + 1210 + 4 + true + true + false + false + false + + + 10 + 1212 + 4 + true + true + false + false + false + + + 10 + 1338 + 4 + true + true + false + false + false + + + 10 + 1380 + 4 + true + true + false + false + false + + + 10 + 1383 + 4 + true + true + false + false + false + + + 10 + 1384 + 4 + true + true + false + false + false + + + 10 + 1563 + 4 + true + true + false + false + false + + + 10 + 2839 + 4 + true + true + false + false + false + + + 10 + 2840 + 4 + true + true + false + false + false + + + 10 + 2851 + 4 + true + true + false + false + false + + + 10 + 2869 + 4 + true + true + false + false + false + + + 10 + 2871 + 4 + true + true + false + false + false + + + 10 + 2884 + 4 + true + true + false + false + false + + + 10 + 2885 + 4 + true + true + false + false + false + + + 10 + 2903 + 4 + true + true + false + false + false + + + 11 + 949 + 4 + false + true + true + true + false + + + 11 + 1334 + 4 + false + true + true + true + false + + + 0 + = + + + 1 + × + + + 2 + ÷ + + + 3 + + + + + 4 + - + + + 5 + ^ + + + 6 + ? + + + 1 + 2 + 1 + 1 + Running in Diagnostic Mode! Execution may be slow and/or excessive disk space may be consumed. + + + 2 + 3 + 3 + + + 3 + 3 + 3 + + + 4 + 3 + 1 + 1 + MT Schedule [New Entry Driver] is enabled but Generator [Max Units Built] is not defined. + + + 5 + 2 + 1 + 1 + Failed to complete solution table indexing {0}. Check the size of the solution database (2GB maximum). + + + 6 + 3 + 1 + 1 + The selected equilibrium model requires the definition of Company objects. + + + 7 + 2 + 1 + 1 + Optimizer returned the status: {0} + + + 8 + 4 + 1 + 1 + Region "{0}" [Capacity Reserves] are below Region [Min Capacity Reserves] by {1} MW. + + + 9 + 3 + 1 + 1 + Transmission [SCUC Enabled] selected but no Contingency objects are defined. + + + 10 + 3 + 3 + + + 11 + 2 + 1 + 1 + Failed to load data into database: {0}. Check the size of the solution database (2GB maximum for Microsoft Access database format). + + + 12 + 3 + 3 + + + 13 + 3 + 3 + + + 14 + 3 + 3 + + + 15 + 3 + 3 + + + 16 + 3 + 3 + + + 17 + 3 + 3 + + + 18 + 2 + 1 + 1 + Constraint "{0}" cannot include more than one Storage object. + + + 19 + 2 + 1 + 1 + Constraint "{0}" [RHS] (period type {1}) is too long for ST Schedule. This Constraint needs to be decomposed by turning on MT Schedule. + + + 20 + 3 + 3 + + + 21 + 3 + 1 + 1 + Constraint "{0}" [RHS] should be defined from the start of the planning horizon. + + + 22 + 4 + 1 + 1 + Reserve "{0}" has all generation below Reserve [Cut-Off Size] in {1} period(s). + + + 23 + 3 + 3 + + + 24 + 3 + 3 + + + 25 + 1 + 0 + 0 + {0} "{1}" {2} From = {2} To ({3}). + + + 26 + 3 + 3 + + + 27 + 3 + 3 + + + 28 + 3 + 3 + + + 29 + 3 + 1 + 1 + {0} "{1}" marginal efficiency is increasing between points {2} ({3} MW, {4}) and {5} ({6} MW, {7}). Consider setting Production [Heat Rate Error Method] = 'Allow Non-convex'. + + + 30 + 3 + 3 + + + 31 + 3 + 3 + + + 32 + 3 + 3 + + + 33 + 3 + 1 + 1 + Generator "{0}" [Offer Quantity] defined without Generator [Offer Price]. The default price of {1} is assumed. + + + 34 + 3 + 1 + 1 + Generator "{0}" [Offer Price] defined without Generator [Offer Quantity]. Zero quantity assumed. + + + 35 + 3 + 3 + + + 36 + 3 + 1 + 1 + Generator "{0}" [Fixed Load] will override Generator [Min Load]. + + + 37 + 3 + 3 + + + 38 + 3 + 3 + + + 39 + 3 + 3 + + + 40 + 3 + 3 + + + 41 + 3 + 3 + + + 42 + 2 + 1 + 1 + Solver {0}. + + + 43 + 3 + 1 + 1 + Line "{0}" [Min Rating] and Line [Max Rating] ({1}) imply {2} <= Line [Flow] <= {3} MW. + + + 44 + 3 + 3 + + + 45 + 2 + 0 + 0 + Variable "{0}" [Value] by {1} referenced but not defined. + + + 46 + 2 + 0 + 0 + RSI "{0}" Lines "{1}" does not import to/from the RSI Region. + + + 47 + 3 + 3 + + + 48 + 1 + 0 + 0 + Source database name not set. + + + 49 + 3 + 3 + + + 50 + 3 + 3 + + + 51 + 3 + 1 + 1 + Generator "{0}" [Pump Units] = {1}, cannot be greater than Generator [Units] = {2}. + + + 52 + 2 + 0 + 0 + Purchaser [Benefit Function Shape] must be set to "Quadratic" for the single-period Nash-Cournot. + + + 53 + 3 + 3 + + + 54 + 3 + 3 + + + 55 + 2 + 1 + 1 + License feature "{0}" is required but not available. + + + 56 + 1 + 0 + 0 + The license server returned the error: {0}. + + + 57 + 3 + 3 + + + 58 + 1 + 1 + 1 + Referenced external text file not found: {0}. + + + 59 + 1 + 0 + 0 + Market "{0}" has memberships to more than one class of object, but a Market can only involve one type. + + + 60 + 2 + 0 + 0 + Region "{0}" implied maximum offer price for dynamic bidding (Region [VoLL] or Region [Price Cap]) - Competition [Epsilon] < 0. + + + 61 + 3 + 3 + + + 62 + 3 + 3 + + + 63 + 3 + 3 + + + 64 + 3 + 3 + + + 65 + 3 + 3 + + + 66 + 3 + 3 + + + 67 + 2 + 0 + 0 + Constraint "{0}" cannot be conditional unless defining Constraint [RHS] of period type = "interval". + + + 68 + 3 + 3 + + + 69 + 3 + 3 + + + 70 + 3 + 3 + + + 71 + 1 + 0 + 0 + Out of Memory Exception reallocating buffer to {0} kB. + + + 72 + 1 + 0 + 0 + MOSEK encountered a fatal internal error and terminated abnormally. + + + 73 + 3 + 0 + 0 + {0} "{1}" initial conditions must include [{2}]. + + + 74 + 3 + 0 + 0 + Generator "{0}" fuel-specific heat rate functions {1} must all have the same form as the general heat rate. + + + 75 + 3 + 0 + 0 + Generator "{0}" fuel-specific heat rate functions {1} must all have the same form. + + + 76 + 3 + 3 + + + 77 + 3 + 3 + + + 78 + 2 + 0 + 0 + Generator "{0}" [Heat Rate] band count does not match Generator [Load Point] band count. + + + 79 + 2 + 0 + 0 + Generator "{0}" [Heat Rate Incr] band count does not match Generator [Load Point] band count. + + + 80 + 2 + 0 + 0 + Generator "{0}" does not define enough bands of Generator [Offer Quantity] for cumulative format (at least two required). + + + 81 + 2 + 0 + 0 + Generator "{0}" [Start Cost Time] must have same number of bands as Generator [Start Cost] and Generator Start Fuels [Offtake at Start] if defined. + + + 82 + 2 + 0 + 0 + Generator "{0}" number of bands for Generator [Rough Running Point] must match that of Generator [Rough Running Range]. + + + 83 + 3 + 3 + + + 84 + 2 + 0 + 0 + Generator "{0}" sum of Generator Fuels [Ratio] must be unity. + + + 85 + 2 + 1 + 1 + {0} "{1}" minimum operating level ({2}) should be less than or equal to maximum operating level ({3}). + + + 86 + 3 + 3 + + + 87 + 2 + 0 + 0 + Errors were detected in the efficiency function for {0} "{1}". Consider changing Production [Heat Rate Error Method]. + + + 88 + 1 + 0 + 0 + Out of Memory Exception reallocating cache to {0} kB. + + + 89 + 3 + 3 + + + 90 + 3 + 3 + + + 91 + 2 + 0 + 0 + Line "{0}" defined with both Line [Reactance] and Line [Susceptance] but only one should be used. + + + 92 + 3 + 3 + + + 93 + 2 + 0 + 0 + Market "{0}" should define equal numbers of bands for Market [Price] and Market [Quantity] points. + + + 94 + 3 + 3 + + + 95 + 2 + 0 + 0 + Solution status = {0}. + + + 96 + 2 + 0 + 0 + MLF "{0}" right-hand side term must be non-negative. + + + 97 + 3 + 3 + + + 98 + 3 + 3 + + + 99 + 3 + 3 + + + 100 + 2 + 0 + 0 + Flow Control "{0}" [Units] property cannot be dynamic in for Transmission [OF Method] = "Large Scale". + + + 101 + 3 + 3 + + + 102 + 3 + 3 + + + 103 + 3 + 3 + + + 104 + 3 + 3 + + + 105 + 2 + 0 + 0 + Storage "{0}" [Energy Value] defined without Storage [Downstream Efficiency]. + + + 106 + 3 + 3 + + + 107 + 3 + 3 + + + 108 + 2 + 0 + 0 + Variable "{0}" [Profile] property defined with {1} band(s) but expected ≥ {2} when using Variable [Sampling Method] = "Bands As Samples". + + + 109 + 2 + 0 + 0 + Variable "{0}" [Min Value] must be less than or equal to Variable [Max Value]. + + + 110 + 3 + 1 + 1 + {0} "{1}" initial production level ({2}) is outside the feasible operating range ({3} - {4}). + + + 111 + 3 + 1 + 1 + {0} "{1}" initial units operating ({2}) is greater than the number of installed units ({3}). + + + 112 + 3 + 3 + + + 113 + 3 + 3 + + + 114 + 3 + 3 + + + 115 + 3 + 3 + + + 116 + 3 + 3 + + + 117 + 2 + 0 + 0 + Market "{0}" [Quantity] values must be monotonically non-decreasing. + + + 118 + 2 + 0 + 0 + Market "{0}" band count for Generator Heat Markets [Conversion Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 119 + 2 + 0 + 0 + Generator "{0}" band count for Generator Emissions [Production Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 120 + 3 + 3 + + + 121 + 3 + 3 + + + 122 + 3 + 3 + + + 123 + 2 + 0 + 0 + Constraint "{0}" [Decomposition Method] = "Price" cannot be used in combination with a Constraint [Penalty Price]. + + + 124 + 2 + 1 + 1 + MIP license is required, but no license is available for checkout-the linear relaxation will be reported. + + + 125 + 1 + 0 + 0 + Could not interpret the Condition "{0}". + + + 126 + 1 + 0 + 0 + Generator "{0}" cannot receive Generator [Heat Input] from itself. + + + 127 + 1 + 0 + 0 + Condition "{0}" cannot be conditional on itself (a member of its own Conditions collection). + + + 128 + 1 + 0 + 0 + Condition "{0}" conditional on Condition "{1}" which is itself conditional. + + + 129 + 1 + 0 + 0 + Condition "{0}" must not define Condition [Is Active] or a dynamic equation if it is dependent on other conditions. + + + 130 + 3 + 1 + 1 + Stochastic [Risk Sample Count] = {0} but no Variable objects are defined. + + + 131 + 3 + 3 + + + 132 + 3 + 3 + + + 133 + 3 + 1 + 1 + Generator "{0}" [Units Out] > Generator [Units] in {1} periods. + + + 134 + 3 + 1 + 1 + Line "{0}" [Units Out] > Line [Units] in {1} periods. + + + 135 + 2 + 1 + 1 + PASA must be enabled in order to use the MT Schedule capacity expansion algorithm. + + + 136 + 3 + 3 + + + 137 + 3 + 1 + 1 + {0} "{1}" injects at {2} nodes but does not define {0} Nodes [{3}] for Node "{4}". + + + 138 + 3 + 1 + 1 + Purchaser "{0}" offtakes at {1} nodes but does not define Purchaser Nodes [Load Participation Factor] for Node "{2}". + + + 139 + 3 + 3 + + + 140 + 3 + 3 + + + 141 + 1 + 0 + 0 + The chronological Horizon including look-ahead must be a subset of the planning horizon. + + + 142 + 2 + 0 + 0 + Region "{0}" [DSP Bid Quantity] band count ({1}) must be the same as Region [DSP Bid Price] band count ({2}). + + + 143 + 3 + 3 + + + 144 + 2 + 0 + 0 + Constraint "{0}" can define Constraint Generators [Generation Squared Coefficient] (for "{1}") only if it is a dynamic constraint. + + + 145 + 2 + 0 + 0 + Constraint "{0}" can define Constraint Generators [Generation SUM Squared Coefficient] (for "{1}") only if it is a dynamic constraint. + + + 146 + 1 + 0 + 0 + Region "{0}" defines a Region Reference Node "{1}" that is not inside the Region. + + + 147 + 1 + 0 + 0 + Region "{0}" defines a Region Reference Node "{1}" that is out-of-service. + + + 148 + 2 + 0 + 0 + Reserve "{0}" Nested Reserve "{1}" is of a different Reserve [Type], but must be the same type. + + + 149 + 2 + 0 + 0 + Reserve "{0}" Nested Reserve "{1}" must use a subset of the generators in the master reserve class. + + + 150 + 2 + 0 + 0 + Generator "{0}" cannot provide more response to Reserve "{1}" than Reserve "{2}" because the service is nested. + + + 151 + 2 + 0 + 0 + Reserve "{0}" has Nested Reserve "{1}" but is itself nested in Reserve "{2}". + + + 152 + 2 + 0 + 0 + Reserve "{0}" [Is Enabled] property can only be changed by Scenario. + + + 153 + 2 + 0 + 0 + Generator {0} [Start Profile] must have same number of bands as Generator [Start Cost]. + + + 154 + 2 + 0 + 0 + Generator {0} [Run Up Rate] must have same number of bands as Generator [Start Cost]. + + + 155 + 1 + 0 + 0 + The Horizon ({0} years) could not be factored by the given LT Plan [At a Time] ({1}) and LT Plan [Overlap] ({2}). + + + 156 + 2 + 0 + 0 + Constraint "{0}" defines Constraint [RHS] (period type = {1}) but uses coefficients that support Constraint [RHS Year] only. + + + 157 + 2 + 1 + 1 + Node "{0}" shift factors could not be computed due to an infeasibility in the Y-bus matrix. + + + 158 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Export Capacity Built Coefficient] together with Constraint Lines [Import Capacity Built Coefficient]. + + + 159 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Units Built Coefficient] together with Constraint Lines [Units Built in Year Coefficient]. + + + 160 + 3 + 0 + 0 + Constraint "{0}" Lines "{1}" cannot define both Constraint Lines [Units Retired Coefficient] together with Constraint Lines [Units Retired in Year Coefficient]. + + + 161 + 3 + 0 + 0 + Constraint "{0}" Generators "{1}" cannot define both Constraint Generators [Units Built Coefficient] together with Constraint Generators [Units Built in Year Coefficient]. + + + 162 + 3 + 0 + 0 + Constraint "{0}" Generators "{1}" cannot define both Constraint Generators [Units Retired Coefficient] together with Constraint Generators [Units Retired in Year Coefficient]. + + + 163 + 2 + 0 + 0 + Failed to fit polynomial to (x,y) coordinates of heat rate function for Generator "{0}". "{1}". + + + 164 + 3 + 1 + 1 + Non-physical losses detected on Line "{0}" in period ({1}). Flow {2}, Loss {3}. Consider changing Transmission [Detect Non-physical Losses] setting. + + + 165 + 3 + 3 + + + 166 + 3 + 1 + 1 + Power Station "{0}" only has {1} of {2} units that define [{3}]. + + + 167 + 3 + 1 + 1 + Generator "{0}" outages were not written to text files because text input does not support multi-unit stations with partial outages. + + + 168 + 3 + 1 + 1 + Non-physical losses detected on Line "{0}" in period ({1}). Flow {2}, Loss {3}. Correction algorithm invoked. + + + 169 + 2 + 1 + 1 + The master solution database is missing. Looked for {0}. Database output has been disabled. + + + 170 + 2 + 1 + 1 + {0} "{1}" band ({2}) defines outage parameters but no outage duration function definition. + + + 171 + 3 + 1 + 1 + Node "{0}" [Phase Angle] is at an upper or lower bound in period {1}. + + + 172 + 3 + 3 + + + 173 + 3 + 1 + 1 + Constraint "{0}" Lines "{1}" has Constraint Lines [Flow Coefficient] and {2} defined. This coefficient will be ignored. + + + 174 + 3 + 1 + 1 + Constraint "{0}" Generators "{1}" has Constraint Generators [Reserve Provision Coefficient], but has no reserve memberships defined. This coefficient will be ignored. + + + 175 + 3 + 3 + + + 176 + 3 + 3 + + + 177 + 2 + 1 + 1 + The input data diagnostic file "{0}" could not be written. + + + 178 + 3 + 3 + + + 179 + 3 + 3 + + + 180 + 3 + 3 + + + 181 + 3 + 3 + + + 182 + 2 + 0 + 0 + Interface "{0}" limits imply Interface [Min Flow] {1} <= Interface [Flow] <= Interface [Max Flow] {2}. + + + 183 + 3 + 1 + 1 + Node "{0}" [Unserved Energy] in period {1} is above limit {2} MW by {3} MW due to a constraint infeasibility. + + + 184 + 1 + 0 + 0 + Region "{0}" must have at least one Node in service. + + + 185 + 1 + 0 + 0 + Generator "{0}" [Start Profile] has been defined as a constant value. Use the Timeslice field to define its start-up stages or use Generator [Run Up Rate] for a constant rate. + + + 186 + 2 + 0 + 0 + Generator "{0}" [Unit Commitment Optimality] = "Rounded Relaxation" is not compatible with Production [Unit Commitment Optimality]. + + + 187 + 1 + 0 + 0 + MT Schedule [Stochastic Method] and LT Plan [Stochastic Method] must both be set to "Deterministic" if either setting is "Deterministic". + + + 188 + 1 + 0 + 0 + ST Schedule [Stochastic Method] and LT Plan [Stochastic Method] must both be set to "Deterministic" if either setting is "Deterministic". + + + 189 + 2 + 0 + 0 + Failed to solve uplift. The solver returned solution status {0}. + + + 190 + 3 + 1 + 1 + Uplift was infeasible but successfully repaired. SMP may be outside the range defined by Region [Price Floor] and Region [Price Cap]. + + + 191 + 3 + 3 + + + 192 + 3 + 3 + + + 193 + 2 + 1 + 1 + Network separation is detected with Contingency "{0}". + + + 194 + 2 + 0 + 0 + Generator "{0}" [Mark-up Point] defined with {1} bands but Generator [Mark-up] is defined with {2} bands. + + + 195 + 2 + 0 + 0 + Generator "{0}" [Mark-up Point] defined with {1} bands but Generator [Bid Cost Mark-up] is defined with {2} bands. + + + 196 + 2 + 0 + 0 + Generator "{0}" defines up to {1} Generator [Units] and is a Reserve Contingency Generators for {2} Reserve objects but this membership is allowed only for single-unit Generator objects. For multi-unit use separate Generator objects. + + + 197 + 3 + 1 + 1 + Region/Zone "{0}" [Maintenance Factor] in step {1} accumulates to {2} but would normally sum to {3} which is the total number of hours in the step. + + + 198 + 3 + 1 + 1 + Node "{0}" [Dump Energy] in period {1} is above limit {2} MW by {3} MW due to a constraint infeasibility. + + + 199 + 3 + 1 + 1 + Multi-fuel CHP Generator "{0}" requires identical heat rate functions. Average heat rate at maximum power across defined fuels will be considered for heat production formulation. + + + 200 + 2 + 0 + 0 + Failed to correct non-physical flows. The solver returned solution status {0}. + + + 201 + 3 + 1 + 1 + Non-physical flow correction was infeasible but successfully repaired. + + + 202 + 3 + 1 + 1 + Constraint "{0}" skipped because its period type is too short for the resolution of {1}. + + + 203 + 3 + 1 + 1 + The Escalator [Compound Start Date] is later than the end of the horizon. The default date will be used ( {0} ). + + + 204 + 3 + 1 + 1 + The Escalator [Compound Start Date] is {0} years outside of the current horizon. + + + 205 + 2 + 1 + 1 + Generator "{0}" defined Generator Head Storage [Efficiency Point] (for "{1}") band={2} value={3} must be less than or equal to band={4} value={5}. + + + 206 + 1 + 0 + 0 + Variable "{0}" definition as a function of other Variable objects implies a circular reference. + + + 207 + 2 + 0 + 0 + Read {0} sample weights but expected {1}. + + + 208 + 2 + 1 + 1 + Line "{0}" flow limits must be defined when using Transmission [Loss Method] = "Piecewise Linear". Loss is turned off for this line. + + + 209 + 2 + 0 + 0 + {0} "{1}" [{2}] definition is ambiguous. The datum is defined both with the Escalator "{3}" and without. + + + 210 + 3 + 1 + 1 + Problem is infeasible. Solution status = {0}. + + + 211 + 1 + 0 + 0 + Failed to repair an infeasible problem. Solution status = {0}. + + + 212 + 2 + 1 + 1 + Failed to set user-defined solver parameter {0}. + + + 213 + 3 + 3 + 3 + Error reporting formulation diagnostics. {0} + + + 214 + 2 + 1 + 1 + No integer feasible solution exists. The linear solution will be reported. Solution status = {0}. + + + 215 + 2 + 1 + 1 + Generator "{0}" [Fuel Offtake] may be inaccurate in {1} periods due to tranche variables clearing out of order. Consider setting Generator [Formulate Non-convex]="Always". + + + 216 + 2 + 1 + 1 + Generator "{0}" [Unit Commitment Optimality] = "Rounded Relaxation" might violate [Min Up Time]/[Min Down Time] because Constraint Generators [Units Generating Coefficient] is defined. + + + 217 + 2 + 1 + 1 + Generator "{0}" defines [Commit] property which is incompatible with [Unit Commitment Optimality] = "Dynamic Program". The Generator will use the global commitment setting. + + + 218 + 1 + 0 + 0 + The "{0}" Region is missing its Reference Node membership, which is compulsory when using the [Aggregate Transmission] option. + + + 219 + 2 + 0 + 0 + {0} LOLP Target{1} might not be guaranteed in {2} of {3} periods. + + + 220 + 4 + 1 + 1 + Solution hierarchy computed {0} solution(s). No more feasible solutions exist. + + + 221 + 2 + 1 + 1 + There was an error writing the solution to the destination drive. The solution has been saved in the following location: {0} + + + 222 + 2 + 1 + 1 + There was a problem writing the zipped solution to the destination drive. The uncompressed solution has been saved in the following location: {0} + + + 223 + 2 + 1 + 1 + Matrix coefficients are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 224 + 2 + 1 + 1 + Variable objective function coefficients are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 225 + 2 + 1 + 1 + Variable bounds are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 226 + 2 + 1 + 1 + Constraint right-hand side coefficients are badly scaled. Range is [{0}, {1}].This may result in numerical instability and degraded performance. + + + 300 + 2 + 1 + 1 + Invalid token "{0}" in RHS expression for Row "{1}" + + + 301 + 1 + 0 + 0 + Error processing RPN expression for Row "{0}". {1} element(s) required in the stack to use the {2} operator + + + 302 + 2 + 1 + 1 + Expected no more than {0} element(s) to remain in the RPN stack, but found {1} after evaluating the expression for Row "{2}" + + + 3000 + 3 + 3 + + + 3001 + 3 + 3 + + + 3002 + 3 + 3 + + + 3003 + 1 + 1 + 1 + {0} but this collection must have exactly {1} member(s). + + + 3004 + 1 + 1 + 1 + {0} but this collection must have at least {1} member(s). + + + 3005 + 1 + 1 + 1 + {0} but this collection cannot have more than {1} member(s). + + + 3006 + 1 + 1 + 1 + Power Station "{0}" conflicts with a Generator of the same name. + + + 3007 + 4 + 1 + 1 + Skipped checking for missing files. + + + 3008 + 1 + 1 + 1 + File not found: {0} + + + 3009 + 4 + 1 + 1 + Skipped checking of memberships. + + + 3010 + 3 + 3 + + + 3011 + 3 + 3 + + + 3012 + 3 + 3 + + + 3013 + 1 + 1 + 1 + {0} objects are missing their system membership. + + + 3014 + 4 + 1 + 1 + Skipped checking of data against validation rules. + + + 3015 + 1 + 1 + 1 + {0} [{1}] band = {2} is defined multiple times with value {3}. + + + 3016 + 3 + 3 + + + 3017 + 1 + 1 + 1 + {0} [{1}] defined with value {2} but must be {3}. + + + 3018 + 1 + 1 + 1 + {0} [{1}] defined with value {2} and [Date From] = {3} after [Date To] = {4}. + + + 3019 + 1 + 1 + 1 + {0} [{1}] defined with multiple bands but this property cannot be multi-band. + + + 3020 + 1 + 1 + 1 + The input property [{0}] has been associated with the [{1}] collection, but this belongs to the [{2}] collection. Please use the [Check Database] option in the user interface before re-execution. + + + 3021 + 3 + 1 + 1 + {0}.{1} with parent "{2}" and child "{3}" Filename: "{4}" used to define {5} properties for the same object, but must only be used to define one property for any one object. + + + 3022 + 3 + 1 + 1 + {0}.{1} with parent "{2}" and child "{3}" band {4} uses Data File field in combination with Escalator and/or Condition and/or Variable and this is not supported. + + + 3023 + 3 + 3 + + + 3024 + 3 + 3 + + + 3025 + 3 + 3 + + + 3026 + 3 + 1 + 1 + Read {0} records(s) for object "{1}" in band {2}, but expected {3}. Default value of {4} assumed. File: "{5}". + + + 3027 + 3 + 1 + 1 + Profile {0} contains {1} zero values. + + + 3028 + 3 + 1 + 1 + Year ending: {0} skipped because the horizon does not completely span this year. + + + 3029 + 3 + 3 + + + 3030 + 3 + 1 + 1 + Data File [Shape Distortion] increased to: {0}. + + + 3031 + 3 + 1 + 1 + Data File [Energy] mismatch (under target) by {0} = {1}". + + + 3032 + 3 + 1 + 1 + Data File [Energy] mismatch (over target) by {0} = {1}. + + + 3033 + 2 + 1 + 1 + File "{0}" periods per day in file "{1}" must be a multiple of Horizon [Periods per Day] "{2}". + + + 3034 + 1 + 0 + 0 + MOSEK encountered a fatal internal error and terminated abnormally. + + + 3035 + 1 + 0 + 0 + The look-ahead in the chronological phase cannot have a higher resolution than the main horizon. + + + 3036 + 3 + 3 + + + 3037 + 2 + 0 + 0 + No delimiters found in header row of file {0}. + + + 3038 + 2 + 0 + 0 + Data for "{0}" not found in file "{1}" (assumed "Names in Columns" format). + + + 3039 + 1 + 0 + 0 + No header row found, or unable to recognise fields in the header. File "{0}". + + + 3040 + 2 + 0 + 0 + Value "{0}" for object "{1}" at line {2} in file "{3}" must be >= {4} + + + 3041 + 2 + 0 + 0 + Value "{0}" for object "{1}" at line {2} in file "{3}" must be <= {4} + + + 3042 + 2 + 0 + 0 + Viewing of Patterned file data is not currently supported prior to Model compilation. + + + 3043 + 3 + 1 + 1 + Read {0} records(s) for object "{1}" in band {2}, but expected {3}. File: "{4}". + + + 3044 + 1 + 0 + 0 + Error interpreting the header row of {0} "{1}". + + + 3045 + 1 + 0 + 0 + Error reading line {0} of {1} "{2}". + + + 3046 + 1 + 0 + 0 + Out of Memory Exception reading file: {0}. Tried to allocate {1} kB. + + + 3047 + 1 + 0 + 0 + Error interpreting the header row of {0}. + + + 3048 + 1 + 0 + 0 + General error reading line {0} of {1}. Periods per day = {2}. + + + 3049 + 1 + 0 + 0 + EEI File "{0}" has record length {1}, expected 80 or 82. + + + 3050 + 1 + 0 + 0 + Duplicate AM records for {0}. + + + 3051 + 1 + 0 + 0 + Duplicate PM records for {0}. + + + 3052 + 1 + 0 + 0 + {0} contained only {1} lines of data, expected {2}. {3} Check that the file is complete and that the Horizon [Periods per Day] is correct. + + + 3053 + 1 + 0 + 0 + {0}Specified Data File [Base Profile] "{1}" not found. + + + 3054 + 1 + 0 + 0 + {0}Invalid fiscal year range: {1}-{2}. + + + 3055 + 1 + 0 + 0 + Error in Data File [Holiday]. Expected {0} dates per holiday but got {1}. + + + 3056 + 1 + 0 + 0 + Source profile contained too few records. {0}. + + + 3057 + 1 + 0 + 0 + Error interpreting Holiday on band {0}. Could not locate base profile holiday start date. + + + 3058 + 1 + 0 + 0 + Error interpreting Holiday on band {0}. Could not locate holiday start date in year {1}. + + + 3059 + 1 + 0 + 0 + {0}Could not propagate profile year to period {1}. + + + 3060 + 2 + 0 + 0 + Solution status:= {0}. + + + 3061 + 1 + 0 + 0 + Cannot create the profile using the specified parameters. The problem is infeasible. Adjust the parameters and try again. + + + 3062 + 3 + 3 + + + 3063 + 1 + 0 + 0 + Database version number "{0}" does not match engine version number "{1}". + + + 3064 + 1 + 0 + 0 + {0} validation errors were detected. Please correct these errors before running the simulation. + + + 3065 + 1 + 0 + 0 + Selected Model and/or Project objects are not configured with a Horizon object. + + + 3066 + 3 + 3 + + + 3067 + 3 + 3 + + + 3068 + 2 + 0 + 0 + Capacity Factor constraints cannot be defined with period type of interval. + + + 3069 + 3 + 3 + + + 3070 + 3 + 3 + + + 3071 + 2 + 0 + 0 + Power Station "{0}" attempts to aggregate [ {1} ] with {2} bands on [ {3} ("{4}").{5} ("{6}") ] but {7} on the first member. + + + 3072 + 1 + 0 + 0 + ST Schedule must begin inside the planning Horizon. + + + 3073 + 1 + 0 + 0 + ST Schedule must run inside the planning Horizon. + + + 3074 + 1 + 0 + 0 + Horizon [Typical Week] does not support running '{0}' steps. + + + 3075 + 1 + 0 + 0 + For Horizon [Typical Week] mode ST Schedule must span one week e.g. 1 step of 1 week, 7 steps of 1 day, 24 steps of 1 hour, 12 steps of 2 hours, etc. + + + 3076 + 1 + 0 + 0 + Horizon contained no months with specified typical week index. + + + 3077 + 1 + 0 + 0 + Invalid Horizon [Chrono Period From] option: {0}. Expected an index between 1 and {1}. + + + 3078 + 1 + 0 + 0 + Invalid Horizon [Chrono Period To] option: {0}. Expected an index between 1 and {1}. + + + 3079 + 1 + 0 + 0 + Invalid date range {0} to {1}. + + + 3080 + 2 + 1 + 1 + The step settings for this phase cover {0} intervals out of {1} in the horizon. No results will be calculated for the last {2} intervals. + + + 3081 + 3 + 3 + + + 3082 + 1 + 0 + 0 + Internal Error: ParsePattern() expected result array of rank 1. + + + 3083 + 3 + 3 + + + 3084 + 2 + 0 + 0 + Empty statement found in Timeslice "{0}". + + + 3085 + 2 + 0 + 0 + Timeslice "{0}" statement contains no identifier. + + + 3086 + 2 + 0 + 0 + Invalid month range in Timeslice "{0}". + + + 3087 + 2 + 0 + 0 + Invalid day of month range in Timeslice "{0}". + + + 3088 + 2 + 0 + 0 + Invalid day of week range in Timeslice "{0}". + + + 3089 + 2 + 0 + 0 + Invalid hour range in Timeslice "{0}". + + + 3090 + 2 + 0 + 0 + Invalid period range in Timeslice "{0}". + + + 3091 + 2 + 0 + 0 + Could not parse Timeslice statement "{0}". + + + 3092 + 2 + 0 + 0 + Unknown identifier "{0}" in Timeslice statement "{1}". + + + 3093 + 2 + 0 + 0 + Could not interpret the statement "{0}" in the Timeslice "{1}". + + + 3094 + 1 + 0 + 0 + Could not open: {0} It may be in use by another process. + + + 3095 + 2 + 0 + 0 + File "{0}" contains no data. + + + 3096 + 2 + 0 + 0 + Invalid data found at line {0} of file {1}. + + + 3097 + 2 + 1 + 1 + Cannot aggregate {0} for Power Station "{1}" with child "{2}", because only {3} of the {4} generators have that type of membership. + + + 3098 + 2 + 1 + 1 + Cannot aggregate {0} for Power Station "{1}" with parent "{2}", because only {3} of the {4} generators are included in that type of membership. + + + 3099 + 3 + 3 + + + 3100 + 3 + 3 + + + 3101 + 3 + 3 + + + 3102 + 3 + 3 + + + 3103 + 1 + 0 + 0 + The property {0} {1} [{2}] has the Condition "{3}" defined that does not exist. + + + 3104 + 1 + 1 + 1 + The Region "{1}" defines Region Reference Node of "{0}" but this is located in Region "{2}". + + + 3105 + 1 + 0 + 0 + Escalator "{0}" cannot define Escalator [Index] together with Escalator [Compound Index]. + + + 3106 + 2 + 1 + 1 + Data File line {0} contains {1} band(s) of data for object "{2}" but expected {3} bands. File "{4}". + + + 3107 + 1 + 0 + 0 + Escalator "{0}" cannot define Escalator [Compound Index] for both period types "{1}" and "{2}". + + + 3108 + 1 + 1 + 1 + Report "{0}" {1} [{2}] cannot be reported by period. + + + 3109 + 1 + 1 + 1 + Report "{0}" {1} [{2}] cannot be reported in summary. + + + 3110 + 1 + 1 + 1 + Report "{0}" {1} [{2}] is not reported in {3} simulation phase. + + + 3111 + 1 + 0 + 0 + The look-ahead in the chronological phase ({0} periods per day) must divide the planning horizon resolution ({1} periods per day). + + + 3112 + 1 + 0 + 0 + DATETIME field cannot be combined with YEAR, MONTH, DAY, or PERIOD. File "{0}". + + + 3113 + 1 + 0 + 0 + Data File line {0} defines invalid date YEAR={1}, MONTH={2}, DAY={3}. Conversion error message ="{4}". File "{5}". + + + 3114 + 1 + 0 + 0 + {0} [Blocks] = {1} cannot be greater than the number of intervals in a {2} = {3}. + + + 3115 + 1 + 0 + 0 + Generator "{0}" has memberships to more than one enabled Power Station objects. + + + 3116 + 2 + 0 + 0 + Data File line {0} defines an invalid date ( {1} ) with {2} culture settings. File "{3}". + + + 3117 + 2 + 0 + 0 + Failed to interpret the Timeslice "{0}" which appears to have invalid meta-patterns related to Timeslice "{1}". + + + 3118 + 2 + 0 + 0 + Generator "{0}" was not located in the {1} model "{2}". + + + 3119 + 2 + 0 + 0 + The interleaved property {0}.[{1}] is invalid. + + + 3120 + 3 + 3 + + + 3121 + 2 + 1 + 1 + The Model [Random Number Seed] property has not been set. The number {0} will be used. Variable samples and outage patterns in this simulation will repeat only if this same seed is set. + + + 3122 + 2 + 1 + 1 + Timeslice "{0}" is used but does not include any time periods. You should define the Timeslice [Include] property. + + + 3123 + 2 + 0 + 0 + Unable to run the interleave process due to invalid settings. Server stochastic mode [{0}] with {1} sample(s) is not consistent with the client stochastic mode [{2}] with {3} sample(s). + + + 3124 + 2 + 1 + 1 + The marginal unit diagnostic has skipped Region "{0}" because the reference node "{1}" is not a load node. + + + 3128 + 1 + 0 + 0 + Cannot fit {0} periods per {1} while pinning the selected number points. Either increase the number of periods or remove the point pinning. + + + 3129 + 1 + 0 + 0 + Generator "{0}" band count for Generator Fuels [Heat Rate] (for "{1}" = {2}) should equal Generator [Load Point] band count ({3}). + + + 3130 + 1 + 0 + 0 + Decision Variable "{0}" Objective Function Coefficient period type "{1}" is not consistent with Definition "{2}". + + + 3131 + 2 + 1 + 1 + Decision Variable "{0}" Objective Function Coefficient period type {1} is too long for ST Schedule. + + + 3132 + 2 + 1 + 1 + The specified output path and file name are too long. The solution will be written to the following temporary location: {0} + + + 3133 + 2 + 1 + 1 + OpenPLEXOS {0}. + + + 3134 + 2 + 0 + 0 + Conflict detected on Decision Variable {0} bounds, lower bound = {1}, upper bound = {2}, type = {3} + + + 3135 + 2 + 1 + 1 + Branch "{0}" NodeFrom and NodeTo are both defined as "{1}". It is dropped from simulation. + + + 3136 + 1 + 0 + 0 + Cannot connect Storage objects to Water Node objects when using "Energy" Hydro Model setting. + + + 3137 + 2 + 1 + 1 + File "{0}" contains {1} repeated values. + + + 3138 + 1 + 0 + 0 + Line "{0}" has [Max Flow] lower than [Min Flow]; [Max Flow] = "{1}" < [Min Flow] = "{2}". + + + 3139 + 2 + 1 + 1 + Property {0} is dropped because the interval length is set to {1}. + + + 3140 + 2 + 0 + 0 + Could not interpret the statement "{0}" in the Timeslice {1}. + + + 3141 + 2 + 1 + 1 + MT Schedule will run in one step for the Hanging Branches Rolling Horizon solution method. + + + 3142 + 4 + 1 + 1 + Skipped validation of the report selections. + + + 3143 + 1 + 0 + 0 + Horizon [Typical Week] mismatch to the start of the planning horizon. + + + 3144 + 2 + 1 + 1 + Constraint "{0}" Gas Fields "{1}" defines [End Volume Coefficient] and {2}. The latter coefficient will be ignored. + + + 3145 + 1 + 0 + 0 + Unable to formulate constraints for Base Gas Contract "{0}". ST schedule must span 365 days if no LT plan or MT schedule is enabled. + + + 3146 + 2 + 1 + 1 + Unable to formulate constraints for Base Gas Contract "{0}" for {1} phase. Contract will be treated as Swing contract for the current phase. + + + 3147 + 2 + 1 + 1 + Gas Contract "{0}" has memberships with multiple classes. Gas Node memberships will be ignored. + + + 3148 + 2 + 1 + 1 + Generator "{0}" cannot define a transition with itself. This transition membership has been removed. + + + 3149 + 2 + 1 + 1 + Gas Pipelines mapped to Gas Capacity Release Offer "{0}" do not form a path. + + + 3150 + 2 + 1 + 1 + Unable to formulate constraints for Base Gas Capacity Release Offer "{0}" for {1} phase. Release type will be treated as swing for the current phase. + + + 3151 + 2 + 1 + 1 + Gas Capacity Release Offer "{0}" has memberships with multiple classes. Gas pipelines memberships will be used and other memberships will be ignored. + + + 3152 + 2 + 1 + 1 + Gas Capacity Release Offer "{0}" has no memberships assigned to it. + + + 3153 + 2 + 1 + 1 + Maximum daily take for gas contract "{0}" is less than percentage of demand from all demand in this gas contract. + + + 3154 + 2 + 1 + 1 + Internal VoLL for region "{0}" must increase with increasing internal VoLL level. + + + 3155 + 2 + 1 + 1 + Scenario Tree: Globals [Hanging Branches Historical Year Start] is not defined. Hanging Branches Sample Reduction will be run automatically. + + + 3156 + 1 + 0 + 0 + Scenario Tree: Number of Hanging Branches {0} should be less than the number of historical years {1}. + + + 3157 + 1 + 0 + 0 + Scenario Tree: Globals [Hanging Branches Historical Year Start] data are invalid, please try using [Hanging Branches Sample Reduction]. + + + 3159 + 2 + 1 + 1 + Gas Storage has memberships with multiple gas nodes that each gas node has weather station connected. Only first weather station (connected to first gas node) will be used. + + + 3160 + 2 + 1 + 1 + Gas Contract has memberships with multiple gas nodes that each gas node has weather station connected. Only first weather station (connected to first gas node) will be used. + + + 3161 + 1 + 1 + 1 + The Generator [Outage Rating] for "{0}" is larger than or equal to its rated capacity in certain periods. Generator [Units Out] will not be applied to those periods. + + + 3162 + 3 + 1 + 1 + {0} "{1}" doesn't define property {2}. The preschedule for the object will be ignored. + + + 3163 + 1 + 1 + 1 + LT Plan specified [Allow Capacity Sharing] but none of the Regions or Zones have capacity reserve inputs. Capacity will not be shared except as specified in Line [Firm Capacity]. + + + 3164 + 1 + 1 + 1 + Constraint "{0}" RHS Hour is longer than the interval length of {1} hours. The Constraint will be excluded. Try using RHS instead. + + + 3165 + 1 + 0 + 0 + Variable '{0}' is configured for {1} sampling. The sampling method needs to be set to '{2}'. + + + 3200 + 1 + 0 + 0 + Could not interpret Variable "{0}" ML model schema column "{1}". Expected Collection_Name_Property. + + + 3201 + 1 + 0 + 0 + Could not interpret the class name "{0}" in the Variable "{1}" ML model schema column name "{2}" + + + 3202 + 1 + 0 + 0 + Could not interpret the "{0}" object name "{1}" in Variable "{2}" ML model schema column name "{3}" + + + 3203 + 1 + 0 + 0 + Could not interpret the property name "{0}" in Variable "{1}" ML model schema column name "{2}" + + + 3204 + 2 + 1 + 1 + The region {0} cannot belong to two or more decomposition groups. + + + 3205 + 1 + 0 + 0 + Error during the decomposition simulations. Unable to create final solution file. + + + 3206 + 2 + 1 + 1 + Geographical decomposition feature has been disabled. {0} + + + 3207 + 2 + 1 + 1 + Expansion file '{0}' does not exist. + + + 3208 + 2 + 0 + 0 + Gas Storage "{0}" [Injection Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3209 + 2 + 0 + 0 + Gas Storage "{0}" [Withdrawal Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3210 + 2 + 0 + 0 + Gas Storage "{0}" [Dispatch Injection Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3211 + 2 + 0 + 0 + Gas Storage "{0}" [Dispatch Withdrawal Charge] band count ({1}) must be the same as Gas Storage [Injection Withdrawal Charge Level] band count ({2}). + + + 3212 + 2 + 0 + 0 + Gas Storage "{0}" sum of [Injection Withdrawal Charge Level] bands is "{1}"% but must sum to 100%. + + + 3213 + 2 + 1 + 1 + The value could not be calculated because "{0}" >= "{1}". + + + 3214 + 2 + 1 + 1 + The factorial for "{0}" could not be calculated. + + + 3215 + 2 + 1 + 1 + The total share of a vehicle at any particular interval can not be more than 1. The share is redistributed accordingly, so that the total share is equal to 1. + + + 3216 + 3 + 1 + 1 + Input time series for variable "{0}" is not stationary, PARMA fitting for it might not be accurate! + + + 3221 + 2 + 1 + 1 + Interleave configuration is ambiguous after generic object compilation. Collection IDs {0} each report "{1}". + + + 3222 + 2 + 1 + 1 + Max Ramp {0} for {1} is not available in Sampled Chronology. + + + 3223 + 3 + 1 + 1 + The total Gas Demand.Gas Node Demand Participation Factor does not sum to 1.0. Gas Demand: {0}, sum of Demand Participation Factor: {1}. + + + 3224 + 2 + 1 + 1 + Scenario Tree: Globals Hanging Branches tree settings are ignored in the following cases: 1) LT/MT phase is not running Stochastic mode, or 2) the horizon is too short for running a multi-stage optimization, or 3) sample reduction is required for the stochastic object. + + + 3225 + 2 + 1 + 1 + Storages "{0}" and "{1}" connect in cascade through Generator "{2}" but have different [Internal Volume Scalar] values {3} and {4}. Choose one value. + + + 3226 + 2 + 1 + 1 + Scenario Tree: Globals [Full Branches Sample Reduction] is disabled. Number of Full and Hanging Branches {0} needs to be less than the number of historical years {1}. + + + 3227 + 3 + 1 + 1 + There is a mismatch between the number of offer quantity bands ({0}) and the number of bid-cost mark-up bands ({1}) for {2}. + + + 1 + Popular + + + 2 + Ancillary Services + + + 4 + Capacity + + + 8 + Capacity Expansion + + + 16 + CCGT + + + 32 + CHP + + + 64 + Competition + + + 128 + Constraints + + + 256 + Conversions + + + 512 + Decomposition + + + 1024 + Demand + + + 2048 + Diagnostic + + + 4096 + Efficiency + + + 8192 + Emissions + + + 16384 + End Effects + + + 32768 + Fixed Cost + + + 65536 + Geospatial + + + 131072 + Heat + + + 262144 + Hydro + + + 524288 + Initial Conditions + + + 1048576 + Load + + + 2097152 + Losses + + + 4194304 + Offers and Bids + + + 8388608 + On/Off Switches + + + 16777216 + Outages + + + 33554432 + Performance + + + 67108864 + Pricing + + + 134217728 + Pumped Storage + + + 268435456 + Wind + + + 536870912 + Semi-Variable Cost + + + 1073741824 + Shortage + + + 2147483648 + Start + + + 4294967296 + Stochastic + + + 8589934592 + Stop + + + 17179869184 + Storage + + + 34359738368 + Power Flow + + + 68719476736 + Unit Commitment + + + 137438953472 + Variable Cost + + + 274877906944 + Risk + + + 549755813888 + Water + + diff --git a/tests/data/master_files.zip b/tests/data/master_files.zip deleted file mode 100644 index fe3dcc4a33b8c3575b18b7e5ef69f347b76df462..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1117116 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

09;)1NFO?qLq@HB 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νg*e* zWfbnbVNOj%LR0v|Qq5d)j-fQak-kJplqsk+#sj<7L_9>P z>6Tzf0`i@e17=AKk>w80FOC!2t`^o-TPzM_J4!=airUOZ%r^Kr2N3~9B5fXEM=ulY zt;5E%r^t9|39BX?{R%-G@MG$s`G3HC9(@b^o*eiKnh?1>3HYXfEr=SY1?>&D3i|Gu zHYmRcg&Vg)>$QWT^E#m)rP3F}0j}7@<#-r2(CXi{Y|RWl1i%ZkAA8dc<$$xSAv$jU zYo);kD#{9mUh*QLZNi}pf57VR|F>L<-sR?8c$5rm+V1x*h-DdXN7!*JE+hr#7@bBU z`4R~8A!g=liw~v?;*`;^$-z3wVDMrB5sT{~qQ-ZeM9Kb=@>P9_G%n0TkcUpYOhT!iead~=T2C5zl9i3;jd~Ryi z`lZ(TxzQilhknRJ4B~=N{_)oH zuTJVF-Pn+?yQjyz54wL{cOT>1%Y&=#d{#Pu{o}B?(MjnOo?I`|Uuw`99~31iECxfP z=|92-1NO6qRm@Z1n%aZ1&2|Uj50o3Uc&J_eS~2o)V2I;qq$I;@5f>RoWv{Au5S`PF zG}G;e#W2F6K7WJlkN!7*y zW)IN<3QWw95iJTB>vI?OF9c|T-QH~NG^8OEn4T+%L1IMIB5m|^GVs|jP^m-%sWu>@ z#|tWzMokh&#sxuLcA7`UG=52ug|RIk zU(_Tj*9<3HI2cUcYDHdhEdVGgMIWBKT0j0w4kkwJp=Zg}<{~ItDTe_n;EsBJjlpYn%o7vB1~z z7(qj6YT3ZR46!v}pae~J7N8=aZAtZ4FS>(|BH$G&GYH6u0HkMf@O~bG&W--IAuEPi zWPFmed3YmSH_w3i6g1yiLMWY&B7fMzc{`HEL~;QGsgRF=VLPr`hio-|p&`W0?buHA zm~O6R)15h`+r1aNvznGOCtPR5fc}gw%)(VRTOHYXpsqUP&PxE7Xn_R~nxS)|8*I5BE3G&Yx=d-fIKlJu3)RF?W$OeUO7KZB@(P{4N z3zK?OH?=oPk|``W5G*X(io+jb%#2cq};F#?nFVO zthCXlDF`g0-19HFtGPqOdPG9=ym4ZlY`kf+r~fDwI38R8ZJ)0FHN+mlW06Dfellkxqf1%iJzc ze3qkHhFW;FWrG$?INCvJW1BZu0Jy2m8^;iYA(#3%&oMNQ9v01>>4v#9y_sec0nnWq z9#Y@-u=##{HT%m_uP%-ODoA_={=o2$ATY1%d_Mn{Y**Y=bRaO%#aH>i8@U9?c-L`eZQjkw_uS(eO5a$)7T7mjpiU5S0nC2mMda z_4C9qQAmT|(xd5mho0b5rsw=`?2h!?zMs>_zUy;{;O(E2_Lw~?4?fX7CmO-x&L`HB z*g99-?S+OH_Y}kUSX9~&xY>tth)1Qa{cUC0$9%5fwQ2o1IReW2rKahC2cixc9Kwu3 zvoYWQuMsQ!!6&7Df|etIQQ*&XCI(ARgyZ|+EHqek{XmRYdVdl7OV$&%qb?cL^i+?&&fGhJ4n!_*%J4Q;N*&sk6~@WwS$l6l%% z&^MOYAa~=0xf}KNB=&CaZ>*AW5`$sx7lx%hX{IqmI#O$ViV5g|_`&1tC)B_6M;V^a zD9AU>CegYMHa7Qtk1s!gQnF&RV5w%6P{{XAuAg=t6l{o#XJv!*rx{~F;UIidbK$2pYSFN(()eMNh__krw@5=UAYY@ zLj2%?t^&U0B?v+?88Nf$ZLj~Dv?EFIZ2oRGG`Z2{H@b5>M1j`aH>VV0!X1PG8$?J# zUW8N`FH#hMF}S`*{n)ie%R`4p*^~q|)ZUH(A5=SSiSj;f^2`D|Q2#?+8% z^0QknL~xDKoITFrU}+F)(St^9O5W0#mUmV!4S&elFj> z6bmLk(>+`K88rAODLT`m$v`apvMyMXNwhv3iLmL8uk>-%yhKPjdtK|tebu~w2*$*v zDkPx&^_BTw+4Yy&t@J!(|240X z&QW_6`J@xs6CWzxf@oH%eUu*32Q<4>x*x;AX@?(>-&~4dy21i_oVT8Ot`UJ?g&bXNLpm_DP}*6V{;HYQ;asQgzKtBS<9GJ(S&^Qhd4M7mqBp zu!$BZNh}Ie4NFtGZGS?9>#CTb0bWyrp~7CfT$nptC!zJ4^{iK37<@zM1&zBcTWz^^n1cMcN4cRV z-xS(m4GEH2C$+HB!K`^C+vC&4NVxN=gK50yWH6kdc2`)kiOF)y)DhOvw5lwf;dT5C zpzjNGc+~B5SN1(suF9M-+XcgLrLy zo=lWjktMlVLI^gQ(?f-fa+ei=LK_w!@7vEw_(?MxzmUS*N(DC@WA31V(K$4tY5oN& zc!?dxLNU4(nuW!3;ukz%Xup{bQakcO&8YX15Q4Hx3IM$P>vInJZpwebfo~IjV9?+^ zCV)HJ!xkH*F}5-xU`#ChWO!}!oY-|3;#HmRZZ4IO!|!+LF^$f!pU-2O^EHb zbNGhZy{~dUUrhR+c>v7U%pWSgh744)Af_mM=`)K)Kimh~s%?`AOer)cx{L;v=_37X zC#ce=t_&O>7FXP?md5(>Y*hC)hhd5r<|H%x`v!DML0z{sHHY_@_jsbHd}%F*L?*CI zKczPNqD5b-%JCLKqNY*k|+hpI*AMA$) z9`&zZL^dqkqsi)#V{PX=54A4Z^Az1=icvY>)6XbcbAXVtDtJuZ9Fev^C& zl~{|g6?}16F4{}GW0!nd@0F+tL)4WAtu|uLPCo~7NTD?e4X&!cE%o&8YHuaGN(EH>+&I}_GXwm&>mlaenZvQ8cl{UTGG=9H zOBkv6$*%PWZ{!BV!|geBnDr!x37H!@v%D;gwEnhuR%J!v7=Zo_q#D-4KQLKQ1`%-X zLcTw6pkLNL?M*uMSPj@Ds~K6DOyQmA23y6WAgY7TDHDRIWaDz{=|xgrKe#E{sNL>( z{&8gcJvH=FK~yN#jrQ-Qr4S3Ch}Ck#NBT@{!t=Gwe?&u9lTn7@-J^lzk)em zd>B}aI5|;IS#c57JlnzTXCORiJZ-nE@u2kf&Zu#=N12l9zySEl=Vmua-RYm)cd zTqmX}7zVEp2p+jgCB-`0IG?s5FHJIe!i_*-uH_2Z@#pIr(yUtb?g}zEQ{LU%;rT%D^ewx_M z*^m{7^D7ghaK4>em%BBMR~|=M7k(V%fpy{sADT+fwfH7A`h1x1{KA@?oQ`P>EBtEGaK(N}dt%N|v$o?I5R# z%9d;5UrCmoI`-0Q(Jo4LrXu~~+K(rhTXAxfPg0%&2+ea(1*;G$2Ez{h6cgi-K3lYL zW|{B*w@IpN6$M2rqRR*`DRjyS5py33TF1&-XySiLQk-%EWF4*6u$1V$_hV)_WY6U^&+8sOGxAL0qnmAsu55S@%){FY`gWfk#%5Cl;h(z z3==^!<`xOGU)GvoXt@!VJ+kLmK0n3TXb*B!g4gC;d6J^cqw9%)J;r8#I>^`X46`?| zO$?-6YFT^M+F5OK-`mMo{1vnPw2#WG=801A25{NOhXRLYNy(L?u_HdK9w9?r+y&6c-1_t8?1R(NVd#ltS-EP z{2ckoyIxlMwP_BiRlvKk1UVSK>r7#^rO8VOKZ^RjR)UgVvt3El;p(u@@P0@4aI1|6 z`x>eS5zU<%j8Pe_z^~vCsC|Vh(kr6_JBXD==BZ{+)YpgiUXjOAeyOl&bt7ha?@p$r5W(9|_|CAOpgk1Cw zj}=NN0QywxjhYv}q(Sa2D2`=w3RwP4ChL_^hy&!7syQ>U)rw|Bq;rOXi8I+83g#+F zA+;05XoMe02ky1Pp-GBg5}U!q;Rb7n=Sx9J++w6D3Nuzzr5f_sCo?wDW5? z3^}JKTC}A@_C4KnGjOO44qeh;)1}lQ9YzKhiA=N-XivXfXdVQ{qKBN6k#`t^|a6VFUkNNU2kgVt;DJ zeOnL3xfzvPEEso140LXHnn&^#itq!N1EfD_?s2btp`N( zf01)NA>sWYHJ%t9Fl9ejf(+OJHu9{@fNj}NF7(9f8ZKlvjUgUloHk+0OP-urGPw-i&G3iX$$=xX%sA(ik3yY~RUrzQ7es=;rL_&(+36aDQ?X1*7xvZ@jtzGbudBfBWe{+it5#9K*R z|G-`QJJ_Ah!X016_C-TvxhtPJ^T~6$kFEUe*SN!gqOGKoq?=Y8k<-=Hz{kR0-clj+ zoaoS#2DImCGuLAwhi`YE7KZj7<=H%V>n021CsPrrZE7YM^8)Zwf%zSi9%cBG$Ab^6 zO7(uN#_^M!=u{==^i&9~;?Fnx`*2+bHSf^(%duN5h-i3e!hij~pJHSlwXn<4_2tcV zojOtkI8S?26ph*WOvk9n*>Qa&Z7t`Wu!fO&j7Mh}|DKscG>#P6neZsNn9yG2RCB@| ze}<R4r;I2m`w_?7(X|tfnfg2EyAQmM@9PnY`*@KI`eXIRW-y}=qK-C*#(@97}2%H z2i?-p-fEuKm1vLqmy#dk%lQFA$s-?PsJ>iltmy&djr|uKXuCm6N4IG!o8Y!IN0Q3$ zP`iVvw)Q5sB6>yN7uOH1SbjS?vZdbAewP4uaj5r4ZATDTx{J&AjbOR{-sFcQwLgWC z7|Iz7v5iO*FT?c|^_c|%oCMQ&L_8uzrE{V+T?BhYHkq0j zTgC>7w;)Hwo~x8Mi5JP4Jjdw^!6ul%hk({_(0llb(qT;fB#K(+liAKNQFU!2tMdcR zoP<&KU)JC{{KC&3e;)^Dd}SW+MO*ts)-_tWlh~@q>lLYMW)6oSxip+}1-_WS=fEpSlKtFUj{9cPWdKJlT)X4V6=|G}o9P4b z?I5ay6U%%j3QD|vngdi(e*20Phx$%Cp|Ccp85o)`n2G^^r%D4D_q&NfP468~V5Dx4 zv&F|x*H|9sus!V{k7Jk5q-4-Pj}1h$X@eR)>ac!HVfu;O#w14ymS-3d(jFO<%E3Cd zlIGZS**QBh=@%BTqw^x<(X8$C^t9eKOOmV?BsonysfXuzJn4dmGRGeK+-rC=*$+{H zS%HO!)(K^G?W;7BtM`JGsy5GUakbf>Z;q|Vgg595uYA?QjOXfcMn-&pq3TkA$KNse z7hWA30&md=U-|qAy_&bj?OT|0G?t-9fN|_j3VIxnbsISNj0||UCpsoG3n?O>9DUYt zV=o;=;Hn=it39WPv%(t#9k`isvTa0lT$5!5i%)(oVNoj5)B;%g;OkQn4UR6l`=~SB zMqvCi&hyQAO*u028)`$4(HJl`{(iaFVUVAHzVK`#s64Ps9zDR0y|Xb3TVv{TeBI}y zceYSEhFq4G(}R6MTnew$7eD2)D@caXunW`4NT~TUOQhUr66f5 zBQaD=&icPtYdKmW>_!QN`-&sUJnAk5Jk9{O(uO@nmE>+Z1JSE(I=h(EiPd^9pn3_0 zeRlO5Jo$%8%+A%2`<>8zNm-wf5d<)_09Fy@ihifs0uxBP^eW7%%#ZX8$ENK-D|}Bo zrS^1|7jk_pBt9#-_46I4tWVAe!XSiuo1m+YwKt)yesg{-`SE*cLhmvM`b*ZTYv@@< zyPdDc0ioc{cVrhtxE@5BH-^#JA4ycRUo?z}Vl2(=Ed1wNE&PqvJgsTEIln)N33plE zFyh>5uO}RV1Z9y_gH2(rt4x2H7I1Zf1`Y_9B3n!V1{SGj%Cj$@DOX3k@V%N@9}WbG zTWedBve_7z2_p}R%2sSY<1i~PfAfe4MS@a8eCFE20--~AX;#-t*2Z7TC=-$N7irRW zFjeoc#H7O5j!I@`wFN>gxad%Ykl5HqoQPxAlU1s^=*5r!*@`UkSxlc2vP^F$1(1>S zXK9v~F-7la5mL&Ej$t_mwpG-MA&5#X(j+38>@et0;OhRy8=We!s%N&>3Ci0^;u(372f#ic2ay!3CycOH3YD({G)Tyk; zZPb3q*CkXZWgf_x`$LsGnzLo=%1V|IKuX%?$=5N}BxP7Gj=jLi@7S1O;IvK9+0&(* zCA}O)c`GJY)r{W%5|&J+J)7`B!R^AVk49QEOvtiSAAO0D-}z~Zk%bmIDPq=`K0?Ju z5x6@nP)YlbVa{^B*LkYj<)u$t^AbbLK7#l!0rPL=@_hfx=r}d*l`dw&0hJ7%i0t$T zNpXWpM(9*bHj+}9h*m{n%4uohHoLU)m{q&o)()MJD;SQXFPv*Y1-a58fs(u68BCIo z-VvR!Iv5TEcH9wILbSY}n<5wh9@n^hK*bjaiOGY8d4wP>P&Lb&{uSaDg2cLd9;6*o zCy`P92{IMcI-F>`Jgp;vR7D;Y1ED0RuNCDUp5R~))h^t$b>YYES5jbS5K@u2B1E|- z>Zgi9`9#YnvY<0ohNS}i6(hxpz$HgkP85TRw>3_v_R~4Qquex4%J~T3F>!n(-7g_Y ze(T#S&TFkVuWzbH#{U1FBAM+sYkhNvp9Ag6!6laJ$BJMj+e=3j3LEy76AJFnScP+d z*QdsCa>%@Tj~t7z!e+d_+R_|#Rxu~bYzskI7KD9;oLhT}x8PIaRR8NaISty0nnox}!f7ZY1~A{fYu2zEXH&rM z3oN$p;@S4n^j*ltV@>7j)Af4`1twwsLY>%1!P#7F%BDXDekjW(2!o;-em>vf#~!|i zfQ&?>4Czt-j6@p$j6|gW8Ho`7uaQW05l50Q4*m$Ik8F{sXN}rMy=OHRX)gR*}fizMUovl3-zTE)=dhvLqMw;ev65q2m8}r7R0H z4ykq$jWd*@R!~rsZ7>w4`jpOZRH1b(O9j&W+n!k{hy91YPRUK2k035NOSqYZD6 z!T(B%)EujFue8|5$U!fSf}mo(K&{~VbnEK->N}rCb}l*=e-;1Ui+oT@$L8+1hLM9( zngq~g{}45f!et%7gn7{=utH{%ou6wgof|z-kRds`5vJXH0JLY^Z7MA5)R7~0Inc${MBSWHn)H5AsGsg+#xHzDdr8QZDy7hf%+OZN{>-Kb^W8r zTtV(_=fW+?HH@rXxR0^DkM)Zr6n}VK(kjL$2SnNGFbNcflZ=VpZHdz4V&9jcK`S~% zZi49CaBsXiVqImmOau%)&e_X_MGCJ0&suna(h z366ncB(^2R%C|<1POEFuI51+-Vd;p;2eg`Cw1>I}HuO*TSZ?+k{ZK#uhH*_iGweIl z=2@$Foich-RG+q8!pY8@#V12jp-#kpt8jlW4rTUCD;DH9u)AI&Dh@nED*XX*JL4~L zuzIH>nMqgYEF>cP#xdh+76wJicWZfx~^u6G} zF~`wSkxV{}U%J3wYN7I6Z6XxwV1?oMdLggVS|@r-<|0AiaIn@N!#Va;VzlMfY?wI$ zEr7j+pxrN>ZwVnh8cT6;Ceem)xWfCNk1zZCR^~fK^N8~0lnO4VD#spU2-eRD zS+sUTpG!2x&MOSY2=zE8ab@wZk2-9hfbGU5g!Hmi3=*jHLShk*wV*V(Nq3ML`Y28g z0ifiAYKD#MlpRLjZgfBQg8WzFJT>QgR_xs)7g@{OcqB6#Ytg{3A@D@X z^2Du5UikSYBWpyr7#(IHHZvDg+6i5J~K_WZ7+OcZ-wNK%n_-<12HvH@j5k=t43%xibh#K zq)>K(S*?_o@?<|~u1UP~KGXGa>j7gfnk;dQx=UF3v8j$R6@(D#^X?6$grkzxvOs~C z%<0Rn%tBu0fhE2;0Vd>{e(y7h5|ORH(siGrNL0N+&Jt+MWd9Pm>TGe}3pi-GG%qxy zgtNgchdd9w|ETH_+nz@0CB2PnhHgb`AMgmurE?HCWL&H`pWYcHK$jT$$I*L;jt=n{ zg)46|4Gwz!VP)d_Y@{5<%)vP{A#h@S`)>nM5PhPIG1^&gT!|(5Uobb);k@>CCYf!* zIo?KoO{O5n=j(j8z`AX1^Sw!+Ix2k*sT8Ti5+n8W+UxP83ztoN?9g4Vg zsTq3xl?tC@cmebAxSt@F`F-)^m?b6oM5lr%G`a7)Esp-e7W|^Qf`ANL%IhE-1#SwT z#Jm!Z0~_(!_sbYsa1PI7EZ+lkyzLAM7a6e3;&`<(W{S0el;!4d4ZFM{hz_I-{2m8d z3W+1IEq=S>uiiQ{8~9j~WJ|RMU9;&bJD6fn34+fKg?y~v4~Gprk?3$y159$>^8r6y zU%M=j71?Bk?vn755Tt(r&WIYe9VdCxtDje{SU3}}{e!SnTE_!6xIdZ@iHgnqpuWL% zha5z=8|MRZcs#wNiuuEn|Z(I!s`PjDE`6lL%i$#%Fp0b zF8b0&jJTEATfziw3soG|D3FpC90Z+11#upxK$F1g`HxBFr7)^Sg6dM>A-?L>(?XIC$w77v2hz8=g{Z*fgl1L_0IMIDP zv8_BxkJVfzN~GM(JTP0aQT*kF*CeESL&UJ}Z=JAh^R-IzHDY*|iH;uVuSq`#wDr08 zME0AWb_0a^+s)ErHG;r=<;J!L%>PLL4vU`E3lF{o;WB^0r*5*BE-pzS!NOKj0u1;S zRUWYM2VcS5zahw$Twrc^L9)jQc}1IuP+cYxx*!ft=B4R8#l3$SQQ!NfVEBA%tF;xI05PYw+cL!HDksqxB;FIf{tp+(Oa)vzb zhM?&`u^%))q+;C7vrzN73hA$qrZ{nn8W`k%*|^V0VFx-qzc^Z!^I#~Fi1pP zn>=juSc^$#!2VFD5RjMNE=WR-Z~!pIV4BhDfhTIellD$7cS^Y53g%9#gQ zZK%+ur<6&97#O?42HI*50*Hxv`n9fxSTSzDo4%hm+opw=orT)w>BRu$tf{f$a{?a4 z@Gl~O_8V|e)8q?*cjx@!e>fGoHwdSKcAI!9Fh5>Wc)X4w)I=-hRYa0=Q?UDiLBFJW z3MSjc>vIn*QVCbTwF~n=qFrZ6neRS|B+mY@iYV!RkiwUN-M7JIeV=<#kQRC=i7!=m zZ8FRJuo93eQF@;nR?TkL6_yWdG%%U_^H{{~m1`R2*E5rW{6%>8u{|(dWHUENMdcmxm z8uU(}TXuo?&!N*y&5sIG=G_gt>$o)R2D0sU8dXZx7Rj&6r`B~3Gp>^@P zD*Km`tnZHgfsN57A{+No>@fTygc(#)g#&rBUvW%{g zeOnCgsKb-D%m|o%=Zh`iJv9e0Yo^O?KMdpPr>9^)N@+(AOBqk{z>D#+!IVw0#I(As zqSgeVGD<6%?S;f?WeeHqFKp^$&uC*Gk zA#{=;vv$Q;j~36zw-4MCW`hcu=l_7HkcYMrk=y;;fcuQzl8J5~XNQ8GXIaB>K!+uI z7Y}iMkJl4Oz$7m-@Db~J@;1aR`k62I{`d54Xylr!uqWQ%!tZ1MWvhmHn)<%vUaEb5 zLujQFT6PBlpD$nIF(=v(qC+KSo+ngjBzH^b@FsWGD`5`gYN(09@lG2VskFE2T#t^` z@|N#h9~_{^gRik7=zS-vve30rD9eSh*})cGJ0zS+zruoli5xsdN8Ucz#_$NohVqw^ z?!rB#-}M)VIr)rfMXpvt==W)!H?3=;j?G2v;s;l5Wp9Q|2Kf`1rt3#SaJE{Ih2V5I zmJkY4kwqDUgv%m;k7!aYVHFn=;zDjXz0R;f%N?J1;|}Sc&N;cCPr?DVb_wO<%;CHy zJ@?daTY6>mjUcswg|vi3=B|XO=Y%Wsbih`eqZOTbit+^fD%^}Ktbj6=j^R=0(R@K^O~9Ax~g*vq)sh^KHLu?5?VWA$I~@ZbirH0 zm0e?A3;}*s^ODYNG-Yt3G#~Wd#W-BcyhvxL)B_p-#$)pz8zDi``im}$5^tG?b;GvQzq9NHaKAW*V zRi{3JSD9dPsxT?olEcFkY#<=k33+$kmA8}}o?SLHrD{gMWPUVtL;J81Kj#NxStmW9 zeo%i<7q2;%<>ApHN9)=I$>B!+XyZ-KzOjQb7Zg)~Sd2o{kWzJBK(et=H9&7#1bYG< zM|ptP)M?tQy`UT9tOp*KIv`%hf%Nr`M}G2&99c^!o1!Ec*BSRp+M>H9442RYtyii3 zlVT^#nuU3kcmANm8JL;kO|9J!x&Hx|qju@@$F~jXDEwoX{x-84A4}{%V5*gKCzi!= zs9WwIFeS2a1=XRD-LD$D0r^|w`SKMHx>IT|qsr|-g#RZ-67(%)f1-hKrsW_AsUwvh zWsH`WQAX~e+?cSZ_;scQwdtP42x@E$J6$l1#YBmlJ}OONO=JPjfs52P10Q$)8XMuc z25K59I7(p`mGL#I8ydcKMZfQk_bKkkMrb-qdj73dQcig50r3|6+r}IqA(h^GriK>1 z3Em{GvY}-ApHk;h14+j*zTz2ru|J6AGdobZcnn(EWK#5VbrJjcfWPgRm!u~-Fqv19 zy>u&L4><3ZcyBn$$Rl~N83n8Jwba;68Z_OTxTTppyQAU<6mcv97UG*L> zwMCiJk!o$@IER4hsKlPTt6D8V;}yqki@mY-`yELybC~5tWvPq${k~I&&>JHG^Kas= z+!S98*S;qF$gxCBK>4n85{aWveL*(=3z}w~DmmI}{nloz$th(}We$pM;Lz|;RM)I!twNqxwGwQhSPIa80ced=8 z6V`n9$0DZGvsG2S;7$gIy3YA(w~j_^BB6oB$EhW=VN^GKkkTA0kyF4T#}tQ~l&mu4 zMf2z{y$5&}6x_QyO+oD7w3qC_y#AKFS~rS~xd+Lpy2IRNu_-=D->fG+#BbDM#QMoP z*h?vmev65Ol(TC^a+qhF_Rn}`u={ex&rZ5EM=jaYk9?p#YxC0q1tW*7R2WPi6(Q{W zdSCh})SSOXpVwvKPjY77N;mQLoketIr|}S{>stNReE4=}(JBdPIJ{BP^C8qsFDSW6 zs6DtHPN>}(G=PR(Yqf1g%f%+$2aba)sEoybfp4S;$drlpQymnQbBQr22*#ianjvX< z?wokV?wFhie0G-M?zUIAbAiWRglrF(I;7FOFB=Wc=C`|$ zn~9M6pfEkPMi+Nfk1{_?;|Jh9p#~<)(I|xpga@ zgLqR%Cz~HHR3fxhFf5zb?%U6QvA`(Gdz;SDixxaF$?;k$Z1?r#f` zP&^@w?>AZ;+=YhAk;a)>W2oRTB>d%Z+`@_xy z_4UkNMHAwI@8nQJF~)Nc31zXJ#`ppzAKeX)fp(T?l-C*~>wU9@t;m2O|2wDc`CWG0 z(kBGo1h3Dg43X7=#auCt@0Vi2?mJ>bX35oPEKGO3#FJ#Nu{$vg#Uh%-qS!}gYYaCm zbP=vZo{S~#Dt|k2PZaH zrHBW3B(Lh^h;_RB7ZA9z>u?nZeQS!3=6}KK4fjHoyLEA{+Tq(7~dmubg}p)KKDV$jvrd z_)3Yt8PDC-qiLOcVOIK1yIs{OtTd$pZph4(eYG^50ZiKoX4-7%BBXD|>Gx5}WXGic zk`l&vL-YdO1%_}#E?S^#(PwXIUBs-uv^m};bV9Gck?LAB z3KxAA8<~`Lg=!X1C=}uuw|S|z1{L3JknjZ9v2ALZDCH8_7&Z*vKIV9MoM5|sY7O0} z!821%c=4udI3*Se)sMyNaaf9c34*DF}HYda20?8w^9*3m|k z>!3vu;Z7}Ij(MPnh6N5qE^JWlY7ft=W1)rufD#OyLqXgfhBVp&;v!#*K*pSrbxBm0 z2tDb3ZqW~ZD2xlDViE^@63M;%nhqu`j4!Ylb=RO~(GhJg%LOUIzV8sryO0GjoI#sNoCxUd%XV#LhRKOq7Vt~t&IwsZLmg+t)<%m6{|8f)I8MS? zXlbk#$H&Tg86v!PBNc{U^q~^UwtN~U+23V3<>OkV@~=_OF*Q#XG1NJ0Q~hefk*`E zLjA_NSaX?0aKGI-0l6l+DU}!zyn{fzaUES=^LLgqZRMW5rsll-O#k ziz`xYn>`%kI_5VqV84(;iAq*nLewB(WIU(s7Q@i@U1<&z#A zL?hN^BA=m5e1^$qcvE!j%hWkB&G>jfb>-`LG6^{zMASNG>G31wn9-Z!5c9-zBpkx&uh9RK$>Xr#)y5h}#Co`pDl)I#mm}gZb&L+ViV1^n-*Xk{qf6rA zT^CiLa$)Gfm9Bz0oLhoi^5eHmZpW-=qP$o+H9lCF=yhKTwU-!9_tm%pPk!FF{fHpXL1rkPCNdeONrIi zg(CgqyQ9EU>gb@uF+Es_^e$GZ4uBco(NN`*AeRVGa~8nDpDKbI35;3@-(0B7E$W6!BnDj#0Hu`q&y2 zieh?Tpnzv0pw9d0!BG)PpC5BJepW@IbSo|63l>Lz1n|fkfo3M>(8xx5>rk|cg`k?$ z9;-`2-by)lBxt|Wyq_XgQM7OTeuOf%S*1uMh6qCS-W_c(Y}1G7{L7y@K;SXSR*^26 zz+kl6kWv;PIxX?pYUJ&ts&-Juxy?Q+kGZ;9hy=T)ZsNUW)l;n?5GkK+e{m`rIOl`F zX}#mrKjjBZN9s302JYVto44xAPqJFw zgvX%$<-<3s_3cPRL*=*T%eZFVL*I+3N$k=Uu?T?pA70J$Aa0Vr+8?Vo64NP-2TLpwcwHQ z$q(8wC_&<5XfW_a22YLgCTTU!6=^@F7egdx?XEVicve;wX%h0E{M!a3VW=j%hxdJHTxXz;8 z)s5^JX(R<(tcNgU{UQYl-kV}%B4QaDMTvAN|Df4)135LT=HyVJt?oe!*hlJ3RI}AD z#*f348P+Yv^&_bCN|ub_^O>N3br857NUuHP~+M--SIRH{+vFM`XUL3QqU(iqr53df4QUPDynJ+l~fE>3+`v~ zC*d>(SS=&^0`ELpq=o%jm|H=wggdEj zO4SY71`DxW>`N_J&q#bF9=Y}zg7J#$9}82%QBfNWJnw_dc9J^1`#WwZN7@eBfDlo; zlufE998jmubfGdyi@28yEzUTPc zyD51*%Whwg;eRmP+8D_%3^x|BxD)1@`2J1(zcAbvK8sR8Uq1sV4UA{ftUgPUQ#4YY z>mCECRX)CwP`6ojAn#?5htOoje-PaJ>$Td}Aq5+)jL9gV473%0%3mH^#Tnc5aU%w$ zOA2QxnBpNDs|y5=hwFDPbngVxKmWtrJS&SvGrJY2F$F;ROdtUW;)cM7#DhL5$=OWb zg(#sF62oe6g;UI;$hJWz<`!>7UQ7cyA;S@-v0pHA!_PwHm}0}*N1F3X{cOb&w-3R9 zrF{&4l(FOL0Uc3l(q_(qw`RmD@7~8H``y)lm;1wf^25uG&p=s0cs)!SowMz!kVVkU zcR8#bg1ucrI~JtEY!*QarI-bX7F;u^1BM67@i?c2lipbA`oqfN*&PGGk{+RDVguY? z3K&22s(DFN6pb~c3QTDMPyxt|19<{3EAux$yBM_evR{6(%8G{nb^=b(e?}{05%WW7 zC

6&wd}M^{f9=dW>tOvn}}-X^xAd-TzWOS1!Uv7}EQ} zP%!sG-~K8(*bTjJ;B+-GZT$NW-Gj)?)YtF$C(cdv$mEIEF`$g@1&3Ei^?%IG14HNS zbBb2jaYE4bux^5$6N@FwB_5`S0$#`TGHkK*_4_Q4YEFHpg-?-ygOsj1%o`_H)*?0< z*?vkRQVy2yW*}AzYU?tk$A#0%bq4}atiATP5{QPe*X#~XH8WV$prw8~iCtS+b*;TR zvN-#rcZ#ii|4_J5ipqd+pkk3$AIg|SoCC||1hl;X9@73>$N}EQz9)$Vg{LTi-z3kf zE|`$?bogb39;jU0vJ*v$wJCwM?b_zxIzV!LPDF8mXr+iuUbe+zZ6z@EgC-iV91?3D z5OrW{7)ANbeABImx;hGEC*~5VW0t>+6W76*ySl43H!=mBpt@qfjPwqu5!EDEu+PDm zs|I^>G1Xm9;Yt#UQ_JL1{{oWPU9I^g|1t8V&w z3xN}%9tZ&JmyoRYGYtda6V7a&01N~0tn_4MCGBFENB=CdPpDXX(129||wD6)J_7ejtt zXU2L=Y~7X{{KX8T_e!n^>Db9If!RH+QRx3})fN%Ecr*B&J}geLKM*BqRJ2xLpg|Bu zLKZzp@1Bhj%|F%Z?Ow0zMY(NX zsdaF-YSh4&_c?7kcPlJ`(K%p^CrmrO*R+qr6+*4zG^%JV7_dl^>&+iO1F=+Ww6E#4L(-s+wrJN%s0-`g&QDH zd*5}I=L;pU^OivEoZ(Xw}t?}JTyj`bd=BqXd4+2)Y8y-qu9f)A@melx}6qUuqXygJ=%%8b$iJgCUwGE8t$cY6>Kvmg;# z(@;STT^C-6XqvNc5)hb3&9RQ5n{ycn5^Nh+tvIVLM@bDFLY)RPw41ZJu_4Fpc`b4v z(yxgyqeaG$sf+{+RuXJ8a@uEa96D#LRDbg2-;Wwiw|AmjV$LZ%KVQe46VCd~H+F6d z&%GXVCO5%-v#AqJLB1EnaIvRb$s134t@v#XD7(~nR2_sgt2ben z|2j%$mkQb@a)t~1J-^heaVq+CI<8Nl32K4BdGmH}>R~v^ZLsaD0C#KhWn2F&JL0?d z)8*z&a$})qQ)BSpfP9Q-0-jOdVU8NdtQN<1ZGAh0LZ|u={~;A3o`0}Z2rZB zeq0jB3s~2&)#=N`uT2{Q9)zB|MK zQ-NAFTr)^O-`Zj$fCQ^2Ljp{Tw_q_AuYyB5m{&bW!ZKzM?`oHR%rIa+PI?(){q86~ z_C$uXyY#vs{#1$XyILJ{`r}a`$j%HCx-pUQkG4#i!6`pM8H>oVywYpd)o!v%V5SnI z`&*#`&KvdVK|LeCv{`>rq1&y1+*0jleM7TxJ!ZkKyzR8d4$theV;+Fv3qS&rpd>t{ zutwO?p%km2qA7CV{qPFGs3+5XZM9hBlV?^e*LCR?~keW-z0> zDKg-tjx#O^Q*~j|4R#7MbzZ>}R0#isBLG3S5+qJn_&%(wyWnxXifH#0Bze|(Eo(Ar zGrPT6k=_9r@^ZD90Dt#YB-r+kzjAdCx)X(83bk&?$Y5JH1qKpbPEN_5o|4KKy1Qi{}HG*Gt8OO^?X!A!{ zqZuE7pubVv287SjR0oE|gBa(qp@39scydg!**PsVSjAuvS>Cyy%laUZrDL=hg zifY$pLV2y|Qns(+u9xoe#x0PKJHRT0+1!xVGKO&@00gBXRH!ji{Nuaoj*}Pa61k_5#Hs zow-CH-9hR5rHvGAaM%4w@Q+-+FlL$B#7 z0?F5C01NIEY3POqirqrb`K4QemBDyKg?sO^fpPraA2=LJMS0Fhwvb_`obQT6P~I?+pjL&9Vi0PH5m z0;Hfp@XS184V=FYp#%0iKWm79gw*E7E8NQW#@-|hQaG%y?kNex%`Doy<{vrcet|ol zC)%J5Qy@x&ZcB!6Sp41D_;T)%NRsdmu~5Sr43StNGZju{mlTA4Pes%OUvGXLRonZG zVl{AmiAEq$A`W8KQrCL-3s|F!3i_+-7^G68e(5Eq;O}guOrUuj#R3m5$v6wt0xMWw z{ko^@i*!jee^~0w(cd@3@+GSGq#}*_klEQ}iDmWtDsJ$tYhA;wz>AGNX!m+ywb8|D zewS=x2tRJZ=AZiWo3Vt@Or4nnKRe=ocp~^KI3KMYU43_YS6f%SVc%7poA$1r%)s6?70v3MNIY)W zM(J~K@y)E_+%{&m#*J#O+@A0S5|(fdo73B?95weYzb}zm#yM}z?i%aUJ-fQ(4b!ds zeF^smWstXZbHfV(QJpD>9rs7LfPC(MUam?^;NP=e5aXNE)%Z|hj}=5a=$?*w z6lUlhE;#RG%G#TqK1A{;J?=XE2w+7zn+-lpA}Fn9I{Z*z#(JCoe3&Ru+EjG-p}|B9 zHuHT7)RXFjb@&OvP)s({dKOlf3Nqh}_3^Mn>BQIJM+ZZ(+zj!7VpufB_So^$ zjoz5W#`_?(5nh200zATU&CNx^I=bOofe$w&#b(dWWk8Bvb>f?)F+C`892}@wD0%QV zy~AS9Ho9E#TzC^`2#L;|j*lR-;lejxZn0l*A2>5#arw_7|LefUIbPa!s?LR-LSnsU z6&IuGUh&G)@E-0u#&~31wd9+v%0nc(V*t&vquwAvH z`;c#Hfbo)%>vp^1RP!d^z!&8?C6^PVdBuuvp&Dpk^ENi(Yv4Kc1m0sBj^2`H^org# zq|FbI5v;eV5rcu!*w9Hrz*5oGnt~HgVMpsODQ~_UX#c=5FW-A?|7BmJfiTQ_fbsTO z3VMmTg8z}>Y_Lh?b8nzGs%rn`U!#FN47y*6bC0S)P@SC+Z~BI@5==~+tchNoixD?# z@R^uYZr@q#Q1&^y4;fb2HH+m#Mmsjg^OH5v zw>xUUkHptP#3<$w-Zyb();zpzOq4A!Mu4eJ*MpQU{-v25hsc#^P-@`S`o;Rj8XxMR zX@<{r%{52ok$(CclSWAJ8T>=E_LI7J2V|$kA75^Ut{vTs$CY?1qy+PE(PgV5?z=9p z`+;avgK`315+fyvM^LCs_mhMS6>*KPBaN&re6wM6-z-d+LFTwCP~vmK$ZIa4Kh$ht zUr9fv(zhr6K;oTdY|v#DJz??GG=G2zU(Ss=^Naoi-^KjNEpW%keCAN2ddng??nEF2 zpes)jh7o`5ZtuXj|CxPRXg0-JaLm74H?gtg^R)eyK3p^AB3tXY&MU$ z1^?6Wgl+&aAHo=q_e)|hJyFbO>=%C!uJ980RDdAh8`Wa~Q62IX*wLQ6{Ci;x%@QF6 zsb4`e$`#~zpu4;P8BAB6#HVb{LK8u&=AgDm{dgs;`(aiYW3QgmBcuLVif0 zP%;EDBx!5%(C&w?anBR9vUXP+dle3@4g?cEnuGN5p!1yK3*);nv^bYh>I(F zTDw&k40f7u#{-{hkL~#M>Zg{JSAaedHE6GOPT?L`l6DD^a0-{2#G!5nGM_(J4U=7` zYl!?dP-hV{iS^lM9`-yDXPZTqR2rR{T;50r!==6axpI0$`OSJC$g$EQRA`>=RV4GB zq57z~sazHnw{W$ePXKm_020ZCGB2bzVQ%qRC619d7I(iA*JY#T%_FHM708-*5}0=8 z>PV5pV2Xa1AtEXn6itSi;)~avD$qqNT66*(Dk@6y5v&?4SIVtX0l$JO--yL9VhTHD zeAaTJo2>?tf|w~n5vGyAVJP7vd&}QB9(Jw=^V8C7%OgE5wZ`i3j(ROMbfXRW`Y$;e z=iMr%$Q9;dEFIVaQ4*K1)MAU^4by$3-NT|jM{uTB{>3q0m-=jw{U*U53WrfmD>ooM zD4|~MWov~grsBX5aN)&!8K9jVR)-u6;rc-3;y`DIR#saUJGBRovnHVvN81mLdw-f^ z>Z3Lb)-D11#rIuWoxMd)NSNej6j#>ONd(~aL{HGA8>Rq(B(w}2)d2%SYuZEjxV`$a zpt#}mDpvI32U3gI+yDZE*#ZM_WrrldCGSU#faq^n3(7VWGXFGebfkg=Ns6#+fC_|3 zTmr3q9b(8J#Agu9kF_0|^~nQ@uvoqmh>&FP&D4dBK<>^>{nZ++CP3{KZs3FO7cQ9D z0hu|3&L$u#^^-6w%b6PrBrHP4Qsm>MN^c;wp*_PLdd^zpFipV+HuTaW8aDgvgf1^~ zZQl^{$_R*U7nn2>XvCxG55Ee7s(ZNyMe^FP_j#@bcg&%F6&7(~W8R ziNu9wugmQ=VfUT@Zhx4j*Ideu{3gqfh{c8SMq z1kA|bD2#DzC9O>c!YH}!JP3HE(fJVPv3P96CTgjwi!Dj1je)SnjTG-44efy5T3;-< zDl<=!wpd!R*kmHEu-i(*H+;AjU3%Ekr2dxOvOANoIN(Ycwns@8&qOfpN>boe-y@!E z>3|!XW(l)z0PB|;`=l+LnEE~XLm5~8r@!s9R@0= zY#wIlg!oRJrt&@iV-U_|deLR-Jk}Z*$VZ%LcLzj4q&qCQzC*Hq-`->l?U^(MWSk&~S{GyeXv!hWsHnk|^KSwbLO0ztu4lxL9e8Dw->c zu&o?2hfUoDl(x%W@-8(?2TOv5DpU8FmPrHj>u zMK-!SO;DUQc_}bqnJGq>8f>#$Cx$>?Kqiz5q7Ry^=2*il(S9-}U+@_Zd zgV`x$oCVcH242zP_wkA`SFsU1SC)xe1dR52KDUpLcn1Bpia(!^4s1WgQ{79);tfvl z`{Hv{KT3*C`sL`7T$l-!F5A1Pm{K%FZ;7GYcsj?!nSg2pP@(6!m&_bJiSktq721e^Vyr0CvVY1am5jG&(zy)aFGV9G5J1S}lH7-|x z=D@Wa<~YwTjaZ}eRsW2b49`|iHu%r2`Y_7Go0|EdMfemyVjDg}6}mhy1n7i1FnX8* z8l@2f`vhpm*Z}kA5J}VsoU_1_I2Xgg%twhwX(Y6hO+vVnd}WTC0%oyDY#sX-u{HS% zdKmn747mhk=$W?j1h+S z%D4whhf<72LJOe`h5smWsaRwyD45L!MC-?slYXPUAy^~&@5_Z28vB_7 z#jNjZ%uU+Ngbq_>)@9QB(kEH7a}6{Gx=PuL`3{3X8psZEOaXW50cdWqHvgaree_)J zAO_JND(&WO_*`;bXYtmOtA&VNlaYxW0I)P(Mq?hK1m6sv7t7Los?~UV3niXf*{|-z z@D@Lqu@@N2Wb3oR6Q%xyU)r&y$j$9iw~eR0?krT^4TL2`Z7U;*Ch*#?iY&XKR0&RR zHaZy*a93E%$WDyJ|3FU>m#$F)2>)S9REpkIQv=(~_XLe=`j-vyk+RNzTXE4~M)3^O zio@02apr!`rBpXEY=#+sG*rlx?@q*uji@goCFWa==#I?O5c-P5Q{Hg`}TPpWaP4hJx{)4D0P2-?5)xv!($6?JY^&my7ZK z1ofp*F`W-z5B|8D4BK_bb^a`bPnwr5-Cbn+I+ zCJRW82t?V-4B8*CQINb;7|F3$;toM#)TYvYtTJ?Psk~jXbSVJ9dZ1HKA;r2Q0TQ}; zFFZKbL_+wXhgntpY!m^v&nxU>K$63YBSA%H)Bz|))EI%t_pumsLT*{z59I38!v}xv3F?UvhEg+=NO*qlr)sw+Q-1)-Ef4=VWfjDr_dxxo zmv#{nfHYZ1;5dP*Q~*hP){WZ;h(#>GCSMC^f2ZVMz*V5XUKfl+N1dNEav?B|05&>L z(As6aV9);TxuOqL!g+ZjxM)GDl0^*dd@7*5*tjEaaHnNE1$kjMSpaK{}5g=UK;9& zP=an5`y6Qi1j;x%>`C}=zdiuB2>JrnC7d0|c`qdR%f8)C1HcbNzY9Pj3XuYUo#6BZ z-ERWQDQ>=keU|hOIEn{0;^h!Tm&qQ0q7!R{8qxtURlBpeU}}Mu>TO`r2B6CpF(|0Z z)!AU&qpE>c|kXU*E`MAUghxuu2`N~n^2NRrG61aasuo8UBk*scMHl77wJ1hM#jMbaHytj~HiCw(=yELNZum@7!f%=5~2A|o_Bb`Y; z-x2OOH|&u}#;}n3<{M~tSQN!hjv^ZV$fGE5l{*$UR?tOV6mir7L?PZ#;9DREN%DcwLcdS3UwY=mhI|vL>eY+Q+ND zvb7;+z64XTwY#Z8Eiq|O4JtNN8-|4XvT02rHSvI{RfP;uVId__SD?d1MB9$Q_XY?B z1uPQ0+l8OTVu$+pf>3hA1nxU^g^Kzmi6)3hr%DIw!Oml1X)qF)GkWatk<>~=761NG zg?S)e8-y)PBZ&OAmmGFrX7%|w)#SeZx@N!=4?<%0!`wU{!i%xu_a_C%MN=WxqJzs=O%F1qZdSyB=5K^TLF2w&q|(W?c-+L--*V-oKX47Lfw)i z32S^j1jF-`JhRx_sW*S?q8b~u@RtGdP)K-WFjXTGIa8LmI4P5)N|@I#N021Q_18@x zkxf{ugOlXKO>j`%s&GVtPl1XDsi!_Am0Z?ypF+iUm=T(RgGWv`Mj%8H6`reGTsk}4 ziqQI#)UE$Z%e9sX5aAKdx%WUcTw7zg`XXkLYx?d$jr@{<3z`S}oHD3%i~IFEvs~!x z5TTj8t#8}J68T&^n>zZOpam4-VPBsp08Ikdr~F)1nV6(Ocx_c zx_Vc~Ubh|ke^Mtfh!^a&&U*=-7gTE;u8F~~HZ96iv@Q}m!!E|BcNVR@CA&|{L6zKf9i3K~3M zoQZ4fA=#bjj8fV=&tb?SckmZ+BB=U61uQoMgQvH|DC{`f!F_J=e|*+NL0xTdH$9vZ zjC&v1dG({(YnyLOQqt)4T1JVgXQpK?lPOy<(Efmk_^}Cr?79A`>J{uT&{XR3m#%5` zfp%!g4SBMMfykt>`456?8Om9lyvtvR1T8TTiSafm5QB%+8Lp~e^7NuuAoF}mowX^EVP0F}sR66~|x9-L7U%>BhdI@fZ6Luxqe$}}o~MJ|wKxU;3Y*#3)# zv^7kapF-vk=awIllEW0{C%NPi9yg`2K_awk6l zaIZ(EBgxB0vOlEE^0rYdO%b>dlQk^%j>WG=iNt{xpkTFD5g2Hj@g`<->k{o~ zq`5sc!KgF!bRI#f49S3La|Wn8;gl692&atDcA?1wM#tQ}$j?v=>2w5LNau6io~BUu zj;e2^@1z&5w~b;qFJ+So3eRutJ#c8$#WH%i>V#Gcpqi(T+wSA+ znYZGJ#jkXph~|D08=i(2#@r**_5x-RwHkWJ1JPi4J0B$?ghv-u&VH$d4iE2C`Fx2A zizMT;44qKqmEk|Arj)N$W6BXlju-_wFGtrbyytsemOR+Qn-7KD>#|N#gM3?z389wiLtWc z9LJuqF-?4VSqA^|MGwaKMXMcm-Q893M&Vt|2^3O`QZbi7qWlkz=rvZOE744)9BziA zw!>NelAC9ee3TX^dsy4Q;=pvCm8Tw<8`SzOyn1uP2EDvo-5-4(05 z;%4zJU50QkqkzA%k?Rsy03GCj25?dJD4^M#+@{laaHD+Sr7JaTg3;gFgqV?85*6-Z zCM8$n_zQz!0z?woGSM7%s5qB(onN9bXIqi2bYt3C%A(cdhB;~4w;HXd8rGQ(9*^B2 zmlTHn0t_j{xZ})tp!axI*!4Z+ocD^~%F4fHHGJl;>@?*h$u!+zg$30Q8d~8{Rj!&E z3&a6XgDS{9XQM3hI5#`kI5 zMSCVXS`*)sKtq?Af@1|?L3QC6>sdh2rvpXlubzhnSfxvv1DM78svOb=Jv@sGv0o7uoz`1va6*%v{ydDmm z47>s>2uhrBO*;4_9PDuZ@){u7@_?2kSEyNNu7;bq#|XcznputaeaX}EJD_fh^_8e} zhm&TCy*#pdNQy`7OR^b1l52f2RK(0^8kZ9PZNLcnzS!VX;i~F;Pl(B6==H#(TNeP} zJY;oAxdGl7ubSxHF-+3YVWr3-13z6CywdE`KEcL91`;>}qBcEv!jvrjLS_arW?jw&DPncpf?uA4+NZ%Y*Y2KLUM5L6g?(Id#g_AB z+Ta5nNV{GU8x9;`0GtGa#ezRWvgsaQ_)|41OK^qx$&QfzXcYmXUU)Lo#8`Z7F`wH8 z$&Q-=X9spEVgM;5iB+~&H-}qPA9zJx>i9qFeac3)7R7A)^=g;XXbn1XLH+gCHp8Cy zCDEyJ{fyGn7Qw;`XxUBRI?k}{g$AJh6JfVw%AIzB6urjwz!W&$SCy(HEY=5@#DFR2 zY?1^mJXigLB>*^eaxSCb+=Ic_8&v~V6uu}4Fh&LMqknOCN6|e#Zjo86A ztNv<=v-CX|Wr_;qCk~&`zSy0B&Nkw6?mQ-Qw;V_Ou|T$jOaGuD9JT^jC`R9w8+8=u z+P)2w)Y!(C(09f~+HCqT(T ztJ~gA9!2bV7KG21(>`}kEj9-*HlHyUR|IPnUuHkf(JWk`sSYEE)nrOTa#dn(Vl6Pw zF+Q%z$R?2CTzYA6tp3WS)4Lw{MWuI{!}NRmR;wLZLL`iG7f(8g-6C`j^kz2P#8`si zNi^Ri@j{~a3Ew^g%)k#fnr`|>{Zb~0M-jP>ZsBc4pGAFXuoA-?+nin+>dSMP0j6`L&5`siOsS=piss)6P$6yAHnC*JB`=Kp^P4` zYKBju&cZVr_hU|_`*i_Z$UWRpbU+-v5B$If!;ntE36>}c=nwD6b_(k?i9HqTGvF@F zPf47%2Dm*2V6hS($CO@M`cxBqHR6T(s)8_WweWDO?b{vp!`x74`(v(?RppL9LsuEu zFaZipUKjQm)fKtaG9G5N$H3bq^6b`=ZjqJ~M!1*%DjT#Cd$V=NH0VR#$?DQ*B%nTi7Ob)QX z%+x?_+HlwER|}Af-#c9UnPzQ|ynGySjPN%Iesec&Q^VsN5 zSXRICTwL#=XIGp=i6L3sCh1apwj=btRG;eo;2&Z$W!meHb4_c-^AitVZa#a=dZayg z%Dg1$1R#Q>rS1o-P#B)>+j_9jmR0;D@1%3QoOylF;$3>c56D=y3q zjjG34o3oVhkGRuR^CLAI4&v13O&11!maq3MH8Tjp#WwiJO3dI2H%pUp4uU^en{jG zF(RMSOtB74Y`Fxns9RF?1lR3QXswQ$p6*?m8yain^@X9E@Juur5L@jnVniq%a-Qyq zpq7E6n4WSILj|dh%m2X9+g0qcwI$H=pRo#mG-L;aw7pT4y=u44h4Zz*S0IDEs4Z@0 zhZDyY6o$nX70WT;7L{*PHN9z^F7~N|D*Z1&y=ICQb))%n10@`{2hwv+}3uk`aoVV4%kOb4^!Xg$Sd5BoO(1h$iK>;F$y zAl{)yK59?4QcwEbnD#YHTA?0)1DNI#;gm?bPN@gG@UaL*ioHOz3~+4rZJedHxz1oX zJ$}-jJZ}EE=SK{8v$}1Deyt6(nah?!ljykaSJMzQ^^sUbR4Mv|yiB8`lIoYwrfUY1 zHyhv=F*)nQ6*tv-ris(6!UP!;{3~lNfO8%h*zQHrXCUi^aKHy+GzT`ekWnW;m8Jh1r5SVGqJ(T`1t6RGi6OgJ&JY+P;%2sFy&*3*M`MM<1zb|I@Zs3Q4oQ+!$ox50udH0sy*SoR9{C zd^2i-Ac%(Of|w8?WTlM2fbW}=T(n`q5w}vurG+!b{sa+ zZ<~0~-P>;qcn7aE^EAw_>L%wGfJEJCQU|0o@l+q6vI(Z7sEgV{Bcjj6g@ahRNJJg1 zVj&$+0IW3kB;>!eS^}KkhNXoD!$64x2dt_shZ`hBRShb_Co^;%NQ^%pO}G)>cfUUv zJ+{=3{)6Yh-*kd>;<5cCxZz^El1sn;GkJNs!LNyK#$GLVb^Bi@>tm%K?}6qzt8S(C zoeWcdm8|;Xv^WQl){tC_;xGT+@K4M^}^7 z3cd-?c0Yfs4+k8nf7VyVZ0&r=>|2_D@*4$8_A`7Q(~J#$wf2x`s=Qe zfZE5ya9ZMJ-&Ndt_u{Sjr*?lK5x>sAP+}piLtB;bXW*g*FrIgj59EmE;v6b&(_e+K+H5_x*Q^X%r zUy)o7FprA{2Rr$ehmN%-zw8wEVlew(B`aum4)li{JnN}^$Cl{1u*q;RZF)7AY8>$% zElctAte*zS<1BvCt_#VNmEla;wKu&)`j2!K7P&nE>rC%x&nH4+?dJ&Co)@h6!MSs9}Tp{QU!t1}C8EqG$uG zDw^X#(W#4g6hRTiB_h5z7T>to5ivzHrzs_eRV_eA^sICSk#o(OaaWMJ1GoF!Px%2FAskPS4_Rf4A7 z=m*8MIX3>f@Oa`${TbsDz!UoCWPY+@RPtaKXK0tKbq;ozmE~nDRUpIj;U2HMmdcaM zy&mmD91h{}aTGO5c^=05@F8-wx?I&Lu0XdewFs#PF1q+5#+?W&?E6H1f{rqT*C3;R^)cy6 z%^p}eQ7HzVqTQhVKyYmJ)PpvRkn~j|?7WF>fC>1;QTF}-LV2dSNA{-rr0+enS zCh&4vD>RX#ib#TzmtNSX%aX(cKMa7wzWzvihGk+t;6^&bW zj2i;jY3;M+{*+Uo5pRev6=_)m=$GgqH9Mr!SZ#IOm;FYYRpKg9p}k%TY0`V`*fpzD znaDhwU9rXl2<|qP?)9D|@8fU(<3ROgNS(5Wmqv~SF0gb>d8PVi%B|^4uJcg7)0oL1 zl+@nQUZnom*sHCFEQYrQH-};s*cI)}M65}?!Cc$v1DJq4vDr9fSB=|=JP~*S1jz8* zg%RT)ytpfNrct&i3OF;C7*M>GrAKp{OgDGel0|a8vP+)U9XKLkI{hu-+JVbaqG#+E zV#b`C^T_R=ix>sYgvuDMrJ_9sjaQ;ei6oF zD!T2l%>Kys>ZYj)WKW?>f#bS`RVJayzCx|V8{ysfu=oAb_y4L@Q5+-Min&cEk8|YA zu#n$P!u_J=&bFYW8>Z56E$J3>7pI9gRcxSGk(nQ#G_L^ml&+dbO$$xc(h3(Ma+N9$ zebmvIYiQ;&`981qqv87XU^VV9~nQ^)eqMKP*aL=vX>f zILXrJ1KTswMP{Fp)Q3S;B@e0_97a%x9e+cQN99F{J4xBx9!Zp#63fXk2wvCd9upu* zgolGe`toNpNZAQBhsUk?eZS^sqLCw*|# zVtV|ye3gSOW5PMCaZZ7?4O_VwPuj_o!8EyK#hN zZfD(g^N!25%g*!m^A6lLoNpYOhR*-}ul`QMcCXrq%+Rg>)+xWe(-}Ij%av23^9TNp z)5@QuqMfa+*P%!D=U4h^-i>@_G;lNYugHd(OZV`bx?cvhy`iL0y8YlQclyHv*AXp|>ji%l zVP~X2_7}7V7=tz!`@NTRAZ z58D-P=VBA}fFFA_k-Qm0cW9aM&vMH0c zD_fDXj?f^d?qH_SeJo}zYBhca+KO^nY6X>XUrPOd5$d5MXFiC^XW*LS)0Q0$-kmN| z)c~ivNoCG=uhT-DXlO>y^x}hPxY)5MqE$e|8GihAT}Z#^Qw32HU31Wja7$bI(mY5> z*IIDRGrmw>m5bKsp?}tV5Ytn1Eb%YFR~!q|e4mT-PQ&PHPdVd>ZJzAZX3WN8TH#{3 zJyBi93X@#HQKm^IxARgZCAFrUMfk|*8=lu1&z6L$e;Cc zvW*sIi5%(r$CR`c~>+5FqoMsR>u`YW(d`a20c zD3cy(subK}QHX*apq9+0y`XL?#0V$z3Q~o}Xl8RURSucbrZ(NkQjeUc&IRAk#dc;D zJ9HJ_iKvW!OpaLA5!fi+>I<0ld+d+D$8HY?jyughg3)zF>B8JZLncoz{pHr7$gq2y zuV!=&2+27!lXQ8e7$%}kbN!92D1RAiXFglsVfQzcvwi`kRqkQOq~Y0&$Tb%sKGn-6X+;vU?py+gM)2)Cd zgd$>PYNz?fyq6VK2?Pb>hvYs=_3QW3VI}s_f`vm*yGMhCzxuJOxS+o--=CSK5%$UX$c4RtrA6X4ye&ZazF8v^woiWO*%z9VbLN?0L4b^yqxxKVyGGudM>FLcX}k#G14=Mh^cAd zZoNpzJ>V>bD9%N*eG7_!io_<^_++n`m*37L_naxv35BmVX0GD2W5lbz{_33qHU4Ehp1=+WVYEo)4;iz~5aDgM=if;GXQ< zfcV0NJqj~kw_ycS=EI*kU8LpLI6xAXt>*zj2mOu=)zpQi_o;hlnT%_|3 z_=ksk=c{&p{;F-28KDOw2(qN?B3N?HIhmBiWI&>tQg?MDzLe`WX_G0Y4Ih!4h^>aB zvZ>&5b<{YHF)gbml~Gb}`Pvd?-i532Xwq`+f=$KyQ6CSu>r^tMOIN4;|8ez?(UCUL z)-D{|w%M_5n;mp)+qP9f$96h4I<~C}JGSkUXYcp>&Unw?8dbll#$9W!Ij^|@9mxeX z)u~QTojw=+_Ai@IMj_gS>@mGbl6BQtxDD>SRTVyCNFDhVidVY(<%X>1Ky4dkZJpr4sgLo11s}!d#%VNtlArl#zJh>@i zY#QYcgzz9HLczs2@*m;-wCiy18#(&eXtEbmPCCxk2I^er5ge0lZWm!r+4QosbMeo>w`}?;*+5nVw_@6Y;Vu7 zV?9_c#4+PEL{E6@rK|YmE^3?+)F`AkQg~?ZhbixHUnWcB*l^S%p%P-8d|aeQ={ID? zQdE!UnL!1$jFArg%-BU0f5d}fM?!4{FUKof`O!y1D(+Sc^DhHCG`-`Nxf7FBhO^h> zVZW~(PFFLdkzzcA73M9(--y^j1}n4BL&Kv_g9G!|A5_`&g}={jnIZC8FU+J7{yc=+ zmW)O42c)CulZSC7uc;<^D5a^WcG(RUB zk@3y2!@UaLfXXZgnYtDIrwGx8et~lpe2$Pgm#pyFAAXbES8as2rw8~DVUujw(O+fq z_vYtlGU$ZA6}CK-d(f=95MnfGTLGbDJZ0}b^^4R>h#`2 z1ONE^^;`)>6yuEi?*lM7$yV4`8IIkr^y)9bc%$BS|P3xz|k7kE1tCa$s7-)tX;flBlSQ12~0MN#=A{(Jnqc%gK zomM!brwSx+W~HF-^q_}3Kh{!aaJETeO0ZBWvA3j1U^`fc8AXU(Rv1t#vYqcvSZbmA z^?xE?GvApnY@7dgQ8xVzXay`BpBK70J<@WUB=|lwt4UVrR$Bed5d%_S(xF$devjn0 z!h067Y?x{U{bZLzP7TcDBGT_9sbE^%KFmkLwFr;)&(I6lT(9o=aTp5;ETCae)wHv1 zMFnDhSflT7{Rh5}F<A&`KgsA!h;~@1-mNRlY6ppDP$&lio13TeEA|^QrW0XnJQ^j{_<>+9wp(N1KgSVN; zvvj@s*xKRxE%*qMCju3zYW8H`wC*5eCK-mO^)wU*K))J~awlrof|S}q!sMST4ZKHI zB_dvtC{4KJ$>IZO3!Uf(r5+g+|J@NcI(U;NzEM*;Jd=jP?AQo6kA6ulhsf4EVaMaj zU#`StP?$wg-)^~glbUdtSN-1GRA)PcfY&#o3FaWuJ`_G15dSj5eX%{coP1%F zy{&>wr%f%qk}4UO0M)7HZYhr?~QmrVUVR^LfgSrL7k8nE+2*kh$8TC zZy^aI;9$Jd6>GVUZ>|?sdztpH)r40=C~igIXSi{m;&}H0L!G9a5-hSM!+rgxxk(^( zTxR!h%j$y+(%6usRfu}|lGmiNoh-Rw`*B}9-DCuB9Wir@Ro~l~`RsT5yQCG`sdt9; z!nGyptXo~E=nT9b$(=sx&m!k^2NfpU`Aczr!8^zk(G3;C&{r7Z#8&3c4!M&$zkdS6V?rSkIIv(s{_m~{Fqt=I4@;%n z%`j-bH|2#BGk5cCV6ZEh?W(qm|CDxk6{**WxV6gT8u6|BrTLDwk`?64`)+%uexf^n z{qHbc8`Us)eeY=bRF!crx082BDoh+)$@XKkqyJf!~jzA)kia+g7T+44G!Z^pq z<*H#w*A|+^HH4-}urZfny%M1yf(o(mp}@BcPY%ITjO&=q4jcGAQL~?mv6w{+sc^|@VFKA{}r#_Blk&@CadV9 zHNdUSzl1o%XN^-?p2<{XU7f!p_$tz-F`W)+a{4=*bd)F`S8Oak_RZlkdt<~kev;G$ zf3kT=BIXQ&OA#|6*VOp{t}b$DDLY=i(K)vVk&-q$zv9b`9UA0T;i3=Pq;)>eG$lMe1$i&?G#&oY=^6;h^aPwsdb_Yo z`oyx-dz6#@_x@9t&xagr}Vy3HR0)km`R^g@4;jTO~Nd znI@Ypcw6$_Sa&|!q7J}ba+@}%wjTN`<#;i+z5v2~YmW^hDn7hJ^a>vhyhQSIE4(ca`vRGKiK4wL$5{VS z?-GKC!?soxk`q%coW=P@$p=`?Bt-k1?HTalyoDR*C74Hqb`R(~Q-Tqf)~C$}e=b;C zyyOrL*X&Iv=jqi`V}*L|)U15uZ>ngfwl%z28wpH68`o4QBW*~__ZSDHEmc*85<_xG zfP*JZM3mgKQK2)S{$4903vUZikvUA!$Uz6>PR-~IxqLefVi`K{bs3-$U@J)FB3xH+ ztXb=y-<;E%R6}9}2E`Dbi?Q@s$xRJdWTju1|w_RgBZI?!2w9BM|PR zubu0Ib!9}Gu=#^IE_|$CiR$I{piA_hqvnlKEFK`KCIc_3JW;Uhd$aVoIe1M;=N);o z3lA}j!>sqv(4N&Bz>kbAi0hDuPFY}tfCV5B3e_Bq2kdQo`TlvLejV+9ib~Sqdw1`q z87qmI_qB_jEh_lsBwuxdzH1RQNL12zEiN@4JA~nb8%lg*OJsk((ng${coOMQXL3u8 z2=2Do;rK&}M9&}jM*?oGYd{=iYo?xi)kfF#rDva_%~QITc{F@Ku;QOmQ3|5n+AXpx9v%%%nhn|V{02|J0?!D#Fi zm^Xhzo}^;IIyfy@qD$&EhiL*%1voPko5!0@KI6z^#{vy^Cdd6rX#!yTt@4^V6%4Y_ z$$`H~IkmSt0FGMD0LJsW_IOsUB|FPt86vH$y_z;~*L{5yVz`JMtBCAqoz!zF8#Hg1 zF`Ld1HQMQGDH8!Ls%jwZOw~iTL>SV&=E3MUhZ!;unrkNmalvODAjWQ;AlXyW?JI52 zsEsCHzMd++<^Lou*3Fi9q=oS19TuRYm#P=gY>GO z{t{76%a`cJ0&A$F^)D&KP?o_`@YBjtCFP^qQ(kbEI<&~%v0QD`Z_+=HFn%muu%z{BoXuGDtAzsW8HzlO9*I~q zdri$kcTvq}dHb58;$Y2Wix&l2XA|5Um8BrIm2&)aoa`TxM&Ul$nhtPUkg za;*Qup7XsOY{XA*|J`ehxf}w{bo0UX1A!6=Ur~Z@xt~M81F~rFN1KqC#&weDv5_m6 zQ>o6NuMqsHWTV$I7N-K|wpO3haA(v;8DLz_=P-Ne&g6p?D|q^(o#y+iwM_X=7qlLH z@rBJN3P8(1{HH4Nm)$<`3)Ap(X{s6MyHICjV$I=-sN;&}`=By7fpq4VnarV_i-F0Jg|SiN6;ZB~MEchA(x3lotzKuVM? z676f2Gt!`Zq^8_JY(3$7Ie&w;636GVCuWhDqZ4Ul!lGU#*-d3D5YLY)WelP{T15Zz z&jP9$|MQPPs?nwbT!knfE3VAl!*kw!)@$-dPd(x}adv|uo=Gt_!**tQ#!~vs?4RsE z36ud|;%xb7YQMph`BSSZ}{~Gxn z@zopwci{iphAW-VM-`J*)Jp&SYk^bo$QoNn5sQ-?K)<29$We(zJ1SFzs~QD7KWaZx zG`?l=y3u+TLF1A+-=A#H0!W~V*f%xoUyrS@EB(;=;Bih2tUpcQQF*~2aBvjUzT*&Veqqv(7-Z( zKcg*}a4?C`z8%)?wi8VGB=rLdrI%uw63$%Jvk4KsW(KQ8TwuxM9HT<<^v(V!ixlTjLA0P4qKu%+er00zJ zh?nUsCA%)=!lGJF<;CAPH>zVBNI;!9E1D#nw@|)>UF-z&6I=Tp803kpL5Tk904J37 zEpIr46Z9BDJlt;)2QAI{MMZfe5Qhu_EwFRgt5S*Zo!6>uYzQHn){SHaX|Dm8kBlG0?(aAqx3MI=5Q;3x zsb}d05(n&w>~u+@Y^j-Xp?;%F!goKso<$1j{S)|e=6M`4)n6&_02Cw9ap$d5%WA}Q zc$ZmrcXrRo5>FRB7YBG>l=IL3yXz?w)97d4ANy#CfsWId{jfX$bZ(kEetOtqD77SK z5G~(L!%V#npRcQ*d&XBrVuUVPn$A$M{d9hrtq6Y^TX90RG}riaM}O9E&n@N4xMW=- za?Qsv^q3_-Y}UYTJG)U{qJrPAJ=U=z7*oVRT}fkHe)re*DCeoVL$AKO=>C0~bj46A z0_Fx>Rh!epZiS&Yn(k^hCJtnV3SOnVn8DMT(_}Ss~#h z=pm?kJc%D-W`G_7w<|&9cz6M*X#9{2WHAazjBEb2i8ZE2CLv+DE6M56z@z%tZdueS zH%ztK*NTuF-Q9G(#63{EJLDeai>BWSLh<3_hMSwNw-k0=QKuPrnwrHs2$9{p)RiI5 z`VPl?ZM`)5{u6;iw#;DDrD*I(A~rOWl)Vhq1XtOGNV%VpLSKzFl0D>bk&PPg?0)ehLfgv?QrF!kwncKM_{I!F2>md(WpLx} z@+Q%b0?4w7BM=5c7KjgWI1zuAQfZ$Od%m=o1Kp?B2<+X-JH=~E*xlb39 zYE391_827d9FWBw>~H)8cY|I$J1QtB=Ley%g~jJ-ekGGFTC|kEZ75o^>eug~tFzjV z)2v8fH=a;hR^l%I?7D`QH+?aM>BaSVMP{sYa%bBA6nM*sgF%2grNGWWR~9_rynm|y zwXV8*gq`cEGk5hJK)YydR({i)HtE42P~di6Lz9~3jlbGt>5pWVHJr@3ac_mmsUV#5 z#Yqb)6|T>YDS|~;)G_YYmby_BuA_voN?Azf!*JVPY$I|Su4gw|I+3p8J<}rE6pnhx zhGNU$6C;@3|1m4yxXNKPeIh-{W7E>U2=wVmpAm?Oe+oui8I?CxjN480d8V1Y=>mdr4)uohCuRoY~pC}oe5nM*N? zFiCLs=?mpAsc7RR$#T4PrBKX84D3-B#6n^FK}ILRsrhH4%{ZJaUwrSoKS+`xkQZGs zCw{P^F^0EOESEsuxfaE zU^s_J>t+|;$7C*f2pZF!k(xA;UeUdv58k2>haYCOaa`sU+nDniQ_@~8_KCP=bN&7q z+!NBk&4Jpy%v@Mx1cYTH&_>uXOenMFVK!tZC(`GNf-=-juW-#!X1@%?J1 zn^sNX)f;PObl>FPvk6%yc)1_txlKFJA|`9q zWW5k>6FC-yRR`GFxlhsKhW^pac}3%7_BjH`NqyfL1!wabxt&YhpQXp>5vkkxno|6? zb75WNHI3t6gkRLFNt}mDo~S?n#$1d@P4%)16a{&=4QZyf4C5P-21l2$@#%Y*3Mn&P z6O*GsmzdF_KmM*6>~^-Av5P=1G|A&UCy0B_h7!EspMV`188Z%HG$BtQWoh3%Jfrd| z2{P+fod3Nla|!N1D(EgayXuZyg@M)L_4#>wG-2v`d@zD+{Pg}kZYG3Sh=@TZb>oeg zvBycUJI$|tSfkF>lQ3F{8-bQ*TmxLqbTZx}zvm1UUsLS4k+dR4T^}SCKWcMXVp#pBs-GXe<(_aJE^Sh*vjaTDwN!h zZ+lXkB#nQolCT)@oygi!S8&%6!1OlA)xpfYh0%0(eDSy*V}glXg0@yc@E=}~?2 zfw(PI?`7)}^Ptx&$!*flvfQvXyjOwas0Ga?7Pv4EtNNTxil}sa3M^kSEn^$+p*G!Zi+9$8MX6br!6tk zYJUes(@lAZ=v3Ne(PtXr-6+1-ue)8=oy&byp`-cCS7J&g=@8|jVktx&zY+D;2GdT> zh2%N$fbQe?PK564W0a1d{}jSPoY>o~(+yLe@>kxVwH|CRdQi*hz`xAoCm|@CC)@J?o7@dapSfeONEJjMWo}1MZ_9t)K&^mmfE9@fvXM>9e zF_yo`tQ|E-SdZ-tLZ0b#-h9N6ZSD^R=v_y9Qlvx2V;yS_r3&&2*!ZCizjvNpYSqjC#{T;nEw6|aWrT=+-g+@q-&9}WqxjhCGYxc{x8t(H@5j@38)TnH zN*c&;Z>Zx&8qA1{U)&Wpt++m4OFg8>yuQQFyzK7V3NRNwQtTy2wcg<5O$T5JUd;1y`jyM2{GQ%S! zBCKy`?GGmN+Q-am85*EQ)Zo+K*IUP~uog=c?B{NCDF7Z^%y`#ycPX z87Oj0be3E50gv;+kxObe5ARE#iQQ}a|0rt+k2<+~V-Vg2SvB$7aWFS`6LdQ`yiw56 z;si~0ag3k{^&~5liHn~nFnLW&5@)MdLI8l{hZWxwAIp(*h|_;H1&9Ai%RpvN{=kE* zoH2xbp;u4sVd%A=A%=e!%_{Dh5@eP`T}RaLHef0g*q8N!h!zaeI@$zKw{ED7Z2k2W zeLzKGrH4_Et+JQeEFLB6|3;&2!rzzV+1KxaEi&W0qMn6M!_sWk(yO5p=X(vf4LSti zP`aVe68iCU_GQ@z3$S#iUV}?JIaD3O^%Ejw@Q@{~a8EfI?@61aW8pm(KP4~4`Tr%N zjIEJW<}FBjT_os5=uwj;y*C$`8e4dyVU!K=AlJTYOc>3Lo^WCY0+Q3=YBn4tQ^B2T z{iKre>-063z;ifGE0kQbYFCks?ThZ(?0S7{1lORc6J_s|UgixdCaY1(W`!L*StP(LEY0GBE*eUTaYkw9 zo<6fV@ncTBz(@cNqNkGxIx0-43dtH)xw*0giR&A*u(0$y_+M3V-n`r1O~-Uv1PeGf z_z-$EQwv%~EQTIVivYk(Zj*?X>l=)4owP5+--Z#VIubhbVJ7IvPvs$eMV=I@aRNA zQhFF&8w#}%LDOIrB-Ok+7j>Sfg<*qAb}aeBH#j)ZB);{WZ3_A%k)*7`+kKZqE6$io zdl3NI2_=qhQo;uIQocI(OWesf(FEzoDe=0C^Kgqg8&r^RhYW&fR;s%O3U$f4zoJz1 zYiWoph91VndBiy!?t*YX`9u2m0Wj>M0_Mw=!GlryR=vD~KALGR^3M*Us#NUZD zIGp+xvmgBfBs?fi8wfnawquZmo9T_emzW(T1=5{vJne`1xe<)PRr;n3@4lP( zI&GxU4w@3|*5OF1eYsYo{R4~h8%M?>= zb=u!wJ#0?ABP$#r;YK0t+C2RYiezs*kEBq-#o`3YuQP-J{qxu0qKycJ)25a*g65Uo zqdei~##Y!Om9aOsPq3g*@Rx3=39?89KFxP*5%FUDps`CgRi|_p5nXV{H3WO~wBZ|w zw><8s2O!ECjnMPpaT6D&YL$1A{>z;~Pf9m?3(si&$3ljH1cy^IUSE(B_14s5lK+2|<;6ootEQt0ryU!DQ{%Jzz zwG-YdB%kQ9a@MuIQ=!r$0<9P)by|KBR{3X>9yP~nbFj>V27Y3DmEtb_k` z+8WBDah9yB2bHI0*J2L*?^Dv>VN1gd8bn?@%)uzqY(;uMh~fE)LD2Bj+U)RPH8l0w zHbsNVVx>Fpt%E>SXE{Ph+s(h4@ct#h7PcH!6?AMh@rhNrbEUX;wFrZ?9k!+E)-r_v zC*xl5Ru5p&_IkQ+YA?4|qrddz%c&{t`}&xGgJoG2As=&Ri|JjVIwaLT$f6`~ZWMPCTpqO~ zR1ZU@h7|&;>yST;n0+UglajVM$#y(UcEcdQ^M?bZxcD9V1)}2C3DSQXSGr6>01x`Rc3??j)F_T5jj$ zApTLc9Ix>Vn6k98#mh>9MKx}12e&wrZZk^YH+e@z>YQ6NiCZw zt>4@?apuZ-@Rl8!{w`}gtg_=VANYk59x6Z;1QQ-YhVshGui&4q%5Logn3{fff`A#m zw(En{S#&1d1jq{P5vD8Ga9!40ykqS4Eau*TjRv0Vd5`rDUzeJwh?{tV_93fvJwORP z25|9T!(VbNGer$XvMw62t3IjLS%Rs~n zHrF8mAZiH@Nr7E!h*0^F`WIlk`mOA-3P7AMNG>yM;UN1Z9G$vE&{hD}Iashkt6?nS z3eLMdDdNg&NKd5>$MB=|pdlMH22fuQ1f^rh*tS%XLZ4K{lFbcN`4}s)-VM)*rqQhf zgu)eme3deeoq|~X_em0CAl~L0+oL$SK-RtbALDySmC35xk24dPxLwD`IeX1kKKq6zt7v9 zr1#sGL#U$9=W>H#Dcsi3Phmf~=dd0mqDwB_7A&(Q85FdeexQjPRxSW%T(#DRroxbkkrE-_t_h&DkL*76$$)GtOPgM}q2ZgwZQW6z zzuX+jh%;S`LuiKI6EyFcLmDxa&)XQ(Re_ckPP!ukXk83AjBn3ns-vNMmzKM?8IeAP zqd=Sf--xryp&t$v^>^cP)XE!VNT<0-O)jQ(21x|$Napt;hOJNZkWPJ(T$7|qdBA}9 zwm$A~{u8HgDSp)V7AZ}g*1Uy>qhR_Bc`(ZzWcbM^IGBC#3+P@9E< zyPQ?XbLh3T8~V6`{k!o-BICPYrLf4oy28^^Kh#bH;!F~z+bli*>j-|D9Q5Cfmtfct z`o^G|z9Z3AUCmo90ngh)_5ln&hyPda5Js%s)&HZImTS+?R?5%Xe+-&_>40i%ZJ8f$ZnCt{18RY=q5UPREpcoH`=+;qx}hb31%c*Wc2JrtF?FL#X?w&K6dZr zDZZN07MybG4$}-!C^1-%6NB24vfAX&Z_EdJOzdb;Do|4^y(STC?w-jTEo)x1m5>5P z-DNjyC4yE_wAZ^&G7Z?GnqaOxbn&LMUi~xuBP+bqWKD!~c+-rRx}D|`Ng8JXxRgj# zr)QLkWSaWldyI)@_4I8DPr_dp>wbQGt-@0MF78zCTyfKkgB(c6p{1pR6{wxJwk%0O z+b!ZEy_g(H-wTex_{b@Hn|M0Gxke|X`H;e&xd1oi0#S?x~(5M$B2^(}jL>DJ0 zYU(ZhO|-+HVZ!Ytfc6I0Wqp?2pW)++)f>s7zWhtK9u-ozTIlV5V6-yp@jeZ%gb^8Y zN!Io&wZmkF0)|cJa1F^JmG3+q;=KXAdZin&5t5Df*i4QUjSjU^>lg?<4^h*#L>T>t zFppQj4IVq7B1L`>x&&Y`B#`(%y#0I`W>x~q9N3O?4@R=S)wJl(C^1D8C&2MH8rg;W z*-b9lsAA`Lfm8Je)|W`Mf_PO|`$ry@TLa*DVW+hY0vrw%fi*)nZ5(`Gz4ih=6W#%(=;TUJo& zUlgW+k>*72sD5vL`FT%fxfuI}UKXFy!RRSIRAgvt7S&{sXci9Y%5BvrE?sK21}pKT z9`_V=NZtSZnoRDt-!}YdlZY{rimeAAq1l5jb?s;GYaSG^a50lV1!lF22=0y#=^jJU zw`2L!J|=xg*)HiztY8^3q2L`RXWVHy`(-nmd1qFKq7y{NZJZccyiQus2pX}@mLCj| zwFMALU2Fl&GV0jeVuufdqxZoSnhZ=aRHCgN0h5aK`nt2?5MV|aku4n+jFq_Rs4$yo zpDg(G?jy}|1gWg>$EOZj(Yi|o6;NCyOhmVKR$QD z#QVrxkLPjkzSMsl*B$S!D7Vu7ONZ2kv%S{RaPW3EP0x1G9>Sf!AOT^aa6+N)YtMr+ znuLytwt7JenJO?dUF4w)*D}x}`)l%*K?D!yZ`tUj#{(N@c*|>afJj4=O||I{ilTtl z)0-eCGvEgVV za5%xN@>aO~l<+JSJj6bO7$QXca69<>dW)%IlPZtS-U@T3zS1q^xoAh<-FTVy*>2mbZ>I|?8v(~C+F^bZ0M&Dcb4 zC_y%Pg)G%wb;$1b7QZs5qHD$$zY6Sch`#aX2cnVB6^8LMmdAi{9k&RHc5(NS_Aic@ z+sw%i;^6yR`@ga6U#keZS8DIwQ@v+Ov!nbD@i2B2-}g*u#y5dTs^_>PRl(;b*3`d_ zrC3Y|wa4cqHvUhNkPM3b+MQO^fTQd3&$OR|6 znXe3ml=fbZ4cmXbUa)RJql#F|O?Gx4yBbHTO#EfG2`l`g{;)ia2N3+9kWhaw!G7L7L%rs?t^_WU>NxcEdTb=lKfu&HfDHS#5e69Qc$%*FwkrP+<|05@=8hqS-X7~mU+D-XN+sfuy z%Gceh`*1HJR_QoKGQbFK$`hU^=$8#2L+Z*qEXu-|9v2MmHu0b!vs5rqfy>!J02vh^ z>o3f_$YI7D@DoW4(v+`DinhV5)-!hiv1r=0ilk)CQpKCVv#olO(N{mcamhXx_g4l$ zO?3t$5DS$hAMZb1A)39sBfZ+)V<^9moWPh3u{qBf8QNJ-3{0n`DD3|J+Vb2FVVm2`8n9}#eBEu8kEjpZF4J2r{ z*Y8sV6E)37=xd92Yzhn_S}`aO1&P%Fq-gGko6J5 zj!IfIqQMu#Cfpkf9Zw7VaHQnaTwS=2c2mpvaOqs2%q96bl>;lx?=vbUl363XjxFJl zmK!Q)-ypj^$Uz}__7(iERbu_IW1)=C>u$(};Ri{9$A~=9`?T*@L9m%czGF(O5L>P^ z(UxFLB+o{yty}*_^smC9{rkGMAPqs(>K}{)88#Kn^RrX!KWLhayx9pL&o?EB#*a4{ zK_Js(tFR%@7X=|n;4T&!10m9_tI{COC+wL)B<{_yQJy*|jn4arpPAa=|AN4|o(-+K z#38hW-RokbynoAt^Sa@G9`Gl1j3m!)Hp8n*aX7Yzfn;wL@F1eCTCtl8k%M#;a2L6Z zAaI*xtdFwfNM?_+*ny$;BDm{?iQ)Spe_~sX&A2QG0QH1vW=hpv;iP`1<#Ds|%^|zRa zC_{VOHX+@{H%Ju>*C3O_hla~hFcI55R_N?1D7*4EVq0ZEFp1D6z(!sdyA z8TMjeM!YqK#@s517=Lg{T?`Qe^qzQT9f~3rvkR{F6mMyv%ee4kHwD6ft%rmN1zSR6(_iJKU!iqo#uiu zwGew?J1?lz4_$?w2QIoyZH)PbqP9QT9^wCum4YD(ZUxmZD@rA}vYLeNy;+R&Y}Slz zMD4q;Q&u!#G!b&@0Z-cFP^02G>bmRvmr>>BP8_+`9#+MX!ogwHO5f_Wk3QqrQyn&U zmC?f52>fdJaw6O!LW4>u5O~YlLEQO3lKxnc&mZK-KxuQ^7KKafuhz-#Xljk$(V+i{ zKg2kynvW|HWpMWc21wUn@}mR$W;P1Oo@Dh>>r~{|H_Dbyz?TfOD>Wm7rDkF*HArQ0 z%B&9-aH0(Wv-}-QJep7k?JqTn-O=0wewR-L@qf(b1LUY5+2yGvEvk(GM~fKT`WMnD zi6M9GwfHnhth)?^eaqR{q(PO}FhxsgKdFo{XPTrO%6emiwm=SL;ztb!%}GjQ+VJoD zZb+LEkTYz%*vZZ#vBdCk*!&&LF(LY_6g6{8jc-z!Kbb_y^nS-ZS4_7dy-z%>-ujezhJ)+m*PE%+pd-;oKSoIoEy9Wzt^~kyQbGl zVpxnxnF4GYAb0UW$bTyI^03^+^5+hP$S?o%)c(YhWzU{jsYhfL6_Z*nom>)%?Oo~9 z)WJl1VyH;+DAc_)dD3mj*@BCLkyMD&_;s|B=;CT4&75X`P#}dYcf*OhY~UzBi_+gb zk?BTyzq#Xr8izJ|shKX70la|7%hIw!!B_j@#fX#unLg@THiO$S-4(;l&4*ApTY3_y zkSf3;qW-MyZePRmySNGkYhv2ReW!Sl`sjZu6vKc+>2~F1f)ktd7HFYl%&R<%7}S4@ zv$2#e(jmUB=AwtfMxz_a);Lgzw80Ta&jQ>lPM;$T2EH9$JvZD7NzRexCXlNWPUt`| z-9seDp2ir0aIcS=Yli0Rq)x3H7K4n0$6Q!Fea;42FX53>N}R9o-EF*ztHrT1KlISh zZ%@xtenhAWo_fisKeU%I3phCS!xw$F9&GHtI}n^d(G^P8r&x?i?J>J)M)iim?mzX| znW#)XfK8>bX*0<(wgJiNPKl|KbA?0)O^R{=i7*xodFkthc6ozA2s-iNo5*_?Nleqo z$q);?Bv=QGs51I=qOx7-M;SK?IwIUnG9T=~Sli%*h&R65|AU`n-L2e2t0KYvl2y^D zt%cYLNmq3tYB!NR#D{!`ew_c(>UM3{-D3FkF4Uoiz9B)KU?cMU0ZYN$#9?)q(LE=- zABSa*5kgSGr@l{MhCr$Jw zj>BPrtR@pQBzlLpPGKcE7)KS{lM4bRR}eW_uHWs<`SqOMF9Ku^%F}4y&B7-Tv=_9w zEX`(nyOjhW--8*#zu#SGQDSO8=`3#L-OaW+JowLyW5ESsemIx9PHt_cBeUjxn?I_i zw3)Tt_EUs|Y2q#hCY2bKSi5GNv~H4KAH9{Ho{krh$gg?DPDZJCo8AJZ@Mb#8(pUEM z1QYIaL`hlGKgUieoM^b#5u6+1&SGrA*ZFnHkUC1dQIJ?G{GpM~7l&t>pf!d8a0BY) zhzzVh=3`>5I9(@hu`I_+#nZmx>5@+Ofz7;n&8oNG-E8mSEUiVyz7<$d6mXqkiwUa# z(dCQ(f#i#n-X#A+msgvpQ;oZQPYX0x(&E=bEaPXG2RvsTKhO`D&3u%HqseMGu64d@ zzhkIGZQH12N$I@p)NzQ>fUj?*9^gHg(a`A4N=piy#=Pl0s-f<#lkg68u=v;x%iA^j zbzj%itoL*tGzJmb`Brspo4-!MQej5)P;#s-&aIbVXJR`kwd6fUHh(dy~7XuUKxQ%>-txgY7XWP<9sK1|1x{( zp1Cs~m;`{R0yv}u>;r7QkBQqq=I)grK&7RZ<--QgTU)kZqRKf?bNnK4?pAUyMg7qE z=NuWh-VL)8zVfvjai6^-j8}HfQw_yY{f{m5PTTrhbnQS4nT`F_#;@o`pm=H zS!;X$p!2m%j#lbm+tb|=F#8Y%^yhsf7y#N3Z}O-9F{d*R=E6MMi!jED^)ITSL4d~s z6BILAkUD}?QD1B|)a(yd$HcEuE?qV>EU#Hs4la>f%EHv?p#9MV+{#i`2UJp4HhZh7 zTmC&sQ&CrTct>yNZTPjv)f|$F??2WYg2oJ>qpuw5O@UdP6y~4|MpFh*lbpoi^b^S@!^K{js9QiZ+9{l&afqo{1v6wZ zS24v#WMby9(cQ&dFKS@CuOyw0w@k4^OlJA`iWi;D-F);aZ9LvKMLbps-A3l)Z|%^a zC)IMH{V`00E+>yI0`By@uPdh~bKPph(lS+cck0;AW_YoY&w8o-&y8!@@F#hNU_N*R zUT++iUvM^F?_2vcB^#%ghMuNv<%Q(FY_jXZa|V+uo(b!0N@$`~Z`o!uxS)LED+HvD z5m#lnS`+Qfi8rh5Ts_VUvw-3rCdhi$@OswJ?+7{473O^g}^4HBAe5R%B0I>1)t+MRVw(8AMZR2D1j-Ens4>+r6e#lGd;b zk-TO88OQtW(?{J=e`Mk}!oL#U5WVO&;4&W!&{9q+BT!SL{tdgkTS`t48Fg!TL}(z@<{0`J>x}nQ%uXFmduX>YgnUfy z+Sz*%Dp*N=HStKQvwneBTwA3%zL#%M2f!Ap3+vSW{GpZ4&4z&TQlqyE@Zlo6?><8( zFrQM5nz2>q(^QQ{AJTQogf@C16w#yzSH6_~&T#)3ZyTaA;%*p38$%}Qo}%od*E?6% zgrbmymp#bD#da6XNA4b?zVSo()Mnr9wEZj|WR8B>t3v&32!wv+3U+e(Q_esF!2=vR_GSZju%fMoq8R1h?c^tQMQA`9! zmzJ=`E4&{X9l|=+1R}Vayq&hZP=jH}k__X5ZV;*J!l`2Yv!#uU&8wbZZ#t#NMvq#Y zn7G&&Chcg^BbC`+nV6cXlek2hQr>JW=m((8KD`_cSDWncJkXqYAnDYeScjhMxpSOaDLl;*$bWpz!z|4# zq2~8Fig3ek7gRq<0$}}?8Qo+kIzxPA-97P|YxZ)japN#p2?!BWp#Jsy>OM8Q-57jm zF1QxdB&$aW+8M?)#&{(K^eLv9Tn{wZ={3)ak1zAcCM(?wICfU&b^S1@&BAk0uG)9ToB^j$vs1 z`HifKab1jjpA!HFd01VG8B*by>l7~Xc)2}9;_|@DqRgNU=npJXe-_O{$Rc(AqsdHT zS*fcy^kX#!6INSD1n)8Y96)*>Ce2L&k2cSQ#_l23m;Pows?0zNAPXrYT?IH5mNA(@Eotuf?7>#dw)YW$z(DMG&>!T}j{9^9zC__KehbwnJ?&L5~J@u3U;Y~ z-~YqdJ4D&m1YNsj+qP}nwvAIZPuaF@+qP}nw(FE{z2A>g}|MP^n%H*%qhW2zuvHHq+{2o2X_{4G_Lsqkj?;~Ex&Baym;>TO=&6nG7kwucNB5{Z6EM5klt#;@0U;Csf}cyV`GVe@wL0CBLhd4ik$jxAH`FFBMI4$0Q4V)Lz2#mhOdzjlfP zVDv!W4eD9XT7QFI(HN+T)BU_+9=<))6MssOpJD!ERp2!RzJayAx;+DBT&494`?Ug3 zxr`DhHkai+upI68@5R`Z3|KVc7e+pF4SclJq=K4vMllG_Ve$`N|Jz^va-F;$852Xy zaw5zod|1!Uo4+4Vt1c3SCzmA-VEYqF?^G54Q)o0J*J`k6~wa){JqvYg4Cyt$ zu#9hS#?lvZ0+LloIFe6msDBKxsjZT0uAn1^FD^e=SzI3d`JVNeOkQ=7XW5>l$AnRF zXX|&=gKLU8tW6n=Kemi-A~2y8fVh4gd9yW&O6pLt!d}u)E?ol)he}W&661p`fa=rv=1I_dr~@gNCSohugRbPZ zprWn>zN8=1(eFShfeB7MWAGiWU5G0a5^*ZYDU5uxI+ctetTj;V^@e$JH&AE4jEV7B z-l-T|(Q%LK_7CUQ-7(rP;qQ+h&>n+W=XH|={|l;46pkz^?kjRdkePHsaca)Pfa&aY zzDlyh!j3CCQMlTxn~+LaE;1hrG#cW1=U3+N*SYu=IMB)Y*~u2)Wl&ejk5iO2Wy4Yh zC!?$0lI}LOUiuo;Z}@viYqh@44difEXcOSP4tqLKfKq#(dv%~%@WKwuBJesWF))*g z%D6e@kTD(-2c-8rL-MPwW~00gBD!F}Qljsits$_05Fvv|P&G^tCyoQGt}j*f-ccsg z*>WFW2%*p(v>uWtak9FDL~;mD*EMrNX$~HnMU)zgwPsSdW_rAprS~$IzTbYc(9xTS zBIqh}gZ=*P{%D1RL+&e&JL7zJA%X|Jq7qbw#RDKS)dFYy3c3nu#!!{3W?;xX+g7bWEjZ?4Ms_G8HO!Q9n)9q!7y|5EpD zhG;+S+&=)uvDPwm=vz$$lwmV8#(Noo`>a}pnYth9H;G;zm)P!F{mR`s%9X02;tC=P zp~f1p&NuSYwqs1xz~AIH%gf@$qB8z%0-EUT(0#a;N`CQPXqb5 z2gQls5LSO)?+BHQS0a#?u>dLM++_a+acx++4#Li{H;mAgg8QlnKt*XWr#6Dcu~Niw zGe?FoM?x@1&Ot|6%KD=)beVdwA0EH6=*iG5!svwXI^dhqZFot+cr?QJu0%&$!UmwQ z;lKicP=RHx22ST0RB7yxDhOLUn`4OKzzRo5NzE)H)pD+17$cj31vXG~C_AL(X44lM zG{O=E1n#VZ+=EpV@`rgQy6LS#+kO$~7|OGg6XSLSBHHnO(UC9Vz>>=zis0Pbo`S%= zbCS;i?IH8K)~|Z^%e-D3c)lJE|GmB{TS1cfv$k&zS%a_InS7dBBaPpE?oyrGzRI|& zPk!I4&hh@3+pT$e?QUi|&2>A={iJBuJ79dz8U{zToFxa%QcCkG#yQA`t%An$Cou+*KBWA=-LVe*E{l$L2%}+(KeF_p}KjR3JWb<7y`Ji+%t1T~omnBO00qbkz zoPOO$k_;>@$&3#PM;wHXkiSK*Yc?LYu9tiE_yON6b!33Q9jCpzDxPow)Po|K1@ygo zRj)J55jF2wqtHkpb{-p2r>_I5#$7*__2o$tfP9#z!d=$GQJAs;odv&Wdn2bZBXN0R zJmLg!o_n%5T5V@JBGF7F0L2qSw8x`y41eWz0e5l4IJBI>QMrr0>ewg4_A1~UOZ@9Q z8&;IKkPzn6ADw#kYIQ*4z3OlAaue{GAIrI107QAhQ4mlHf85qtXx@@o94Z9=bSyim1L;wmau5@>J{q`0=&7A^ROqeGVV)Ql*f3QQBZw9^_kATuE zmy&0Hw-H@m3Xi(X1VpLA!4v>Zeh2KKMBavesGSiIrApAfjse`3qT3pm z;J&Q{snwX+*`oOV(Zz{46zC?#27lEC=~?#Tpnl&cBK zI7ZD-T3gFJ1A9knR@?tuE25R5Ic1}I;1mBv0iSDx5k7Pw*%pc`sr2v`;w<7}54su|T0{Zh`FN9hb-A0~DYjR#- z{8ml;U;yn8qUe*qXOIQ+1B`?>oj=zf4CEM?L(x8yIZxU%)GaXhn9hrsY&gV`Aoi4f ziz^o_=aY*yl(P`t`tQ%<>3Z02xlklyB8=O-xn0bsjKCZ>jv^cn*@wRs%{VEfgSg^T z_x;c}^QV3Mf!$3poh9;5F}=-`Pq9m^uZEf_9B=Wq%Am4)+1PI90Q5h@?Ph#1V!{m; zaq+^weD7H^H``%(oDKoYTwyvZU@*V~k?-!(w`aJODV}5VL)zZ;xnzQ75$T-^cmTsO zSD}}SW^I_(U4_qKz#?8P8wV^z&4V0@v+HkfmY`ucayXC@SgDvfTK$O{oAYWpDwRAm+9BjIQ-}RgQkDyH7?u18ySF`q z7Ja(5(S>I;dP+`hCVx9A?vQStt3asLX$RsO9w^0w^W6@E>K_)Wb+!mpv8mOo6XF^j zV`L8OjE|=q9?CUj^suQ@6G>!_s&xj&IN5xfhX~2TN#|e5Ge?=MIxmpPqM%D0y-5kX z9~!;!5i!8E@!W3{8MHdAZftxNJkX@%6d0<3uo~&g_F+^y=*<<_Fdb2UCl#cL3fhng z50>ODK*m$e3|=cH#C_lQ1fn9(0yk*1#Ylfu0TyZct?}NY?PnJTXD$Zd{oUu-UAUD~ zI(8m@nY~At`sN4O=Y=~B2?TR82(SD*%dvKfW7$8VQqfVJ1{))nUVjhA?Tf{L1tTV( zW#tVPa`vJEFHm%`909n07LG}v?n{cHk{=wECSqfQSwB>KVHPEFHT1YLlVL!p>Z%qM zEN}yDnDW#-5vQonG<5&kNpNRSOu>!zG$M2}GepU5WF6M1rn@8z_@xCA5c5^(DU~N$ z;Z>c6=AVU*7r!MsnWv<$G9)o>lx7M zR`zvd;QIm#iL<=m=n;<%4hp)QsRRDXTuyS z>q?DmjQnrsVnSo6+NR3`N|E_z4Ut_K5lvHEbmQx2KJq?PaE8{5Tg#k{8_Es~k1zuh zb96Abm|%}W0xPh_r0X2pFIu#y*=-K4TV9YhhnA5I#*-VDkqk2WwXMHVSprl2{B;1e zX~9a4JGV)a79Vs2?k7=8ma%#*u55e1TI=gQjmA|=mluq%I<;e@GO;_;cUm3)$QZv~ z8kD||+#mtOSL#-R4mCOSq6s)RJEQ_c=%8xjp)59iP3$YIH|Yj+PbL>1UvIORVK@Gj zwwR&o|EIc|CrjPJ=+l~{cJ+(uT`V?O^m;u8>8tOxy5BY{E*DCsHvkk&GhHAd%4#Gt zODutfl4X}k3GzFXY_!T?QB+$MQvHH25}GX1*ff%M8FYalDxjxJcsKkMd_0{Y3Cidw zGEL0`fhvkHJ3ug0(4%E98~p)Q7v6P%V7RCzO6J>_0g@KZbOO#NmlJJ@tqx`7ov3BM z`*KcXrQ!dCX7%NEqDGupw<|Shb+YTuT(|hL>dtW4pG_vGEFTzXxL1C51LYprtTDU-)>(_`>qhZPgZ?N1n`K4yC-#i^t z&3{oj%BJ3t*^j+TV7KZ;M%%^okdf`Q4$~Pr)zFkm>A&al`3M}aTNj+205NcuwV)+vOOQ;DM|@kj zvk)BrTGrYVs{7YLrL2dRz6)0QBUys%~D}v;=3z1!9 z^(G?k)fOf6Mm9kYJ4Wy}3Z3oxG0se_b+x&}wRIQQIdog`FU>XmE}26g&WZb;IOEIV zOq9t0eWa}^@^&<@b2+VZIqsEwMyXvC)ebr^ zCurctD`=^f=l-JjS)Y~b@ksmz%;C2ci|79^b0FFOPiF4nOp_w7Q$j5mH%bH3@645e zmHjVbngPE465nH*E>n-QI#|oYecAY3uke=lJ?GP=8v@wYaS3FgHhJb;gGcWf2}G9D z9I?Qe6t6qT6EA2Wa;xivLh>3~v9ycC9&?n>F=gltnXBa2f2x;whd5U{rG*w>j?*HP zCyQL>)zsxeiiZk+bOf-aKJf5u;}bDCseU+h^A}5-D8*)rBw`Edu@miQUm|p$7x-sY z3DeSL`CQsz&^cNTH_n#-8@1v2=;d|SlA#rG;giTp`3l0{Qf&~*_3C~J<!#*YF z)Pg_qzs@hxN5r+ID*%g}b5;1Kg>89y`$l%bymUdRXY1+0nBMdA=P+=}za%gVKi91y2&*NCQK$WgI|wfQ zAXsB;V?j&}kQH9-r!`#P^<>v0x*EL7{9Kl}woz{!CkBq@-dq(n91Ix7QmM(JT zxrN%};*G;szzVl$p{&4^y|}5N1051lQ4FmFJPM;Olx{w7qV^fu%&F6+6wv2>+G za;-GGVA%Lm=_(lbK0KJAh2I?WtZW86V3k7E7js#ET**T4aF6TC`>%eEhj7oC2~da1 zaJ5Ptw?Yk2f^jq+(7J>>X_IDw?^tFL2W1nU65#65lz;SgitHOeV=q;7B0VDSH-wD~ z2q{GP2XevdQH7w3#a^6QK((#nOSSSh=d46cdvIYo(^AkM#STZbpUw_n=s_K*xX}?e zW&ZdKOqND>GYxRBIZ$?|7=j8H=I54t&G?g6$dc|i$)^>G%a34}d&l;Q9Q!a;t&f+33@65&xzjtw_|vahyRq!o`F z2qqT)2V%^w$;g5+50K9oVrCJT>2RmYfh|?Ix(HK_M|2fUHw2j86QY{}> z5K<@)a66FK&IgNyyu%WhZYaMsCU))baRQ{t8nKFC(3B+(shEbn{ywF60Rc#AHD3Zc z8y~Yum9t{Y{}b}-4%8O*Nw;m!l4`VDlKN#OI~4&$Ova5&NVhsVEXvwc>9~C9&P;HE z{_BlSW}loWJxH?t{jmgZ=N5J<=3Fep%bPuy$41%Edn6bezrykzYh0!GqdVV!Kp-DA z0!c={Bw_n@{1%YQaCdxl&IO`_s9xaF;mI0}`Mml3Pc#&k8e1X7BPSZeGbs$u(O%b2 zq)>~gSV%Sk*5IDDH_|Tney$EVOW6qM_|k}~(->ls4o}tjV8GNC`a6pn#?j(vF!75Z z!$yPfqM-@cm1Lb6?i!<;v`}DCj-n58y{X&()S-MTo{YdxzM~trZWF2``c+Kq%ZnG- zQz+{zOJa#-+P&WWd|=N)yLNuUsqDrkuFSxjKCzRM=#^0~m0PxrVxP9r^Y`FRmS}#t zLKnt*92W?91~-1}(6=?{jo} z>#Mr@sWt3aDfPc8gOzr^&{-I>Z0dgr4xU=BaBBxiFQMC;W>ePH2?n+_$`kw`jOqPY zIK$GQlYnr`Av$rB*l3H6R$1OINDG1M!`H5O3AKlZovbWYg-4 zk^zAZ`573792zL`9Qe~+nMreOuf8vz;n8pG^PjZ$egYh885zAY$@m(pm_Zm89?yemjSGqMjwJSUA!lZan-Rx^S(AK`#+p^6I`k~TS0CyLKz;i#p5OCYcc$}=w@#qQahlxvULY$z4blciPG4Chm1 z3kKnxYU}w0>~y?5=$@LUk3N!KNg_+q25H`Haz;MvmTxd;WuFgfR7J6uR(tPVP&-uhCSY)82poR;ZfT_ThI4t!$srKulC&c zD9Jke1nBQSRg;Wy?P>%AAxZjD5^rEdNtl`%lgjxpsRG{i!K_}B~2hAUyv6Mc5 zulGlx^3S#(`_T$&Q+BFs!Ua|{jAU0fh<@X!BkG{g%InrPm*_y$w>gCHwu(XX;sS%& z4_-JP_+hyUdDzE+25B=oN3Pe89he5X$>C;>%lEzKr_`yeOSaDM*_!>yqfxyT#+!a< zsJujIC{PJ#{!6>j)cn)CtSx&-5x+QEi>uVqMM$=Fe?C|pQhKEEx!=#|#_-?QlyzHE zjbfEsecu&gI=Qsaf0o(T&qL~1bHcEnTfp`e0}YfV15<%Xn);blb#GDwLX~fR?q5DX z&#apPOECNDo|k|Od=Oq;Ave+PaUl&Q6BCPRaJpQLs}NC_i2#177m*+I`vJt6WcHqE zRICLQlUjdBP&A`oo*xBeAr zFq1&bEFt>(Yb$tDT?cpyar7yU(k|lwUR*Dm(!;iP9;b4bBE{q6P-drfl9eO3CpY@OW`9NQ} zC2i=^N*bT|lp&iRtF@JkFq@yODmBGXRTgnR19o4A>GAX$0Gn#H>VFhSqu(09DlM7a z7yL$o*U$NBuzJ+*^Q+L&>mz8czmv{4TliNIeh35x4vpjZR^dM81Gp#pzk)OzA#NQEgl z@w^vID4CFKwK`>mTmC3qe&(o-dScZ>em~rFAPDjL7VQs)Jr=Yq$$o-Nv()<2;OI=1 zo%~WJ#%syteZmqp|8PM;Wdo&vb?N1P)XZ*3el5H2j)7Pth5@l3b~2tC)nP9)+;}O@&zz-Q-4+ncO_#sC9~F?gL)5suem< zrt2nhRTcGLJxkYHgT@^BuLQ(==0F^z>L6iLvw^p-;lr2So1BFDU2Yg}6WA-K?y!X1 z!hCrVmKm+He<|cwYVcZm@(hk`oaUWSj{m02QMHgbouad>k2i>HR0gF6jBd2b;i%Pu z^Di*ejxaBPFn1q_n+D$jP7cbxcUG%Roo=GN7!( zMhy#vR&4@H=D`LF8^gI;GegVq*{eB)-u#|_=OKFklEtgjUj5HDjD8J9?aCeJ*Ngs* z#2KhtjGv!fmFfuxm|pbPD!p}DMBwMIe8DdKmPhCxT(yF2hcqP#ixvUHqt{JHd9sBz z6?5|u)PrUE-qWyMdY=3Q!@LaHkPQJ3Sr!4{tGyaM+fl`f<@z2=t*^7XtxjEdEyb=i zmszvJJpNeq!RC2(v3iMtKM%+2m#1Ncp+F5?Z3>_q@tgbJAa`Il9}Il-N&gM(aPXTh z!C0U$#AfpTl?Fg0b<-iCdXjo1_+M0BXi_z+r%exjL}ljJHeLu=C><$0-%ta@aV$EW zf+VZ;yt10z+>X&4|A(B7G{IxkJfaw>oID_SWpBO?$f%ZNdJoBVhe}pHN3UalM`j{hhA&yTqC6lD4?3_wsv_x@3$7Lvs4k%wWWl2Te96bE5aW73yTSrfvD}%S zVEzcg`cjoqTZK<+YgYR*I&x`i!SlPJB-NGFo^C@fjdQLC6(0fVu}5w?!R4O0LX_@meW##?U|QS7jO|5 zKy6zUfO4Q&$7O%mVFfxSIZ`}KD`}*0O070n6u4w7Dvuml?%%gw7lUfHQOUC~EjBWY z0aW1gG`7A6pHCHNHS?ScUtFs#a0m{RnJ9C~5zFz#mR0}7!$f9LeS)*=0@L@y;J71#Z%lvZX#;^hc_B9Us6mTk@2Fcel4%5 z08caui)G0h(q6M1mG4hm3c8~t+>(-Sfnu-kBKT9J`uId=Y2c1qw|3~y(H<9TU4}|q zVf9T;8@cO3d#2PR{+fgc7m~FR&rGvcGWp8Puuaz{pSWr7@A-$UFp_MU$UkwV|Mop+ z(VU5dHMFSETcKM*iI$SXWbk*U=;ukii-|EkR4l#I7;FK>~6J*kK8X6~%ohmoXSg!OXBGe{@>_-$^z#7o}`#GZ2 zsAN0dep2=wylJmUB8%N`DzSpFWTNe=?~?yhlzoSDYf#nIqDFT^TN9ZKud;e|T$QEV z^s}kq-dN>Dg~qTtGI1<*N9<0Wig*M4lt^AX>cN`&-2vOy;(1W;-g8_~v-K2a2@(a| z4%MlJ=Jqb?#)ThnhZpM9$W+trUuT2cp1*a-)^)FmlUF3e}M3TSS3zkh}#}V9W1{zbHx=5y~wDf5AJAxmB0Ia ze6eYHtuNVT$WcZMZaDz^Wj(fByxid65oFj`MvGxd4D;nTrkZgK7>_9Kz*U;Vh9ae4 zlmUGi5pJ@1&@uc7K^#^eYMW*|YPenW-T?{jXmVa2P7VXEI*fc#?M0!UqGokWW@+Bq zoQlDkB;cnru0;z-#%5msrjCG}^vi&oweWzE0WmOQq5*PV*i}URR4}o8vN}*!qTtIa z*YPR!9D#gia(mPQ#-*1N3z0ERPt-PU!b2aW%J#wDSne}{O#g^;{vaBaBHZkUys+50tJJh}$6Kxvy z=*nG+g&nn!OjV_131dku7ok25hu83fqT~<+t(0AwNEDdt-Ahp4tfZJ+{~tp5d>Zz} zw-{1!NySEmrJSq<0p)cYPb5lM0NZYpO9>*Kp*<6=`@mnpW156mN;X(42{ zXd#r18U1^V{(C~F5&V9*e5raoNURRq$Rwk~M+6vl^EX|{P{dWOGCg zZ5>(nf>TEdI2u9AgI;1IOFoJX#mm@BrNi-65W9=Q2q8`aLf zx&@!`H?V!zcBY%EFqH~w5D)6nmHlMrsI^nYP@_ISv(+*F7`)Ahjc+G5Yy~o-c`}?lCB5)s2O(t^Ue+Xb1}}E_$L~uh9~Udt<#$v?i@ZR>wMO zxN&S%U%T(G;G+`N?lwUjYyEL2fePq>rZ#RJ=`Y?rq1*pOUs?1SZ%Os@;ow0qOjmL<|9YSt=4x%_FuW(qX{Bj$6 zm%Z(NS(2SKrLv`xG_+Ck(-(OyZDcdf%+b~58D+2lrCGiZk6g^xW+v76ey|~0x8|Z| zWsNhkw^z`tFtp|jH8fFOVGZJABc*NyErIrNSp@d>nEKX+#tEo7EXXVu3n2l0xXo~@iSTvs_)j97|&;ns`8}@IMKuw@+;-L>XDCC=7|-?R=CRp zxBPsgo|_Wmellu)9jh=iC-37g6?|k_r#4~}#6VMG{2qpPv9C^-uQ>vP^>HSGl$n;) zzq~Yym^(vmh-Z}ycxudX_H(nV8-aH!zpBlzg^Vz>BO6!?+1|;}hIu`bx6k#c?uJx4 znW83yi2XxzLb_bOJbmDILJ6GLeRjoT8BI3eo=#eq;*s{29$L6%KJrRzqyd|!_?~wn zl&yLF?f;Y-UhA&T_gNftUI>J3-M03~Q$s_gLIpodidOvRHL76fiUn6M;F^ol%@$3pPi5{g#3~g1Q-Eviu+&bfBGt) zuarv^cjWuV%vUb3%;XLFOY9Y7&Ib5V`Wq#c8J^&UsA1xpVg(uZ{*cqdl%D@+nivz3 z!Yf39isSW_z~9Ltd>@`13|#8)E3q-%0LsqHPb-ZCm`o~7@Hv40KD8B8xjP^BwjwV#cw zbj}KhRw@zv1^wi}m~%k#)|N>yOSmRp&`NE4he35asr4SF2^Nw54BbH3l2}iHyU@xZ z^cjmVHb|U@$yxgvYZDrYeEyb;BMtfIY z0QrV5?(N=NDzU*zC<$tLAS4_HH2@OK`VQP9wGB_)UY+H8&@DNHfra9%$t@jP!pwK? z|56#m%HMgS%SFom_y18DL709PF@^qZm=>**zznxG*~t*u<~l(rwwSv8UwS4uQ*Caq zs+sm|$!A>ZkfwQ<|L^_9%T_f*bCbO-;(zej)Pj9$4M1^&q!O)398oy2$-fNV6cwtc z9O_Bx2c55Z1Orw7<(Z;k&W~4#C_NT9xo7L!9u2(Ajma#|O3;pB0`!c;tOmM7qImR2 zOi-qRhJ0mO=eU3vV&^upnT1epfL|mQ^JGY7yh@NU0?HilKln?+rkJX8|bG80WnK$UOHo&V5&t8Z}wL z5v&OAD7Fy*_R7>&swXmUoK72WixccQsZyQLA^+Nhx7p8s#m;>y)Nn-rhm>%6KlwH7 zwuwQ?dP1nBKzdTmlQS-KR%L z6~kLBMS=VlF^z7H=OC7Usn#h0D4zJ~-PB|@SkApGETG*QwRtYb#O5*{53W*#Pkzz? zcK9|zha8L}t(YwXk{R!jmu}jI)UU5AR}hMKOdJttlnpZr=QCIVb4En7m%Cbae|&6k znV{_WLcaf5f?4dJyRE@x=5)h4<(u=NOBT3S=jKtlX46ASsf1356ygnuWvN`?pD4W+-BH~| zGmlYy2ThWrJvtpWl4RM1ro7lYt23^1fSzAvIRkdXRWHXY4LyXe$~m4!=(pPwWA=6@ zqW|_pza_2+-DRs5sFTm%<&wub>nxQ^t|R*c2yUfQ6E{mx`GYKdZFeQwL$`#s(}$sX z2cEL-?`|neDjaYt#z6#I^rBKgX1!I8h?xUY*3eDTPcEn~kRIdOugX?O?PedL-%9oSM;Qb-!9d>)IJIhy>FER{K$jWfLxOX<(1*|UP9Pt}&;)FlU;j;R&{7r-<~ zPIb57)=_s6ls)TY>wZ3*fAnJ!Na^i$a8C6jQ*D!MhM%B94pMQ%*Bps}npGSN!t4Y@ z+n+Q4lJt-diSs_KJ}*?rXK04CNgEr7Su!HR;Q0$g)j;>F zmO@tnQ|2VKurY{7hAImVF6}mDmW|eT=dFV|2D4lSLu-HN(b53%IF}A%mD0F3k$QIl zE;eA0hlA1s4WDhwg~3FN6nZzn?lBJ%uaT%l!;1lWXA-izt-I{s$4i&pOF@+7%0F*< zhGx4nIS)dqhuGgr&^SgyOWx&auxlgbn^J@w2;lWF2_#paQHRD8cbQf>tFuPXRRm^% znoCLigH8gcL@eMRYs+wKdRejnzaFzDdceK4^jB|$9-FWosz)n`!}5Yw=+=JdUN5*3 zUj|eHAIV5|-Mz&Nb(loQzbm*M^NxxW;w&0J%N1@ zI6FeH;HaWZmq861?j@=n$fIxSX4M~B*oy*1Gx~(s>xJ6u#Z2VZfPecFMfoH zt|E~5d~zHd1zn9(=(w7^{RwwQb;>|l-+GACzjeK-4HeE#7vB>mIEfhjM!UzY)_9#j zf)a*+U!!MWZ_)_ykbnI$SeAor(_agA#-2tEnju|4;#*4N2Rh7dZS68(zDUh3VLW`2 zOk4_-;YwX_M*ZD@$%L&t)u#_m+Eqodi?dPYS zQ8dG=6Dptx1ZXgSgLL}?QVN^phkP1EsCUp^01bKqadBxc6xuSsAqllH*m=7Zta=gE zPlV>4`9w}_B?|`&Mrb|MmFYDQ4Vx%qhd&%42}%6Q5@F`rT&9U)a|v5sl&J$Z}dZRz6TCDdbLZuMpnW zUOVgaSRK8FfhXU_eD^(v->CiIF9dvrg1rCki^i#pW~HN<#&)fR=Cn=+$3HjG1YIGt*!_6M4HWqq>^ca zB)sAYmw(AAQtzr@j>qoJL-tw;>&zbV`c!;o{C<$xmX~T(=K?g%W})0>q0k%r`E11? z%&FA1lbP*HB#d(G^_WoWb%I8)m{6Q?m6_CRj&iHD>5%Iz#C9VxWBxjnI`#2RT-MVP zVu%ty;0HS`Vs6%r+%O)jQAyCUy!WBpC7D_pvhX4=yv%wWz%oIv3h5au2q2Zjz zkVBP6hlI^4{p=j5UA}6%H0=G9KS3DAgN0!&1<{8R9wj!6|s46xk+6 zQDJqgNtNLOl`n0^NSx$@V19A*NYF27qNnh5wKpnCsX~`!TJZXMX9vGD&_0fi=^iDK&o|9F4rzSp3#eNldd+wV3S}BjM&2Z<1!}T*Vnwf? zKi*cVG)%h`m&p9!e1^7nSfQ;XF&OFU(lYmg)`2#E{w)of=~umajF6+Kq(4HRrK+z9 zD_;B{m^|}?Jha9B7w?M9VvEv!r51DUJR_N+o~n{Q^vQ?7Q)MhMB_R<|fTb0tc|qN& zTVm;bhTX-#Zt8mkjxULLb@*MNS~GiitYQ1Cc_LOfHttT*enb8Ym0(?-ipovqrJ%<= zIP%l8k3KMEyvX8864MJOcWo^NqjMeyXz6hf&3tunh&`_`s8oe3sbpp3F(o9Dm5Bxu zgKo!8#4Gt;q93ZW3=pM!;6qFb>l(x_()=F!jcUi|#9rtm-#p?W%H>!nh>85d%&1+6 zaqHd=o&97fy0yIQ()aCxDJT$V*jKiFuD|`tBo^8apW!C$)c>{-3vvz4tbbq};OdZm zM~EO>x*t_JwYzB;^9PW>kjl=s@gOXtjTbHY;p^gC>c)KrQmxavle*MKS1$)|21FjM z#0j)t2oF!n&Q5-Do3J~k{1N?^2$WXR%ub2T$Jrlpu;CorNbq=${LY$(FO=+q?~AOO z$&?Pw!!3Zhb>}DkeiNx+FYfEo>zu8!Dacl)n0q<^jyOQL{vh^`+l(qe zrWrs)3YP*)Te}uE&4s+e07HD+Ytes@g9%V<`otkh1)8-eZJ&bG;JV!)Y>85PRvX=D zIU3B$JbY5}4a!ET1qcw&H9LyBtkQBEC;i%BukW1Oy2N^qm3$oaV{k zQr6$H*&hY808kb`Fw7|yh~0>xj1uf1>!sED&-2vjkv!qGA?(2~&~1rCQ5 zaBzR&NB(`)uO#{W9#;>p69QhE%QyS=@9VkNep<(TpH1f@g0nx;f4?a>iZ@mmi){`moIB037|#G09d^|vlmy?L$fvlqV>NYxN8g-;*b z5O4itn6x|PijWc&lmC=4<2Xz{yGYujEu|>ru*6krS+Q5<=*kZMG|O~BC1kr(+$Vg; z26{USH@JnN{=GnhET?;`JcjNkL4x~ps1CDU<`M^c3<5kV0G28ol`@s!d|0BTo`=!; znwENl*KM>>wK8uSN!?Jo$ObOF0Gny~7GShyP?nN^4Qk{1VNSiq=fPz2`oFf}pOE+shwmum6nV{oJ)Sh#uiZ{~S-g;NieKE906NHW_ZFCRcr zZn*D69M z*GeLIh{{gTv!?!YElv9}Tt19UP$@3wP#_9VB)<;HIou+&(&J^MpC!)&*x*5e)Ep+@ zHc0x=^%a}V#zt&u?ahWbbWnPH^|*uD>my5zOgjPZJ`h#qz;8+`LmROfE_gb%)FS`_W+Zl%9aZ}1%jv|}0Xm1Q~ag9DI- z$bLg!PF;4xy8qiFheOGCH^xBWYx8p|S^EK9{;9Dy`M_7?tg zjk@S>jlPRGi{JkS;`F7)v-Jef80-HID@UvIC_-y46NDp}g22`%TIp%}{Ss0DIKbHd29U{Ei25nMZ|X4G(n=u4pU5QCq-EZL97Y-D^>k zTTC8Hi0^4>iA`egFM%V_ii0pv1hsCO6Bb&Uwwy_7sN<7RBpQ~%QE9Qj8L0|BH>^yG zZQh#CC3t>_9;s-w)$lc%%Fu`EAdpOIlapIWCw|{X5E+Fk;rZVlCXgAbMHtk^tJ3^Q z9~vtnG6MaVMhGG2Q!qT!N;E;$ifrIzNB?jb@GQ_Ge8`+atG}Wz#0>LC^d8{%M%a2# z?wIhyKv}cn7a>9Ii(&uKk<{}J_q>q*Debu-zJD6{h?H#hxV%X>keehHX`vB_BAJPv z|JU#}{|ZggZv>|#Dp$;Jlu52)aQuEr^8E@W?)&XD^Uceh%W$MBvQs9&8u#1wHCs}Z zzPrY>&@mN$4IuHulFMiNebT&asRUu);`r(2=`$mlx-M!v_%ABtU(~n)P3*Ve)+XuH z(BR*o?e2%`$KT|>UII>;i7Mp+suzVS%PoFP>eGu!FEprSP7{2go$yS7u`MO zwG^y>&kNbRYn~fr(E2l6zC{aWs@N~R;JB3Df=Y}vTdi`psm%dx9FMW1hI&Zx4-f4kL?IhtvxfR3@G!iac8I&T-w;g* zu^D6T{zrx5gMH%CY3Itl%d}RR2GMW$S^$SR>)~?ki!)3x*h~yIgny{OGZd~@s z;&_ekuVD0+2*b>uh7slrTixCLbG#$kn@|z$0z0cv`86_hRQ`f@a`+~WI0Jr_pdy`3 z_+&Mb4^1)Zn^)?B*oE<~4drVOKYYNeeK|Uhvxnh8iZPqtve?2r$>`szQ)h7cEX%98 z*;?m%A^`4xPz=VKjax-|7|QMl9sS!}D%UJ>6n+vEi7QT=5aG%X{*C!^zUaLAl)ls6 z#U@r+CSkLI(QG1B!t1c~!s?9sP!$?a=@I{P@WiYhqRSuCR;1DW^dki>)|?^?hmoH) zh_DD{G{oBIJyeua@-ilI&NtG+!sHEU!~uvp1#j@E{$H2X9J!d+aw8EeRk1XvO=X$* zAE!3^;|&>^;!t>{vag6OBp7|E!2Gp4PQ>ZrpWG*UhLl}{$yPAXjc2oz9~Gj^Oaavs z`r=3h>+h^FBeSiR`X8~)pCj{+-raRFbyxr;tzck)I4O&3a0B*89f`jBHyU7p^J|~b zZLb{i3R@*v4b~NUQhWvLFP!GrMV*@ZpOcMV+8JupHQ%(!rV2uVim=)=fEW-@dDMCP zIRm(=0=7IOegId1WeBzOHL|FR0O5+68VtA?a}T@n*}ZuK9%~0C)fw3{&?0(O1pHUo zjU@p^$&Dte&QvN%>K4yLR-5{Lb}FllR4N8)Hs9Z6`xiUK?~)pQ64;=jq!!l?%tZFX zk=3|)#jc@*w)KbXzom(BGe}z1dF7sf!%7ns(b2`2WjI6mg8D$vgNlW!%Gh!$_=3vX z=&AUw;X4R!Ko8R*MXMx5rqz0L=hsah_fR_qQt9ox2T z+qP{x9XsjRwv7%uQ~lk$X3d>h^Y3|2ojO&u>a2I~{XD4Gt))?4(NIS z+H3EO{+S=@o16Y&f~+YF%sBlM(gDf%p|5y&36;85WJqg*!H0Fgn&ZH>^qG=luo5Jh z&aMhFKC8T>^~wm@2f5o=d=|5%rs#bE`E;30^pl-+o({&Uk$dozu_fYCqY%>d6k8sR zr7dOc2Lba}%fA9tRX|$4PtD-BU^e!f$hSqM=>QVrp8yCfGaTLsOc(h?qYP7SNv$?pirr)Ex%VoU`=uEmg-ZxVtk4=xg zBXva2l&c_)iRSLKzNnX)XQi5{2}nm)rZX%pConyryl2Op^V63_T`e)!u{zFdS*Ny_ z1u`}TGFQ7Ng)D6pz09FJ#Uxk~_#$~Y&%nWo-uwW$8>#c$we>)^?y^*_|O9UZ2)3ArbwwM zwc#BP8(HA??-Se0ZPZ7^(MOIUd|88e!Maqbjn*N&$w|n84$P1W%zhut4h6z{K~X|a z^r$uszI1ftoP!qpCJ$zX=wGPN+lJjXWa7Jot9O(e5cbqAr2>VSopZ|C{@sr!wW4JG zFdguR##l%G;vpI01(5v?Xsjq|`tIz(!O^H54kSkl8l2gcn2d@KuK+acEHOg;f4Bb?)~h81=@$Qz=aqQ7bM+J9C<{Q)KtY|#ah`KQcH-XxbubR8b?&=bzByTh@cb2cN2&Bo%3Xk#e9X z75Tm5K|PS?MdCUX){0C|R?R6?iV91eZ#Rw_YWyv^2{so0n9hkF5F*+~;jR8cXxHaw z7&bP(n!^NOEhS-e{7pWCDCx@GN+{0aVW;e`2-(IL5eihNg;uD+Qz|gi!_#t z{oc1@k>zN(MvhQZT2S4cyq%%k9y!#Hehy-(7J0Eq@>qG}6I7kBRkzgQ!)*ToNhfV1 zWO&nE>ngd68i%0_2R;RpZVd_{Okw--vB0{1-S?&s{1><=Va)s(WqA5xp#!9yaNzI= zP-_G^7Dh4f1GJKbhIiu{+jwBXc?&6PEgK($Aqe>0#gVYJ(qr$D8^9FdEQ}U6aB?Uz zbj0r`kaetTC==I0X7L(lb?0#~m=C@Fmr2VVll<&Mv0ZjVhJXzE9YpQdcAp$!7*sggVjY=K4JUk>@Y}Dc%}Z1GUcvNv`61* z5gr?P4P$xos*$1PY4zNC$2R+_N|RNE`M15(SXPXseTQ_{0Ozq@%F~5B=_&!mK-hl` z(9wDH24F%zOOd?-ENx$>y)NkB?%`V_yPrNGwx6%TGsxTpEc8G=2WR0Z-R8f6yFvrj z&K^vlOz76X^C(04#7^uIgzb?9Yoe&7M=5ooHkLx77jZ53DK7oAm5qn1a=aOn3|q~g zLB&7pERp$&eX-uA&iYoRZl&*Dfy?AtCp0uz4KjD~$86o}!qj#D*i{jeo+lW}=Q=T- z0B!Ear2IUVbhSZ0#QGvaI(PtjSobm%idcPo!m9Z*Wg}Wb0zFZQ1QCms-O{&L4uA+KR#qrW=n<2-kVvKRsY6uG|sF@uYLvnJZ}t znU@O~PMw+|dk3DcZu(?94srh!XQUUX>rGq|YsDljYbmCH^vrJY3E14DP7Ba*n=z|0 zfTvI74<>+m4pDQOMo4~Ot`|ma{-crwuNk?h0x!DVG1!t?u|__=Fnoao1jA>mnF}{s*Ko0Q zYSWomV$O5pF_og7Vw5}?Io@(9kjGy(F;-LoKFJxftDG&G82W^NIfHU(0xE<(!+1+K zy;5>nMbjz=X?Pm8QGmt{ekrplt2~vC8e+ou`Wbzxb!y9*`Xt9VU_Pri%UpqF4ArF3 zouGIyh&BXr2dw?>eFKSLmMT43^N`iE@&sEttj2 zG&h$H0r!mH7O`8NPQ~I^#G`XG9^I{hi>(AikQG8cX#o)99iB+;DuuttZdK}hBHtwyKQOold8l@++6ptqSU1EwhBSwO)XFPw`-VW|Y9VIe5hrQ=)DKW^$g9UNn1aWGeV$F(P1p++&DG_*(&#LYU~ z0~nJK>WJ=tAs%g65{SV3y*4t{`QN1EhNuES-&418vaI|dY!)$OL8jQ z27DoYNBu_t0+Be2*x};iLtdeZE158)fa^U?G^r9TdP;wEh7kFo;K$x9VOj6^zs>s@ zzwTTG492R$yA|{ZBuk!IXRsV?-icVJI;p$xk00j*C(35tux%DKDqElw7af|RR)#d* z7Pq`ki@E^w5iK4>t{3)r*v|6Shyz7X{R52hkMhW^!ZP2uD~}))5A6>jZdP4h_`(4W zN`Cr^NE|UiL%7fYMb3HuO;jfJlTJ|BhnxP8N^LOZ3#ek4-BT#vZhk?*&Vv4zDASiH zsesL6;E$9>3_9#a4&jrMw0E!z%wqYO*Cbzq6E6}{gwt*hCYVpMlOm09qfgVzy30%@IK#jV>|PEi`>%{k_DC$zS9 z&NG6H)Kd1!Az|&WHx+A`vH*eR+CST!| z{nnFQ*f{DLn2C3JDn6f-kUbFgf=Cq2Syt%4D_zVDRJGfFeIS*AG8+D0{@7N%foUlq z^a&`hNCX+K$^4H$_Ku>0Q?<5JlgaET+wpT}WFpJt2r@0RQ@w*hjqux~R!4Bc!(#&b zp~nd--j#QaF?;6t=J~I;KV^f*%|W-K)h}7k&GK25OIp=(S5h7x?>M`)C7OkU`(PoB?rJogN5E z-7HI^l7!k~0WY7xluQ}L)Doon*81Sdyu71-@ojCtkbC8=Eir+wNIWQl8p&YYN`+4n za~|`dPs+e&u&RZmV4Pe%l_A&i0|C-ZsyF2f;ZFyIkG$m47P7y{ccU?jm93?A>_&sJ zayne}Dr#w8u+ZKNhJ^ZuUa7JtWy4RO3eRrCi<9Qf>$6*C4EBt`pv^&DILEraR9)3; zyf?+C#|WE3Gg0yP!joUh{aOuAS*IOK%XP$_wG(e8mP?T}J3|u;EnY1Rjw&#cDVfMZ zePSbZIYE@-BaSY{z=ja%!HRIe`dB-#0~9&#V?k<+mkiju<$5y?!kids)J0`wa_fFl zLQS+m90`*0gQzhv1%%hC8v^rdjVTl7&{1&=F~zTIehP+zL(QnYZ7lrQlns^hM%&kZ zOsmnwp#EKjOS6+kXINDdiynGoYvg|OJp&_=%7WJL<}zN2@BiXyOnsYbVjKN4mFcog z=`j0GxZ@;AJdb_@&=j{#H9R=y1$tAe!b_ZwZ-kX1fR+ z(?Rnz%~d-AAJA<03p4Xyf4{K_s*n1@-pS~%NGqU~oSNk)Su>$-2%!E?mPXHNQ{cYQ zma6>YQRIgu5IH?GJZ#GN0Q72~iaH*UZJb;Mg}SaO-ax&5e>r`F$S=F`ml33FBljl6 zS+Oy#;y~RAXVOJ@`EKi}d%aUJ8k<=EEeS0=6S8G_lw%X4eL#txqu($YhvjDn5fyC> zW=q<2QDU>i7g&}A@i@v!*0x|~)1p~nzT-6*l0cWa zMgUhZ19@!aq^f}{trSbtfc+FDZot!IC8A3?^x+scP1Ulh^Lna6(P_8}fSZRywgS-w z2KI23o1)}D3vxxL80L1Y&gW@A@hh=V$EGy*tiPMpJRdQFaVIBtTJdwK+B?@Nq-4v| zul;IV(<5e4 z0w78jnM21fcOvs)9NoLAZ6cKeStaeg#5$MPJMiiYl_5s4{j1ahyQ;OHm4UY7@QsyA z^I%nDp!XG)7lKy?3dQ+6m^^Zo94yIVz!R7@60cy%UxP7-! zsPI%{TbHv6bJKe0O8;5%wsIZr}u=0Hb>B0 z(fdur*-7!+72Oho>K%&`hw1hDCdhPj1lyegpCd6dbF$IrBE1+a*&g6}gM9`4gvL-W zD>dl%U{IO&ZfuXkA@4b4rfM`elqV1ZJ>j5;f5yUI3G7!2_xL~O*LBd}>S5pL`p-_A zq>r0pm9g(i%6G%x-H6s+6MqQ+v}GeH<#B1*6&09qgLF|~rh3Mpmm%QG8IMPQ(=nv# zzf{uQDu&L`^!Lup2aKW2I)hoaGHMI;aUg`kj;{|s7O&y75Wc&u7TA>{Kr_R#;ZLlH zbHNS|&!~yloz;=zwU!M=Xk`cT54n$9 z>U{qbMN;Lw!%E%mprgb)T16~HwI|ps-w>5Lh(J7S7^R~^eOf-ek*)a=@^fHA;!!Ku zLvG|eBh%YPgSwo}wCuuq$L*&WtqN{;tVs7X-4IZ3PSok&OXW;>&YA%*v%~tc+MiX! z_R%@*+ZqOWA>XK^JGj^A>FK+9v6~xwmI5<~ zTe$S+;UPM^gxjT#&mr$ZTYYopvJ-h)0`m$lt>Pg!H~M2o*VC+(w9_vb(bR^neR9k@ zZC$25BpY-ofW9$WABrM2RUO=Kllg-c(LiUlJD=XFZ@rSVPa^{V7XN5&Yrm9|&KBCv z9OFNbEzE{m57GdiWEi9pLMf!Hc4~W|a&6p=x%ObKv(tngflw@tES(O2nMd5Bx{HlY zB)6OmzmC6j0#Mgn>1C$sqUgmjxe53E*3Y*UhC@eRkhlIf+W+wr_1=NW{yk(sLwqV{#=&fg*yE?5-AYx z^y?o%RMr*dT5>%JD$(LwqRl^uXeh!(!NsIXL8+!QaR{D-^KHT|x050PMN5Ee8<*0u zI~fsK(-I*c8i8Ur)^6W*T5Xf@i#${4CrmbhkMCE3Y6QV$5x(PvCAm}!o^T}jUlfpM z^;$!MkyC!PIQhf2w;~ei;QyZzfC;Hx(JO;ZFQroHQ(w+;0$9n39N(JgMhkw_IiD)a zpcUsINTSt7G(GOY`Tr9F_^4<7v1pAgy(`X7^E5&s;()=*3AmMzKG5Oeu2g{rmT}6^ zC>qmq9w-h2bPM##8~#$+>42Hih0Q+DlYKDQgPW&PlZ{?Whk)o$WWavle{}ssdZyjt zY~91fLP-xn?QJrWxVzTBtp(P{`>nV}as|{1G*$meoK)@iAeedQxc6dB7}bHQe%kVQ z+i1{hHKuFT(;si_^UYeB{E}U&0o5>j@%iz9{}5k|P>M8ziHEU&2JgO6ZhcyU06`P4 z{@Tq-I={M{SCucYi}epqv2&MFclYkNps|GiXtot_Aax4&qdXl%%Kjw_WU(eP;C|S| zU54RX3WTA#1q6nh>0YznMz>kPxDVz6v>dYAs(9U%2rVOp3o?OnejU#n&aoD}j{b5X zOva;&fkjnIzmDv4c_jpZWh4eO4!SMt1>#h799*Z)!y=E-f&ZfC8N%tTFoL@hF6SS< z16$poF5G80)iCL;Tf75X=kjk*n*j(jwyu;}ceL^N7}mddK0?*r{iVa44f_)0x^L|% z)9z^h0W_4t{!7juW@t2~VC^k)5gK;};r-|;Kt-@W^>MS#Y8+Q;2)g4@*)5rZW8iyu zrtJ-^I&C^?Z`{YT4`l)cbea^#)K<)UhEUgfBdg588Y@vflnCczNZdTcRIMalosLc@ z=#$dQ88`+j+NCVLe*b0^#3Bl8{F=;VXiyzPMJk(mE5c6#{=uM( z;`!o$KftnBE~^2N-#Udawy?=vYI@HVwl@}xX)l!SKh&szf7B?5NN6j3I;O3OVUL=1 zAWN#|A4_To%nzT=E;R-Fu)xyj$kF62qB}(fr$e9ihBxlT=`khvv2s+Vw{l&{Q1g^s z0@l@!mMhIIXC0h9*R(`%&#|+6(*b;>*iK2Omr5;K4L(iZzwSTPFqN+bt+pe@9}CRf zNoz_ASXM|QlvrJ9R%(2x3Qe9(Da=~*QU{p1E=OtUPDXM2(dT*ipo|)3;@R! zd|q%{+-V!kK6u1Me1iN^YVf#Ncl;YJEII!x`8sU%Fhl%#P9TL!oT@BX8D5T!%}zU% z6PqPHoNJwZ^Dz>fMdztUokTpoNP&6Lqsf(zOl7_g2qhV;Ea2!;Mlh1)QzjjSzeggI zy0gFf(WasCHe>DoEoccnZI<$MlFg&tD(r@?b zk++hG-N>4}h3db}M$4;yPFG*`YF|$8$PX37ODM!DRjRTeWp>^(kGzAzLEQC`rI48K z0o~^xW2Ml_qQS}m8Z4+-Wo2GBIFR7tK?U{0C8pdb`QY$NC8jj=fR^JQ(e$|V>5?74 z#1N40(Xwc@N(=(erJItkuv0QiL?MknpIZJZ^fx2NKB*Cqmou`;to7EvXU1gGw|cWR z7S)E@X*>&yL;?IO2(2x!v$hmc&Z-z`WikZHDyxmvbXr zenV6YT&&z@X~~EJ%$iKZCg6!nBzRp-M@T?C*hZ|phWR5jT>iasa-{6M?uTjf`1c(i z;OkvjUY!$KBNDaxr0~VdeL5VQbcR1JsRp9{81KE+7LzUsDXE!LCIvxM=zrcsi2lgT zegDJ2GZQ)^*pU3XtT?78l~P&qOFKu?mpgvSmU#Qz(i5Z~&POiENeu#wB?amD6)Noi z@bCP0s#Yt{__gOLAw-sqK3(*N#6F*`DXGR^&O*vSdyI}YflvSK+0|M-w;!huKhjtm zDNynw48z8a1FV1X`x$gEH4QbrDF;xgkpjInOwXf_3A_+kmGWA&*q#4{p|9P#a)aJ7 zaC>CK=K3Ev`uR91$=)V5{AnKI+pGVtR-gHz&!$E6r{#MYPIT3M#zBF4%L_@dZ!A!< zPmDV(45NGdPeQ|&ryZip;Gc~E(PZ<@>-0aZtlDy${?At&6pyaJKUW;*87<%6aLzDK zHELPuuNAY#a!r=E0}{iR=-9f(y?5XizDmACi`bFz3V}wBw~&kTOG|)*~F&gEq(G<{Ob0Oa2P`6>MHj89OrZU0lw&01H#@=fM9|*BCDR zx4PyH9;mL##C$H=$GH<9q;8;;rg5+oipahfakxug=&t{k6h?;b-HYQ^h>Fp$yDub9 zWC;?9l>#YYdiQwO1CQqCYlvs7#FECy_o=7kF%Ofzh217$P5K{!4Y^xpzYGUPRv^Qw zT<~=oxeC{Go_cCm;0__l8|=vM=NXjZemZ@Hu-m{D7l%Ejz*!QS5L5}gRY6YpUxEv6 zrcxAdzv<)U#d2^bUoxU|8TF{K#B@pn2hGIxJW$G@wu(Z`kC=zr{PkR#y)p2*Yo`%a!C~i72&p_x6YklGwQlHk&FGSj^1f z6=%eYjs9uG)%mscqnGaRifzr~)z6H@Wq*1+usm6_DDmtfYc?#L^V{a7K*0{_Tfvyd zH+u9nFAkF(8+?%HX}9F}A-julhU!6j;W@I;rG?Eu$9zbXR*RG#@N!rPbsp&Kf7DyG-R;0&hn{nrzzrPKG!4rgd155;H7 z3&fI!@)>AL`zS+n$n?!9EsRXG>{^^?SWV`^B2WhOumrVh1#cq;e7P+{v{?c4wcUw( zFOcoT$eOM$t*rh%<(jW>Y0B5}oUId(2e}KE6Z5(C@38k4i<0{iKq^AhYa0=4nC&YJ z3{rsaA*FCy+$!=a3(;xib}C0pZ6!$?i-0QZdAY7)2z=Ilt_7ah&vzyhigu!{NOTk( zu<>!V4|t!#pZmBzrE$BncV@qz{M>95>TzqwuF9JS7s)9%$r}?Csw*f;SqPHAuydBh zFI-HBq}u*MGzZA!3$B?!`3!CAVP&I(n5`zfvPg=&471&ItkcIAn0P{7ds=UnU>{)G*%XGsjAb800WcH z7kfQi_{u};p9NLR`15`eA7k6Vcp;Rga_5dD&Kjo^wG8uPIaMJ+Z@vZ()PO`WMyzU$ zk9@o!qWxFQK_+;JHf9I7xb~{}@*skGZ5bl+79K1L5m?L+Hrns`*8+jT!Z{rFLv$8a zw$(K*jXM+5e622!LXmu(b{&RP>)#09;LakXD{8^w_6(d5JUsgg4K4i*)C3|tjW92+ zwnAhy6ssx_u(xO-P#D25!DiBQrZv8P2Ov^YEi9GanAVE-pSMRUNO2WlCqcrl7=pAG zzNq0D#r+I2=wKEw5Xtyj&s0Y> zRjn$^w=dXO7dlsr)R!I))edIShedS???E1@-Kevptfw7%|A--|G9gWnWQ-evE}%}o z?jwvRF(AgjgSq(7mVkmyS@TtHRTf{=sS2`RohCp|f(zidBc_yo)tRG?;3r8tDh=2) z=4ZeIugerRDh%AgRKC?~G&HIUC1p!a6JG3B`&-E_7Z!2vsV1-6YjEMS4F1AI` zsS{SUGnS7bwaz2|Zzwk|XSYFO#2xc3Zr#;eAHxvp*oc1=9%mGqi*M){l@B!_2d zJzW?by!3efBh-DC0KcYRgC+(qb8%ldRd^a=P(-A+ntZ~SbY5ggLB{alFS6d6*`^vn zL{apVms<14K2kke6L_j=u>su2qd|`AifOO4mY}$*2lqd!0@(u4!+K+?Q7WD^xS7=5 zZsH+-cD@3zC!^{V0qI2z_KRppD+x^wxS@2OC)sbk<$n4zR9Ph=U(C(=GHR!B{kk!^ z-Nvl6e$*qgV*NdI)a^|)npKc~2&b$tq)a=bUaQ7$e+@`$7dpCDVrk6|$G8MH=gZKB zHwEtLxD7aQ-@Va0+e`!iYp%8##cc=Z9bqHu3L?;a)Z`1lRa!z(w5QR^KMtOY~-%_N{=vI9mQ?Rcu72&(B4dJT(eC zqeSv5^<*M^E$8)s*bSvi0w#ol{u1EdqtWlD{PT{o(JVs*|G>IfjhiL6VWbDM2dY`d z8u-S#&{=_>A?j3#Q{;+aN^x=>Hpum3REa|Buo3)d+6A^dM?hZ0z28sezh#17Z#^b7 zyqFV*Ecxk;U@712O+_?j(P`jM2kB_!oBNbOqWLOxsBKd7Vd_cWzh%s#Jwj*(UNAo` z_`7N3ds$*W;VLY50N&MPnR>jrX1Nk`N0J-gSe9>uMw9uc&mPEFoFub(1oEP-anpOR z`FE+tWyDXnqI2%OFouV*i&Q#aEhXpwsKiteX3VlYLhyuM#1A!@C1cv2O`bcV)&#TU zBZB@|C@uThuTaeDShUJGIv@1p(HU6Kl!Q%Q*Sn@Q92c0vN0DqML5YFF9{{#b@w2;4 zbpH1s92Qokt5C_hq!0tiE}@W1s8rjs0YZROzKi|}C9n7vfuIUf&~?W>=hc4VQy!*i z!?u&d_j3k;N=P1Tz;%BP< zXSCL^dfj)Jq#5=(kyW-fN+tg@RV{xI^cwxg!J_$4o1;n>n!yCa8$(9pKm(WE{N2Wf zFrzIVBtm1t6hUh`U7JZlQyCGu{VJ%4p$1!>P^|e_N%B_A=4A@hrjWvvL{ruxz%s+? zEZ8~=?r>}3a;vprE1+3%Ho6pR^!p+K?R=~>Ln~%WYYAqPNpVV{Dd#AFlk`!(!BsZ4 zp{Bfrp*Nj@vj&5sXndprc347>nb#<18k?yDpfkUo>fj8eBYtz3kl{U>7(M^WTJQpL zXYvs1MQo+Dogh-G)I_}@suWgT1p5Syz?tP~?RTCqP^#2h9y)ElKNpMuF_Jkg@GG>& zW=&!uQ;wl1lcT9a0zDB0$C?wgBdoQRf|$mJ$0f#cJ-YOp7a=+iDvm8D^lN5o>k)9l zr1V{H!ITwz?IJxs@)0sga;3vJE5LhNV}mu`)@^ofOoN{-z9$wo1SXs*D_|4+-*Jpa z)|BC=387~mN-u@o*GcxoU&G{+J;b!x)yG(B9n04TT+Tr z9LSsHsPY1R!cgv0AEk>p@tq*VYLX$K4%O?i$e&12;O6lQYx(}`C0%JE>s#sgU(m9( z{h~$%)C7m3sn8w$nZLLZi*Pyim(3`$O=?IKJei&IYl{U;X z?130iq(3B#MvpQ|qmh{4(qy2T%_?bEN4_oaaIt6%4{ucx8RXceKn8~e(1O}EBSxSW33PXe=BoGJ6>v_%ut-|v|G^y2v|*p;7R z7+@tFW1*g48DQaT6+)pflPUz|JvjOiFg; z@Gq_QclZDLcbpn{+#G{dn$`UJ*qugFbR$dp2P{s^(G|w)t7%7-%2*66#by2+T9dY_ zwBchc<_|x#F9S@76Jd7vBKLrxKcUf9JdX6H# z3`Oz56>&iiYE#)eI$wY<$In3kZ|4#u84NF&OaD_H1rqwRkljkx>?D2HX7H)b$)*QW z^yCLnko#p8kktFP&B@`JO6oTw54PD(A=}#_mmXTdng@EO?bWPymby+cKjCombe8?T z7r^8xoo1${AveNBD>#q%tv|Xy&{4q2N^4$_tr%H{{+=dFWXlsAB?PReA3Kn0(+_sY zF|=0fM_GldG`HDm+DUD14HoiZhPcwUU@|eE$*(JmYcD6c6)Yi#M?1?D53Bhp2H%dkp~z)XqIluf2(;!!I60?N{DH4PFcdS#ui3*azbI5Tt(H-c3lSKpE~47r@!@58za<0?4>g~ z80k?Y{eiM$>l}t79)d6oxnb9j84nDun2uTjo$L(pv6X1RIkEA$b2qX*A96n68gvFrMl5+khEHUt_RAhcgkvrsF3B_S)=>d{&R6F6P7 zumG}sHeo00g*b?utAIE6jwV4v3ED4pY~C8Sj2rdXNeO`>8UPZ=-%9`K`YG8X>!_Zt zMyc>4Zp+fG#1XnuBff*3LtD*=$~W;d~$Dlm1UHep~a}9bGx}%C`L%)zNT_UdJR!#=&)1Z95?@R8HL++f-r5A*b9HrQ- zNkMk63#(cwUT0ZDc4`$pZZ5^>!Twm<#~2H*($h>*C|+edzKux7Wr8A77E5LT{rj zo*9tD00XUJ+JaiBl~d2AD-%2>N&NH01fMn&!R)z|`sa zf*ej&WP^#sb)G@UU!y}PAm3v*x#eGA8WH8v$b^d(w7x1M3i5|dO}B<>EsPbg4_<%& z31fQ%LWbQvezn;Y3jI)mBtYl&Du=BqxFQp{Yhy>1+X4}mD3O~oErzTr`zeDZCB@?u(K0YPNVAcJS;2MUG7Q1bA*ODqMBK=pFX$}Qw? z|6ZKxajw-vozyJ9tnoUIFeTSF4-Wk%(;`{~{Uh@p9GK=Ff}k0NkKlud;et5;!0s8O z3vg(~XS9#{H8=CeO*I6f+P)eaHekXPomG=4b4pY~0RVMh-!t7xi>FUv06>gStQWF= zhizhDvYW2pc4MV}z$j+gr$Tvlk<(S|aissC)<7KqBc*6%R^ZJ%xrLqFymSBP6+UgA; zGp^w1d8hc_xiZT?{A(z(A)qs@U{z2-E0``Q2e44&f?=;9gDcDZ7qh(x%OX=b)Snkc z=^D%BTXUZuc|R+#7hC7SwQje#5H(zdMN@gP&Gb(9 zc3&C|+C_4a2#f3XkTfUpcJ z;k7@yfVC?%S4daTPFMKV8H9`5BZ!I4qG3KB$uJyJxz9}uuI@sFw2N9InQIBK&u^;j zA&dz!vw=358J$Z>Nb+i)0nNqa1+3=x+7ZOaR*COR?4Toyn9pZ*(%}!!fU?eeF#E-HfUv>_8k9ay`K#HqZ??5=J0-cRHf!MU%PjH$v^_`ZL9_j~L94UTZ^rM}O%E;odpA?BQb$ z&Y)C-gGUL+qx3|4v3f2ECtD_wHYH9G=1-v(n6)hyFIdNQtWJes{fkTtm>=mqIAk!T z9ObF`dBFsHh|SY59al~w_aPucfw}EHKqXC^t1z^PUJ-MSR;Vu9qRlta`%oNW(Woi? zXyIb5pnUK`!H(k@*2lyG-FKYClkxxrSdPLa;$kgB5Gfh>p~dP#7m02a`o-T3_vr-r za$0v5I%pfXG?~eEXG#%G&IroP8w|B(RuOis@il*eTruKn zD>U0+l_;iI3atz@71*wU3^BoSg84p)KH?W32i~a8RSmVuE=^K&Y&DPyo`h{uOlJt+ z7KzP?Mt;Ui+3uV7rwY~SD3eUx6*3odO7~L4=u6$s_bkh|{T9O4Pt<;?P+V@M2b9Pr z4A4;*m7?%*edFAkfb^+{Z8|QS(8PSbkJL~ie|KD_^ltGyP+%(v^Dm&3tIMOcvXQA) zTE>v-&*n(wwgb1OEXH77C69PfDygxdaZh9V0Wmw`bZOH!9efEEnguZNt88vz(73q| z*aum+r_8b8v!=wrlatWK;EvG&g(J#_7HmMw0Ouco1zFw8YLM5r)S@Bq-S_V)b3A z$gXpT;05B(qk3+=EzJ3wZ<_CvX&g4S40$P3duL=mT_ZDN$W*^1;;5!h(i`?n zU`xUn(9?jx0^st^&ilLfh>bO0K_878BLbHz-K-*JjU_ef;y$Wp}%& zw)r0UeJe7FP6sb@Duvk*F_j=Wp-|<6BrWs@%L7fwC!i$SlEEQj^#x8Oh!FI|BX*aK zC7hO@v5MELGh!-_+6Z&G{Y?&d4jQNR+G@d!{{|}H2{P5yB3*yA{VK%$Ww@AjLG6p? z$7#lG^&#obDGP@Rk3T% zf)~Ycx|=>N2haD>)h_zqT4N>Q{v=_3#7VwbvVAaA$p~+qcUWNX@!vg`E=KlpmE9=e zVi=9RiSe+yqOQVe*jGRi`#Jnu=gsO>sAWE2zQ!5^ltPj7@~!T`ztOjvMd(Qd>{rl- z`b#w0+fa~ooeQe|@>p6%ykNWZtLQJnZIKnn)0fCHE}F<^;kFjxU)upium!<%+Hw;_ zcpK2BO~;5+naCL6OOegoX5hJ;OoX85aL{V`_N&33%RAYjy=PVA2l>QxEPqFW8~ZV- z@pU2HI8_`-XYW!%G=sX=cPeG6$+QDl_fyiEXkySo>vjSV!E8|7J2`M;;YofHPrQ_* z)h};VJaPbPdN0Z~9onc)C@vU(kTnlU-5d1el8Z=TRIj>~r&63YI&L|_rKi9@Vq}g= zY5h|M97Qf?IR;ek*;)O|kZtI0tL0QhLPtl~Q$?D)zHGbWz0bph?E!!H z?km;(1Mu@{oF0Sd8jRIGP$jrf&DOJa->2nb1RL}184BDA{M}Co#+$b6;^O=_RLx+g%nKI#h4kK|4XUE5XNcT@J zI2Sy8O3cJLsZh~RVYjA>gzm=}Ep7o1*(`J2G3 zO**4B+y4x+NIaS}CxnFB`p61wqkgO&`B21k2!F5dP`Yd}A6KDHufO=vrJ zKcxe)W0)nOmcfkhe)&-)45Dn|2M(5xH{=V^`jjkhh$>9cY*HCpIdlRl~ z@RdK)YI=fCR_z+*vih2C@l*5lkze)G4v(%R0Z|TGmh~4hZ;|+E$8F9G9V_is{tRr9 z4_%BcK}+QGG?)S)2FiQZ5uzl5fIFr_*YqrA1eo%n>Q^uZ6lR+ruC2=Ksc>y4V#Mtv_a5I`8)czoGQ-esyq403E;G1R;|8S zw3a|h0*%U{|M_SpY<)#x(yowGWjQUW{*zIU*y_h@1akqupfV0ix0$Y!o`=7$LYs@N9Pz)L99+>$$xC-UTv^%yMjItFjM-65KVM$| z?U9To0W*x9*k;}myKCY%`_TnH&%KxGUTp9bhuBXu4y8ptrqq-cLsZoQ#-{3+{`Hlu zx*(9)F18!i?<;ZC>I^WQMXf5XY+Ok*t&;p3eBXH@t)_KihmB0pUz@~~7{SG>g1c%q zZ5{hB!GI$Qx2#5BGYp4ms7QGW>FZ~QO|cKOD(}i<1~G*_q1^0~v-DRYgwGMD#@{}O z^K&7_SRS@FRr1X&AFAypY?OvvmE8bMi04eF-p(y)jJU>=$=x<`V zA?9aVVpP@g6`4X}jsz_LBKO$^9cFV+ta8(!pt?>Mi)3eHh}Y}*{c)UxAY5aA#gq(i zh`(0HS>oQL-v{^T*^gpOEr80TNnbQ{LI|qDP2>B&n0m+P$l7QNH>lXQt&Z(PPL`Yp!R`MHaj@&?QE)n_BCQKP{Qz zkm|}gjE>`i_eLmHwa+q8#8=?6`$wbY8x%`{zTQlD{hx3}@>Q>TYQL>}D++;+RMQyA zaqb@@ZgDAW1N7;-Sd>gN<26D$jpKH=U;|K;Dxa&n?E+Q)tS{fKe?wCs!!{&A4Fzcn&ii|YWU zEM!sh;6|M16Roy;FhZZDynyn<$wuZch;#d0zUz6^xf9N_XDqMGjwvhc(u0;6FN{}4 zqAWl2YCXMwub+F+2^AM_rr`Gkh}r-#vNpKDn?0T^@p=gsSTtclk*Ase0urD`v3IMB zHlf03s1q9Da&8)7_?5d9zS*~p4#jm6CtS{vr(4RAXR^siOosIJp-9u8SVz#%do*29 z-Uq4fHI9ZrF+XuMC5qK>kF;JXrWb4}S)rP;V|jFJN`oQ2I51Kjh$@8`hY{o=ds(r{5r8pvk`9NEu_%g1 zV}V>W-@8P%N1{8N&aj=QlAXW7&Rt|5{6s+?dxx|!e~def5#*cW-sDQ(mvW_1eyXs^9GPH9|+wS?;A{{Sa zPL&gMq;{~-dK#u77jc1!!TK6;nbfnq^3TIO7s$qM5rWnc9!3$dlnZ*pFp)e&XN6yM z+x0i9Ld3?9RHtq{uX-NV|5qU)CmXdM403+dz(_@q%_RNT5ss`D@@8#n%VM9NZMbf( zuO~@qi|lH)KNsg%YD_V~L(4tt;yiX_(k$d4$(a@yX%MmA0({J1h?t2)??Eq6`;-4u zAMVw@Bxl^S=9Yh1@I+4z<4dQZkeqm@W|Wrc&r!l{vA;A3!*F2cAykn1nykJzK>*Ckpm9 z3TBdaTrixGu_kU#FcM6oM=AqUWX)F{&Qj(Aj*4J@v-wDiylj@*D}pX;rqiUfoUES| zTPKC{b-d&6;PjVka5}c=t_Zj-;vLbWn1o|BPZ~vHv@TB~A^}2wq zylTt6L`!AaqWxPrmcnj~lq$=6UZpk!xQKLKkm348V=q+Lj{}#QuXb;iv7@$CU;Dh3 z=0|5zXKqK}^NXe@Uu_1QajoBKeX3nHEHq@`k5Jn*LByYlp!sg<$z7y^3K!vm zX(4*6hYf|=2cSk0 z#COl9rGKTOb2aR2r+CN^lOA)U8E3x0%%#^%Ak@^zK!{o=pdoM9u9J;awnt>=-}C|?vy1TebvJhR zHq42t;R7>elset${oIbYiT%=|?9ai&?HE9zk!MY!_8^RMRBI&hJ)DM?s-qH)@AW0r` z72gapOQk4|VC-E?%dfPIOwdKn=3qVM;0aThrsu$51kfpf+7O26pt!5J4wdYlCI56D z($!#xVk}rR8`t_tgg6U6s;keD?KON}Z$p5X+gQGMAJ8}ox*7%}y+}k*Q`hJ6$HCH^G+v$SI|E^B#GV*ukBnOzcz#A-F z?O?}@0<9~yOZGBI6^g+c1eCDdX*Aamxyh=5c6uJ~c~Z`}96hy1Q4W-wrJV8x|T_Of}%**oB9)LIVLh%h_q(WdXcLSv9GCT9Wa;*l`P!t!}6e?F71 z(e#fCGuK1Taw;C4(4#z;!#YM8YLj^uOUGX+$6ono$-x9gpG@ja5=~b-^5kkf1)=)$ zop3j38-6 zeO?wi75hCk)1?y`6SLyNHB97duKyR59zA21^t`65fbw6w*HIp12|_E~pSzKI)1{w` zR+qC48Wy6!PJ54RHPPM-S?ibv$KR5R{3dWT)wdi6CgGH`&zPB1=Ye_Pjs_`sw`7KtUMRe$L70hAI1r3rT?H}f8=>4bpT~%uHE6V$YVDWwoJIO4Q#NyLixVMKZAV7??o}P^tyhp7kbTV;z~Ly>v2LbGbGm|=@ugc z_+9CSb|KZ5->lqY;^kwD+=#!GyhdaZo%h)x+nOL=%S5`xDpv{~aI1yaXU>og-D?Yn zH}kkTDU5%erchXfT%cjv>hW0)Wxa|9t-Y(avKEW3omxT9SDVjBuE>jgHiUPIPuOPS zIeXvb%6X3kc*-2f)F73i z<)UK8+wsm92-Uq$oJ|g%pr__I){s!5F}Wl z4b!2nN2dD)5KqEkDv6asY{sZ~q=3X=)k6vyv*B?t5sd^b zJS+1t(5|=A|K>n^oxq1o*N@W^kHQTZU1_WoU^`ghd)gi7<9-*YkuLWd6HUz|n#g(z zPGf84KksR!KV?shg&^%wk*@`OFAGr6QL~T7nT5Wp+zt>QXgOEO_n7E1Iw76aj%}EO z4@f819bt_{;s2i+vZlI`8gW8b8qj#6vKGvWaCi-Ut{|)PB5WlrggEg~Jt^>(>EPh1~rKaF^wfG>wis$~_Jds!e3 zS3ogo_j)2*XhYXChd=+RL~O#L4_xiagv#>uehD}*I7 z;>dkT$wdiVq{y`W;w;A&3tdfG2_Uo&rd7f_>=cARetK|i3 zA}|y|gH};wn4P$y!=j4*#K1Aip;P~=X+TR}|NK~Wzj&eG>|hL^8lBE4nV|laNDlCs zTEAa-dP^P|G3X>h7T(FQAVd%u9>QY~;x(H8l~|?=z+Qba$3etKIHo+6t4_XhWHuH9 zhMtlP5*@+wDU`RcEjv?3qG3GgUuLl{NDipn_LvSdE+`U2PP*sZSplgk2Tj|sga&8w z_q}%w@5VG~C}O?6(V8;i zVg{~SO_o0sEyugd>V0XMfns}eDNc;$J8GTHx6r~3Q;YfSlul2;{C^AsDg9igSqX;Y zJgOI!73hVaX*>1i8Yr?e*kzBpESZ)SSiX4#FT-A2WFV^qYRd|CishCI9U5^5g4kFH z!v>Luhbxw`DZeQ2kuBG>~FY zpg3SAqvJ_!DO^ubazkFZ9AD3jA|JToR!&93qMh{;^=Na2AZ7!!1u?KmubY^TQs=^l z))+)Z%dM5W8Jwsg1oR-=%91ZsZvA!O5ZN9@eG8h%lIFX7v>{)Dj`X6ZO|@J~6Dw*J z8)y|vgAi}Y0s%yu41*jWesbwu3>M@3x#x{6pKA4M`^PJw1%$`Tem4H27&--PuJo(J z9bMsIga)8P05}vlZ0^n-=;TG0V#OtZ=%G72AHOb5Olu6Y<)jb-HZ7x+MQN$%t$L#q z`8~m^pdG$&GedMnhnp=ns8 zIS(x;?wNb~IM_=YRNxnCAba*10ec;F;V7vd(3%)QvJ+RwQT(Z-D)k1V6=$Tn|v_`jV4!4oGoX)<{?Gr*DE!6tk8 zZ;wb20ATlnxr8S}YaPHJybuCL;l_Vb`i^?biE4mFEWu_00GSs|v2Qq;NOndw3A*H` zi#La(qB1NxIO0k=OQXL5l}!{fA6w$EZr`vj9PKmi3Bsiu=U`b3HV#bTAZl4gV}68CHkTjN&~ zRgcJZ!*O82uq&bA*;hd{b2Dm)agfnoeQm<1cd$ForU(SGAy|H&J8sR8NpFesYSy1( zCw-+3y5*@(8X7|TiAfK&j!NxMkUa%ze+@xwZ*D8SQ;R%{2bymZ8=u=Q+_c$Xn|qMR z5MYk|B|_r>mti^ddYtCMn?MG*+4=n$$HT^5PBY=JBqQX}al@5gx68?YFwi2y;)QN| zn8uXsmg5#$$ipzg$3#cf{9T}Izz3CDM51tO&TG*Gr9Nh48aD_?H&i0y1y)@nXH`XQ zEC>fbx8sXowRwyw0SIJ)dAls<(@kBK0zImy9gyIyf4xiz5Z z>aS5;xVe2mXGS;TtWJ`L?r_gkQ=X>ob{riKWc&`&2)L~?^M253$gQXh*|5&=7x?3~ zwM&e1uLqOTF~h{qHbE6zixec;5Q=snGNyEoJc&BeM)&J6JoElc5Ga<|uF-lc5VQX*_qpZb zg~=tl1Wo@<9*uebCD8wXJn8DTP}*ytxkvu;YpR@kf{PF4!C2&N+5V7!vj76vLQsLrfJ)Q)uZ1A>2WT#|Qv{nB zgQy7Uu1@A0AH$GpT+`r|rC|!v=I$ARfZ4a74as{m-!ygyoJ~7p6@6XkWcdP7!_`n{ z$L4g~7jJC7T-`rd=GwsqFULO$)_>cLakj7~j3azXvUFxn+ace3DBLDZp&SkVu=85* zdjD0ss)Z%|a?F`B{f*J1oo8&lw?36L%f?nUqKqQTp0U+9S4c6Mu#7@VbX!$N(TjLB z=nb;PjqAqE!Hv%Db8K{Vy$7FBmQ*Z$pUb#LZX~GbcHnbZQE*xD` z0s1R=&8yFQMv0vuC8n)`*-2$S*KKCyKBfBkrE#dCqN*E-HXhgy5Dw%65+1GoMwi{a zkJnwNYwvTPjjdR3u2B@oAhfyGltK!8+kRil{?Ams^@n-A_+0j|@sF>8q~DB;b1RWz zU-K&3fgOv>m-egPy;&bVomNDwBT9I1uu7#To5fxyMa{*0+VwDuf`_#(2A<#Rk4@+V z6<{E0PD^kB49vebKI0gfRZKtY3L5qPwm^h7Yjqt3iKrs?j7>N|+q~>7NLeVofT$@i zS${P9%s9Q-s{oG#mSh4Li2eZ{<4_nV%mK+s52%LLkW_skj~T+MD!{$IOc=i?ZH4o9 z&@}55f3aT}bQ*T=F;xAl*uOukG4FmjBM2^k3B|A{a>szq-z8#2K;Zjsko=|+DLAKEM z?0_sl1lkI)AF>Z-U~1Xv#z-qeJ^|`CWOKsu8jdz8MP>bpQRH*b>@Pt?s8{Ooe43Xw z;lKxzwyRvrMD?d4;~qpUamo6%;I+T`^lKp7M3t7!ZdzD2SeEaz>>A1z!aB>`pNBDYXf&2ea!cLh^Sj2b zX6*|v!A>U8rg#@bzUQ@nDYjvfvEVL=x0|2ZtI4N?X(v zF)2XxI2S#L+t=Kuk7la3j*TrEa`7nXJ)G(yymYmlu{ILpTfP;TEV@5|V&WPHsG!3| zRlh! z@|NunAMilo>;VOL$3IZJ!U_bRC-O62n)SLy1^g9ZsSp=;tzMpSH64wmOyKuB@=51- z-l_}JKigzRiIo6NCgNlDp$GFc6w6bOhmOk47SxQy%l(h8%dx`EjMRjz>)mh#4H)ZR z&~tF-L~huDw)=DF8V?vB2(1fAFJU2?;N2Q^i)$AVq^LU~)#P%yUlCn33F!QFu_sB_ z9r9!$>X!G0;vy;Kq|{QQEGUdG<&eyqrdG&CK|Ji=F9e42IjKeslOAlbmwv&?Zig;$ zVq1-eGd>hUSD$)jBsxG**F0%x$0?S%VD$(qz|ij4=tg($W+g!-ZabC{qeGf`=E4lSA9r9NR&5?o&Ltq%|8 zS@L%#69p^kI?pfen{kL?M@f z)#3;Uhr2hv1^7jsgwZ=Ts9zK>cy$h{*I)nSsVqrU;Wb}Wwb0{e^5Cdt&HNVhuXHM>L?#rlgsBJ3mk~is2Pm~IpiBFMDfPi<2JCvDd4ANU(tT4UfqPj_Wg=Q$whPvV>FBp zkFZw1`x)g;cnO61*yt}3KVmd<*;p+Od|<*Cuwjvz>u=9ePzm$P2aAK^++=xBg)Z-v{Ib~Q>Hp879)Q8`d^$3LsyZAAMFpx zQk^*jcatpMpU4NURKq`gpcz1m(O~0oqG>WVGF&rB)+ctp#0p`r21|{XO4o=7{5QOCZ|tKRQB;kLTU|i+H!%NA~xY4iM2qC4C2NzL4MseS5mzl?!#} zjTE|T)|JdJExS8?@*8ttLtvBq7q9zjtS6J0)D>N~{{V z531mUAFEl1$V?Q0mS9mf*{P=26=2`p`Q}<>37F4H)ijIF0 zY$kxLgi{1k_rz*gp(D!S)U#cj)ZF%0=_nkwkfmgp9mZh)x3opX{%sm~O&ah{G%!~O zPCNayLzW`c0xA^-^ZMs57+qJ)gy(@jcZJ&{IviUMLoA!H2_m}J{*4+yq0krOThNsr(kx3V& z2+A$4OruSq5VCM)$PXnjDr%e}^SOX^xOu`fuj*hafw=Af81uV++(rQ1*14(FuddIt zFx&)pTd^|R2;O0WF(^z$=Q8gjM71|gkZHyA_GZ+DuBuH1l(|E|qQD}EGIH9^NqCj6 zHgg53v3fmOLevpnFp6xX0a&3ii<|9Xne8giSiDY(zJtn_OE!!cIDApzoU1KGxotU* zbb^nDzOd4Vvuh2EBRG7qvD1GiJb@=f2$K?3-bAx2wO2vTD9|Q^8*F41wU4obxh2{_9c8Q+fT4uUAk)^Q(94aVHt5*7L=P_tG{9;Ll5136fsDiBp)sL|1$@G7T7ww7c@rw9WM&p8V+e>PQ z4wENYkRsV5J>(US3{ZH>0=!10rBJ)F~n|whF=d9a-QGX4Yav&C51` zRq~yiisjX;91Fx65AvY&{{WO|+QQS}!i+=~W>uTg{HO9knaBKGJ z&PR9P1hs#wf~{U1fxt_y+Nm)V-$L%y#Zvh}c;73IsKri3OZ7%5>`pG{3Eje(acy;0 z*9tS+KJ@~O{WduVdZYF(rt%y~kpPxW*dR)5p2_Kkp;Ws5S=Qm$T8#(h3i;e92R3j657)Td6xY2s)kZkg6sKuegEel)sT~$ zv4uKLQzh$vjqOqYjO}D-df=qBS%rU~RX8$C`7l7Yz;nBs0%znF3)@I;UFnRV+bW2AOQM)Bl!}|r%c@GCmzhkU>tXphD}2>@B@ssPCwi_Tj~3lz2BD$}59;dlkq3b0H_6W-6{ zP57xT%otLEQ@{+W?pviVWBwwvE8jqA#j5M>yV+#&%TcC%wDv?l#Q0tnsL-!@>TciF ztOr+@PrtP_#s|Gue>OmL(EeT4RfkOP&dc;(ey=w`O`3a`x8l-5K>1~T94Qs_AS~o= zixU!%cl(-{OYe9#86V@Efpz@nhkQ-a7QZg$txeb~#_F4pI|Gi%b&%e1bp&=e(nQ_Q z?TK$vTf()`xAV}R&iK;}nKpe$J~)FN)7f)9RiLwsOx9&9aPTg`@1X+Sme@#Aule?c z;jdSK8(dR!&}^!Mcf_3~EaB(4(j3kZ1Ro*;zBy=tObzz%@M!#k0#O-?jIQf!MNe%e z3^Zb|b=pRG9AFy4qi?cXBU2|7JWyRgO>YcqNuKeHDlb!XR8~0@!f--CinC>x(BJh* zp?V7ZIQ4xWm2a$PQLu1H{tHP-yBV9eFxjkwFCRlsWI9@o#XY6LJQJNRDmTik2<;9? zc6bbGrGk6Sd^y1DZ79m$biQp?sMMmG13v?B9#4ob+KDGzQkT9zz)}c^WMI`NlcMP6 zr$xXv)0G)Ca*o_uXs|>lH=*o)h(E_iO@JmlpGUX_&!SdQR@LreJ zUzQz{zkS$X7c+Jng|<_|W)etTEqqE+CoZtP|MIHg*P~-TZ~jSH@llhvCXcX6W*BL% z^L7(Kf5Iy00702F+$ZezpNmw}+}V0a19y~ny5)i_dme6{6bZXA1aJEHZNK<+!lDxn zUw3IV1n5Huv^;S3xyCDkw;sBDS`BfGNtBaxPAMN736%qcQ_wcFZ;Fq%dTZA-Wi0}D z3HI*LB{4WP*81`2PZ%!`z1p;dF<>6VkC*$CC2XN)&UUbvUbE2AqtO)vP!5p|TAWcb zQA>L)nD=!3-)@T*Bs~f(UZ5d)LY+6+MSilFY;1M#T98i?DR=qb93b~&s?)<1TCl+Y z`9kpZen!jhjxWL-Uv&ITWfzFA6Z>b-^eq9IH~w+D0P{XL+Mkd&Dww>vslG_w8#x{X zI;SJ2YKj5B(8{Qn`kM#7x~`nt!`5b{AsM}mIGIN`{nz+m}Tl2XYtr!>R zNK}f6qZ3TKK`49+Jbkoz?8K}1h=%}?k>gA{yC9n8s#FKG z_i9%L)U_{4_Q~s#zS$`-@nY&+BZ1}`Ie$kbQxjoOCRAI#2UuPF9J-^uP))%eL4^Q{ z?Jwk9ZU?AgQJcWDb|0lNp81dV*@l!^9CD!F{CPS+TuTj8=H>Xg%)fv=; zJf5KsE-rDgdW~!@|IZnC;B#@%kb1W|QxOuxAuD@=*;YV;crSdL4MClVlDq+8#Q6QE z=b5{~`Ui)5K1K^-hjbwXKhvv)WnIc>0A(}_U*@36P$(R3t=O6dD~ZMlEC7yIg#Qx9 z{ya)rKb$Y6QJK7+o1kM9j25>R1h9z<7>4*YgBFeq=&!W>>&4G_|D&bULau=G5$QBb ztJkK>QbdcM1*=z}@AmIoMa@-P69|(sRyZgChSB=0iQV;up;NDu`UxP=Jx;QWRigfEE z8RCn*2K4b|sauE*z@ko<5QPiJWZru?LuN_vv)xv3@rzr<4{&bhHm9kp=PG>2g+js6 zpV4MciG!$N(D)p8o2+_7w=@WdilaX`NS-Fn z8|VnSUez^)Dw@G%cg>@qlZtK1=jR zzc{sBz~+4JXV2;@ktiMDX}L|XCvuYr5xaK#K4+~hrr9~n_l5Q(^Hi(Q73fXU1Udv0 zJb%Nk{P^vH5hfOK^@{a{tBhX=#S&u_gqlzyYlBifC-M_DL7&DeI_I{k!04$AoX*W! zZ{>IHDA7BV#M7rp-hmQBSaaxAL-A|IPpmjEr_Hk=G9fQpoKcf724wR7wuay9q00f?oshxm)F*|OwV!kB4hHQ9Zkc@OT%U1ZT& zk^IsRd*n5#&!ly0cg2``!QwdhonjqqoBnU9W1LZp+LB#wWA}Lzg_Pro7@Sc~bV8U= zRqxCt`WH>huERl(^syHX@Fw++{Q{b49^D1!E`(_7qoOZz(AIbTQZN*@m*h;utXX~B zrJ9lJYQXN?nZlUnH1bsTW$>s~t5{G9BGptVdT2>$2erD8mxXvG;^w_{oxD|eFYpi# zPS<)K8un7*dvBs?)vJZ-U0hQ=?l4?yT){BDz&7N3aPloS*hW=>U>cTwNiEZ?aw=z5 zz;vbJs^AvesImZ5?HSAHX-SMfRX`JMnXtFti4U(@8ME%Musy)rIjP7*^Q0RscRU~s zS&MtV9j zc(hdqm)0uy9Nf^S@h?OZZYJCN-oKBo2Ql!qm));H#p#6U^#nI&H?tcJFY2N|T|zkm za9!FT$`#vDaho0@TDWkTTmxe_?0l^<$~n!?(TMDgdKMsf9DtV?miYB7QB9cpWiq=d z3}#-w)A>jBT+?-h?Xo`3Ng_WJb>#1pUv}*sR2mgeGWgOePE`7^c|6^qdi%ZVgujyd zJ@;vJsk>1lRg|zUy1qE)b8s5)q8IgY!5?1QdzXmVz7pMuTQh2@vP-xf1i^0G$mdb? zpw38x2_2p@`&b>J6gqbOqkQtbt>BXB{kh$R(H#Fls`3ka|JhvP?)5#~cJ;D+Nx7(v zd47CQgC}*+Ee^VQ-JK5|tES1N0UJrRIbJ-nikp+n+vGFuwz(x9sx} zlstYd5IF5op3wSpn6l+^bUrKOuD4P8y?)oYHAIl*8P@bZ1E<+Ru?MB^1_Q0|#S4)n z)#9^FSfkV~BB$Y46OlB+VVX#eflLQe9gt(8KxfV2P#PY?u?|PKiC_RJhuIR8&POe1 z%j0R4Di|Ogo)@pMWs!(X^5N>o`{lLAVH{1PAiPDcjC#9o`F)Y&g)CHBV0srpfq|uv zSsbJ6(LRB;p8D>0zEviDf(V3lJwS+JqgEL~nK&ZQtOS57#i6RGT~J$1-NZCndQvt4 z#j?aUx(s271`p<2LHFlpQ`|g8+wF!>V2IRg37Y$su0TZifgIw6+L&hl>rxYtr_W@W{ecyXkOr6xkT)G9R^* z(rxwEyY|Owo4nT^pP(*OT~VJ5*sr81)inV0V3f!K3-xak2Nl@5^#gv<&t6aRehEXL z->;C7U;+fV?8_v49Hw5VqyAobUU&Ela1jNKp%DR%TjQ#@w+REP=#(^w$^yH4aWlE% zw?Rm)f8uqs7ay%yY4zB*6 z$7CB-8qY2>a0zvyoHEf?n?|d?k2GfAjGUag(s>}AzjPr7?LKyO)YFjcxYaky-e%ut z{M(dsCYSztKX+58vlZ0a@Y^9A4&BP(dT`Q%Yd0gn_uGBoE|X#0r~AM8B&gDN4=LYz z!R@=ANepM^-FxKH5^y3IhJI2?kG@TCr2H=0#%QPy@^drz+y>gF1~L;NUP_J9AIofB zi7P-i?_osQIopv=T8zHdwi2Sh=}*eAT(pmuk7^_(QM+QGT(vwT`BK*XpJ2ny_>{jGnM@N(cSiH-wd%{65^r{k%B2`*S&jDhHFP|F2bV4F z2ip~t>f7J3kAHA7>)7ate>&V?8jZ=#qr%M|+E^@RlY9vOl5D=pA8!hb7;q#7bG0qI z{0@M!7ruekMMPLY(v#JO%NBmvsnQ=n*!^jr0oD3D7e7lI5s}xcE184jw(uGyBIS3G zwL_!jU&s3=oA1HENfrN01$v zeovhO?-f)I3%$T zz$kco1?`1wcU1ouLyg_SzM`mC5QpA#^)>VsHH;Y|vB&!be5;58U^H2!mbkam!wKT~#z5MhD zt8OytC;c$;9R6`Tn&3c$iL=O%0vIaZbuE2m*%1)@c*KCB6{H#VH*cfu?=8&g`B$CQ zWo=;e=q2Cid?iRiM}K&ZBBrMPjoQ}}mnWaf_(7D@y1tU|puWH_z@%8^4l(#j)cpm{ zn1ZE0yO=dpNczO|oBV`QSiaI#UQhBp&^XsxdnIuf)HdiOHv}`SDK?a=$fIuEO9?)u zI(45(F~c3A_+=VdVdaV%PMRN02R8M;>_MDdr`a*w)aBm?rHppkH0_H{dF}54Aqpha z-TtvgaRRm5>N+S-+3G)SNV*;+Po<)1ROpwxQx;y!Tujvm;h8DBpoHL?7~a6ttVn+Q8k3P^-sVDEgcJn42ri}H6!x!l zjXBa|FmIt1wGFs>KvdwKSPww)TC07v?nONhtxD^OGfwv|;Z;`sXNJwbEg6J(3m_d} z`~QNe6me+{Yb^75G}1+(I7}VQwaS_(=R!?XsdNM zLKI){Dz`8aWyZ&huJD_j*&8i&jOZva)O`QGsRfFRRlp4r(#8G!tbCTxXjukEi>^@j zJnNMSDYSq$hBy7^|3{zV1L;#C#2!d<2feGf{Xt0JJd5J(K!&d>Eao;baAG4s0q9XI z19Rzj*;>YF8?1fsGqGqpP0*0E8X>hh{^U=)*wmn+_53G)8KG0w4OMNxvho^d!qI>H zshhJoOOU&4h9OyX02`|y;->?(`eQ^jRC37nO{GvTou17m!x z%li8-2f&`n0Bu<_$hLFbKyTv6|6Isix9W5WKR^Rb4u;sHuXDk$5|-W+A%6nr@z6Jq zkrQLbl2$`iD0jQNT$L0l>?Cl)$C*6Fr4mJm9A*K!<;A#F#xbivUW7kr%+VFfSB+*a zaB*oZ5SV(k!Vg$XdsJ-LM~DufWUJ+n0fP~_olD~2L=1I&TDb!YtRU+Xm3 ztbf=2i^lKi6+}SO_zII5Psjil4+SDe*nNHTxw zMd}^cj77X5i%18~q6WRYnUk;gm=rp_5^3oH35m4W3c#wzq25A?PeEt|CNUJ2CD+6R zifMY2(%*mcCS2!5YNYI_Votu~j*b}alBT>y&@*#^Llp{%0KoWJC~s2*Yjl&zBcOxj zoGEP=_m^mog9KJn&9HQovDSw@QT2ks{DN&$*0o>ZI`N7O3=dn(>@!cAp&~@i5n$Xf zjOm$Yhy})hAxm`JI1LAycj|ucId?~2M?t!CYl4~%X(%XFQS+fHCyL^D(Kyfw(y`A| z2oLtr&03ZI2$n(Xi_8(yhzA`~3tNBpLYu{*=FyLW=MCGJdwFPJ#?Dj_yBB4}UCPgS z;3^G}>n_xofrh=y*mE4B3_<4K_4tX^n=NON1#s#NB#nALBCfr1uc(JX5R=c#_c+|O z;n^pzJ9j@|4d1#twTjDzSrwNjUZ+lB9f$Od8-DasRrdPxQ-$MOsQhzmgv9&sq^!Nb zWahYGRQ8q#u2+X`g$udMI4eF>Ux-j{{OC)U*e=v-n$NWU-0}pOzod5}60PSvRC~q< zI^jMd012}1pQ$0O+#gy$+dGHe+_?3byk?+KkkD6_DCa#S59YRDkVV>OtNl+n<=E-> z!~G)dDA0bX4yB-1vvFlQ4<*@SD;oK>L(EvXopQz*?e_-$8#!E+3m5M@yeVKjmW}Kf zD%EJ1%a2Jz4)g9G1qOp%g$12-#+z%9K$dd=A%m*me^|~-QQ$niO%X8QY7)R-``@65 zxI<;ke+gN*pCJElLYBc6M+gw2?0}j+xJ<_DjN`2n`Bb>}6WetO-UI#DgD-9&MTJ#i z0I#$vr-KJqC!Dj-z8tp%tk?F?>VV1zs@i=9IhgC(K1X-5MJ~dx2$eNMkARcFfQn59 zRwLz$D_}s@8MWxa0}6(=Q+<31UE_cjEH2PLU{S(y%nn|WM~zs-He)N!e)spm7U_)2 zD)DtMSVR$ERUp+^5P@|-Ig}>=98Sbmc!vSk0a?=RhR*M%rk63gVZ)>4^Y+%Sz?$s}>zSgnI6Y!c>EdpG zP4Y0af|zXtCdWP85i8tW!j3YaOj7LGUhPt#IL^|WN5W{-YcisN;cVqdp`=7ZChnHu zS}%45t%A0D@%`n%Q;zPDUi89o1gy1n5=deu0*8Q)RW30>DZwe=Z@StbQwNDWzTP2p zxUA55*rJ?vkH%M3y5FsfueR7rxU1p;f-9;Jx*Rp|t)lvcYK$><^V+PE5JRqBIiR71 z1HD<1^<#pJO@FwG^*U~Fmh;U~4}!YGueunmI=s&nQf!LZAtMFRwoFcNWQXX<3kFG)9OuQ80?+RLECh+4hP_%;6IiDu9*dtoljsRutl5PYa*_dqXvG+B z?z@*k8&5I#s55HPJ5QA!tY&L|dDPEgYX*QBELwH~BnNk!duA{ZE0FtAgaB0n)v3_s zY#SAN>;0na70ak)0gHJLN+hVk+A-GF0W&p@488ZRSihP^+N%qiUWW983Yq}GMw^g; z_>ApCC2-h-(tRaGS{G2gsh_jW#IkLe#Y?G3=?S}1y1P~Se;7NbFiG0&%a?6em+daw z)n(hZZQHiGY}>ZGY}@FvC%<#%od3+tJads35pPE1MdlOvuC>?xZCfufTVRUgkaDs* zkV@9LO017=lFk?565rE7mh#w;lA76QQM>sfri*W39?SWMO+V{dkMbb_?iQxCRhZX5 z6_QJen98N5&?JO>@kdA?-aQK>;TWe{so9+*CiI_Q;`0N70~#lf5IL%zM_st z3zjA#2kFR1XfwM9ZhX5n0OaKLC%BKttHh6Y#MkTCU$>|=m0l7{GU3}k_A}fkGwoj6 zyf?p}|3ID$J_~*PmsEMWN)J>rJqVqb*-M4(xR?Hhyy5ESoNr2Qp}9%%ZyZPiz->uz zb@33P9W7bTf?P1uo8h5L6sLcY-+{UH1S=Y~(D}9Q@Vha;Bv5=cJ}~-)`b*3dR~VMT zT5Q!2He^(F@-W%_I>Okr)zRfHq=QZ^{KVA*wLs2TSPsZeP4e7*9w>aXKj}Cq+4(J@ zt7LH2sQGU{t$6z*T@oO1;!I+EXaUSm>hmKXUz&D ztEqXCg6OLapt5fiBPn1qRFS`|q~wf=bRx zMPPIM&~ywmwxJvkP&c-c+q?X1CVyZQwRyMBL6B%bJo?R`XmmC})mPLfRH7l<;RewW zW*5Ij$N?kcK$CKN+CwmSQ9Xg?+MTJHaR891z*3F|Z$PAJIe zbr#E!MZ%_Vs%cELCt@W&lYd7HSjsOIjfA*&p@u*`q@+WC z`0%7fnHP5&P3V4JkUhBK4J)^9Qnmn3bQDwm??N~N7%FfKU1ftvVo`y(NVaT>|%e`Tuc zY~i&VS7Kztpt2dGEduN9JHNSDerNalq2u>0KMjw88#$taK8DJkenH|5l;o=rE}tfD zW@r%43(EejL(H!}t!iqMe&Nq;^u?PHT5S!C%#lDIdz1$IX48DiMKy_EJHpM|=*kx! z_OHL8_W;uUeOK6PWi})_r&4q$!7J{MmBwMB#^8@653VCBTl_~OO3&VSOTxO5L0W26H5CW6(}Xk~tt0~G(#IazR)@q? z8(d1)pFqBHbf~nQVP#c8(KJglFHArHVdosrt?1lAGE$Vi_-#?YYwpWNwABce`H?zk zd4eo-oh_sIyQ7*zw|KncCVf{8p~&h~XS1QOz-MYFH?o0-uC%~W5U7oIFfqQlfH@%$$7{wDDhNMYwHB8ceX!Ocn6Cc$VF z{B&l36ksPmui&*S^Yut9+KLY(94&y@mt9YG>>Pgfc;wMxNGsYMK3Dz2A87%-459_n zc4zudG2XG!Fd!3!;m0HeozD(jp6J4Vfytw5O|TEKOWu(l3xbSx>krvy0k*ur;iz+> z;WqziGVHQ2{okPErzvy9bGAaCJS`KTwT&h8GB~!vX7-pG_#BMY^4Hsq5tpX+-!-^1 zY6l>CO;9h;1q4$chLjW@tdlyMyqav`9c1u?NZ^T~^wLND+N%a6>ysVm8hK5K^$KO> zda~xD3(5=yzxjIolq!Ys0SJ$b*Z0-{6`@4ie2{R`0Qo&OKUz1cSfvLEN)`F`rt7>v zk>Xr+>wmS^0_86zq^E`w^hTMyGH!u?4@+k^<4kIBW4G!>jo)6#7aBM~Wr|eSYH6ByC8`|-RgkWydB7k%^ z85x$z!rOoLbU0nkziPqYbM`OQGJ|Woew$ac#0Y)w@o?s~faD z2JJR7C2It0CAWlus-w#9K-qOYI%#q=oEsw z@z5JgB{7KV#*$R9fO^jbDlO`?nNa-@!ZD7tJa8pAq7BHB;%pAsIg~2SvehG7z`Emw zohyh7SS9I&$pE?h2ApsbY8i>T33hCdOkNHbBD`c?tUkJF_p%*o8C~nQD4D#$qj5Lb zD%iP%{p>6lbyZPS8dR15FEaU$EP;@eOfh|GLLG<+*{Pi~x$eGzIz%P#!1oeh;GgCK z0)U7pZ1?Kk{|VPc(>Dza6T0;Iw5%fh`_IoC%>iuP$Ql4!7v|5SWBB!QU)C0O$G^;b>zC;t?ENvNLL>Si zP8>#Jq@f<0Zs}4%D8<bkV{n|En zg<@Yoc=GwKd1w8IKo!?oSp+xYZTih#-S*Im3mJwcu|~@v z?X6s#P1s=_f%^!DmMH+pE`+y&Kx9U473KKPUuz$kE*tFNg6f%@V3sQG`0B`d^tgdl zk0<{bxgu~G+_Vm|Pd&ewwr2ZmZAsz9x7MB39)A^btLyu=?_c!*3s;ql7`7ii#ClP% zLw$mUzq8g>DSbeA4u9w*%=bnVn|n4L^5^K#gUz+kAT0xI&svguqk{Ra(S|M*qA#xJqf9^l|ufnEJpMQs1RRaNTn$F%N*ib*HeB~ZdytkoFhX3?V} zc0~ncXBu#UGN>XDSCS=YBBxo=is~#Wk`@JpK4(~10e|RZaJ|pjk_Nf(dS9^|jJ&5^ zdetbkb?g6xdxFehl+)#Zbg?K|9jwukGv`RUlfGia3psGnqa~XzU&?PfOTi1YK{r9r zQ;Uf#1fdT$<92Qf9?Gq*qDhRY1VZ8g%k+tf9Fu)!=oDAE!zB)(9Dbz{_*1SDm zH`yu%HcE530T?%#0J`Uf$rfGxUvk=u62L=o74T5(tm?#5-3~X|TAUE{1bMoq^V4{y zi?x_Np>HhN`m-uUGTnNg#PS|l+V*%D>W5?Z=PfVnvN6H`bvBkCr35dA#}56z=`M@H z^Rxhj6vlp!=JEwG%uw(Hy;DBVz{?|UyzEVQ!8)SRd3xkfZBK(p-j6b z19B}`u+t_FTsXPaCJ%*NVAyF|8tCcIs>a1MMPcM8XbJ;Jg@=_XSX1$c;=H$H#hSQ0 zG({dtGpwGEwcTpzqzH-a>d!K^4~VE%_DiMK_Yv!x!ezt?Y(QtLSFSC9bZO>AKnA2N z2S9Fi^X7s<%4}|nMffk}02)SbCMX7knOmO~sP&u8USuapTAqD~b(_>hBmP`G>a}O6 z%+mw!>^#%KjQ`Vy?E1&FqZE4Q(2adG8S!6)#!EhaX36*(9*)T>=xP*6jhdkSGLf|$ z@#I4-oq4QA=o*EOXh2>@;Gs)lf5A_K99471VIV}=`vCkkMe_MOC40%yK*hQH66X44 zWsfD2H;_-X(wS4Gxf`4(>MM>%bM{eVE>H*{66sB>Xl`%lsVCBEUT)sVD~m) z138yllxZPTyd*Y7_D2<8Z5oRp-yXMyA^-9H_Z$VkgwZ$P2Zp~-wG+Gvd6Mll`9HN@ z;4bZAWQyC!82EmJiEhf6ptH4~ZJ6DFA}`*92u`k!GyP1BAKh6eyR;8(w$8)P8DEq) zCy0lGui>>cbBy_&kshYJ>*u%8wc&W*)UVo*jXv{@IrZ45mXsRa+vs3x0|XqJv8xOj zAKBUeH%Ab&hdLXkMSkuXT)H#w*@tMXXZ82$)u?(}W(PcXJ(UlGO0e!5SO$J4>N}}| z<*Tgq1eUY{u-RoeZ!*FNJG;soJRK<@6tWTvnZQ>R*5~5^^v*bcgqlZ=dXQ zpLYzKXG=jhXd(fKiuL?WCufim~I(ZA;j8d zDS<*A%9W||#GA2Kb=6)PU#A445P9y_!PlI@A zTppNzk@TL^dPr_6e}+=w2@2I(qv(4gc9Vvy;&00{KRd`HAe8n*m)hDEU5tV6hcI>p zQ>gis^% zlaa)^OXwY6UYvyYTzwbZJUR(0$|)REa>LE*j6xC-Q6BnzeG<6WcfCZ`97}s!uBfxX z!Kux$|5IT*pKEN+x_mVzGkOcl2RBXWMGC_g{O3PsLvXFRx90kdD;!2JfH#hy*8M}A zVDpGrGvbW`*Q=i`CK01QlRN9(T{h(^OB+`G9H>>j`pSWsB@k0sJR;k}YS&Y84tF2t^ z5WdpKOd@QA2|C-(i9qQv*V)-}N=yXrFtme_ipDmqkPdCP)#FnS-T=xJ4H04*hYRjR zDdCVv9l9^=u~s!ehs!AIic0;|8K!M_O#7reWg>Uy|JD8L-aIwGgRux}q7R;U94>Ig zHa%0geokCRraYPmmDOtwq4&mE(r`fW=Q4Cg`-^g$(BKt!WYy#P4@KV4ZaTye8xlgy^T{RcLXZ%u=(CeBkADCf znG-SUmyLsc=P!?gS}aI5>iqP4$A8h8+>w5O`0yu9+OU+8Nvl|RDlfIbL>xRNgGlmu zf!xc+$>=ctK0x!}5Jn7shG&j~X6GF|_cU5lKdV{37(7p(m&{tT)blW*q_4#t#h|$| z(#>KN&qzq*i*6WnAZ7LxYrbdd5TE?QsvCKq;p&4dkDT$l08(Yv5aa-wg zA&Wto_Y}u1DVYn*kfu1?f7^((l0F4{sUhaDJ))GwkroSz{5x?_xqNBNsfxa zZ2PPwxf};`nN5RT6M*~~WIPj~+QvbSQG2{sj9an|*5rIa7K+pamW0fA&zpYwtTKVG z3B7DK@DgypfGPQDegDKs{;iQP z%Wbb`p|wD81uEluC{Rf@v-OxA)QQS3;!sz}PyLT&p+y1=B04+N zUm=;D_I}`AzmjUYJAX5_a)|L*=!smYbp=E$THspuZ!(g!j558UGYuvn1(FQ=A23o; zA>wqj28blNK8vah_R&e!QJt!RtBk~|U?G_)C!H#q&**s}f5dkkOyE6XW{5&pU%%I2 zHk?Zo5@5cQFw}qNJ1sfS`TV;^{n{KYgwhbwc~YCs+1vT$@OAVS=HTjF2`7r=3Pv4t zp(lk)ei^Wheje3LCa05BYbW$j<8Gk@eGKYzkyzrVQY#s-S$<-#jFHZ2W_`D58U;HBYCD_WV z(QBe-eR?DewtJ*(plvV3<{`jYnb0tLJrN{jB$i|L@M#s7K)+*}QA79hYO19XyTTPW zh#aRgNh;lN@FzyJ$MrV(VmX8i$av&S$4wtw-yB-xDuMtX>|+CFJOC!DwS5ICu;Zw8 zTYETlCCfVn)`q4}>$kSn5rLj%74+)4(Cj#^puyZviEQgdrguN$69Ab#i=HqQXaxlx z2HF*PdD;iGFXs?V{Fom5F_@z%@;MT?QEso{mIYmb?~am4!P543UyUC^HwYFKVdU+ugw2Y2MlQ)(kFIE3;@fe_)3 zLHUykpiXMNc`Ifvyoo@U9=y~z0QVyd6b7tsuTH@tBrBd0%YNm{^^q>rK$7Vn9 z`)B1=rEa3I?{0)uG8SqR_!8!zNNc|BNsx_E9!M3Uo{^mLQ{hYh8&(LWZaRc--L8Qz z=B#hzh|0bwUh{|(9weU^Q#8N#)B0-)rS!ad)9(q{g`pEa?yuyZ*FnJ=M!r&+^aZ5x z2t^(&KQD=>x1?DXuZ;VMz}2yn#TB->&@rwA`}>x6RK7$E;qnc9tjWs*z?vHSHh)>V!$4;m2m;JW5t7i~qo(pI>PFE;EQg9Hw^Ap~ggh zm!0z#^4xWb!lBnuiRtT!x!9*wMe!T*8;UH;D%NM0>my@2Jq_?Su3H;1IxL=u4{L6* z?C#eJL;PYZt5}adJGroIw%`w4f+vl!gIJCZV*Fxit62B3&+BPSw43SJXX1;iLigv= z53Qr?KC#O576fh;1%DLB=R6>zPVmc<-n&&<+PUm3j6s1w0UZsjbrG44xSQ4sDq5-6 zFOeHt%PA&qA&H($4WP6N1A@VuK5fB=%LIEAnC&m&OkG{ z`oWAba|Y}u-O-ZY?LtEV@vw{B>64~l6!aG+VD=&WGdRK$_f%`OzF>!Op7w#LSvn|7 z;qmL?mK}x!6qFY+KJ$y3c+aDjmP^4s+Ra)Xr%6T2+ikVIMW+8ug4s@|kfW7|mhY?rgcEONLT9gd;&CaW0f0Gcf^7u%j$V(9bk`-E( z0vb1==odtH)PNS=1vBmzj^}VCmR2T-O%VW>Wx7@+3h6d<;yklB!D|<*ul1sADB1RM z`F40xJc8r%APeQDn#{p8cC&A&-ByPzs-<6`Ow}226y6I6qOjpKI%65=aV20pz%PLBJ=KSg7At2Mv+LfL7HGrjO)w zmUv{y=*18d6r&V&$Kj030VKILsc-%1C&ie7h%4!R>Jd)Pxol-!QTel?rl79_dL*P# zzB9!>P$~J*5#-b=Fv-XX!UWzZzqW_d_*Z9(@F5o%zpVBMB)_FJUS8$g&|IiYxz)&! z!p4ZjXl4*@{2%jO^M$}JWKc01913JB1V;g)LXSdt*uSPzIL$WMFkPd{TSk@d%gvaz z$J1i@k0Yp3a0pSp>m5c_>kD-1j}Fthl4z6cU3|T9jnBEV-HVale%KTk-wE-Z4Ygqv z(_BYUplq`E_?9VQz{*1m6Et>vulxJo8Dz9QM&ki4giA1Z#KqQ%9pE`cUnN1Wjz3j( z%GA?bVI{SB7(1BJ>9dbBytxxtgEtJ=L!<_+q(dwCjrPwYH;Y*2V8K)D2s$$93{l zo2T{@3Ul&d$BF*+tM~V0qZR$r%Z{(BtA$>U&z{3XBJ_-dMQW zDqJqi6+OE6I#mx2p2NwbLGe!*ftjR_6;phaGFr?(B7a=sFfN=jf5TA;=8^DOjzZRm z(?IInu?$EH1}ZkP{sK|a<0M^~;{~ZGb z0l>njOUCfYi&fa+D8;6R1<2C+%EwpgWuf571yvc~AqC#SBoPeeFc2Z8Mbi8=e^Fvk z;~ouxoX^LK+?&ySWHwr>F`d(F)zd5OU}vpTb*v42NBq*Z)zwvfq6kusRRa8#;vWNn zobQ3;PRRmh8ITr1iSk#vAOiT+>%|HsVeBm%bYc8m33l(ak-^~$0j4>Y=d=~fhd5fw zi=4`sAZ97;#SsuzNvlF?Z6VNRyM)`3D$6t{ua=L5d!wr%y)a7^RRSiYp1v|VF$W;V zMBMj9Ma4sNnn&Yobt=C@XH1w50a_|$wS3Igr<=1FHJrK*MmWgltj3(6zzpssFRz2b zNJ!ctEDYuso=U;WC123UE!$FBWSvoCB|Hf+bVs99 zBo<`N7kE_j@uniIP>U0Jc&X8eU~$`D)SRQ|DKE1`b()B(Zt8i72Yr#`Nu&CAhh(T~ z@Uu+$?He$2znPY){D;MshmWc z44~_Sw)i9R4C;9w=L(5&Tu&NSUdO(l!)#^RYQ(;!HrH=PIqigu$ykp1xQwOOA+7p{ z?NVp{2?EWk|M_$-i@YOKmu@MqAa}ObM~pr0%0|Y6K0QMG{lX+}>5zPpaf`R=f47V0 zryjuGxIK~mxe+MqR2@2oF6NoiLOrNYS1#KfJUHmSts!2mLd$<3=6gXAMZzjR2orh0 zi+T-)Q%AuAahAffh98I$6KjPgdtLwDwo4+S-vqcRQAq`SVSUDWV z0p%GRues1!irX$s4qK9OYYb^=pKm0I#pRXlODzWJ78|4tp^woecfvz5X{irsxz~X` z>DHt^V{D?WRuFkIpRfTJS!zzhVM|=G&lP;9dZyW&AujorDTEBeXFpE|4X;u824Cu; zh&`?pB9nS_VbMmHzYw%})vC~0X77at47?D{c@2=sS`w{=8eEvB*|c8O5gkUOe`CDp zvJTSp;fXr2`l}NvxSxs7Ry}60nvhnIi1lRguL5m~GVqm`_J*1hkx;m)bc# z(G#oWn^UC9SBLkudOk-Uqkn9&DBo!Kx9)J_2*e_~UetRVEq4DjEDaDx|Fp&b*+;&H z;{MA6mE|4+-t(*eb|Cm0vP$m5j`zd?a?3d~-swqbrvLiRmp&}=w+>gD+08)mRzrFp z^8zoUvQukB5%_nFyt63S8Z4}@DGnrx-^B4{u71ZP*Iby18FzB0ATwZaU}66x6sRA#_?&9CN=T=*wmciy zbQ_RNRqbjvzcvth7NGrS#CS5s7e=~gWE(H*?mYqud=0-yl9KG!|1XO9aef~CqZHUw zAiZ{psnVDE#8QqQireDR8PAVIWw_zvQaZo$;Z_JlO-hOYQ$_y~C5u)<$#uVp^XH|R zY|Me*gWJnVH#;Ay}!VtJUD=9(>7t?nH3!cs=&3WzIf1!TGH>NuLt+_143DRd2! zDc<;zWH~`|$WN!s`SP6yDMpx^f7C)xXm5{>k)7shwNCgg_nWbtu}JxVXYGNkA3qJj z``kZkrkV1zZ1_!iT)xiy9vq!MWDdxrZibVSV;_lewf?UBo?xtSJ-u~GUhnIQh)ipEeBC1jO76_PYIA_HWso88NKZcCPQ{@Ha&hPUvR$H?=6d6Puq9Q?xr&X zTOmtYhYHJe$>P9`9>Mrkk|%2lnnroB{j~YeFJ#tC#HH#Hp|YV`3lx=$n}yDE;mCeh zB`2PNG*{|Zyror*cVp#35^GXz8_J%yz7R(kIahDL_box!&Mj$S*S=xOy7LP$T-x?j z=9oGE%b=fnKb}ylINy*waM|I?WIBIBa7z7sQaYsZVs@anyNzqpSiFiQD8)c9 z^7S7rj@5Utbr&^Sy;_-kg!_*i$KnCWQ+(r;YBi1(0*{~4dso1^V|Nh_&3~9jGd@)3 zOzCNbfk@EFF~+z^yVS5|uQbE->Q`CL!)Mm>PKohjg-o**!2?gTEN#Svcyh#^GWXW) zJUf4Kn5n)U$K|!l5Ow+*cq#nNduT+N=9`IV*WDenR_*)_bA9MrvhQGHIuYWOGkqF-SO!aeyoyk{ZbZs*8K1iSY7Fh*LP zPJ1{R*hV8R-3r2~Ted&3CFrM1^T|wb=U~V&I#2g1vPY?4jwjp9*K_B(Qt1YcVWDUP z=y5zjQ%EVGNQPx;(^`3ahMmrf4A}SZ{Xgcz5!aA`+7Ud{5PR9%7=mY3g>>a%leW>Pv zIYJnOxFwsX$E?cER4>fRa|Ku}D`}24kvb zL^!Mi>sR+Y=MhPEQl1|8k6aPw`G9hTMuR8_D!qF%l;MWT%+V*yDQVm-a3i)BTYO{9 zw#egqbJ{c@71Rd~8G_!fkMKM{^l(mTJ{sLY@7wdpWkLDQIQP;Gr8o`Grf?0{6jOTM z6f0^|9JGopMaBW>%U>V?0_Mz6j<^UQ!3yX&V-_TiK_MNM8%OK)$ZKc2%68okz~?wN z!h90R>plORVX@^gN^iIHe-gt8Iy%9jkzfPHJ2=7W%wjX;R5?j zZWH0a#WAdHcL~ZnU%MJST%SD*8<$c%Y&gO=#~eB9y7-(nI(#6uVE$S@DMhyfTa7dF zN1NEvpF|b9Z+FP8yASC13`%-?S&8=K*s6?luD=B|!} zDaJ8V6r~*rQ)jzPUfq{Kbp1{7mxp&2+k8x=L8zaPC}1{7-*j&U+BHP$V&WIIN9B{( zZRe@+J17?B()fwV({nh<69|4*1llKRJ$wPK* zlRvC!IshHf!!L!Yp^!v(bH03`ZL#;Bw+2GuVHlB^HoGK3>w;sz?{Cp}211fys-aQ$ zOTEG?g4?#D(M@RyHBng!Zk@4^M&ar5oB1)j`{5$t*-*s4Hj55_5E=>@g+2M1t)&oh z!iyVw>F;S&LWHLy&G)P9Hc@G~O)Zoh29?cLR~NF8f$n#tt8taU*TZWkX)`n$G~+*s zcIi7DJROSl_Fs*~R%>DLn~J!zF(|*GP`%-#BfOEgaH$XXX8(tf=>jC$u+`tmj8pG+Il&~Rk)85KKSQqkDRM-yx*OH!~)|edCL{>fE9ttC&{rFxf zaq3y3kf{Ixt%N{JDHU){2q}BytZShe&wkhynE2NPlGC2D^gwbju#0LGJvp4O%y{E2 ztsL{05|g>AyGXq9MvW?mqJ9q&tK=7!Mz(ZNNJ==C#uC-e6xPO8lPU-$<*=9hIGZu! z#=IxyTO-+brPfU$sX^bl`1`EFo?OD%GLhbDna|k&weK@WZpgT*=51#AGCkhX>>o3_;+xW@*zL*pYq*pk&!i4vZmqP{d3Po- z1^Xa*4|IoQ}|*s2FcdRtbbc%rd6Z>Rcip*nuCMjDAK1ID1a<-ledJ$gknzoofDvof6kvXoH;9#y{xHjOwX9 z8X_y}Df_mBC+)jrO^Bq1%gQDC+LHw#1J&m$N`6X;tiX}ZPEj#5ZQmm{tp%)I`cm#^4Abh#Lk92q|d(J7}8oWKhhW zX}C%l-%;~M*lJ`Ib3@0&FFsssfw6T$!D&kNl^pZhd0;`Yi9ew$ze0mYpWQ4#uPgsd z+8cl$gPFgC)O2avzdPu6r7wwbcRWd2&8)~l5~N#{2R|dHnEE(!zW`-ELtX4B+e&(n zzPG%ApEE#9U(e&9uPt2v@t82{n3Vi&$*95jJuR(NzQGz$pg6}`9wTYk5FlLnl>w*NupjO8qw_H%{gj1ou{M-%- zz?k4!EskD0#?zybVHNuX#Yl+H^5GUWn0NUeH7h$wI!WCxcUB1n=FJet!I8LF!Nq?P}>uFaalE`4u~0pbrsra<4_Fl-a_Tune{+CTfHIBQ8zD; zV^&|U4pLM_&b6uc;K*|j#ET`j6vENN zR)5Uve32WmTVqu!)}ohg15hTPcMrk?>hQOrlGyx4&)u zY8Q~c!?G3c-O~+J;PRZW5`Lk8hWJ&Ih62kbE#th9GG>DSp-aG#F$64RJu(S$32g*W zDu_`A0B1i`r2(VBYyJ^v6bS;BHCUDckAR?~DBvyV2clp-cqN?MJ$xH>2Zegl3X+Mke)aj;!g-KfO zG_wZY6u*--lkdOMaG%_rP4s_sJrK>(W{xt_L0nwVbaTc%ILy*?>ObbAEUt<(&{&WT zn3Q?f8Q*UbL%x2orRGrNvP2S8Wzizh2-$}()I1VHjbYXf)<1eO85q($LSid~8JOP$ z5QQOu6O2ap(vx$(Pkli8jfB%MYdTaVFf zU#tB+@(W*>eQbalBd<-T%oUS}hgYu*7tKJcAHOw1W6JpMnc$6yFutE$JOI*IaoBAP zhGP9yR+)O8i$qJl=Z0E}u zdm_E@>-uwR-z}ou!_ZzAxO+$-a#q&R7J;mU-!cDCY)Dxk+7oSdduVep1S`8yfS%D` zv?&WKw;~iiXc*rzbhs9lmSZqLR~^W~f}Ix9cC+zYqJ5a~r=^R9own~HIA->@0R2yY z>c=c_W6UC@eyEOI{Q?QOi<8vVx|Lw6R%%iV%Kj!9XNXp>c!mL?2YB*-L&7%uDZ}%n_U2M)@VwPOJxOiTK7P*!DtJ$l)+}e~b`_ zE7nwW-H_E>yH^eBv*TURuNaNb&5j)Zoa?}i2|>TR+3%+C!*pZKDe-OKXh?h~JR0qf zE|_)`m9j8E<8Ma}={IIWYoGebnHJ-$#UbwwjE`Uu2s9HW0y&gaK1>o`&hq;KHa>yg z1^o#JL)GGlt<5N()yU17yhq}JS^JJ;$FWC#K!FRh!v~oJ4%43z5YP5_katCyFO{Kx z+{!r_!v+l(q5nGO)%t)Qvx>8qS995%zp|ahdXB8VyMp;@v59p%v=0Cc^rO~uXAP*` zD9U5L?Kio*iuCIAafsWveq^~G)m2Hd6YaQy;2Ol=M%k%pv)d?f7mEewAiTagf~_UL zb-{sjhUhWm_wFR_wc*~!&l#6sh+)n^KobW*V4rv9w#AS$uFM1E3YeVGiylKr0`3$1Kb)7QUGyM2_ZRlTnHQJ zA!0E$@ab%#ft_H_7p?ePtYwrxcc@PRPhxl_y^2aj0Dsb z%@d~d%fU@6#ISE`q1ML|*8M2jI}Ym070m-8EX=3CuA17Z8@Fh(j`1vk?x~&hRBP>+ zo<1G`2-!f~yTM3&PWFEu*V1dE6`Vn^0<=bwiAye@F&x09Mvs5`T2(0CjF{C zh=@4u&46!ER7wywbrN5S4fL2l-AB(%FD1`q0;TI#(885fohu-{QpAEXQ^D?~mEF=bnjaC`+ z9t4JSWpg~Sl_#7exOLT)R@f7kL(ST?fgT&7yhYolqk0)MZq4zMb{~j*bnNA(xPC{4#P8?xi zKOD~68BZNtP8`DkPOSa&jyXHSS#C$~PhUa1hVYwoBzru4hbdH$vhbZ*;vN#SC4$RY zcC8^d=cvv&?L0!1KF>7v+^^$l%rt_k%JNk&&)xZ%k)oideErJF7y1GFv*{{{+n^Y_ zJ8vem7dz8wk;VI7(NpHhKRZ2!^iu5`6xw2~>rsOs>XXDxJ#LlLMK=5-%?L1^YKvp( z+<09cO>he*S(;sIv>hjXU|Lc6m6C`Zth%_6vqQ39VBvsH5c%2hwhmeW+@Z_fNkTTT zK-)7+NDzjG`-Q-9_%@S%fvD+=(b%_w&)D8$e}Za4S82jREv^wFP`D8HVbgv*EBkf( zbJVvbPf{4$75Y4-1@|c>ksm4q&mHK-+MA$3gxewC<6o%D7vrS2pcrpJpaqp;S83Pj zrFkCE`gkg%)o|BkDu-5I@&)cH>M(~=Cwn(`csV?N)H84rJz!kMD480`q*WD`NtId_ zBl*A&DBiI1XB8(ys&y8ZpWv{?aqJ{aqiz@dLY; zsk7tJ0vE_%;4_1)pp*FC3<)GgIB!Q`Cx;AV+mI2qVe&7NHhIH9$J^z7cgP8(g$Wqe zT%nFY+_rWO)mIkww`{+1gbK{<$iWGA-w^Ux`0XXg!2L3O29P-=kdDjXG>re^`xmai zd4}mxQ6v#V0as@vZvqaIWIC&$rPeelWNFmK55x$Yvqh=beyS$h^xeoK@RI3#YNVV} zNSF79TXq-j*Kf%d?sm~d8(e#n7+M=H7dq?E5g8$_NUk=w4#n+g@dNSgi41^WyScs+ zu|)@Xqy^$Ew&_sWh=O^L+K|au*l^iiS%KbQG!0qy!(aZWO>C_}P9YfA(zrLsLePHq zoK5H?js-=q)u>J8AbA2Nbs&=|vEj16vho*0xZp?NsMG6F+@8Wh_qX-0;-yuq2ya3y zlOr}0H4@jNRZ<9xw$%Q8ndu;+Z(g{6XnUxso~^7E@j$2+wQsx<4GtQDvqbJTrz&F8 zV7VcR-nNv_vBqljA}}Y~JpQ|_xt48hq10`#X{nISVnj1=AVxB&)5A*7qCt%TOas=A zl}aYFJ~hw3aNa!gjoFB}U$DgQUU~uBDwnsRv?UIA zTpdp`j+eOx8P|~PvcrPQ=&F+YX(={=1iMnCzus(wIxwgz`ie`Yw902`BoMDrOi?wC z$>>kC7+9DF^t*Satj4=#^ylD+GBH)9hy&mPY!K;|sgeK!GcRiz-K$Evr=?UeG~GX9 z1IsfPtIS4_{e+^$!zbCzbxmcdC2@yU_{Ad3_(*6*${N;wCiS&XZ1@rCbktF%(gc(P zWp(Z_AtLY~*wN~|Fj1!2_>?1MH7~dg7|ZBVywuA@HRdB10R_<$k)`sg%37Fl!BrS0 z!#&uQkag&Xa}6?#Pb^@gIXMjyZ8qqlVhDO->A^_*1x5!DwlyOXL~ zQjqaD!*vlgnkliLreD~f1fx9j+!~i!&htskW-bgW@lytRuun$#>=kVU1qwj!2U{T>_9I_%J|#5(FM1QQum7kzYJqngPTthd1DqWyA?tP;P_ z0&dr`=)W310I9Q8*a7F~fn7-h#{F(2=3ck{zbe-7QWC|MtipvLPPQ0e%h6l)YlS|B zscDkQ>KwWf>W}5WaqiU0IEi7eozmA;sam~$SX79WZ-$2z_>(fNw{$b`QQxjz4=Uin z9DtIrMSw()$!xqay_EGycOr^4QwAYMw-Lh#5Kmq@C9bPJ;G=VxJ`w!;zJ)sL0i<)@~y~@(;5>EO1~u zaD}sa!(@w-Se|pCc$LYr*NG>a*7{CIdoVd~pm}03WN+zrMHqhR2E%-Eiu?aBvfeVR z%`V#7#ogV#5Zv9}y|_EY-Q69EySux)yF0}T6t_|wPTF_x@0{;CKa;hR^(6U``OGoK zJ$ZsItz_7)Mb6V^pF`hi)2)LX8st9t9}};$Tc?@?HJ#ixI{033a&Dpfp7DnDEEul{ z4r<#mc9f%=t|@gEt5W2Oj%?`gaw)6Y6ZI517ZNSX6HLbQ4k)B*G@*1*BTACWw^jnk z7PjRJ_vXA9Ro?92c*RjZ&}9@AwY(=5y+=i=Om5TcHfFe=T9E4siUgh~^2cX=$(mqo z7*@L-Tgg6b@At}l+}Zb}+ipQe(CfjUL$8~}Y4n?DT3nIkY=#J0wDPq(?As$G?c+Sf?y)i5;UO~nZ;aItSUW93gH~c_3PW; zJyJd54WE#C4{S8-_Rjwh=7SOAz`kab2u~lsVM#6Q4u{MWSE$Xay^S64n;i80+#^17 zgU=5lPS9+xU*lw+8*3-vS+q0k;Y(lbgZP*$b{gKnu#-T#rU;sn8otqD_kZr2UEPt*v zFSc2x=Hgv?+hA10B}FzK(+lkEL7-BI3=uspC5?u6mr+kcon%!L8sJm&Yl4M~Q!ks1 z-xK*^Xbq!A(WVvO58VA-Db<7a1|!-euPK1H1?|TJe&8jo$!X$x1*Ggx z_{#I~wcnS+w6n-wm4WD`5Tb7fg?5JPZ4W}z?j!r8vQyMV{gbh>3Zd!OeZ73iUlhUx zeq{Ukj8^e_lB27~=rEp3) zGV#Y1vtuq`j1UZwAa-xOtl_a5#WpME)T7ovfLcqh;@>gDF?J{TJ3+$7_3MGKPh)!> zRT%APsyQtyJG=a~%P!J0;!9TFY-~v)YP8;~S1txF2xx#oBJANzC8?&~5HmM$(b zx1ldBsmX=~-^HoY_9IZ&#@?Qd->i9SK>8#T7W4{sE|ndP1QDv(AfKKO)U;{qYcZTX z5q(qM9GWEm{s8q}=02$IY~4CtyGgQICQ|In**gTD{dC2iU>+Y;sKJ=E7@R`isvO*& zv>*0I_(D(dZMh4)IT4@m7tOv0Lg^Cy`n_iBnR*b81AAc}!m*tmPIB!``Dm||H+1bQ z&boJ8h9s`cHCXIyyVx;ERs}q!Pd|(;(Z-F3(B^rBg_lK@pGE#6vI7{WXvRck#^^h!EBQMFXI+~Pn7H%!ncoqeK zh+U86_=ku&e|Pw!!k9~jS{L?$6Lg?FQN{uQIr5go=P6h)WVhhR@HQzYM3yfq9sYbVWx z+md6AK@%F+=;mXKZrOgX)QF=XigU&;dd}CV7kPjzpUtewB$DC91ljU>Z{#lm9?YK& z!3-E|L(;TT{nQufC4rlMTk?>x=Y-g~Bd4iaZbKAc3u?OS1I_tlFk^vv@}w}7PNmB{ zju2H<9(Y8w=(I?4Tmc$^e(`wLtUJY)6i&325uG$ep(B2>+bAau{!hM_r%Ej zaeH=_T2yiPkSxs=_;*+O-(9m4F5R76%040P@I*VeG}fBofyUtZH~z3sWl2w>V^bMS z*V=t9vzG>+C!c)paAN8fjE&io6WU_~cJ-?U0&e(?wFh;bl@I2}(uNS&YmPsgC{Vkn ziFN=;t ze$M&$%T#x17N)1O{UsUFG1;@&luJYPr0A~$7v~-}5V-wwKJ-@*QH9%|b_bVz$&!!-s zVus>X%5i2H7lY~w#y&KlIoF*|Vfg!1>`9q&bsNoQXL{Wh=#Jy-+2NF{ABjIzU6mHQ z#p`_U%S)LI@&(Ri2jl9TMlqyj-c#L-7)IhE9&HJC4nwaX0H*D_=`9x0sGi^Luwsr~ zTQVYT(ta;5Z9qkByjM3-=&=1tajVM${xWfmEOAtjSIvB+w|yQs8Ec-C!0r?fBpT zL#^P?fLZR?5arnPI$>6ZF;tQA-;+p+P45R@Nr~nHY1o;K6Hr}cCJZh(2=sxK8R`hF zz;uKIj$S9@v093Mng7UOgujpn^jZ@M$RD?7>9qd76aBk)|Gyn`80Wu!WV54G){h^Y zyYuSfRvN75e^$(b>i7a9&Wm}9nj2y`(Co)PLx-LdP z30BWiz;`vjz1M`JPP;b2Eu;MuEh*A1f;q#+$mwGegd5}4Qz6sw6zXL$t2i?%e()>P z5I-X$*o+x+mMj1Zx7gLiM8ZMU=R}(1Rx6%u-nUvZcP$NH`u)HHj*%gq^9_^ZQr*If zi#9;tA;5~Yg4GtREayxP*#dli3SQ|OrE95pd$VTF={^C7R|aVIeeo$H@3Y zJ)^cJjjqRnu9;^w+QEj~&3&G*(^vV!a;m!Z*l0<^B8E@QX@hZ}bdYgX+5!KL_@_dp zwEkD^trj~iK$YS~OO`=fk4|bp()LB1-UQydfP&r{JW+y^z>VlhX~e63>aP#>XuEDL z%+?9`Z2P;xUcT4hFBWM)OL;u%EQ_?ynZV)$kCo7_e6^r^$kOLT=j3N&_lPl8{qWrz z*TM5_){NU!oO<#DrNIwA-3Wj66eP!&9(@|n_Ye7-VE;;6LTJJ905-n5-wjF6tXZCd z)%L2n;-CIll8Z}kJU{cg1(F1fCXC==7px}tt9Rhi#FM3>h0_~7NK;uIO#P!csfJAX z?{4SH7M|8NLEaTdl9wBk0JH4**c$!pHwbGcEWbwlx>ew8F_O=!3Zx3=zEyc23_qj( zPK0?v6}U-m&X~9IjqRDwYXpb(z4p#%J~C68buZB=W*+W5gWRC?bu%HBzbDaJ+1;S@ z!vekE@J(Qf7IbJZ3oOEseB-?7=aF~&PWOov$;$RC6p4xL?`_m%cd{07(aj+CeK8V2 z;OT|?SAO^U@Rj&CO0+5RvuLx)xk{wZfr}mQ{KJZh6l{g>CG2vCmZ=d~T}njC_Tp37 z*sRtWrkKR31{`m=RI1r}+*8iLh=GWGE8;E3t}>tb4Ok3K`$z}VZzp&;PM>#^{ZOZy zEvgT|@eTsPU0s?ETg&xPcx~~69u{aw6|Qc$mG*xs1RRdDX>gv_Gy6WoEUr{8`FX7w zWB%!(9I@9v_@A5}?>CBH zsHcw5lm7lZbBiT*OOs>h186M;-KA1ZT~$;QF4jo>Q4IXWJHjmDVP5pLUtY1nd(h^T z@g-Y}{yX|Y9kU6u`;~e(2AY{tI7c8WDa+}uwf1DSg$Gk076t={$7Bvoyqjs2M$d`3 z)#8w;ZZ%)GOd0=>OL63cnx|DDy5Q?6#egVaD;M|_CJ?o2UYZiE0H-5obV zEu;~xz2Mu}I>v^3yH&O7^3zZL@(Y<=p|(5-NPI)U#{SeowrfO7X9MLml;$eOl?l5W z`<_hOE%*rL-rM?Orh(T%$))LJNs_KSDK65A`}>N`==sSz^`I}R#DU}vU6VW}*AuNu zI#lN+4nP1za1@JpO&R2&k)VN9!}el#Dq7g#n*n#3f>0K?v;ZENG@0Oy%6FF_7pwOU zO#W*T!H+3`dM6?_pc-UsBnetHs~mq!!az^hBh%gO8PDl)*VbW7@cP5&McNt*YnuTY zgDznvkfW6|EvYc}Qc?K!%0r>UOnzUijTCeQc2DZ*eQCG*`QQ$m-pT%#UTKxY5zx^2 z^R4rZg|U|DErt&}iSo&S6hpo9ZHAT*LJh#tDGvc)0Kp!>$H2}ZOF{}Xszx)fik=0w zkSF5R(KkFCnFxmNmPY17)~`W~KTpiee@{&#b*2A8Lvs~3W>ZpZn95A>+0TxmRL}0S zVywa>ryZ=aQRcv)T=s=ldh9FK&!$P>dU_JOlbM0R!}z_Xe{?}XM#gaiu)|kix2P(B zMGpW^2Vv2#edf&(?tykWET;!=)nhuM^>6TmuDaM9xMQjYc&96!5(<^fSw3Nf@ZEsm zL=_LexWuE|c7DUh(7oB6?$)6lSB=9QSGfI^Ym&yg(rsC`@{v5))G>`lC}sor9B7%nusndF{tMcWnmUjk9hbLB}CM z8!~o^k&#HTJIHr^4+ei7O@m-=CDtodhHub^ zxE)$DKu$MeD#?pS0hnxX5N;no!fyVoR>t76lho55-??VI2tO(7GtMlXLiR^zfWYpO zJK$2oWP`||fKjXS?%y~ZMi}TK$*kc_;Wq#?LP0`T2gk0*(-pt>bl8)S%S_zDaSA)j z`Zz>rtSC0qQC@XV!OO0adqUOikN?}L8-~o=ToPDOi78k; zPglC@3P|jW#Z&9XlTqlaVzcOiyvsf&cioE+-OC$$ajVU!fOTs^=x}_*#9MV~STzf_rWgJa(<1~wXA4h8 zv9AnEH)_`Q;BxKfPjivUYcQ1$UZSf&PTH9%5v_7_f?K+;4xpRsJj0sW%u%A%NJ@$W z)cCmQVE))BPa5M=T|Y;obs6oXuGg+{Rh{oq7oQw)HZnF1KxHW*J{d@!>NLG*w@689 z!tqSC!M^J-9dp13KOAgQ_uc%6P@|p-8n1@7wsT=VpLGn3w9Y5HDKDTO82aY%sAX8M37k2D~Tq;_%&oZ<3_Kw68 zT&Q_r76;erW#Odlsd4l6(JqZP6Ng{%CPe=TX4n(-nCiv=4VRx`Y6&%&SDlMYt!rNu zTc@-EVV|kJ z#~#c@+Mo?Xj70W90g1YB(32wTML`33as892GY-=!DIbm-V(^l$u`*1dmRJOSCoDp=R30 z_)=NrDjzn-Wr{k@^dKOatp8HKWjDSjgC?BG)M2XEjx z*wdxMb5{QEQuMd34$p)EBLw{IO+GmM@x?jfv4xeU*2Trv$&5>c<z2Zf3 z7n-lCn{KKz9**y&!md^r9^-ufbetwoWwNGav!zXSw1lJNxC|L}XqjdPh7pvV#agOs z=9_C&MhmFxXD&iUZ7P5Z;2TOJymwus)n(YpWAMoA*E*_Ux5L{MzM|SzS zyygAlmPfPf2j=U+h2%8uQ~}E8XKqp_-!9MGYEi?7hzJN(+jv0}v^82p-C$PgtWNM6 zI4^`3QPsN8K`LC?d5asm{MdQPcc2U_29j#+w7FO0aBSKPp;oMpmRBhseeSdgY3`u<_v!GzFs=!>#C2K_%gb3&WI} zo1=9Forq`vT{k5Wu%k#tYO*%N*Y$%E$;Q zDj|)-GzzEDDm5|wd;(snxW?98BYg;#=w5p1eUHkOKfUWgX_?+-vwPQMJDG0 z3xUpGduf4mf_4J}N5HV1#Y11C^zx;*(03R*FN`;>>kYyzLbpHXZ|IZi^=48qfo{$S zqL)L~zsjq8SODf^fS;qDfiokSoU`h~eYQkz$=9_|e5YLsnB z7Tc)!M`gKS%x>q9@CEM(+e8yM(hkCN%wXHQy`xw(gS~^$e%86I-@*9zr zWm|UvK~R?EPqBvyFy?2F)6~m24*izW(nCSFI>c)$*CjE~vypV6O-~FrYZ(>{lgMw^ z=r5zFi?(h;q!52ps)^xqe#fY)9ZAm-R-B(m=Kj9vPVt>RKXnt!_XzG}X!Y<$Z~A1= z`bBKHT6C|kDx_M~e$IsAVQZ8`{Df9<5cLV4wnKMlk9P0DoHOd;O|GOFxD!#Mh#yoD zXCcg=M%9+Ta=LLOJ=9@;PbHX$vyBCV!5jcdR(G{98O4M0)r_Yx91WkWh66lZ1a`7*bk{>~1 zQ<`r@L@C_c>W~<40c!i;hg7R|ca=C=c^iZ90R&5odqQ;Hg~3|j?Wa+S;wc(xVq%$+ zV%d@*8=V1mj9_p${m~>|mtPnS;txZwn1S<2)&}U&cB9i5Rbyb&20=E}Pv1$56(Z8@ zkU6h=^@r1Ma1cP^g(ak+X3{F!=5=Yv!6vapB+ocj-rmhI56seMTxEu%Td{J>amwgg z{W8Y6+XrTxIC%5K+l(;gdN%69xKFd{F%dv?2FMjWxX`HN55=~FIYblwvczCxmp+cTO z(F@?^*@#k|4odYBG>Pc5JqQ#jL5)6HWrNdap2H!<{n4{vUm$7TX+BJDbD3`q+-}ZO zca;Z_$FK85+(?(G30@dN{q#h4i5`}brXJ28AR+#eKS=O7uY+A^*o8lSd<>aP6Cie$ zxMCm%G=JoJns|Dz%MT{lOwjL}E7f0F9m-*`a-mISMP!YIBxJc(!QW)Iwb5~zikMKf^QYjO3vffbTjT7sK zf;i@2mq`QD&WmT{>?4+NrREfn6Q|wwD_#T=<^6wCWL^b7fGM&Iu=r^n95Jg61=>}{ zjo|viF4s_Fw6{G6*mAU~=nTw%Niw5>CYwg6PFpZQW4>$L4l-?)5Q&&#rtrL7bLTsl z|9z8I_XZo-|0hqDgp$@+r`_zjvom_3o=Oej-k6xH@um732DBh1>sDCFkolkn)7J~1 zX~U_IRp$Lwryqax>>AzM~MU^1ycmj2}%_3vCP8y3aU?44q*v%E5xH?4e1~=(APK~)l z0+<4EiUA=XYdXhYaOe4b*`-?tI9$o)L+_14WsBUuwY}oHis&$BT06&}+vokIqTzid z_rxO+6^Mk#O7wjV<8E11?XhonC6@<%Gy&BRVPX@xuYUOj?QQu-n{4??b*izu_gT@= zdCQu6FUBg$uEA(fMM#M>luCl8v#=)A{(JJs^vlFSg#TK4Q+gu>cmniSGVnNZZ~k$Yk)nXEYF=TzqzRrvP4z$jW{jehkXblV5%#LH*&4q5~0(WShx+s0C| zOfpb&61>Z`zSZ;<$MP*R<1L(Z3|R)c(^*9`_uDZ*_YE+)0)s^m*0r~{-LmZPjm8lu zLHSLcYtq%C96$S*&BqH&&Feo`^cfZLZ zOolp1(;!t!7&lwY*HRU>Ahlpt5Db#bpK#yrD- zIzXzRV(jlbjkeMGd z=QBI3s>MzT6Bz)h&5GR5AAGf8+h6dM+mjVWzZS-fqjc72juYTL(uo)-n4g@-6B%)g zR>06906J*U^AzcGs}?FCL$ONmA|$$6y7-$zdo*I|q2NOh?)@$c4<5l+G01;OiZ7)u z_miZKmzt-%vWmBW!h9wHfLBot*n*Qn5#OMfYHV6qihJczvrvX>F_*#6Qnf? ze$2w+5+^}1Q7F`M*oMZZG}&s-7ocB45P!;oc`NC|mWI4Vgkk$e4@D6Vo`6!8iLiK` zKWsk}0m3i6f%y{?4!JXY87uxuXuDY70a?o)E5j?&mHc;^B@46P@|nAmNV~aGz*WKA zj*l>I@j%4-ED^4$@yMI6hHCbiy8}&|`2y0}GpgeUeyCTH=r*;(z!i+EwU$;h{`Ydw zSZxX3tKXux`nw*)SX$Y+W4s>d0MY~bhARvfN zm5iX`sz3A81D>o6#@F=K=FhRxl!cMYr^tQ@Ht~LZkx<^fDBqomr79Gd-SJj4s?(vD z2<0ci?)z6DW;F>wPq_2kvT*`cTzP&)vb;~x^s8=ph+#gk${?XO%9wAKO(}&;p?=Py zeeFe;%D)6xgNWT*2M(iU>}=1sI>ik!&;#J!?B11Ddu_mq8v@#A_0#qdQEBZtU`Et7 zlzw6PC@X`y$^&TqhOJTK)$1-MoLC=^x_%B^e83#11 zUC58C$|WocGxS28NC{Lh`fZGwx;OD~fkGJBnB^4IE)6DOOgYj5_T7+xj-?bkJ-nvs zIpsK=$y7mf^jI@v%WJAp{s~;pja&&<{D+rTJ5M}F2ogoXok=+3CYE{!fL zSftG-Hb`WHAjd4yN16MdKHYP*$J;bwRX!c8t8EX5wr$J_hh}E~`((z+ZLoMhoy*%( zFAzZmS;+BIl1~qur0zB1t|n$&?LkeH@Y;hVb2$63F!Qm zJR59>NH7xYWO1ODoWR>X0a$Ns(vY;oE7_ql$oO@iR))o#*UCc93ekg zHKmgM=kGt`q~YIH!@D|ym&OV43KW0g;1qnG9t)BkUsYNeIyv06>l0W8`9*)@@(c1) zD~LxQdnNyLQFoWMS;P-ur3SQ=oW%w?*_)lbN>b?%>p>FJ-Ckw?+DGt^2Jv zc&YP2MFhA!BV~Pj^r)BpR)dWU+~*{q&Ca+xLVe(cTHyI?J6e=;f2WuIwH6x#xTqj@ z#tU3L-O9w|=|=^=I*a(MB{%IFZ=vX$zF*d1&kk@idLrx0lwjnz{cN|-TF8ss{heZH zFx1SHyKD3U8)F_!`D?e2Mq4}ZdFr!sLB`#c8my&mpQyKdqx-wAPIjZrH2=wh-6+pz zy=^k4nJFrv!LYfh>oY8$Z~6kl4Op<5JdAx+I>e=(&tl^1y??h&vH%ZsE^M)dU0I ziR{D__!T@C~%004v}Y=`Z)Bp2+59@x;6sAFG*0#utGMDksH<|z)3RqJ;t z4o_HGouV52U|zUN@Q^`EA7LC^l+vuSgaBo-Ef8Q1FU|U3AXTHJ^c5VaN~&OZKN2^` zB9}b?OtE4C7KclTpK8p`*)SoQL3_Xd;F~vXi(pK&*&{(@^VDEN^j8bhm(d#*bfzvX zF7!{#d$2LFu(7S?;+<=YNJ_`LehKNbBgDo0nEVD|YGo?`a@4Yr5)fd=j2jA)PpP`3 z+a*+9_^lR#!XI^}Z7*gJOewp9w3eRF(msNg^v<QWthm2I$b#iN%;@*Jt~-VA~o-eNxq8J~k+wrstg{hzCRUhd_;d?SSI z64v(b;2=O;?m?_#(tOrxJJ!=SMpS-LG&%bLLZy3N0tuM$J0u1y@b7Ipz#Dedf3N>P zZ3PlW;daf^&s^^b_m3|9-1mXRrm5MZjj>-bf;Tg3B%M6o3rEWgiljH%{<4@Z58-FD za#$RRHHNd*zv4z#fwwMYbDD=*6InBb-W*|p_->PwNM+&YUy#b*Cf(qo+p8em)9;N+ z_7LG}mF>-Q`JON3zUkCQP9N7!G7OCV|E=Gl4qK#&BR*2^Ac|GsVTKdErMTZ&svGfpYF%2em;Z=DqZ$Q;U;*L zJCyY~lu^CCLL!nA=azuw^_kI{f9gRoXWi#Xoe6;|T&&50DlPfVBgfL<WT9xZ| z)Dr44I^{RnkSFbGohriUlQ#vq{j7h>Y*!M?xN;_Bg;hl>mJ3uleT*Xgi%%iVM?4>5 z(Yrfe3x0SB7u2B~AnZrmzE(_IU6Ark@J67>Vc4G(If zFG324NM54kNRa)7{d3@}RJYt{tQ~&03FpYk`7p6}BMaX*y>1+Rr_n9COkWAwq)8_# zncg^}g7cIu?;tD&;{!~B1#`@P+`S0(g$9&cj{t<|j-ORMm02RgU=KmiVl{R|rzYxk zq{3eA8lZ7at_LV^D3^UGaCUKCcbr(Vu@VayXs(4v`TajB7nn$!$rqkbLQk8IY}#u~ zOy-q!RQ?#6Fo5+_5Kx+WP!RZ!hefJ4E!dLcTV0wVbBGPaNVB zW^qqJp_^hzeP|tkv*Ahz{bpj1Hu4v8)L7eiv*Ddq<*=xU;cB)(bNjp-FIX1+N@BE{ z{=DFW`X$h&HAC`n`#mFwpsP~5&Q5vPjfn)*?~|Bbk@|rd2Tlw zGVz}YFvacFvUM5{nfA1U;B6hYp75^99Hi^jO7z>qk^?rd^mWpd9H!!1GV!5@edc7E%nDQDTw!$*ttV01uG&iifgq*`&Z)Q@12UCz+g$HwZouN#N zcm>^t&y*dk7n0j)fLGUrQFmLR*!z62Xx6cr41W6ASj3kq{6O5Zoj|pH<4i_HMt(f`6gyW*L*#x8>R7x!y&Nq|T zivc@Z)pcy z77oOd08(GB7iS zO((hcR<>gD2vU8ugkTpkPr4!X9S4($kJYKwZE?MqD~ zNO2~XLj7#yH`AX3pM;G)nYZ?!Fsdp|rX^r^yqUtNjX^aqX^aU2zMe;GE~Kwi1eq1F zInDHgtPwp2)RyYgB`@f$$4H@8pA(sv)#X}J3m~wlf)a^B5TFf^wxF543%&;Q4Sz;v<}}-%})1%%ny}6Mt^hQ4Q6l_uki67`o1W;2t+kDy3m z)x?fHy#Mvq9fTN8i=VXqEpPwnjZPB)yk`FLxyF0nSukqw_bzd#h zQEF>=9LQn(X#6ghPRGaHDQ-h3MWF0qg@s;I#pg%~$FLzq8Ka&{fKKLyiZS*zH&a~v zTt+cFDoBST5w59(YAhsKFJuI@q|97-p>q?xtg!zuuz1k&5?D%`A)_iGxQpKY?Np}X z;7CFBo6C=#Vj)IO$^j=8LDuQkTlHCAJ>sVjesqRf%RR-rg@0P4LNQN4m!g8l%ECCg zf(Hd@cAxMA09*HGzpyHq5h7|!^iY5R>A!ztpvWG|CPWzTysvjWm#3sw1ayD$!?*Qw zfJ4QSFf6AJ=dK0$X#N3i-0&~#=+gix@`-ki_~K~uwthK+sW#o4w2Y7mG*;8jul(P? zxEi*s$OxqR6P?j>CY0(vC~eW{55J<`*j~|ao1ZvYb9k=?)M^qNaJY6JIb*mAr9J<% z^oQsDqel;aeS9%N$IW?RJ7fdYo7sXHkAjmOQDv=oC=D;vnL6oi)9^+SZ%Jw-}^lvV#jp^7Vj zSOWGBgIMl?{X;*`RGn&r# z;2tcwW*nVmIWR8Ue!`xn*9aP~NMm0J#& zr85_h#s`72n#pYtpy!`KQva{#KWUB=YH&pa&_Hk&HsPyG!1loyR4GL#1Lx< z=X zFU}@zT;Y@ewIkOfR|z*!Q?-Q^v=s*XBw|TuK9pL{Zc1pb(Z&sqeH6eO{Ktrc9*DL< zZmQZ62#j{>7ZiqP#>YBB)QZ>;@4$k9Kf3OoYb6HS?P1>nLNghmsc`RB;)H&cp9IxGap>rEGW_n0wz_E?-Dus4N4VrSN`5VE#LWTFRDov#*9{4p~Pwm2iF#2|qF;2Gy z!=4AMM}5U41zZ}ik_vVF;)xrT%>((yLEP83`HL)YCeN?bjc<^oGI(;4O>40P1~P%IG(<`)&E`bq1Y5=glYlXGNN|Ok(IKIcHPy0$ z<^yZkg?J!gK|(M^TZicLC`DVA1f)#<{7V2_)n7()=n7gy|HOhp(nzO(gG-h3D#(-4GvenPg&YE(LgF6B z50~DF8Y6hdoJr5u0}DH?apPwWNXG@12RkjWNes8KtMShidX2qe`<|bmM_Y3?`;ZN~ z#3ns(iEK!APS)?FZ+aK3`ul?d*V$YDhdeO{?XdK?x*84tdUr9x5+{J`}vt%k7D` z6aAPP)_4K#*Z=f$VuOKEL(toig^%+$O+8}f&&RHU1rQiHs&y|O1@e??>59pf)G>KSZ~uR zZopzbdjNcu5Y}MhI7nbtH$P1vKlkJ67Tl{VGs|(D2i&DL6`gF@eQ9GIMaFJ`@c#6m zt!4x={;@YUgE)fNR2E^io!TZJlQ|6N)igsW-}H|iAxjy~qIRSCgNSHQa29)YCNHVC zk@i@){5mV*S%$$mEvC=eL}G*=`nU=Hr#Vdse)cM$4AR71N$u$y#;#v_^{ z&wF=<=d)KlJ=Spb?|{7hf56ZlHta17x(InaP#*vrH zH43eD1%pdOOyaQf2Wv77i08?(SV2qvE43Up4#_&2n|@Eq-v^)|XMW31-B`{9dT zGdro=C;SAX|B8(LC&7VTayTy$If`&UDet4j& zTJVnnM5XB)gk)pI8r~uJl0-EorlVKuKvVS{XZy!QW&c120}uUr9R&B~LI@pA*ht$vW?rQpLAf%#jbFHr@CrU!gkx`&0WJ zAIE25EvLp)(Y{&>qOyLccOW_PfYsoNYA*gy;bV-!;<51o_NR4-K-1gX<&fHXz@N;&zBO33#EK=L-akU2EzsgaZ%4Hu z5mW<-M*xbJ=t#e<#gJ`UKxtul`s5li$^v~B%ywlf7MZ?qTBsYSQ5#A`5FRyDM1#j` zsmDCMw)Or#zR9j4C`?(X5QdHG5QrnAK_4}l%lWc)1n}lhB*aD#%?|#%Qr(6yDf8S; zA2p@R)S`BJz*9+L2skh za`$4fPQdEG5OYeYx$r`#O48vUhpQsIv`m+(CG7;R?&W1VGHng(1F=1<(zVuAwq<%P zYtVxTZPlg-OTC6jbY+L8Q52)*bvCv_4Qx_JxrPcYx#rr<;S4~#wn;jZjx8RZa!qtT zSK;Qriq8&M@uhP!$>Gp*BDzkkf+L^_asJ5y{MlH4p@7cO%Im>kc~jO=%Bc?Wl51?m zD_Il7;(PIMi3o2xO_Vwc0cYl)y9Z~Uk!G`F6uq8>H$SK|i)|vjNTO?Q#Pte;Hb!)n zJp>#lqw8@yJ)CLOydppldhCah{K}BAs6w_U&YN~U%8u}#7$dGG*=+ooDIwLC8Yco{ z`SMYJ^tH6uEVGg(DV0}6V>V7soBcq(O(FgO@r-!);8K42qbmg8_}dQ=9U;|dj(_e0 z_qd;;Nljf?pMo29WY1Z{MDvQ8r0Sg`ehBJF^SZePT_Nzt&O1hm^sVwi#Z(OUlfoKR zlS7-QZ2F^Bq=FCac&F;G%0eKQ$Fw9*7SNyzawN-oUvz}3qZ(SkMcP*5!N7irefE1G z&6vwbsB?II)~mae$)40ope$oh6IY z2T5k%I8Z2Ljz+$)^!<;4z|CeRbH&zrRjN%Ir0HP=R1VA-vQZN>7lZ*cvtLcas?*A{ z_U_xYaoeqj+7nIgrNBjma_P}%pIs<1=4ZfQ9z9=f^p|!BVer_@cd%!N&_G>_ZfGbo z#T@+8)NN%Hkj7W<<5*1Dk|?a!@2b_L_3Od8osLhZy&U$5VDMW{_piwDGEMSANH>g}{~7sD;0w+F51rZYa|`$>P;|6jGqp5sWQP^42D@$;?xfCBCLVY*^vmapv$j@=dQ~u;VGUqJnJ%Z zHl6RVfOQc6!K7(QA|gKAVwg^rbBr<&{gl_!uJ<7B9Oy3{Hv=+H;Caki#Rh}|*2B55 z{=x81__-9FhwJ25nFD%ts`bvt`9A-ob{bs=r$L$%Go)x{)U`8m^EQKd;y@W!M=aV0 zLH$ez`}XvfivH`=GDx-fKwcd%eO}()5V%f zF2-cY&n14Fe1V0I{fy3T8uZ`bdzu*d&6T+NRZJDb83BBupyi`w^tZiETi>u7Q#~kD z67h2DdhtM2>z3L{>F&rD3IGQ1Z+OdA#gn_)k2I8{PCcS_0JIHJ<`}n1avIT*Rh6x6 zp>A6b7_jW_JD?KxY%26AZY5u#oK)@&(}(^q;Y!=l%&Y%@7u#1{r{z>*_P}CWUK+iF zvlUoud%^;XZ3o;`1yKOGW%m{!|!vF(Q(_?UDrv^$xo1Fo1VoWE3TFm6gn#X*~%58y2MJa(~gySBLhA z$-@;fK^e3)g7<#$#|BEt+ua{e?tgeN`C~sl%=jzAK$6*NGC=yb`-b%72-woWyDam+ zIufBck|;>*eaxXn2u+M;Mk+B7`5Y{fP~uI86mdKrI0b{!5G420h8Zh&B$HVBbu0@@ z_hcUCOqN{6y^f~J5&{`28BjE7tvI1!z(?6uG0=gNC1r6U!ILFO3Zj2IUktXMZ=4mn zXL~LtJrGJAzbUvZ%{!I{V8?+4w$o`O)55wFwSuPG{8vM|WucDWC1ZK{bJf=l9_k67sWtW@vB2aZ<5?G3LYTXz5u2*3W^whNV3#LJQY{%DPe-cmnH;w$Mos z6#4uO7y5WAZmc-Q!U^#|Upe*y^$NBX%A)vvMWLxG&c#sy#C^v9xi!3PtAdn|#cUYf za6;uu`|9+4rWVBtpUuu<#ZlRid{VQa@*iY<>;^C<$3miz%H$tgIk#j&vo#uGCEgs+ zB%P!C9BE;n^5jRuTGG8>bsqe}FUGFG3{qgaxZVvI2Zi=u|0A!R1|Jc6G`?Gu(Nd}} zA)dS{p3FC{&T3hIPpUKT-#ZdZPKreOHDBt!CB zL^@oAGB(^J<#8#)@SZM|S0rfEc~|6ZMZh|f=0$#(DKYQ8^$ z)NMG!;{1^o|3hAL6=r1U2S$vMZ_Sz!#%L{(eq`F!<&s{CS^q&Bee*2K20iQm|^Z992mV`AGgv28n< z*tV0M-+!O8>+CvTy6ZuAb#+&DKdaZhu6sa}`W_Yb$EROsPTvzX?IHv+P<(ZKwUR1= z0k#WCB;P$!Bo8oVhhwQ9Hbc*)(B=16GqayYU*np!pYx{Frb`+FNHooGR1*s`6wrV-@$p1)iIvWoNtmX8B$+)cmMNJlq_rZMfTC zE~W97i;?Nf_Zoh)DvaWcOU+PL2RLF(a>E$GbaCzlmo)ZOfYLWi8$b^8Q~ z2r9`*JJ;(y-dhA>z<}>$>b@+}9tkyTgARfks6RIuG&m_?!k6kH*Xo1el*hPU-SSf+ zb5jJ&+NueGg12G(52I&U?9op)e1?{ z#6-bQ!}gRZ)RCDBCZPmSjUQc*CocHjPkiR6xG@r$WjQ@kUn zENCFbSqoX)}rACcZQn{Fy`(R_kZzq85=RDou&M+TUo&Rn6(LG3`;tWu`spO0-| zQ+{md05Cu(_AQ~~OF5s+;J(bly5~hh1QkI3dAz^hZ4JB(hpe1~7~L%$r0;g;-{{vd zdtrQ)KYe(8Z%NNgMW1FbSYUWpi}rx8%L zvuZL6Nzasc9+dpjV5;#b5)sDXYkqr65a)Tv*SIimO?j-VDm2?w$8pL`e2^XI2rt{? zeVaUM3%D$)NF-TqxSSo}I(i=vSYcbT+PbYp`iwV(uKoS)DpM#R1oZ!Gzqsi!U2 z#?L_ErI5R$E%!APt*MrVw|FI!yS_2s&q}C{>ei_$rc|x-gM5}uV1AKm;$KvAtKucJL|tHl+VY(?Zl4B{>Rbl+X-%PbNI z#T%-|WFPH95rk#(7oMo(Sz}mL8`IK=SD{^>sX~=n_Q@zR7}bxqFH<0IupbZ)5;;#- zGSTL?HpFS@S@Xv?|5GOT7^5NS5KW*LU_)zk(J1z~P?A7~QYk(=8=(#%xq_lP{Fij8 z3uvr=fyRwm@0E-jgDv(wUD?`(*5sm+^>NWz`5UN20VzQ?g^X`1se-)@r}dx%dF_io!SOa6qf}-Gu1Hf;=uJqic}Aetc^Tv=ljE+Y?*L zkC4sPe~()jYC?G)l_;K$Mn*iEi1Phh#mKs1`Fjf7PBvZsR2Pk$^szgT9#=@d%tZV) zCTb{S_rlV!t^Da!=P;QGQ)i{f&bGU?5>9&>^bb~T9WDZ&PDh&ptjY@=KBk4^ktB*I z$GvdzZySju{BlsFP$eOIUp`9rkbsS%`<;B#ni|8t#SR4=*-VAFrGrIZ2}vJ;+&Av& z?i=@HjZqERUS~<0$gHy9tNZ`KJ!KuN_x@kFCk;BOwNBD@B{f+t1|0+Y3J)=Lq)*u@ z#4T}&Zil1}(u=I0_>1y7cx_f>Z^H-gVS_B8Bh5CRjhZggL+oeMM45HJ&{^}#yqn>p zY2a2>gY%an7Yr5(JowoREro)eo#omUT5#bjI*wI|ec#-5Zkdc4&EFQWsD~i9g zSWztWMQ288B}a!-oP)zqp@;6eDJqH|G+WUuQ~)!9nJV6L7GE%Q+qm}aWn~2x+Uyus z!eVmb{BVCLLcA3VS0D$~>&y7atz9bNTMC2BuIXT^aN3Po1E(amuaz{1Om{pEe%B~; zj)h3q4n=5n5!o%`hfmgSlM*rJuJ(s^(Klw1z_UgBy26BD?YiM zO{NtF9bWh{Rfv<@nuukpJB!h;O$%H7UUX8K$?rt^^+44X6Aklfl~{(<{xCGAD2(?g zK)hI>$H}q_>X3q;kkU{NY2#fs1pcU0vRbKsXGHj8Q$BzMD*DonNsl3Tb)^l6nwM_t zjx@nI05LJZ6CW#FP{{xhp-yw#8{^R%1UZd*g%bT~SjtMnd+l2JQPy*Hf%ra6hhW5U zlnaagAvXc@k?;!D4gAvRFqeH#BY1CP_f@$DkD{*K`xWic&~?2}RWU@(6i}j!{K@bI z{`8>3^nb`!U%aXQIn}uVd8g-)DWU)j5mf{Jsa?~oW;gl8x4VT$ za_hJkTzDY?WuUaUT`c~%P<)3~PrVSCcP@PhiPgpy00-q&h=FKmv2WGH>6#sf;K?Io zULI%(vY)r3D`eIPT#Olnw5Sly;{t-gmWBhb-0I5h|HWtuO)1&;o+vBSe)*;puC}>ljlj(F`B)X?Emky z&dA&aR8Rb(D%;-IP_C{~BqJv{2{YyJ6jJPoswfPJD~Y8XTg=raep;?uX)E>l6l|QEMyhFf}QiQUB+qS8uu(<*bH3PQZrZn}ySrZf;c!oT0!UCNKXhZ_|)ybtIygwW02!NLBpj z5Zm!{ltUS=g7kCzuvY=GWH_PeTiacbZj4`@YY32k}ZVIY_e5%Y}ajvs?atSoWg$%>%t>U-eIJleT11 zZP)t3Twdmz%xavV*Ukjaq&BUa7qH_?T9=oN%(Kj(f#fL0s0QG9CX?b@xnDP3Pn7>U zxt{Knrx-me;fNrlOjJ?903fP(_3gII)Cpxr_Fb@W zr@VbI2N2wYZ1L7-L`idio_jes;(<_gzaabATj*^@%l;o$s$o@}=vk^}6k_PzlsnTN z`7@yM8km!_XfXflbf)$_pA=Y=Z?1?>enDN!xyd7+Ms*N()N$0^4^?;cjEokg054du z5FY3~cy>XriMaaxZHqXfb;I2ArbSK2-}^`B`nm^*@)Nabyh0!kVRW6m1-{Z-++>KA zk6e2b)YQk*g`x#BfJ#xZ-twylR7k1^pQA6b7w}AKU$ZfQQ?_dywO-dLIYY6wPOs(R zgVVP#?0qo`>u#piJvEc=gCfe~`jt@gvU%LEC-pazhHC^pru@TDqiM7OJU~7}zAceO zoab7aRUAjTjHiGmJ+!v zMUY(pq=YY(SRRMYYjJ4KQfDpbj;@R4`Lkv&mcF^5ItZKPrprhffZLN;NuG(rZx%*< zmPz}Bv3gVEFebEz-%Gvq;4}bn`YC-CXpwoJPLbO3igYB@CY;YayeuU- zjl;q-7T2=c7L^opSJDb-mXF;9BThcjnSqtOS|!fdgs2xzwP5?^u>Y|~Cjz_9;g>bnao{6kjjU$ z81@f21)%7+v+}GulMfZ*KM;J^cdY;4Bw=j4}bpG+|XlG z{BBaS9+>>sJlA7X|87Pm9jN@*e2g`ZVzBX_lRa@VY>$~=y3tq;y-*;y>SVBKc3ku7 z^qC30pqz^E!}`0<<=d$zf86&-*&D4){XGiw>cpS@o*YV1s=OjlrOo$!WF`qey$#V) zb<)}Q1wzGU_+kD;HGE4d70HEP4|kQ>_`XzX)*V>%?-9&4SHpI*sU&I}qTP@y z>P&vJAKqi5&KTh?WUUW6#Jho>1j=71s0V;p@-|#{_&ADTL>#Tk0Hry$Vux3+&SWr__h#W= z%V7c-dr4TnpdO~nY$12q_IyMgT&&%YtNSl!a_>(mXudB*=7;0vU*ZMkjL?j^zA!nn zM_s-MyZ^RfWiM=AZbyaiiMraUWyM$v#Ow08=h%r#Q@4Rg=N*U~E_ia~CrRnEcSBJz z@y7CMYl~b&j<0^5J`nQQ*zhq=`>}MiP$65w!BB=+M@(3y1X+DXOp(d`!u2M3+s1G> z)>BSPiebf#4lir20rD+#0bVB%_<#;4-G*=PVESwO*P@!n1?-GnmW)0yRxND#5nZ|S zkmiL+8(leQi@-{#o_R3NZMo@FzQ`9l{)|QLKI#|tVEnSA9iGkk(#8RM>4iI;KlvR6G+?0Pfp$|)hDysUeWZ9(cQzbL4C9QPI*6{ z$VP4=&=!$?axf(Andvqz>bs>E_ByJ=3`zl6Yxb&bWW$ zuwNjcUYRtX{sQ9W8muMw9m-nWS89#(Kf$(eV=s&Ya;3+oYH(*Tp#iVVZz4RZOV9p6 z67sAd~;mUvMYs9?TU7r8&r_xttUBf?+ z6Hbyx`*%x$JY20RT>ZkfeWoRGOf|1>CSA4O8kJVUtC1wwgE;pphe6nnh=!-^c<_O4 zc_cpA#d%x{rZD~*p|VTS78!~dK#{ZLORKAFMtoz2R)1}@ro1gklQ^Df4mtPBv)5q+ ze;QwX=*Rg&dW7F4*HqLm&nn@f?$pZ+Y7|sEubFwF=pf51%`ElCNvD_Z0rDN38DDq1 z4f$m|jz+wE_}gXOzt-%9F4%?*Xh7#Ej80hcDO?}1ymzt%#ed>*?$Z@7$m{RF#~3VS zPO@UE!vGkK1LqMwHDYMnek(3mjaiLdD!JJJ?Vm8Iy%Sp0(s;%rh_IDR${%A|c7we# zpt8zzY?sasz)Q7Ixv;T%J5K5U?O~gD)d7-?Wu15Bj_Gnci_X0}Jv|=hyk5?MbZMFX zz(WTqyHBSdIKQb{B?Kv%VbyaK=D1S5q(1K=45tgrORNNT;Ydyo$Q)j1V^q&}3X5N! zRi3E?WW=v;G9_w%&**ZYkQd#aqo{iYn*S`h7hxMK#_)$}taV2pa|BG~y&nwg*;Q7$ zcCTco3?%6dtYsIrWh^AU>Z!x>~`HlbmZt>qI<_R|5HEZnhORV?N{y% zg@O(w^p~_LHaD0KH`9+gq3H-qbdErmwCd0Y#dA8h%d$);LCKmT?u84kXF?8#D?ZHh zWJX+Z>Ca8K?#sPuEDUJjic3A>7h7*(o;zaTJoFLb&LrX!9}{$|^LCkP?<%#Mj4SN; zwj59j9*LL3xqY-nF$1o{z1r>i9-Polbh~TY1&V__{*CR_D0H>`1S(-RLB6()69V#} z?a5T2+o9Sr>HXVn$m)P=T{jYD%sx+Y&7%s_nOJAdiV%>9-=6STWHxScXXQh_`t{l zZyJedd$3051Oess)U!_$1}t)BS$dTfhp&iU7hm8AtBj0N=3$UuW_&Plk8h^rGr7f;{J8ztf zfj90|*Q2IXfti7k?{JhCaAs17K}FNfk~YR>b~h=NmO~Q>#f>2zs13>TNjJ$RBpX=7 z!Is##3sskf#lU3`Ld6OsVwBHDdpvOz;S)vck5p~Am6pmEX_biI?S@flapB3r&LN~6 zSYr=EL-N^4Q4$F?uocGG(3bwGdUXWP5!#%E`}gwuZ;e%YKgpqdFrL^=D#>nti6#8^ z&63j=(tSFc3|1p}jqr_R^F79BsQe^ACscu1zy$11!sNS#3$PebF&LpTiO|2B(|i}S zzyGvgWNAledX-P&J zhkbw>kd2h4ClAFW_8Nt|VS}Wj<;fGCNVZs1(z1Xph^ylIn^~TPajF`Tf%*rxMX~dH zCW)6UqBGaP{oFbR$-bllJq!vfISac(@9Q5xD zlBn|;@z^S*y_o$P|dY08YW3K)oCP(SK&NvgFHT^!~yegcz6P6UeZA#AS`5m0wUQS zPtxBB(^X5o5UXYWrWD(xapn*42pQX;6==$5YaS0TZ}CwbgU%n?;3GI)N>g+J;Q=!9 z=-9aq&71d+W>ZMnv6+~R#H!AgR!rXI*_pO-5FQ&Bf3`t6+JoTW@i_ifX+G2;V!VG* z5**|lgC8|;LuXvbVOgXXTb6|PomFpK8$Kcr&E$uze+fS6Vw*V^XYt%M#4RwS2ms&KUeyJm%)ew@8*RvNRYen0E; zGXdO>d&opwigXZNE^`*u;{_+0<9|55CP77hQbQ2Mlrkl7zFP7So6Lo2vhfQHqv?5% zOrt9Ka^vNBZzlIi@QH2YI9MvVMCHh32PQL{%&#M%ng=GWXp#~%Y?gS(6O(1vE1AXr zn0EGKW5QUaA|=K`E-~mbXwWUtVeelQ1%3PW(q|$?e`1`n#-hCvm&YZ?FHq-G<=?Z7 zD&_O+VdpC(dr84c#h?OFt>RMX$bqatv{#Gr+@kme%5P@fv(Knffq0=t{&c#R6r7YT zDiGZYDYL3g{De6St!JaMS+9je#DJ(&Q9(N&Q6X^( z+{t;bmGCAo<8)2eB^9=$rRc1Za)1il-~j7HF9H?2#x#rVI*g&;9u6tZXbNFynP5Ph*rOVyi^U=TaV!(_iw|} zz%AqLIC621-H#k3W*dZOu2zo{QE!BIWta;`Y5Pux<@}EmkuJ)7e);NZtVfj=Y#J=D1L{J#24e+6a5>f@4Yr_gl2GIx~Xfdrta@Pri33J z0!Z&vhy-zSG)5XMIm+s&I5&MaF~n>mS9s=@1HDmw{+nR~ky0K8chzmXHh9It%d%3$ zA0A)xDK{BLrJia^(%);Nq9WOj*OwsYo885){V&U#FCW~Z^PKjim^I%)5-YB=hdDB5 zvX(+0?Zn^D(N1=DV*j#QJ2uGrP~Gk(M5R{PS&>Ep{y~xGqPKD42-e#7f&2i!(Bk$8 zdy4uJC%wcFgvfN4_TWtV@#O0+YMH_B}#F&QHl#7O3{D}D&O z3F+89v)qxcKi)z%4&4&HVHCWBM|p%y-m)w!&m?|#M7Xu^54t&L9q2yrI;8%Y^)?ij ze^`vFC;eLQIDq{-qCN_hUPISgz&AO%61If2KeC|bfs6a9)1$Ytc*e269;4Nh+g@Mr~O zFrJ(;H;`OG1XWapVMjxz>Ssj0zFl0TB`C1Ey+}}~0?8X0j$cGL%pW7RGW#bs))6&5 zgb}lRlnlN0VF`7~3ZN6u!`2Ye;Eaf%nJLSN=qb7bL#bs$VMj3}1tLi)igldgq9~G+ zv7@12f2a}fPInDYHAj!nI8zh4YE-ng42z$Po{(TgDli||wYJ>cEuSE9<7K3GOVu~a z*Og}Gm9?d|9efCLi&E2T8jf2X4AQE-ItaTr$HGPl7DY`c00a|??-o7ej^kjKv6F~8 z+9D$bv{l)Ry!lX-)7+JAXc9geiW3uQc)x*Dxs++UB`{NCXmWVJY}(HpBZq(gEgRLk@+Gw% zhL6#YbZ;;7(mrYj-RE(Ibl>w~k#kh9F)_VM%#1cAaL#iA1=j=2~TI2XyYXg?zzXi6l{(mg9UPXotIV_lDoQ0oi`>z z{#N~Xle1!c#~<^Tc3YvEF@lz@?GR^)5*Xu~NMc(xR}7AtM#*H^wR8m;8BdfEn zu)L>A?|$oO+E)iD}(fL1}(cf-p2UEn}d>WD8fF%zWcG_D<#_Hf z2Imj_QdwAIPcasMacA}WyQQ2Z(Q=JkAplValluV}Jum7hSke?{jg_xR1%0V^Ont#G z>Z$PEV-R{@bf}AN$d2Y1=Cz$`tr6&Qqq#l!tHafL4MWN5rmR^ zc^uT@7lEM0JXzGM4ETJ`SPj;BG~I3|ZsO-6HRxIpzq}fun~&Zsv$}LWmh>tgx*Ofm z2kVL2fCA}?V2+qV*wp57!UWB$#|Kj1hd4(Cm3BMUYFi4H{enU{tbBP*no=DlY~L7| ztMYEsp~NIRL2$=AGLIG1X=H zI)68|jc?+tDQ&LD<6s)$?xZDi%9JBnWtX<7HXSf5Ky#JVFU&&OoS#&M$%y6I0l(XQ zxVvdOH``jhQ-hXusLKc*$U#_J^Fm^1{lmwKSr03cvW8?8^~&TqOnL6?;I|K3Tuw|e z^=ta7hBnZY3^q11dJ$yWLCdd`F9~UPmaL9#Seh#gH;{Zc-3CMr9HKu3WkH7NC4hkc zL>ld)KB-1bOmyno)7!o!D9r1HBDb&*TFbJF-z_gC!hXb24dEI=olmh5_+uk!Hn@`Q zXeLV(p$66QlG(WO+k<-Z0KZK7TQo1~4s%>?!+}A>)1v?oE_q>S9UWMt=dEp=Y^=XQ{0FpdSr=Uqe#KR0fzU|TM-9P{-#Y5` zN>Tg4Wxnl<&?>OQE_6+DA}X$lc;e^+pbg=>Sq$|jK(ATog8Xz42pjThi?@JjsNcM+ z4}b1@HZM@1x1kOu;`{HjNqlCRzIz$WYxA}#w{BQ3Y1EMM!fTBb?R05Warq+Ov$xGv zdb(!)smOJ#$<7rw+-Z~NKn(CNZi#yS8zF!{=6aSqFXXA9RVwQkbXFAecGo7>nbve_ z6!}VjbF%Cf!|h1T50*;-n?HP&YJ!10yjVpUgSGm_w&CL#h8BEwKo&1}tmHO1h%3Ds zw_8y4x09cAH{{eS5~hf&ZC@9yVJPvb5GJxJ&^|7Wi@j4%4@@e9A!fOws-EqWN{`g~ zV118V{(AThl?)8D6Y?)Imu`~MWF&cN5)E2-E3xCILpxnx3Xw~oc-vHq|4-CP)i}!8jX?9x zrePAD9T6<9BKS1#U!;!Xe}h*M$uGAr#ejBup=esb3sfpU?tzsk^LPUJ|Iwpp$I8-BL(^&J~PLZ zFIDYva9xWkM4wg-S<1`S=l%){su!4W*XzNpd}|K#ue+4^7ef`R!H3a$|2BK%;&vro z#oUBfwIrMztzn!<^^3SMn`#_?K{qa77iFgMDqeEP+#XWpXEcVZ+VVo>Z?E};XP*o8 z>C)+V-tWqb{fdo`K4;Hf?i*@KYF45_@dvi5&i8F*`uF?E_MFY7v96*qh_s6n@@McQ?eD_nF)MjAPu<&k~TwU(v6f zo|E6kC`EdN;C+E6?-C3shY$glNTo2 zN*;&c^Nt3s;9Tb6>lz8$f^x2k4-i+Wzcu|ru*+4|R`y)^n=i(P>k14USCbo`k$d&=fz)XAHQK8750Gk z%Rmu|zbzCdc%nEc{fRg4U!S#KM}zu$?^|CFU#U+eHpNf_VwTJ7%0I3-u%^`aSbu|e z5i1UMh{7*@5J#ED4*Jpv*r+Z4-1l+?!ng@|%SFqHk)f!GG(1Mgpb}&Xm@eI}XwFN% zENXMp6YgYE&9<6-g76zL1Rn$wRq>f?{#c|@IvE|XdQdFHya{3v-B2oTX|jyH+`2{W zckTML4J0c5_UiV_Ly`G+|HcZd(0SnQPOSf%6B!HflHQJYTS97PH~^1K7+gKxgZ# z9@0Ps4nqz-uKM~lF=kqTM)*(C9bId2CrtT}>NK^U9g0ocX#GU3RT{hfb17H$Q=Nok z3*t+X`ZJlV1D2Lj`GM9**xF7_FNUq{+gM3MhiN5Kb5Fbwy$+3(xKfJ%6t086dJ-VE zF&c8~WZ3zz`H9G)Qks2sG_!^xc`E;KJ{u0mD17`1;&?Q0EPb~yNZ8$jH;|h2lAd#r zx3IBm-&+kc`bQnC;xe2ft3S@Y^IeWC*i#q$N|0~RBE&)*X@DKtxu25w4m47~kNzyW zjEGo{vn#{LlhtG`W(H2RZ0A)zotk;t8Gi?nqX^TMK7ChI9cu%&> zC-q)bN*?aSMDsMRMur9?a=8VIPx%Hr08}w7z(3cpi_(|rB7irVa zKf}x!!@oz&ZeN7}i-VeurxBbbF%^BK z*-cg6X6C4AhSP+UWw-`txe-3!H4WQi{6&as{j%%)Rnwzf$|H7TmtLG|uI5CP^NHob zn!~N}sIL&5vUykXC`QM;|ErLYjaxP5g`(D>>W^h%1)G%_DRJGw^l%>HkTdVWhu(|x zR8yS7KA_b3JQJwh;V`g2xNcY1CSQZt&YLA8?`H6|jCcSjCS_Mf1YG}nxpZPZTI{|O z#7nyeRjf9|{&Fdo)G5m#yQal8+R}QjCJx7D-046H zW*%_ifTF6e#EKQTLjlR4*VX2=_;gD@*}vvVRpTI-8ves%lbEEUsMrqDpV)L~(0p%9 zH~s~x4WzhpSJ|xa8Tn9y1G8rdL5YUC67BJ}pKAfOwvm!UijOzHV9RJ=t_2hU^3^FrRCyrSkU}p7pCe(k!kIuOcP8m68}DR@ z;pQNjE7J~w%iWzxgh37_%22At+9@c~DZ^1&FmyNS?ZH5#K{hsuP5sOQIO&3}oFX&| zgGTv9Bx|n#JH@>KTSfawJ|e|CmZLns6m||S$^eZFQUt&~6ch*pm}lJV15*gCN%1x2 z)i4Q?aC#D9`d6!pyHI^oXaVvEeBPJVYaGmG9cb5(XQxOo2)4Zo9s{h&wzfYR1XMD~ zh=j~084AbjYRQ>P>}u8Ztu^FD__)Gm@OH^WAEgob2T0!jkqBuEwLwP-@P-z={;jBf zv*96nNu#tg%9L;Y*^?!mE+mrnj6N}7pqzRr&&7GTKQ;av>&DxWU<550X1wQ5fckPm zpuym%$s~aj(nFn*StO&|Jfs;K-^gEAtLD*sF(;_g`@5f7?a?_6#%##6c1pSRG#pVX zQ?UtfIBQ_1M|T@qjfJJ>*s+7+O-^p;ypk2>;c$*?U~sFN-duZpFrtZ*7<2o_>VHXE zcXDfO2>A~>9gOS;;l`65f1MgvB*0a#fmw|*M(p9`ju5~Wj%9P@{GjGJW*)df*WYB) z)-}Eeaq-k7GQ^dd?);61s^s5C(Vn!$dEN3yZ8Tq`>o3U5>td-pR_zb-Rz0pvoKBvS zY`H-r@wNswDwt8*Uj-4H{9`BiIgm6>*6=emN#^3&wOm1+~K|v!7fqzz)3_Zzf!)bc0lUKUZuj3;7MU| z&aEh4{+{~oCW8^#FRfLvZu=}IqC~tz546{bGzSPiPESgm!3pfjnR;8HVfpm@xZhq< zKO7r6Wq$Y>MyL+CMgO2NvBrz9Mq`1Xb*fyQ5#$)*F@I||-x=b(l3dsc;+;~@T3iX@fW^@#Ys z8~qCMjzj?34M(sB<#K#a@*zv2cZIAK^L1#-we+AZ1oF2`6ZjtQhCJfc%K*O*7=`=} za}h>nSATW?b2svXQ|bS6Q5I?0A8F!av-ZaB^2~MblV{Qd!!h29(sD^Lk)Fnf^Y9W5 zhqD1?a$T8TRqZq~K6>AL8cqf(>3kn#H*`wh;CO1K~tU%HsgiVvy z69jXuS7rH@1$E{wYO_Q*f`3ph&vyoY5IH_KJdUPe9W+YVpQq+5C=6#QIX(hgaUYR) ze&Zno=!8bZg16>jyqpks#^~)|@I=pw(Iw%FWFL_GT-n3kp^@KmA>J9x-^>U4;OP!) z3m_ylO@R^%np&?YoHmW8*6k$eZ@y4wf%J4tdJI#9@)z+3;8+Vq_EN$e%Igip`0YzrhB z%->^XYU=-yHKfbP8XzJl7tw{*M;I9;AQl3c0MFXhVMGeZ?A~X|J{0!%WWrTB5?&L} z)z7zvf9Dc!(Ypp`_fHevcPv+E%=@B4M#`Wy?B&t+#h~jcZ+&P0DSLbqvLl!bLNg5X zs8NH3f46y1tplNaTKm>Z&;b%@ng@cZ<-uywpm~@D6rTktm{VgHtw7$n*uT$wX7eo8 zyVYpp0Za-#gY2FPQ^9baN|lOpv~rWGS$?^S?CTc!e3MB9dsjjaI|1|RO8b)?jir~2_xAwRLHeczA?*gBMJLwZ73a4LKTN6qrhAFEC_?Zm0#)rexV_3HnvVxiDW-V|OcO*5ZaAZQZ_7Fhz$b5+|Ue zhc~W8A70<9HQG=wPTTf)UwjaZl3-d8t|Mr|t(d-Z!#g-IXnFjAiWPzDUtrzynq_fm zbxGR4kTKwl+3F2atDMIu|2{nbgwi&>e%D+j2XV%UwC{aB)FJLtGUJa8tJLheQ{_5e z9^00yr6Ect>B#!vw1mDPe=4^dfEodny1c<^DyYkSu<3+Lj9lZDrw10fMuAFpBC3B? zzayZaSK40+{hufbU%04r+gHoBi#NH*K$CIu>zAV;m-Xva5x8m}=0l^kSqn{wmlTAH z&^tb=k&aUYb}qG8=7C}&X9i;x)??I8)NB+pO<;kiGRO7D>iEsLd6o7=V;Wm!CNI*o zp4Rv3Z3t{yZ;dhcW_)Q{4^dyh*zk3pEB{=tf<4tGyxZx7vUqF7VEZlZhwu6No!cr3 zkwgmmuNiDbeqF}{)Q35Ym+f?co^kZ8P8MojoCM{!sQMWyhEY!eR?2 zg797z?gvUXlhIWb3rlIuk{s<8(rB+%NVcl&4KIZ(UQ|mnegd<}f!jY3ntuO2*%0V6 zk~hiScHsC=O|h8B5*p8d{HYdaJ^xGYhQva8yDppOwLpC5C|jFqOE|p;JZvP2HC0(FhmwF*T18x~Qxyz6LyQ=Z=oA3q zn=q!ujk`{&$Bkr*Om%_-RXIuwWf`4b2vqAX@Kh?uC@mgMaExMX3YDmO<*Ju?H8*oz zYn;x$Fi5jWhQ(p@#He%ceQC3h8!e&3*1rMyQAZ9Km4K32$iL-f>r8=tF~PUeaxIjS zT+U{Mt^p*J8-CAaInFd=e6o2{djZaI)W7FW)%1UH@X?saGNCx~)Hgm|DoTq}hruow z;R8+|SRA^sk9tc^>CO00mGXH}bG2+5%dP*8CH$wTkhNEl*ut$ekf+)`409Gusz!ap zUJm)B4YChx8Y00U$D#l@JN~)XnId@vte5elZ?1YJ(pf)UMznZ5A)J8-an2k+?k3NV}?xQ=L=X5#t&?v6xWe%ZTby&uCh2B4*8%_kV$XI zc|dzKLOquh!1O~@FePTbcxpMXI@BV_<+fcBA^jY@dVe)c_9Tyew;7zqGTeq9-+m0t zuGIJ8sIiz}*=kzU?#C^oO0NqDiagKn5iMtfZ95UA8%NzL+J*i#%CGZxkrl4v%SLC; z-N)P{O*GouzLgCu?G=>lIt@u`)zi&AjerHjQ474OM@2{$>Urv(V~7`|fL?RX$+Bm(W{r5U#_agxv zrL>vSRa~@y1OTYr=>Y>t74RS6CzD>I}T#PSI<8I14^b z`mr|(0~vTk{oLg*9ZKPs1hjYAQcha2pl%+{-Pbx(z<6P@F&b_U{)M|@v_Wr1I{c;K zYd7IzTI<)~nJA*J>TD_4no7lhy;mEot(TJeHvo_*|C%!HnV8f+$pYf1nIx3r%Ms4v zho_h&{})J_Az*ETP2u(QQ%rP~^3}sxv~MJji$l-bd0RLmxJ_{R*JG=I=WN<75^MQe zW3*}R!Ge8 zTygZ1fx7-E)xX5@f=H^(R3CG9@D_=E z$d3wBcGS44$tEsbW<8w-p=o8h@oVD^o7~&z6FN}P4$S|3SADy-5$o}@W0;M2T60b# zJfs!2UO2}`r#z2V4@%Y)i;P4Ke~gpki){C2+;;c(Vjbf9tTBQz*n|2=fKwEK;A zXLuS83*j+3@lc5lrJ#G`S68wJzw}?XRWJO%4$~eW)x(fR{0wzxj)6LH@aJASdCPlX zt%NuPv6_*Jk&;Q(1BOwT`#1hCkQy+LV09#GstgdMG_$0+Ftf`~186(9#3ndY)*f zp__yD#VyEb@@7H`f*zork(e?Qdv~jylOg&spHrmv(zhe{T@7w8 z=J@zmA#t`UA1Go%6{#0{u0qShKnrLUN;9ufQ;RQiMcs z8;ONgYiuF-dQ*FQP36f;WAH)CAh7lpQxNe`y8>c)A8o4o@j_aN#T zw-YMY(fWG_ky|fwjoS{!XZfp3B#{>eD}O&rwhaalQB)3)4*iV)fTZCHOR51y|7k@E zvfAi^K_fOsflk9%n=f{u)&_OnnT}!54Ob7w+bw_n4&N>R{_gHa(uY#jK^2s2+Pjl~ ze-AT;xC=6-cuXshAmIP$Hvv}EjaU!W-mO#z^S$XnZ0|<*jR?_!A_9n6*jN7-@^FTp%GL#?D=uEg zpk#{#w*JoAbo}~*l+TL%l3?j}*9>PP>Zu6MJPI>e+S&|eW3Zpk#MDq`SIo#SnkLIm z!@$TFLJ*jH!q}es`@a?Qu>A1f-te2754;_C^-}b-}v#i??@4I@J%kXH}XA9FAm0-#h;FYQOIpUBFLV%?grF8jSY{ zgah3ByU$mCs-%Nj!k5rn_uivX3@#&4VIFbJfyDjdinCrI*MPO6+WF59LV(S<0NuXS z+%gTBwYq&ycQW3F&}#m&#wr|=W%b@ zh(!Kg0wbuC#3w|ERYpKvH@U6^YWS$?1q0`}Jr1?#x9-$+#z0*$2Exr&&pqLX*hsayNhonp3=HvOV8Vx5hrG=sd4yCse zy-f*K3r=k3x~LCPFl;aNFeK~Z3FV6I&6z+^A0}2W^G&3TQMp$&Iv;t+*C7p}%`LSP z#wI5T?(GR1D4xl`AqrmHmoSJ8w6)7VaNiD`-4P!Av`gwB(DVvi3wiV_Y&ivMg}wNY zw;6>TB2l@XG^S!PCQ^=fs-r>k8B%y}cEwS>HJ`Vs2JCj9INNf>lc3+#eorTL=S ztyLt+An2zg1#|Kt`$D|^=DVd-v_Mk5?!g2b+l4W`XM8gBRfI0j!nheJs!I5AGhAB>??|`{xZ7 ziV|5v^Q>$e(dm5#z&1HMRn=t8yVq;`Ts#>j9 z@M~kreciqy;??f8%VKb08iwP>3r%JUhqh%XvWw4a-!$JCt2juK5yvNyZlL?~NxN>e zuhm8Ixt-a%&mYG~(ak^KKn~aq=%D(3A<8GTaEVE@AgcDEY8c2o8r1^^-_6PMPYqa8 z$JLhnh!hr{g2^PAtRTP{to?ufsHlcVf9@rf%Mfe)_@SybE~K~x_X=?v^^11jRdqwW z2qV^1zYZ%wjS6@WIZmMY?G_1A43&6W31`@c4%D#ZxrNk9{$BtFLHWM)H4)QTHiP_9 zvZAsIdG!>ESY7BOPl_@ZhcXuhG8YFj7l|V6=H)a7(+vu{>5Rqw*3SZyy6rJ8UFx2z#oFYUm;7MLeUY6)Bg2;pihy% z3VoI;-LR%`gaCaG{>qU7!5?ho;C%+GZ;+GwM(X3rqREopo{$IsQSdo_lzff~{&)sg#AZ6E=oV)xhE}=C z2}`81E1p)h4yKUbJ2rCLk2C(jU$W=F4iSI+fr~!&f2BAC`2!VzxSJ>rR(V>1tjMyg z3LeZHKz^Djfa0)v$3iM5f?rDFmn$`j9e^!=Zo%C#c}e&^ZXfYAsx;Xgz*5&Ak`u^3 zsvbbXUl4N^S*fq?02aRf5Q<)ZR1>@eUs0xgSyk?+nFA=w_(M>F@Q1trAvY0x-YVS` z2VkDh%esJ%E35eWqwL1k_CA;7dsOL1IDjIJKj1p{Kcsc+nT6oPR%v5A5F99o{Qn&+td-c!s@gJ~a`1-YU)&Y}$SCt0dqq8i;qxqMhL5SMjNE zyK8B}aDh!2_6!Bzpo*gfn?-kM!qu0$CtU6PLTqQZva9Hl1*sA>fPJI8*a)!;eGop%omb%5au7YIFi{!OlUUI^O;36SS9nB zfA+ooVUf{hwQ|CTzZYNM`Ptrr9xi8QU9i~yQ3l@V?+m6vVMKTO@2x@l)~!YMgRKd2 znlb(1?;FRDy|_4FIseht>iy^KU!(uMec|#|;f?ek+gC0MZ@DPG<*M+))#rUMP4`O> z3XgBcX8(sJ4EV5FUDL3Xg4^?>*rCvw3uaUtGcCD@WE{Y))&Xvn1N=v}S@VJ50+bhx zL{LA>koIwHX{bX`KRDzsfjYNAK)twNtz+A69ou#}wl6&2K;e7e@NpP75g6Y>=V^g_ zxPS4g1mxTX0dl%(-fFWdtQ_6gjd($f&% zO?umJYTF<0iyUS9J~u*eB405U=KO7cL4Pycd<6P;3g|IvogSlO>0z7)QCx{5={to) zIXwB>rv+1xI!BfKx2a~z5W|!qiYaWh0FvBgOB$&l$+&fri~*83Uyn@PtMn_g-?^#p+6BE`{Yl?zm=T;?U;7qFlY1TL=DB1bpfa!#2eX?W?{fAp3q?r^$}-Q?Lm|6%GfMBK#i~ z+wFsWtnm+?Z|--IEW`g4x9@KQp9Nbr_8-AIJ?2qysA;w@3Y&l`%wcT&ycS@7YtjX< zpXOQ4Z2yi)3EH_$1++(=?-G8Lxpbm9Npw|!zI{2^6zIV}uZ_>%ilC+768kRD;UuN4 z(QGQ;`?=AvBJhf?E7pW@T5lXbL2%CT;Tncfi%MiRtyNm|u zfykt}Q8ky*EsnG=9-DxAoaD`K#8O((s0$9_RMTsDsRXyFA-z^8s)xOef0ZKCfaZIKSzfA{D4H5)%7h!;_H|lb( zZM82-TYxCda)cut2lNi@IGW={<8{q`KO9~8% z!qjDKyH^AuZ|gYE%lp*cVzAoRyDdQPe!C${BJ{!recjwOWmi(F(C4nE%3^!7f+qSPMTS86wd=tj> z(FpG(A6TB=acEc2KS1QRiBSc4IbLw^`)BJQ@?!6foUKF8rCILQAs7oMGOh{nS(E)_ zxs}kQefik}Vb+Vdx8CAtTfyey)?VK4c8w9jfGz-bog zjYsl3aNGug|4(eb6Ahg17oNLF+g&&zF+#eAYUBXBeJR-nq+|wU@s-cq;&G7>rg_~{ z-R|xEA>?J-JvTzY{c{jI%M9GcW~~C>3L0HQovxj)h8*KNR$bWDPZHAJ3cGKzNK-FZ!806Zma{(S8?0fZeRVi;oHuenDDL# z2v(FBi^wrL9Lcm#h0#RQL*NGFHxm*gv>RBZOBk(L>ZaByv@Z|afIOU{SynH%Yj%qD zaa}>aIhEhqOpJ~wkjq?yyKur=n&nc5@V9(P`OnJ7H8o6w_SIq=P>ZvNamh{r5Ijij zL`1OV2S2tx_z@6cgy`{Tj&MC5uNKZcxHtGA4lQW!e zE2CvCz`%ECfvqWq4E9G9mobDJRS?+t)PrphRfMKMZ=3Rp)5Pd#6+uxGi(&hE@KA6U8H4maJFO)&g!bY7g!dA# zbDLwe1b&IK%WA@~eerk*-9z3J2xQzSHP?zllP&>qoWzYDsVJy&5bX=iLqKTG5sk_R z3WholXb%4-qH%m;bgZtx-Nb>ikSwb*ZDFWj$}%7{ZyyIrT_{>=eW5`@V6G>a$mhu-xj=A8iI z!1&vCWtDr4_BHAupivj#jtQg6%{4iii=!|}__)GIs}9j&)V@MJ0u<^pd`r`A(VKMM z-CP)jxCzIND&*Z<(A%Mi7o{&{?Wc zq=ni%W7NLDJ%R=9BeINAYaK>4#DnQXUir#x9+zR{i@FV`RB)nwp?d_~sLmb;c9M@y zEZR#fFvZ~GO2y#mLMl%y+LyRTg2~ZGCKd2obV|`&xP-V>&5bIj6kBqrPAJ-!x<`UR z(#NF};5&3O(Ih(%6@mj~A?;ST$O)l1m1tkt9tj3VbSALBWI_ne~d=niQR*RQ$J zvCiWNz9@DvzTKjmwRWO;!$Rq1s`zFP@LV`{7*P3)nv9+n2=0fF%AtxF;b3^Lut0 z^G#vilHX_LHpgOq$rtc>w5I6;Yk=^rO8mDkfsdif-Q;$YhBfHzAAE~uMPsaxw?5!D zM|*sl=xP;Fe z#qgoTT2rAhD#*n>ZgV^pw#%rH1??-|V?gnK=hL@&jsW?&g$V64c@xdqRO1~ig&HBo zawSH`BHqiEuXU79+E=G1(CzFc`RZMJOD3@h$IK(oz#GAu0LR{lU2*htEvpe&- z$A082ixa2$6$&@lEa%2GG1iP9b23-KiS~u)33MB~0Ch=I&D8bEBi!vGF$%nQx~#I%_9cP8C#WUtykz`i&pq zCjfg*hvw*j(3OYCE>GojNSZ4vB}Ds*@&r(n-+0m5iQNT#IC;s|t2@VAvQ7>HVo2Vn z3DQ(vZDFq6S;%X5pBKb%vQ^`p;0rn5gnY^=efBh#TCKd89WTj;g{`oP zx}-__8ubLwsNeZFJVv6M2&(53V6VMKb1Xr0=I2I7g;fP=gcA6KBMN^1a3df0j#Ws-&0dCU13_Ss4=t5h#E2c_* z+=%M8ORY8Fn{osersKYa?6_Z8JD((nvMCKb5~(0T`zrJVP@%8lAarh7<=v7v!oB{$ zQUrc$BuBr#wgB(@Zj2w)`8&1zd=iWE29}FicAxa_7+<+?7w=V%t0SP!q zG^*uSskLT8Q#tQ=fVi~AjSyVe>G-vBzOp)@Wba?@PR3GE6ftdIFP;K=aS6s{O~2r` z2)WVIo?rQIQ%w%Ufe<%B9g`+4ztYxT%r$h4A?=IFQ$S4SaQ~R+QnGnj<>tBswW+iL z6F`~R29ELqXTvgyk$JH89YsQbQ zqhK|rw}mBb|DM9EeX)54h|LV+XfkLbv{Gjw*O$3XrINdx1}gkO`)cwGP?M8M+?X?^ z14|A3rXnL7BQDrTaUoeZrEqUwCY}K@@g9g#he?9>XbLn&0nE)C8+r3)w~74Tda9n5 zIBQ>Ko&hp5h;(W0EPba=qnl%jyc{(#s+2~vk<$l^Q9OBi*1jw~17v9!_>!|&*&9#s zM7BGW!3fsK%g^}~h69$Uoxd<^U$UM7lJ&22qX-dqdiLyev0h^on2zLUOxy-RfMnIe z;;o*=!#oU*I9qB0{_ShmGeEme9uV6YghflcW*Ynrf?wWLnA@Pizvhe9fr^b;`}*_@ z(5KV#y9eK;5sfbb{()r|O7%{(Zgo6FOv~j)kF8sc=z1=~zz;UO`^%j85w%sti}qFN z8Fa-t!@2Chb>C1QHZ??w$wZzGaGOU|@^y+0=AeBcn*U8PAMm9bg7@fyrsiA+q6fwp z*#iSzuhB8$v@clmzgc?pv>{95GW1+gN?kM(rW7-|2bpPdfJGaYyoo)x!3cJ2$<}Pi zjOX_Y;v0St8=HvnfxX0Nkb&!4B^+p9z2<)txwP2qkvlUH|hn@lvd4&?ULFWc{2rlqNRltPy zb!YxJOT#226W(ejv~)~_neK@k?wOPub&vqA(P) z4kRvM6A_jZL=RC+R_egszOKywrlf)Vc}V6Sn@@g64MoX-;60iSjd_6yVzg&sgr-B7 zESoW>5Au%s1zv_%oHN2#S4DSu(^Mcfn}FDSh7Ab+c3aHnZ1kc>@0GTzn> zNx;5us1e^3;>|JQoHQ{y0`ujSLkdZtKvOoMfzE_Ji#rk-*uzrj4Vn~9kzzKImlScE zO4>nGdR}BWQ53iyyVq&ld+~zCOu?NuXL4JZ0ze6K6iCk|AU)?qz!FCDq~UOBChru$ zZLqF`r_M^@u0U5d0bRM6{)z#AV5uSB6yz-%aeiduj*qfvN$F)x(^Q}zn}B}IJH{J4 z$}z4Mn|L1FOTjOA&neQNBj-euv0PZ@Hb?M)UqWC_=i?+qiqh3o;|Uaq$tEBsmqPrK z29L}5p%OiI->YfT7)?xbin#R2jSxi1md!mNjImkoP(}%36sXT8pgt$4zYK#LkEULj zR%75hgzS)#!_?dWL#go)G1`_JVe;&qMq@jxsk+UWX)2JaO>oR}Db8_j1bW*kdXSFf z8{?ro$4-onh_v?kp|)L;X(^DYE$B`(e=?ZMZ3mX8$bydeiWy?G=L|X7Ga~`N-g6U# z#k@la`V}bA7NA7`u=1japHWM|zi)Vo*zbl1FcB3?CbD2@d&o*5GT*payhO6qRDyp6 z3bh3&)UU3cn5>8|z3aJesPW$z{)ZNV0Nm(^%|AoD;baS`1o{eeX$#P$lVV1^=m6Mj zA~Z&Xfr&Uv;zsD&)nY9kV}|Fu%gsEy{QM#>Ie3vCGZoL6_&bu5+T4F6KU0%LC{U^` zK&eh1?p0DCkK)met>#c;9GW7!#Uw^(4i)Y}RN&8xee!UdkiJVLmlVk079fNF@cYJ- z%N#panm^6)2QeFBdfZ_Y;Y+6k<_e^53y{9wkZWnuQLxbvZw%s?2|&mJKpDj6bm5c$ zT!DyfK{ulLrCIhw0*w=(v%78!wsJJ5CdTu4+f8ro z-Fb6Hg9jtt%e<9zlC%^^(iR{|UpV2d=hJ6`Ax4?8W=LZU84l#lCAkfPA^Fm6DMJ5$ zKwn(#9z`w59Z}MI(pDfu+kg<8xk6?#q*krM#3CePbaJn`_Wi_(!*^Kpl3^E%)Mys#O}ga2c94E%LktCh7|B_ zXhiV?YZJp3RtW_ZXvH?56({Ka5b*JvGG9<;ETY74D&@p*S_>&obCB(5EH9AYHV9TE za(_+>9u?(@a3MYl!h{$~s^M$}+OZ92#|hZ~GhKfvE4GIHaT2*zKiGhnU^_xiu+3I0 z!Fn>)oPB*IpjRLe+kilvU|H5Kc*m+w$w1ElKbB|1+y(*o%d9VO(i&1F-iHdL-ytCV z^0Gl0+>1sU?Mm;H{SE=`mp+~^XPdQH{7Nh|-kZYva3Bxv zxeX5QY`F~QI=Cad0)P^%E6{w0fad$!o1gIwTn_p}Q*q4$qU1rNA3(n?kL7J#D1S*p zm!`1nm~)lUV7*>?G^me*{j4^bj}RGuF`i! zNE-I%b~?{(D(sgRLX41YDDphlO;$~51f)Rt9Rk8{3StA7@0MEkDKhHWx#x5$X8^Z3 zCh^UqqQns>V}Sx8cnAo=ySSDd{+AgGU4Xte_81DtM`B7w_L1^#6Z;|5izf+)#l)JOl*d#D9JwE@2}VMPt+U40U|e7#qeW zVtAT~J3301Elih<7fPtDlp8A0fQNtv%tryf_U5u0p*_3)WX3%MzG)8-T~W9Zwor%< z4P3H%76$!mhuXXBKK-?)COuFf1`h!-I7c<22%^NcKP>3i`4Gi7qB|Wo!tDP!{wd;( z?2D;9CmJcxhev=uoWojnM6_?%r|745@R#Sti4n#J&?U=fCU1R#O86@fibtYx$?Ory z#eqXpz5h2x0L&GE0q%-GnL@DM@d?U^pg=_)0V;BK_=)xh&>Q;X7y6eRAUck6qe{9# zM_8diI35AQ@d3z@62hLnRuLMcg#6qzF?y_$z}dlwp-fB|DbSZkfWFKTo@^nPjwg+q zik8|#G)V_Uj|pys_7H2jX#D6XcMnRiuRv8E0jl!VgYVLv-JjzKP;RbS&>RcKBY7{z z#OQbyM07P5Vc-WF)?}Uf2tT53LK!U-=*uHOU(SM`Psz~r$7X(EnJZFdW+Ur;@dA$ELhNgS6?_5O-`^Xm5Q@Zh~;z5M~w3$x_WR=U9ORJq9G` z6xzts&Qfdb6&mCMqBw~g9eM28B{nEfoX3#joZ=gM!5OgEs#;@|7!KrxO56rrr<4n5 zDJ3@RrFRpvyZ&7uhXS#A42aDafgh}cs!AsS=FWGpY#<2DFZ zq>Gl`2K9}2!6tsK){g&R{4HPG-&k2|ME}LciWC}6#tSdXlEy&I^n{55sd)lO%~$S% z%r{H=Y;Z|;srl2(ySJ}5%o|ItvT>W^(rzzd&Bo6;LRU0O*VcGWmw`rID^4+1m=yTS z2PF-bCJOZE37|)Bp^r$(4{e`d#MK^2WeBp{bAtCgK_;{pHp#ibZBS&`AKu)b97BQrJ%RM^oCv5}r{(6F zG7VBj-qDZSASi?F_sxjZeG(~9&nJ+2p0naAcEZ^Ble1dCG_Dq#cplsz;fnBn{~u*0DfIbdB1_7*Q8LN2fy&pqE=Zdjd)@yd6-<&yqV<8|OINvI@KnJN(9r_fYu8ZzNo zQfjT4(x3-H%&-_BuekDsTko-it*9zbF;yU~PXTE?*$$4N0`vyWhNjpslyhPD2qx^i z1|^J8Ag517cfH@ThCv^1Zer()NJT8M)jVh}ev+%`+y)<3b8fI8UK6i`8dtUiTg zb?PK9dA5b*1M~(>iUva^ObQiWPc82t;O&A8Ztl{FZ9D&}c+0r0eFikp< zQPvS`F`kns_EvPQ=Z3>{!SyC)9Xl1BR4LHZr+}uOCfrEwlv-=PG{_gkKqYQ;EMJ0~ zZlvZ41o0^#i0_|wOX^9=%}=p_q#IWGVe3J~uvegGPXRsq!uiSrMp2iA+(bt^jYT^n6OkQoBLv{-ig~L|igjnX z4DOTBs!<$-&aDzA34?wzIV0JLa%id^VQ05n8g_u)oZD%__FmsY5% z^Z^Ql;29tU^GEZ}{|7^F#g#6^YCG3D7FUpF50$AMDlD-eEXfbh#kc;Gkx zQfp0u21$S@LFGmW60pUiLC<}@bo|bzx82PYFhPL;JQE4P?}I3k?f;35MtyUrHxaWa zMkaFZ9G^!`BcFxmF46=zGM4NdRCx%bKnI?Q?lo_BbyNY+fw@)z8uSF1OtX)KhnL2;g74cga=`QHTD zfE-0pVk=_8Sl$z6Y<7?dojEWaVq~%*PA1!(LvfQU1}bULzBJ7LW*H5BrO{-FxGb<| zCxpM;5sbU&2)Y9Q=>Tz1#ElT}Pu49Y?t{y^CB_R1klO_p3buVLpOf!yzvEYJ+#py| zccJ1YjWuXrJ?4KCrUh#ry;-d#XQ(B%njTHk1CcmzBQ!l+zIJSm-9sre$elw`>+o@2 zDMMJo9g#>4QQB9V`QH=~MVLzzjdTjpATtmhC#Odi*4^(gLMsR!5WGj|5-hp$pc|~h#nyu<;`#wM!tf%!luzA)bLV(Vhhp1^ ziM#MU*I62_vvzpTm$?_MotU-eR>G9_)oA`V%b4=&j_@+AsxvJfRCs#nM!qeuiz&vw2V=jq-exy!RP6FL>SPtnAIh%-c7>>M6>uQTh= zP4nv9iBQ@Q$_G9bLJ0%v6|->+0L1KfeiS=Pc7TWAL7A~;L(Yc$g*wP!TXHADZ4hMG zu3OH5=fyqE_-g!2pT3$iC$nB58^s0_5VAkH62B2Q2PXp5p=Fs$U^w4Lq@QKsd#3vws6l%a;i`5O10n-=B#t9RdSe-88-F7!q zK!bYaY8(v!x%#aat}r3eo}G@68j6tQC#PdUU%&;C4cj&a^E~s}1$u0e_V#$V5 zH&L(FJV7x6(3-izVtm|)l7)gz7s@lXFgm4dd1}h@18#$W|A)=$nuOa!R(8Nj|G^N? zFLNn?e7)i_4)S2f?A$*Jt1Ajt`i!WVXvm()H+^n{+4Hllowo*{oBpb}g6%`zs#ifq zLEZusNFURO0qbeIc26%bYD+~%wAQwe zowX10<(p&?6(YZ0B^if&NJ%atS{fOZTI<-Tx!4Gi9dM&+v5|Tv)GH+8m;eaLyV#b* zM`gx3LTb<-AVy1>xCR)Q2uVFL>J^i5!~n!(X;h@cp~j~wj}dp8xlxsXNFmG>D8v?^ z5FrxPe#&H?3{H@wWG?gAtElfjItD=i2F6^->!S;*R$ruIdvJI%quktogh_dUgandYI zX9~@E5cyS2%SLwC-Y%P)udxC@p+H2o0TKBs(bDBj@%9aM%+wg-C$?NX<2H3fOxx~w z?5c9s-AK)S1G`>jd5R(ipe!eq)2}z)QeI!3T6Lkqy7PpnR#Y@aOk|!S2Qu%MSYIcr zrvUEt%EdUi19EW!eeqH;J53}`C0Q!2BVjSoJr8qw} zmTmL?d?gvYych7MO8zHdIe$}Aq1nDKahLu4g6hGO^61)gPai~{ext{NJw1b-Ia}<;-lD99;VhSJ>$3lNY91X=#IXQVnc2!^cuQ>*CXhFP@s|e zbGlf`tmga(b?rQ?h_9v(@UULZ83q3#pgA)SIhVDsD;f!1Ku;mxnNSHar1{7Z%`A_e zGx^w2HtAqkuV9RWJ0uwU{>E8)|D;|Kg?zwXlb}HonD!JgXpkFW4wGGMPo zgXa9e6j4K(7}YB)8`tC}2npTjR%=QcUWK;`=42Utr-U^M6z3tJIKL8JzkDUTdpVUd zVyYP-ii{=*MsOokRdq5*mi;gF4}}StJUdnbbp=}T5YUo85jUVuNUo6W8|vf$MS*J9 z(h%oDi4o2vcq~Kai9wjH;+iXGTS5e(LB6gXKT=d(Jyf6?4*}IUg?cjV%tM?TL2uBi zS#uPbVQ%Qp&^PoCD3Zv@+goYMCy5X1)slBc5W*Az#N@96Hhk?<<#le=hql(Hjp^rW zBTI~aah4mx`cbT%C_0N56a%*l_U|ZIZdBc}8PzKp<4`^VG-FX^ourgbqx>-_mv^H} zjCzamdX-`%$^ohPp8}NsQ=_~wlp`XT#HhC@$LPN!G|FuR$N`9d4q0ZykGNzK@V@0K z#_%1tbi2ZXD)}Ch~Zn+aR$2c0*V(P`YLcpp6lK>xDM3)2G1Yvz!Atz%x4` z%ysLO$KZTAl~+A;8wAcT!(!`{8;1H#RB{DI2?sDzZoM1;O5c7gbc_KBP&9g6p@YUg zd|+=OCJb1(J^n|feSk(7^|oGg19fdO$rhp1vOc9UP|q}~!3s9SaN#j>wlI%e)}f-= zVIz$GS}&@hz9-@Xn$ta%=|(VaB1XZO$Wbs!X?|9bybV%3-(7C_Wi6hZGEf@s!U=EH z%*`HQl+}8%4-}q#&L77)e;l&YnH|$p+~>Q&iRl2*?P`EKssFr(c;mS4! zls^$CmXB0DG!_;u%ZCHlT|C3@NGd!W$Wvi%gCIn{bPKk0)CmxS{{Mi!xS~JYwt+U5 z?AoIePGAJxniVXdNbTy=#kuH47k^n->o*4c$w=-BxD5jMR|^Wbvv9*^2B#F@+4FOL zIP_=ZmydsPR_m7+^gn-Cc@ZntkJO|I3KU#G!sTOMjC^>4fC>keB39^8F^@UzpU7|a zavKCE-rewYfTspD4B8zDu%Q`q7bLH7`?9YI>%Js3{xe;EvGBWN*dOhy=|a!C%Nyj8 z5x2oaM!&M+2D)sXZ?Lbe1ncd~yC$ITCJ>hCU^`ZQiiCQG^RYY-;x?%AhV*(O;S;Qs z!o7XH*8~J#eo!E7Wm_=PU~dZSCSpRiiJXvqu@mce1N807!6u*wC%gCgk~ret|9f^i znrUj6M>IJ{_Wh^PjGL^NQmnTx|C)gQn`Ef;S^ONy6WPp6XR%G~@%9wch-7-~WUpl4 zDa%>krb#Vb%0edlqsmNnf)RkHx;Fo*kl>Vx^CuWpw_a=mhcvo$Q#Gznr*w0I(P!&L zHEmK-5>?35p%ty z&|ac<)M(aAbc_r{QKNZ3(H%-mQGJ@V zPW)u_v{TZFr>OSK`aJc??)2>iK@r{G+32E9?D?p9zWPx0iIb!GFsM_cz$nnxK>LcP zN{9A*g&X*B=(rt85HON-&AiagqIc|Q-dS{u6&P9C!cTtD-r~gg(2loYMA_D%b%Gce zeY$31Xm`;&dNk`UI!FtQLd|A_H}5ZWFZHe*wVqBd^(jVet{L9YuJ1)_Cw3RSwamG* zc3jEEU$n=BMH=#tfV??G?ECi6L}C7;f41~|Vz~J#D?mO*Qmz^Kz^$F1{dtPzWPr5{ z`8)O+`HlCUmfu09$j4n&%U0J2QVLveVq;TSPZd;{VWi}msQ_H!;liU_Pu?{@5pvP8OyIFa~lNYlcl>+4SbAh zTr=>Y_A2Z=42k;^+f#&nM>hJAd@>%l!EW^Yt}<&7$~#C?yv#SQsw8)YQi$s%05DVI zS0{=IZ-_2He$hxnzA4Dh5RjiCA)l-mhdQ4ZaI5rCXNFRK>%}`TJmW*aFWFUuen#Kj5t^l#I)mp(NgV;SbEqc8)AP0%m7ic>WRe zD7Dt)XowusiTuc)+dPgM`J!%Vp@bDGgkC`DeYN@OEj{{3C2dIe>@*Xa%8unu!os1=3-zEGiff6Ptkc=%rGJcC> z!duORmJWn4$Dqhl(ByVN2MM4+9JT;)_~+nChW)LHhJ9l(&;Szy4UjQV;sQ1iVS!Ne z5XEGr4(tjfUki|YdD*iB?FAbR_om=JMxcF+1p8$WEY+b~fsktfLT*}?5EsToqtXb+aH1%1JtwBI(7hKgm`rfz@mcq21%!$b_qM4(8nysw zI41&@Fq$U~`-hoa8RItC10k-5DTTWNW!MIk;XQ>{hWc`I4gRLUZ(*82BYQz-r=jZm z1=*$oCD@iWeU^d$z*6JBG2GjTqaPc0^poLUY0DtnR3Hr7fH0hN&Es*takbdQ?BSgOM&uh1Iq6YD=&)pQGo>e`-U3&O+nur%flXSb5yQds0F1|AlYgv!M_5% z*9P?7SJzIQ-2Rc^f8S8!zcKs|Ed&9$(Gi<}hIqrt7E%fH6)3$np!6o9AU^X2>@^V@ zBf`Lx-+D}p&>HYI|4p<2&v%!bc~&a=B3FK1B=Hd!5TY#8WA8{bh1`E6KT}dbXDJYp zZ9qu=;r9(|&MJ$cidLF8jqzqG7Yn$}G46veof4QUP?T*zQGP?NrGZkxMnk+Yh+By2 zAnUjS={a3EB>-0-{Mvx0RpiLh&?3D6V)tTCc5&={u&?|6d_6vEjm z1_MKrf%z3Vmdi%c0ZOTr27ObYH)jYTY=+ap(zYmk;gWOw?a{xpV(lXSNng3%c+2#4 zB}`DD3=aWiI0 z`H4QaK_Yz3SIqc};TOXFv!Vk~0)7RW?GVsxF9JVU2g?V#fBPc*@7ZYzG)4gvK>-s- zfqcDn64=`!2|Av+fGT$UXK{_^2lB}`Eu3=aWe zcnf`bPEca|1f52EB#{r8=QhWl3`O}e7K-LN#0~{Y@d!|g&kGyLM;}2E=nYShCv9D* zk+WomBS~@X*k~n%sk8zWc?77)JBYryIhF&(cW4qcMgq)8rQ=C(bEA|63S{IFbg8%` zLy+F8gx~W7nb2O?B(;#K!*KsDuA!OJZ zR7RxElW3?wz#aht_Ldcu8eCxBeTo$8&XJeAAs)9m!YysD`x~2elwWD%vyvmRr&7YE znnmz2hE0G7{*FEpXUX_*?yMb`Ux5P2Q)c|Q!(p?BOlc{Vu@Te6ZR9lZ?ZUa~!Wqvm zoUi#Z8eff{>En;oIG39Baugk)$;rHFCV~q4hMEQq(O^85$7I|FbNb5{ZA$_AZx&W5 z1%J(YISTxMUjFLN@s_;7EP?=A;~!{Ld;4e#^id{kt29>50LvcYLZ; z`2>S{Kq9}`c25@7h!m|f(wmBT5a+ix_5e5A<^!4u1b(qgwi3wKtaYOx4`|(QgV1HC zN}JfZ6@h-wPQ$*b4cG+{ci3ojsD*8*eGR@4siL zgL(wux3BCYe)~#UH7ueS_Bg<^s||5^UYjhangG9M2^&QONW#t@%O?_hA(>;Skeg~U zG)4wQKS*pl$ZXldWZ3{Zq>HMC5H+jWC_)G>MSmdon0)upR1=~>?;vLcw?W>O$O-V= z-Oxwi@DlMoW;`!=3gc{#C~BBevviGO3Lsq<{DHLW>A>_9^|Wr(JB<-7G%9q^$d5?Z z&I9YD8g*jC_^4(T8pQ`dg?`QN(MrVTqLGLLc27Cb8GkX9XA?tg?dw)jj*^r@3Dj$r zh*3}nB;v#eVp?b)SZdHW2>S6%UP-}ij)r}h<$MZ&j}n82wN@Gl3cfe1wdBg&j+F@S z)3Frq)3L@ojCXTr%a2JDBV>Jdx^4{kEVwxjR;ysnkCGnv4}Me{?Vyz5Q5#ISEOgI- zyF?a@G!L5G_YwEu#>o3{mpem4I!FSPP&`GGz^qP!D`!bWEtAsMwMf=bsyjh6511gE z2joW-Q9u(kn%mMhd?9KgeUvU-FT#P-P)vJNeWKHNS5$-;fNTj?ex{=k>nKsUUaUjs znLDlBFGEjQ{Znc!Om1yC2kZ`Vpd)+zbSfvobc!PZUo95hP{Ui#cb4hx8}$CsV{#^(jtZ<&ciqf++wr zMpLaB(7>@v(xhItTklwDfHwzl#C59)^19V_&o0azPz895bXqgufg_gB-in;v6YqAx zt{zK)UuLZd(BKX)pSZ_u5CmXrXXI<=+>y|^B`G6<8$Nwo$$85dBcawz2B4Dc4F7%8=83 z!q1S!@N~^Oh9o(}MqJN@eo9f^Lt{ndu zX|-L$*927DU%hxS51o5<005%CXryu9818LMpkpHg9gh3^bm9D@ z#!Nl(6{xu;Am_4XLMZg_8)^nL$N)r?VH}v!6@* zzG1YNKVx`*&DSWVc5~pttW#a2O2{i859-ID%Lhj8@=wDc zKVKJ0MpR2)OlOJ#mF%-rzxuQ+g%O%++hVRMQuw{aVoVBJ`1E^^V@h~l8xPj={nO>} zKp)s&RfxkKS(5#~`J0Cl*rDFQ%brb?O>tke?$q?(8MT~UOwfT>zl;ur3Z$FHz9edD zlrEcE-}`-u`&&(phz2Oke~G&lIviprha&BXpulFKm=XFmW?C-&qo`C=?|W}wvfhI% z5ncJT;S%&l*US+{y*k5wnf~bSaojk$sX!qVGz2EMwDakj-R_yVK76hKCP6d{C*d_^ zv(SETvP~3b#gUO9ra*E+(C@2Ny?xbnbZ+9aWiIR`L!qrxXle`Sf8Cq?pg5Hdc-?#n zg0co<@$g^(p-!9fYNZUrk%KrY1-!S`6p8#Dg?Rq>?$1J6b2EiNXkpaO&KT2UHEY}5 z%4IB!OIL{T^z{|*-oJ8#Ull=-%ep9H+A}U}Zn|PEk2w7Oq|EucE_ujMw%@xv6$;_WW(1sAydOcc7pow;jsnx87BTcf@h(R`oBOfF%%y}(=A;j<<=E&4y zpMxvDbT6=-;i7SEiy9`dkPwu5gEs6Nb6}Z*k!VjqxmMm-1j;2j@ib4s5d00^$bu(Z zz9#ijM_=puE>euSz0ab#Hx_J>b8wN|1!l?^*sqE(_voS%G1-kV@b?J23I!E!(%s(B zu`_gi(s$lv+Ff`I)!KM+`v~&S?%x8Zb6%s!`S#@QJG10^4;NQisV|rJ$Zy z^zAR+R*ir`B#ndCk+{dO0g5=cxkTGR0#oRiO5$O{p#617P>cNWnr`;Ow3!i`cXFJR zIlD=U*KE>G4%D#3NV2wW=Tctn$>9`=8s@j=o1}7f;c`Tdo_Xn_o=8Hw^z3&u6!N@f z6Iy2!{Jxq)U?n)GPZrR;x;?blbGwe_9yhXrWFtwh#CxZ${lSv6zw>|DvJlg^`RO=y?ro2A^oi0+TC zVgX|(h}M;9!$)mSssLtBrE<&+3G_i%%!hYt_ycy^)04R6v^~946L2+e3Vw*ILJ!VI z^>aQhe^FkWXN9TwSV40C4hI-VkCLEXG~@XjB%i?Rx<0u z@Z^#Z!0|BEipjJrW*nlXNyB(byr9EDzk6|8KxgZ?(OwSsL>Kpk)NIt&LUXM>o)I3L z8+2Crw)`Lf-ImE^+=L-n;Xe1zB~D(8Jg?fHrf-boqMq9T*5iBe^v&-<=^8pMW%wK` zaq+~8?x?#NxTQOdv)W@WsU9;nP0=o*9c(Dhh9BY04|hYa(TUKV4Q{5{B+WF|-EM{b z9fZu^#7|8dUNcE9_;bhcLwJ}@M7_SJ&U#z!_}QQyfc29d*Va zR0f)THTk%IXbk(X;+f^ZKD-lLhfMVmi5E`smF!fdQf(I}ZgZWmz5q{2Rqvz#6P#8( z?W0beuPwS0JCQiYv5~*9k3~;(IH-tHV(14QkL4ciALSmSjY&c~`8AW-K?`NfBZ)Wo z(6wZ+^R%_$qOZ35M6QXZYFW9LD<%L5t4YLbvm`qbAjUXCq&a&m!#AADA2>HXBs0q6 zy;;MJ1bTtnf?(FERn5Q}lEG0y>MU`*S>=^Z^zaH(DZz`8jm%S0vZEMIhb0R5YHV8= zn*mEoiQA-<@O@&7Uc$=mYY)+~{ znhge-NGX%2U_6GH7?|_<$s_dHEF;U;J6@0KzW5t_#tr1kfo?Nl&}QtqGGTb{u7-*1 zNeB6_*Wys6=)Ke?`}iI8^qJwUycNLcY4xex-`)aW|L#8x3Fh?S(mFjg>#p_x4V#J| zmm6%jA%Pymm|kQY40jVVTzXaMSV?x}uIHd@^LwS+qDOoZLN{kr7N-`{gX)x^50LGyj*FZL5b8-4c&bIhwC!|{(a34Q*mjv+rc(MGmNx7_Xu;hXo? zlmflgyA^MdPjSi)V8_M(g%WGYlSW=TpB3 zX%b?Of_U>tn#uIyxK*9j;Ib(&w+cUmbDm50JOQU}<2S42spxW(6|7ITSm$N7Jcr>i zY$1>nzO-Kqv9A=y48vO*`!tvX$Ei7dR6+Nl#LkXXv|go;ko5Nqzvw3KxMCNZ`-=S~ z&)CnDOK7@A@9KdE5v)VXi(PXM1`z`6e2QPC2KiX?ru!C*TBE*!k6hn&7EH^d_AigU zI>Ok77v))P7J{7MUe{@8aLH@lieozTgN^n9aZ&K#TOkj-M-Gh?KZMGVzk+j#9W5QQ zg;MS5jmMR;6gcPVfn6kbeyK(lFk8N-tnN2ue;;R^ojky-CP_lv{-V zE~b7pYn^bo94&?Y(28fjIvqV9Cwxo(Tay(8O?Ou?E~Sy~dECN_F(1EE!xM8OT)?cM zKbbRzIaA(ycltnUIy)@1Nqlz?1jA&MYcdH55h`fnLJcWz! z5*?!7g?7{n^}Q8eb#744ud+Yp(mvGAgvwxA50g$SIh#U_oKKGr_L?|Z4czBc4Ye@` zeBb}>=6U)Vxfkz?M%I+E*bk+c8=^A$^fR3BJO1jH9CRC-V#j2tW6H5nFrDa^pTzgm zzu4q=w9{Y6Yg?p=cM5*kS1J|Ct;7nI-y=3Wh}3H1>@WU=^9L|Q<2FqjG0xl=O$}7u zM1%5q_v38-#J|AdBqHCcw9_^-z`=rU1M; zZ@PK&$z0~0$vL56Z*+0cCw4u;!(+Ul)KP6WwncxA$fQGxxTR&>9*SIwfwxuAf5mzH2Tw^ZvUYlD2pQ{WCIpeV5>H0C+=FSH?nU1fMJ znd5u^Q4xGT6=zW9{sIvk3bXSR)z8b`cUA|^^PU}8X3<|9AzN$xyDNd@Ft-Iv`mrT} z?0-Ejq5L-S3E_&;j(BVgM@R0m>3*q4FDu`@?=i(_O=OS2{@xn7cCH#cS9l-BJQ zb?T(Q^d89XX5NNIKJ$db)^sZ*$(R(7BX8jKKg5Doec_WS!52xC0_ZzK(0n@usM>#; zHPF73=3ZPHo&MoUVKkna6A}LDYT3s#2orDFw|PO2a)}1S{c@)uaI7Wb4=pVLSwWx;JlOGA zFxVG^;F{S_$p7M}_4f68>$f^T2Iw1#Xq*MN9EPWOcIr)JExpq30rA)PINSi(k zM?^xt{nNepba&4*7Pl~(#c6?Y*c5Q{t@6$RLuKx)Q89pB@ z)y@>u=(zo-{A9XaT1h0*x!7m6v@2Kq)AGt`kwiOEe1?8=Rw&)MQAA_Z4X?O%6WPj- zhy|KxemDGLQd-WxW{XkJa~*|?z6PP4e_9C@gzp1c=_}A{CDNC%^oakrz|XZMcrMhmH7-TCvRKu?4%Eztx*vh|!_0ymb$=;Lvy>^z?>SY!=?{ zCE?_L)^m#S+-zsq=g0#0_rml+T_PAjkzI}0_Pjc;Kdf0V)o*{az|~pBc}T&7adG*W z;Hc%Tiae?cPG=gHkB`%2;4_XhH10wx)r$k1MW6}`0xQ0+HK-lEXXmI&40>?Mfn>N5wnAFi zE3Ch)0i3hK*%RF)>ZWcx-$eXe=gqpzfB%Kh z1a2%_XcbQUy81B4HG@8WvHl8?T@72{RjvYeD-HpCI>ej4PF;|yIA95)MU;M6f8Kvq zvDXvcy3l>&mOr$t+&Kz2xW*BF4pZ=5{hh`N3ki*OL_|I7z~TWv##9Q{-&m(NXIp7mFb2M!xHvWE|-Wq*>)vAC$> zVoI@C3n0QUL50qsQFW_}tZQp*E?_s89Xq;ZMmyQ-;fE?rieV&DHnnG)UYV+Kv6i1V;a@H4JGv@%4m%#O?Pls<7@~xXYq( zJ)@yCe@F8zc?Kbbb;UZD$Xql|9Iz7H*6yBuxIwN#6>%^890R-!8~KHMD=OO~uw&AI zTL*h3OQEJ~i+CyoNLYkd-`Tg>WxO1aRsLlEu%1Twtekm6=*${OOrDP)!mFs3y?lvw z<_u9qc*puWJM{%u0E{@hOih4ELpd*sUnK@!Sk6#})gY(xO9JjOt=>1%IV0T_QoI!P zUwKhjx(UdPsK1HsKn8P+XW{t3=OC#hSL=Zu0xWoEEyYOmgx>EI`OHehN4ki2PXfE& z+y?;;qBv|Q4#Ka#IEI zp<5_p<)QcnA+O{E_0VHxn`Pb~Viax@%;(NiyRknIEAF^6H$7JK1S5QVI~&gIvk&{w zm7ZUVfBNo0=XDogDBaNzsiKRFO55sM)AaPh!m-U$?{(N+*N2B;;N};ojkSU=TrjE?W3^yu> z;QJHmL9r(2ETP4FL<1Zhp9}U(0W}+Cz298GN71t_y$UY1r>p|K7K zSadzOJqbdF@@wHNvc&)W0?n84wAVu*aL;jNWAwS3H2Q6X7kM~7z7C7S@V!EDiEFzYy_emrY% z)t!GzAQtk|^48-;P?6R`%EQvj|NT+K%;+!l6%C=_iEcOu(vf>o zM0$w^jhnyY7yG*_f06sjR+jL>dVAwCxI0YH0%j9j&(Ld>}YgMC0~ovQ%0SBR4a5U?kU%{T-M@ ztj9;-Qcj3P%MT;|awW0Cn~Iz^qPUDT_5&JjfRpsouKZv1hIg*a!G9ua3wNE684?1* zRopjKj?>14;#mmYigw;_EO$s-ik&w{F$D?)suO|?YhE1q#lnf7Muz=2$dB&(WJ9(t z6!vRXj+rkHc(e{ZyR*S?K_6{II|{_x=mlbF6V78xe16tI0l-EV@afIkjlPU;2;c=5 z%<<*ZhT8mt{9!_I5{+hohb;6z{U%~^8TAv4;)r#8EqS% z304Qp(cUT&n~(vA7)^zb-|rvTC))LL+fhFt%gnUtDJIBL%Q@Mv8feF$O*!*gR-Cfo zS;ne?&D;`CTcm;bWO1-R;Hn5qMmQ=Age&3rlCK+l5%aBmF}!mqa+PM9#FA^8L{`;QwL+ad z`~%T{;R(cFmLyjIR>d6!)s?EsVO{+2M6 z~R%(08hY&;}OS!%;1C-B{Dmp^o-MG$SP zK3=QE-%vDdv!*;?W1a1N`VP`_Us?KEeXK-oS1ozgrClpdu5>eR($&pkonC|Tzjxw# zbDIr~WSk{URaTuM*3@Pim883Suhiva8a>kI>@1)w@8t^^ddg9M{Dr;$uq&^!QV@?B zIl7wl6RJJ`S<#Ma9{4q*qD1;=X-AL|7oeq=KfU{hd%*kbUFn_~iN2cB`2|JECM(v# zGDvMdt;mEs#(Nl}e}j@~%FHKWdKW?IvzNmm?<>lPZI{XPWf5(M?8?y;tHV_jELezy z#_`n1#HQD%Y{Uo!U^eCc8Z_bQO)@@HwQ|^9`PUOsUF5mAYOw(#6W^daKY>Bxi{rJK zuWs~uL+){=7?arT{DC8@)XE!3Yg59H6pe@Rc-$=XPd+3|ujEkxcGj1Bo1InGh=JRu z$+G(qt^7K-iJ5~LvshR7pmr@Xt=Ypiqy1Q0^ylsw9+GzWguQvZF&6W7=wCQj9~Nk= z+>Ks?u;4}n3>4~@PFEAB6%_^750_A4ls{K~u|eO911U(OHFsEe#ddY9qW=#Iy)_Da{$+XV_~5Q9c; z&=%Nsx1yK0<(5#=0V=ZiJ>?3H+uXwlaB=Q}VPhmSCapgXH%H@rmkWu`mRs!pVPn8` z%S-_|v7C16Wt;{^|9#Ds;-?2Y>|2xd@Bdv3`FQ(;%P2VtEv(r|KfK>H9cqqZ<*-%`UMyX0T9Q+p^m=vIfC4$v?>HnWJKMfE+WKHbho?O zg%4_p`AhvN`s%!uwe5Lf;%p^duw=K@3@BZ;RihxW68Sn;ot0?V&#iBSEyzu{#U~@d z_q92U59MWO+?N;4$`>tO|257V+sfBr@7K{Ob-g6Pms8CTD~%ATSt9N=kDW95lwy7L zf{r0%;g^X>X9J`f(=}YhXK*huOal7zoOuvy~!Q{-*-Pu7&J-|x&z$%99V+fg>Cr% zJWTg??X%Du7)K!rA$+P0pl$?YbTsinCR6L#bEp*1o@aLTxfPT0d z{-#p%N4;5YtR$i_2ZVfp8ZihuK%D+B_J{PXLJtryxJ=QHLxdpzQ?n5SeUZMv+26QP z96)3el(JzE3BqTM4m*J%u^Ik-%gKq3;PZ}P|C4Ygbw2w$y7aHqwOt{hA;HFBa6z%< zejT9T->Jyk-7`9{*#8*QkEng5(y)5T!@=}HVj%?vFklK{d>{A4LYU#K#%=92bNqDl zNv2D%w(PHM$t*BL8Yg<0y_|JVA1ys~*Y2lfIS&ch*B21fmpkg&)D-+UPtQ$_n*X~+ zFzqg)aP+P-VewVT_Wv>i!~bChY*sZCD8^&w>PK@6#g-)u^gR8m5{y>E0N&^p;si5&v1#l2!c+w+W_ z;m!L|=?u#OS1a9#D@#ZQv0lh2Hi{E}ehQ!Fd(dJr)$o7)H8#)-cDY{X74N zLxu*^(d9l<*~Q^*1|3tbBvRvDMN1ZiT+4lm^N#+*Tj{D@e_Yt+g7)4xb$N>J4sp%E zKa-HAO2t=YxUa-Izlo&ZpA@y0CBc4#IsC%?5anBby|YXQUO}|ct0tGHQ^$C$Y7bNR z4~Uin3)XmX{wEC(Rc4a`k8%lJ6#tN0ob-mgb!Ufvq1%-o-ErOx@`(peB%_;dC; z-|q!-2Tr>9kA9y#o@q`#vCx%lzFD-#N`TOzKCEx(GTou@m}mZ(xYRRw{bc;y-P+a!X{3d~9ABtmSYLIXEm zT|NrGhxwYou;^!uc9c9nwuj+(>6?N4z2EaO-Ya>VzFcaEkOII!1aRMHciL`9Fu+?F z4X$ac<=%DDX$9IL1%1T8LFn7+_5|tkOVB}^Ry7>q)g1hP5U&rw%A3$nngm^X{lvML zd@PF{(!LxND1`JNMW>Fc2~T5heln~dfg+;6^aLVg*KLumxYax_e10xGi@{6K%Zl|G zu)qE)Z5!X1Y%@Cy+}xl8Sk;{x<#b*x{qPuj_3bdxwxaj{eyK_&JRsH$?b8RvP#a50 z3ZvT;f9i)sgwb|JyT5`m=XFi?(nu8hG9G{1tB&6>7~-rOhPHB`)09_cM4(RZA+fkr z4ToayH{-V+U3pQr9l9~i##D|&5x4}^l)Qs7i2gz9`IRcf#4rqC!!WQswT1bpB!f~m z06JLL{mo+5J8)5ug1Zn)#@*cU$qev3x-QMcRQ^>Y#ntocL=s|hXR@K8`j3#Otp}xa z#24R`j!#&9hRmYSkb9R8+x>&wIyRGc(2Q5W=jq&;)i$F*<^9b9U3U>nW(0~tPfw7{ z8kDkVyT(h`H&1>)g8qhgOG@}BY@9q@VJP+oml~;AhoIc%=dadsbg`>@&bT#bQaz?M za^_l92PUFwaBf{28%aHzMKYB+MYpd*|NQSfjWc>vVR)~1d3FIf*0!(U{I4KcLbU0-qU416|v(}c_X)MT}JBcsOuNeBUY4K20 z{BH{G=`|!7ch8kV_VO`Ququ}oibmm;?$WM4MzT5NSa2@S`|BU~n`E23-Ds6E-Oop> zirVgS1Xy=}5}CQlFg0yE4imxDG~LOUcNqH%^$ubv93?SGkuVY!M0i$zfa)jTAw@z$ z(r9orFJ@jfTax0i2?OYJjyk=<_SJ%?cZ%;Frwk(+NuqIH(CAHIu5w-UHU`lTz6T1y z7h>zr=`C8QNt_lDs#!Uh1kaoN; z09s${4NUJ7-*^=a`#TP7FBbEzIaB2OD05BhH1Ud(5f*EeGlUsP${?#mS)6e}U|`go zK6QQor#hATdaUi4-jZZ)GEb~k*MYSL9UAU)il+TF|M;r-pJI|WmJR%yK8)B*LW5(e zZCcyL=m91Y0a3~iV?l788XUK;xa;+#uC|N@U^4qsNt#yKXAtYs$J(&7*5lh7yj)%` z#S2reVw6zSZw4U}yZX~VKi%d=#RIP)G~1z!bdmZrar)Wh6dJB4afPEMEoc#AtGHp; zUxhdlL>xIm>rBE}TsJou9_Z8_4GUSQG0HK8vQ`wu%@T*uaTBzDp$-`Q(j9`i!HPyw zEdkUE{K#XGJ%LB*rEiE7F6dVS`GTZJ@QEqH;dnfT%-L9S!|cr*U>XgCf<$9 zT5C>nsVSM}^ziDn2c0<_Z2y~n>VUbsRarC9kyKtYPCi^LCA$3q zBsdd9tzZc9DB1sH$h%!sAC~OEKA3jX)@o_=&;EA7vlo@lmsbc%1Fa-+(2G{6)mfXC zi26to=T0KHiN!Q!v^l( z^0C4oo=jXHG1r}js>z+C!7@#-wPEe(^#r3gs?6TalJ*3$1<+V z_9)vH{pCd!2pQvO5f+zr$qbY(B5b!&mOG{7SM4fOJp@DQ|0Rm}U(h-f3b8OF!Xz0P zFA27?IoE$ZBVszgPcr}=43{8mSAwEi-Onf|j*`Wb5=gZ5bLP*HyCHlw0K6|2cak=& zCoJm!da_kRgETAdJn2YW#tC816b1EiiXw^27@cx;DU3n6BBi@e{NE;F&%e#<)Um_e z-S;iO+Hmu%`>riM7D^HL0ZC5gOVFpi=tdh&WHVh!Ce8Ny{OkP5jAJuIez;V26>bhJ z&S?hMST1>BG^_N==LmJdpCz8|TVQO>Kf8v}363q{b`Z(}u{oY9c?+BI!`Yul3Hc7L z#|69&>MP{DD)Tr!zt1I#A0^uNcShmZn4ZjTti)WN#IY`mYxB|?#MZ+H<-|059tRnd<-otCoq95C}kgq51;18XNP5nvBs{%^Nwj4vxD3J3~a#R)+}EU zCmAMb8Z`G%ZN{xAphaHF39g*-aMt^vwMoe3C|tV&WC%HufKuB8Ya69YEau=m7W3{z zr%r$N9N87Qj#^+t#NlbHpTAA(L?J*?kH?5*vH^!SB zPLFd<9Z`m7Wu#XXcg%n6Y0WY?SE;u*}Z%*bXWePBEs?9y*$7k+ppL`djuqXS|i-Soep1~W| zgi_VE4t3ucM*Feh#JnVFc6c_k2@^v86fnDJ*ZliTTKGr2$U#h2i3hqAH>vF%u#J@C z>T8)Z*yKWWq&1LLr|4zmOw5Y#+AYmw zA@wf;+JSrk7YI)(uP(U7Kny>Si%beU4|Ur`ICkFS1?8k62|2)(&n_Q1_}FjsWc_;j zSmAl0c_DEQjQHY_@|!AszhHFS)CJpI1gTcTylKwCa;t;Q{ab%r#+d+3|EoX$&{u0f zSTfpwGF;SHT(`z?)se)w!sOK&u|Fvn_5-!yZ=%AXTlivQ?qP*z;DGM6XHdgrijdwv z;qXPY2XVM^Nv?E~5Gptz&?tNthwkJINts}S=g1<9A6qKkpWg^^g??3Ppn<9scOwYl zJdRzqpj`hzQ{iwa%V{ANg#&yPLke!L4l}A*14Omzj*7&iRs3JVW&aKd>|DTVJqp_* zB(O;46@3aus`|)*qImF_!uT?ux{tsXbOyMhuIYn#g8b;h-f}-z(luWf63d|e7>v*O zrLwuWT|g5JNeFCz+oaX~Op)!bho7NIR8a|k5YUA2Whs?XbTq8yrxEoH1-(nH1j3dq zT@*19kBaWO%o$8cM~F#vQjVe9l~ex`to%bjQO!pQowXcVrYM^hd;m2XR|-CXi`xx! z{Jr+w-B~g$W4Rc9#wR{&dW4Ika3Qe=M7-x?3iY*P@Tc-syq??_PTbgWNZA?d-IkT< z4z}YEm-gTVN}+c2IflocoBdW{!&YeL%YjfZHuPEHsTl8gN8(b17C(xQVGba$`mAYe z(Lsc&btHnsdAL7C$mL-b&Jiz5d`~!+I#{%^5ToQna$9l(=Q>5m{UOI*+h*iPQ}GqF ztOg!IQfkftZWbs_r;Gx9jiGDa-b(!kBoH0;uW~*P`5<}Ygp-{X1etAL3>Qy^VQwRA zoe3%MZSk`BB&v3cXfrB`Qq8Ppi`i_ljx$`WF7v> zRYu-PFV$k?62AP;hVTw6Th;-}MQWksA9rI3x;yqT1yZHOFxJc5=sB#!PKSYGxS1zM zw=Nv*@HBCzNBt;5$i8tFDRa3+3f8wdxZc(}@6D-_Ca{LUI=h5M-F&$nse^nuQpZ#o z017!_z73I3S8l1x)7Q#;)P#JTI@!WULzV%V1(FC`PwFjq4B4XN*0)po%XTL&@Ptx2 zuaL3EuE*!;1aq&07>fRQ1Ow}X$%vU3dW=_vqJ5UFA}TruZ0zdd#vrRQ_p4U3%5x$y z!Kqy%rpXTqj?Fa$#qD=lVtwCR-7ifWw4Jg^*Jox7bXic#i(g_2#BTFn2`1mW$u5;D z!gGH#g<@z5|sin&LK%Gj}I#86zON`LN=rFmw1IJ9XbK5Ifl+8UqelrK|49gfy$ID2-juu2L ze#iFF->KE`0fmz-A}!!irC7mQ9s-e%nD~}ykHUFlEa6YT0DTf%suj_HCXPG!<6G{p z^l$^;r7htJ?iu};XopLtRVs5dch2Mtir*GaFx=#%8F!_osw?5P7WuI_MvS82H9knPI_})g$uAzh$THhgvywhQD zdrWc3cQjI36aT$kD{-WmL8}fBxhnYfS|#A?How40>w7k3i~63|Bf7~*YZXg+{Ggh> zPxcVB>Oum&Phr5VHz|7f7J}lQ*OL;A5WDg{v*E!~Os7TOYy&k}=VDjnq{?8b?RfG~ z)Q_ZaZ79@9zfaq4Hj9T4O-H{a2EC*k5{{;2M7`5BFS^`e=l$rS41 zP-B(8C#s1%`BN(olKl!?+a=C)Eo6%qk928*FZm@zg{lqLxgF@oB_Y#tl2XFf3mHd{ z%@v}a5-VA7feOg37SIczy>-r&*I1ihxMxAxUple(+#on0y9xfK)5j;PUI^KY+j&An zv((@y{&b0WWHTBP<4X*d?$?Sir+R^sg6Pa04#~alY7-uk#%w5VhPk1$>Ga}`rDm>9 zr*@%tDt+qI;%;GS^1j`d>Rfw}?*<114Z+(<{)Ez-*r5l{K(d7~z{}W+U$~e3V`$e6 z<`a(<;UcYU`Jpd%;wxK{RRH>)2^E8>p-&4vjx^Gs38<`dwN$$g&oC0zNf>N{7tnfu{8 zi;kH!FK4xtQNO}ySdJ0QK$w0xj#dGx!%-CuhdtHAyXQ9BHTrRB>g1g(_LUKLnZ^~? zU-x;Ky12ZCC^^(oX&H4FioNUCoDX3I@uE*ZsYd5pi*GrGDq*pi^>fQLn2$n;o1>{+ zptRM8W&uBqAX9aCCPEG5umcHCHfsg7=_aa(Q}=k6WVV%ygu$mUTVg+nHhzqsTQke< z?AKePSk4xIzVXMt8K>4VBi)Qc*hKg6P*lYuOWEYC;Mr}0Phqsgeipshh;lsH%CYsj z@p^uD-_hdNX6pTPr~jiu0}izOHhH?QWNhOE*?~7k_+p*o%M67*5?x(8+VroTv7 z*bL$sRE$SLFwbk!n4d&*#zVwm=DbV{R3>H^)$;k}C-^CDn0%cSB zC7{r}mlkD#cRn!(6^U8!NzrK7Mma!CWK>dNNmn*U@p56jP~tPoqAlow?4d{^SXw23 zR92=c?#t!5^+#ws%14K5@q3R@c#g%nTaZEkD8_`Y`0=zg3K2DpelF6+-&G1~1s8XU z5e}ZUTP*LmwfTo_)eWboWFf88Y!0OUF*=AH^!ug>8{6v??xm*B*T@-r>9LRB?n#=0 z^W*IjDO5*J}eK9Be;Upm2+c-HYFpM~)%-=fQ{&I`<$c(NAD%pv6nXUaKo-D;H=EHzQ7We)5xlc%;xg8i_ z{P}-=u?9d{5gjCgn_9t{)IT-OyJ&08M`pH}1NOB0vZ*usFK5jcpj_{b;GLue(ftkf z$T%aln@f2>p$Xc3AY1o0VYAoHoWKssC3InZINz|zEr!0dwsR(iUu=grYlhu?`Dgfp zd<|o~nqspv1BNl`ai-QIi=F$9?e0ynFFoB=4D*D3-$Q=rCkV>SE%d`d7d8kiiZRQ7 z>`V`c$KF_`AoYu=ZA59}pQ&>pE#-B)Ea&>dnBmd+zmjUd@#rP3;6HD-eR%#^W6I}`qAU%XcO=b4NC zG3HAnDG6Xa9JrL$T;iEFq^L@K7nLp0(GkUxM0}4yb(v}cU~2m@c=a+a+GdLO+E`73 zb~n^f53KI0^R1-vLwU0OgNJ-Il#*nr-a#&|a&F2HXDxPt<~CT7_mYWi0d2}#)at1p z54%qRA5mX6@8UnYol=t*(s3mTMoD4^uDWZhNb61iYP~z>^_39k|QT657l?GGP~7Y z%T*+JFs5IbwFxI@yBd9@IK)joLzXztID?2MmHm|X&30bj+h{-9Nm_kTZP71}JGkv6 z)kH2`#G}L@9gABrSQnjZIc6zy7SY#KUd5Laj;cnA;;BZH__knMr#A9{x!k}Ake`Te z3Lqn6Q>-8mb?aZ~&^gBd;Hu_E0-)N*cFY~0s*>wCZ%wa-u~jPTLQ{faV-tR*z*=WS ztfwj71ZKV`NhE|7mZu`qc8B(>%$8zJw>*)(9CRq!W^KkhRhHrN*!b|*fd4Y}JW_YR zAXx&~i``o6b_OV^?_r-ZP=vCyx^=mDS1~x6F$u4mOxAbt`kY80m*64E;$ajLllaC(L2a% zd2zSp2R-cof)bNsK|A#htyVIep-9=7S0XMZjoH^m;zya&)k^t4X`o8^8z<}()h?Z^ zJv^5MZI7(IW;4wl7wLaid%xQ2gJeHvU8;6*SVWwH}ZW z`9K137BXv{&17)mw2sz+z2%OAHS&CSo+C^r*C{j)j?H&4%ONc&bWf`fL@ip3-?bqy z+n^4U3+rLM1oxPOeIWwx%1nD11xQrI2l|2kySH-6;xc%%UtlkhT4N@RKffD)ke`gv znzUkC`|&Kj-WcmuFrWrLNn!Cb(tVEaIFgs7CL4;EuxM!ng7P(BMWE4WT^wpr=-~@y z$vm)+F>rrJ*?$}62-%$qD{d+zx+WrqyXB8D! z*M#Xtf&`b~);I(S1lQp15G=SuaCfJ1cY;d@?hxEH1b26L_c{6gnYHGk`)ad#H+{BL z)$_i^`0Q@1N*b?(g5_tKJN;$Vf7yYXI)~L?r2G(FB6=;QwmjTPMU}cX;d2&$j1eiO zDhf>2c$!ljD(2EYFQrJzNN&QJfFkd%k%Z?CBb=nj<}VAiu>HViM$KMzy{+xj_RyPJ zfF^6)(D}|kUdTj)dS-m;P)0fiWa?Ux*4zo##L(=i9WYCIx+~>9vx-B+%&3B9Q_z%H zV?nbGUk@ivm6XsMLOCT;+E-#HY?tbV?k%CL5h$1kYnRI?ycA!%<>aqoziUi13+PCLarpn6!QT=8#o|5_e z_n!z<3HX!g4^B>I_%!P_|ZnC{W=8^C}7<%bHBwV)PF#lW&{>$Js>{ww$UaPr`MZR?7%_h@fx%H^?c@9TE z2GQG_i^3X2tt!7XEkpXGMN#n-@Y|&4p=0_3h(IyjW0xblj{kiyl@-~7%YF;(t_0l6 zI|-IpYAd`qrtkx{MP}e#B)-%j7E3AeBi}yjHS_QD9JGUq5X~ITsQve7JU{z&Z8n5R zF-?I*uIEt|j|;hQpg%(lpA{8=+6imuu;_at%NsPj}jYj<+B zA{E^VXHC&%a%aEAIY-Yank2z!w8l?TshP;zZ0vPpbOPsDI2t!tHF&*9^<@@cbP@|E z(1$M59OR`t@T3`)2CWgrJLVJ6B@<33gK{|32t&be2TYmF|aaw2!?>MB4qI&VlWDGyKDo>EZ~be9MXY z1jq}zihj0CcDA2O_V`yXe{ zDvIJm5m{W3!GOt3?y!Z)GV;Py-x_h&eH|n6tT&d>o*qAb!H2r1#ubyuP@7;_JVBqd zk)z0zyzsRZdUS<2MM%QywoDEpPip$1hBX%X%WvPjSwcPPq3+-M2?#Z;$yc2;>b&DA zScuLlM8DEYYSdnDXSXj&0`Bkd9@8>}b!4B@aaP~HKlg*|CG*&k?a6t3c@wen4C3F1z^756(w(!S*pNnJ+d!&nHmPy^D>!6J_(PTN8_*ZvVxE%*q zc5?KV2sdRrfjBotmfnCEOAPKs%{cBfX(}Lw>3OD|PFa&A1l^S2e%oI8$^M$KJW|MO zrrR42Ar%537gY2l&bhlCUz3A&cPq}J{{DAo4Xb5saqZn2_)x`bZnEY|u9ivZ=H>Ky z?e^ALW^6Fh?>oc*Kh+DW)|krO6v?A&(v5*fc>m{d%w zWEfHIzc@4K*E;M0qn+^kCGWdF=4`OQ`56tDX!>Cla{LdUVR$1(vj)FbXc7)Wv?9@X z5iX*Mj=B&eS0byXM+a^;ssHxo`Y>nGbU!x^v1-XDn4h*;!am12eT=x~2`HGms8wBQ z!nNg;vcF)~l}uv)1LY7D;CbN!btO0+fg5j$lAk?z+=6TCif=yw3>X0hSg*dp`&_uZ zyGps*4!&NxsFj8B`W$mfp4LEmDwod@gm!(l(#0*{)+pFWv=2+s7Frs)elDugIl(RqL*8B4o_pl}V9)=K{!CP2vY_ zlI`Ibhf<9%v>DAA}@uBRG+AK1x!E8Zvn&OJ+MKGo`kF2Sl5U6Bjah zI_5SHk)Da#g^1&KtMKsmrDdw>_yNDhO!0-WDJBe5e?X~JSHE`|#_w3h~)$1sT zT-Psi(&6VQEk*9e{$7imzK-mX#57{t@=Q`Ww_w?BlbMX_z05L59e52BoQTnx6LsXU z)BKkeVX6bAG_XzLn{Z72_{IQn@ONbdDY_>OdH1d63YAbXeHv^RYpsRC*prd)FIo(} zHHIyS+c8Q$zBlwbW+Qdyn{S#lSKHJwvq-x4j*=$=^(k=D_$}AxpU3s__DLxxca?@V zkEMX4p5%Rmv?yCG{%yY$&Y<7`eFXnLo@2`uHB zm2G&4$EnKY10uIZimmtT6AT_LLsV9*?FqHurxUMBA|1Kx%C&lH1Z+WTiY~{f=~crs z&D9TMGsW_zwG@XzuQ0>5`+K4z?733H_ zV$>HjeXeVbPeb8K3437~?_`4`OpSJrhPqEBvIeqn(Dkq4x&op@eDrSt8SjKZP|<+? zp^F6L`a#XY5gH@fJ=PyRwds2@`ZUkE(?O;aaAU9&tr81@s=~Ggor>nS4t#-@HRO{wm*$??mcUP$eGjFCZJwK@*>c#o1c`3Hxh0Bt)s4vG&*W&&EHO4D%@>Ex{dg zgR_cpnwWyousSX~FbvJ7lLZEv(Cq_T3yjej$(X{_*IylUg9=XmNGaSW7I|nHfMEFD zq$e_4r>J=?8yP`lNu}6K`8wr%qbqimIF$Y%X;XUaIWY{>r=$f2sL)rkn?ltzlT;A= zZ8T^WA%}S>nd1}Gt=C=~Sq0pgucrk56&8}or;UZGDseX0wwRh0F6L>@v|i0<^q(gp z@{n4wZ1hy>4|!7sw|w^<4y)QhVpi0>rhEYo)l-fJf_O(Xp1^+kq!XIXHEmXsKOiZR z!Mm8PYHHk?8})96XcB10dDR{XfF4Yraz)aJYnjNN$;ZyBDs9yOY18qfUE1B|)J$pi zD=>>??jWO*m)#U69Us!qXhARbj_|%R=VwPTcLFZWu5iyp0W34#S2CGpTT%{{*8&s5XRsQ0|ttw71go{8}IXtE}jLlu(nZ zR~QGCeV%4}9p!ROe2RQ@Q7ih6kyz?`oN>vbdwfKG z+si|>WuIJ$n!ckJOF#cG4A9^~XY8mQC-dvo>0u)y_fel77bC}Gw4|-p<*`<>XpUp( zOIdj3Wk)6-<)GN4|5_Cbjp^0*g)tU;W9tkq?%h-Yhi@;-(b(6%U!+%L)}3C|NaCp+dK##{KN*qElaWP%oYVy}9Q}zV4S@SFZLe>J7glip37#zh zcc^xN8>oO0=9Bd=qW%zDNjLUL+q_F%Z>;gU1`!pAv-ZFPtj0Tmu5H?#23(8XzK9Gr zjtDcs84R8TY{D~~PDF13A_|w&yA_`3}+s441 z@#x~LRvtCHxB?(5#xVwzhBB#NW&_F^N`bjzx$-a01%T?8!b z_FmG2#d%6&SIM=}1Nz{|6IpYF=6TFeo#}-_;+%}C)g%uJA;euKl@!`2H)LOf7USVh z&Hm9O09sz?=C^^R>_LLPL7F`T*h&^}GJupAPJUm|^teg??0K#OCUJt|?;GKPbkR7C zv62BIegj3~U9)?mxBActKvMUCHT5)Et3E5t_Hi|1Brb z_k99C!e-R97FO6z<=?`nA5zkP-u~zK#rOA`<*g!Dq`kgVFZ(owgQk%0=M~rRu==Ux zR)22pNWwy6&i}LzqxC8$0?D8@UF_ZuVT~jNqfDx8pV?QSP^uYg5GNhKI` z@jITou>N847+|&nPt1924^td})y4W7$HuL8IG=%X13i35==+n#8{j!~iL$9+F!V~Z zWX?K0X}oVPJZ1a|WKJFlN^kWFEe!QyUU6Ml`^847-9IfCQ)(GMdUf@4ESFOyVFk6F znE`(0md>?pzC{9gfn5FvawuI702~n&l8cv7tPnPdbbjbtnHSf=ywge+ukob zVCzoY-yXrZzi@p^L)P9KE_DNYX+C@)*5thZ7$ow|P-^Scgrh(Odror<=J7V>wYXo#$ zSY~&swPyWNYlM-g0jP8svyO#ptUp9n{&>PpH=^fpt)+=R0`E+=_zh=U(8=H5#PC}!x`VJrq;WX(x+G}T-j>UD8>!mDLLc%*DVLM5L zE)-*O`NgU=Cd6RQ1QzKg4^6| zo3V#%^862NY=<5G&Tf!w2eS@-oO_XVDxzBm9?~JZ+k{BspM16FMTEYU87mcWQfg%W6$$W>2#&{ zVlrd)baw*{GERgkd==*jn-{z5c=`&MvNh+M-qZD5KFK_JE?zuu!A zGCFf)aI|AYUZ{19tm;MhovS5+U;%T!0f?FAll_?K;-ui)2i1orwJUutYZjBn6#T#t zk`algIJy=mXU#~woE_*E>Ve7wqhY6nS?Fkf>G13`*QPD*;HwM!}N;1&u7%PUjxWLXSFwgAzmvq+eg%kdO!7+il&Lv zc`WDi;mAgBge+`iP~y>!3TZb@H(~xaYHY%Ar^~fZ$!g%eXBnuV;dMxP$>aCmt+W(G zvkLW9fd3rMWca?0p8pht=j~@Z`ax)(SA5k{^)04U4@{PL&38*3kmH)QwD^dDDTD(y*z`;(?Zv; z&wKI`)03LRm%x^u1D3TKe0%=Yv5zE=ACdHdiTgsig4PX6}KR$exk&ku2=%#JE~+@&dtRP2H5r3MnI$da!F0E zY7!9wdJ6e>0Ut+0$6)62hejFnR63EwId(Lkhq07x^fKM3wCG-C=_0`L5U4VeAn2+* zG;Nnsq|lV#J4y?Ux0$H&T+fAzE}+G6>n_W@4yf*!j1^3I*czm4IhK6gCR}P;YKF+G57&v>5q(&2#hIj$qO^Er^(c#AHumw;(I2U~-l-#-6ti5WSk?_kb#O)5_@#5mO< zFPXC9uX-LW3~g~UiDiMX2~ZYXC>X9wA-yZf=0(-m>Kvb&Q$g{rqfzsSfC2)lyV&vO zjl4 zmCp;4qt19p7SEoIAYqzy0gDsbiU9%gSPE#*7|`2~Fp;>fkHEQlwn^qckQlS=Bdhum zI@YFCgz=$%aP5ltnA(L-hzLg}=NdgEdoXiG)>kIYr*i9b5y?Z3aBKYv3hsAT;5m|CRgvf$r0W zVu(Z{D-mwrw5?mKz(Y~Jr}aFHz^C`M5V`K>Sf+%_{jp7pAAE@$6A^DO=x^I$ z$0~_`TAg&UZ za_jW^c&$WG*308#!kvt}!*eOLFcLee+!&4OqDH1f0UIa;1G!3~;auY-<-%qp!Vrgf zxZ_1F>(A!p>OEV~kw=IndmUJ$z)l|J2*W1;x3$%=rR zT?Vx^$*>*mvXS&g#p$x1*bP2`8G975*mou4vh04A{t)|rHD@fH@|4<1_a)_SRUXIY zUCk(+Nq-R#sS32)4VBu*HHG}XYBX*S4Wzmdm@jB4;xYM>^~_n>WJCn_spFll`GqR^ zA8|GKMf3~Jg6p{HsxYfniPhUQhWwwYXdGq?J6YN)3*JFq`Khk~2-rN?XGSgfSR*s$ zkG&1zw+^)9V89Iyej7V5GzT!7(2H+ZaKX3+%>jzOer4QQ4>SYmgC&SvL{^gA+uT}72%@3~Em$;CszNt;i7$br&4!PB zW2Ig&+BY5~@|=af>56hUwWzBtxKnI+A`Z3q+^?UZchX({UROQL&Alg$=y_eShbD+% zwG~r-EA%!Yn&!3w+uK8C5yXdK^UXEoBT+Z-3H?@eMm6`qR*7ik3Lm>h5O`4D(~=*! z*)#@@RzR?Cb;sAgCKKGCH9T7!->ZdN-+tSg6UVja24^b_4(*M!wyI;XRGg}xh(G1e zMw2w`vrKeM(ae8tJ7}^@;77aVX1hepjXTSExV@!3xBWx>Se~m#Dj=t5U*-S0q%D5$ zSiFTLOuTj^G(5QkoA8vri~8EIPI`S4=v07$Nti^UEfw>t_t*udDmAB*BY*bn9T8^J z8U>r(1-o}>jUWaOQML28s=jv}Xilee`4Uw^$ay-n>P%DkBe09{h(ywjYZL{ioNK+l zznI7us~z?mLte?I1z{60wCIvnJ*u5Zu;#g)tU4r6X!IoUjy{V5s?bXuFj^!A@QiJL zg#4Nk(EPNSB@%k;8HCxEhO3Y>3 zymn{Lr;zO0*##i~ezqt3XJ83mG`>g9tWq&QCryX%@r5ITu3n?S-b`*2UM!61G$W?_9!HLRQxMAmq8t1WyP3D& z?~)hKNfchad}zP<$Q#7jJjS!Cu_c$|t1L`qSb9Cl7cTZO$XS#^M9hK7O}4@~ zX{OV|zh>5Gy1l7HQ#Y8irtjCoS-_ZNZR?Qh5tKF=OU4!NxK2G?ic}}A+3X#ttF3A^ zH$JbpmleUa`%qO9JvdTh+7He+L@lylzF;QlU8}-YIoKq(N>9%r7+1!kH7XB}Lc8m4G|f2%1=vD+37}PveQRbim6Zu5gmS zHx|~Vq{@6nAlEtKm@CRHihS}`NCLwO8*0*U7(rE{fz5)%#l)_mF#OKYN;MdHRqZM; zTu+ciDO^nH4pB^p)EX*pgwA)6sy(Dxgu~l5o0Uf`yyL{2av*Q=DM-2!t>4KK<(Y;H zXTdnGJp@pmDfT!o4edvZ?cDuxxtt|Ku|R@-14)o%Y(wqp-i(WPWx7?i$D-!7j4DLK zx?i?#hhNL8BO`-7Fh0O!Z|*Cs==X(;PGyO{QYjf-u{&rGy4&MzzN62JlE9Ja)ida%<;BX+FQxyI=)|0=i)RrBqKYS8GAyT%BO0{ ze(+V4MTgk$BK%N9U4}LP()K4(A*vj448sL2$Q;}6We=sYEtLvD0*2>|9!j(Ewiu=s z1;n8&McnyUj_QsIUyPy&8Y=K|h^rwcH3I*HU>5jZ*1IjvRJVs2vsd5%*lCB$$D_DX zf1kEA8rNoP&T9!GmhTua`^skqNk))f#ZnXkn{BdSiyab*ce%^zFHN0d_WB33`Uh$P zaP)2c8ssG&NgwBCT)V!KKmVDlpW!TTFk&N{zV$#3%z^{(Qn+NB0G9C{u6`}N4=9Pk zt1JYmIKwOib@jD#dT6>`&d(IlcrKwV2sdN@Za(?;=_|#*v(dsV3$mFkhAEf%-|OD9$Ug08;X^y1sFJ#vf;pD1?+Id7aH9x}=! zw28*4eY@q=2?G)M+8GjWva3b-&y|H|&4chbQM_bqrz%bBZs$LQNvf2-5r8p!p`dg_ zC-x7@8-M-XNDEmti)(@r-V|_|jbO=kmC`P%zfmcFM!1Hx_a^))K*UjlxL)#qR-bGSNTc zm}M=3iclrSRK5Y9$CarZ{ao(T4?})M->(9I>>#1~y@uee0eKPBqN?HraIPt7SLmByu^UNQv3b`GriFm3JjqG;(|7@wr03?= z_&^NzEqWX|-U1wd=A(xA%UIC4!aOfvfcu8GpN1F6kG1sL9FD+w)UD0QH!OlMm3NCk z4hy#IkgNSQKh?~XH~YSmpZBh&;il&HruJvyDBXRB+FzMDz9VF~qCzX=ivlM`ar+1% zDr+~uPSLzE=+-Wec_o&ECi8ZOPOtwhq6nT_(N@c+Ur}LjY!PNP^SD9b7K$~}5rn$6 zoa4Q{dkjz3r$`%^0iIqh)~-(f;O*P)%s748sbYn#@TRy@2KYn zG^5~p`)Sk_0i^BD5NB=p!!74p8}rUwc0_T~Pjg#yEs2oS2^y#E%O(1n0x#I4H5A$C zt!%sJs(~1&SSsS2J`Zgz29*o#39nb3StkXGjp@rxee4WKQJ-lfNznZAbIt0%@CG_p#|;=&y(i%ngICC2c7nJcyA5dD7&5h zfeow`c!CyIxnOdi&Q-YP$KScn)nydJSCqg7-l1NDmhp5%L3V0KIatLK)_ye?sHrKP zs)S#nvM(|v!pOKbY7}C8GF2wv-*KU{h^MK&EVV|rAZWx4gM2Q!*=Om+7mj&Vz4`4i zZkR~Xe=63#fl{s_7|qp_)&8Kl2&!9Pkoq;SFvo9`5xrN(_Kni_msI~@>8)XVqFX)_Pt5wpCy-tdar(#0Rl(poE|WUkm%K(Yi+4TiNsjHcd#xV zg~jj-?ZUwL3pZ0dgH4M#P_@)Bi2ESfLi=^fJMx3(i3qB0YH}5eu6|&9eIu;FS(APY zl94{)9Ny8HJ9h?ENs$QW^AZqp|Gs34NPZxv)1%ut>s$M}Q;AuzB1{2niv2{w&}(J^ zuN+{(jd`OO{x5BApxFrDXfrEB`U_TfWZ&ufT3XW2+*pCKNBekzw8Sq<7OrRpXY)o; z{I42o+LYGvEuL&xcf9U*sW|H_yXer*0$A6sXb*@3B%a4i+b&EVg_s-mJ@E+f|@El;v|1U16|3L>MC*@r3u$ z31(!?E2E#At)jKT35dx<{dJc}^@m^kt*Won@5q~_cF2BEc;cnr>udcSxc{<$9hD%M zo&-PelfmM|hx}L@Y2#)aftYu(PU4G4Z{onP#m5ac@N%tu7k+i<8H})(@7qI9X+w>~ z!`9bS7!*>;fdL#uL4v<8y2ZAZ%HoRl!D7pUbUBIbBZg?L^}fE-vICQ%tto3B7vwbxrL+-X{JA$nH!G`$au8~dm@(n zw{SD&$6Em;PwR7yZ&HMmjHQ-KrNw3+sA^YkFx4==_BSFq{~=EWG8@li_}gvt%zssC zBxc~3SM*uFzK70El53^{=bezZ=cJNX*2OAO1Pw8|_9J|FS_B22wRE8h49c zvKrgx7+^?845^{Bsrg`)?LASSk{|4p60eg_s06hX7AX$f-((B|wlvO~0oji=Mw~ zdeboy&1-xkzvi9X-@5aE&tu|*c}umOX1s<-{*(@oVZYV!W_K=KN55&-Gd3xB@h=vR zB8s71xPX+Mb?x;@FdXHKvS{(Wf46PzZ-$hQQe~a4eDTDuC4+dn9d0lM;w9IvoPo8< zEq-7X<`5!VeRRJ?UU{%VyO7M#eCy??9Yq`?XnW!p&1aAD&RcaX9Tn<1Sz=*sHg^8$ zh0C%QhbMq={orQdn7&J}^RLU7^lhb-J#)sj74`W#X`H6qRyOUf7Y&EYUX4~@R)1T) zg@~^nu*6+i`VSBuU-Y2|l_vLt$OdFA_t;B0e*47?RuuUwjDDPSnr#6MIOu%>xx9&% zDHKj|`9%$u3E7?#9ZvmcOr58?kmx{YR^uRRJ#B?_x+Hj4XIUGuSZJP(Xp}Q6O8_o> zBxJ^^$Nfpj?7?Y&!5*FA7=C#&pEt>Yv-H7CstA2pIcWFp6V)6;3PNsa64om7#P!$! zX31lfQ4-_V;7&sZ6XOK6DJPwNy#+Pb`QV{J(*-eFGs_W$rJTX2;H|K7PR?;%BEOTq zq{iv^ckL{0K4>bCQNvc}H%Y>NP8`&&hEr($+9WiahLYC867W5GG+mD=hJ3Lx=~g!u ze%^NvJs)d(q)9Xe;!Q@d&-fg?;3V9a)^n|zn?;<5)rcnY9<}Mn0UH`$wI5Cgx3QWTTPIk2n6x(0C z_uu`&71%-hEoxEC`wa6{Q-;FNH)#Mn!lng()}XoB;2|#cDGzPb$t2`Fd!5TTLF5rT zfR!f~bkPt|O%mav5PEmQLTL9c*VivUTJ8{(9?r(Y{anhNA2@D%l|X@!!^h~Z>?i<9 zJ;Snm^<5jd_%<%=_;$R&A4lJw|6VGIpT7;-U0+A{4&)d|=k?#eEL{M4^#_a+U9aza#HdUA^3FjJ2=?LfZL=SGE)K=}38 zK^wgF3e}R9aSlEDzCbHUCeBDJb&?s)Z`!mmhF#8}u%!@tIc%|$V;J}BUH9dXi~L#C zvt&T$`gkm^pOG2fbCp1**G*Swu#lp}`O(1#I>iVfbjDODrZ4TjtF;nE@wo3>%Novep@Ez|SIb zzXJUpV>0>_-Ade#{7^1s%M-RpmtX8l(PkT@WBQT?xIUrMHH5INvWkC+CGB}svT_|? z;@kIUH|MuQ(K=~czNBEO&Ic`mF6Pxt zO;*7@K+-Pg`S4$Nrxd}F74r+zKO{@yY=Zh2xq$~ zLE%!>%8s>YR6>ytNgm^po<|CQ?Shr|bc?do*?&fBI?IvH5DcL{#>%sEmM%!Uqm$eF!XkJBC4r<} zhw#{m?DtCd)P2Sw@C}jFv>uInuoH~-6eRGip3yvBjQ1<*?X3-rv6e1Keq<>!!;As$ zJ-4VqwqmeaJ*nL~U`F4oEy`D=FGK(px^{pek7vazg8DE=bG@d1)GCQ}ysJ*K^>cGHC2TIHua(ei zqf6+KdKv#-NPScim6xrLzA1$y>EOL21>g@p@}*d^O)YUxz0Vubzs2+7h%d8pL2FiI zDx5jQQTWojG-!63pZAC0yS*=t5o~}C^iFQ18SgKm4$ubS$J>sb4ay!?PLL2mCi7pG zK9_Ac2^|kR8wa~-&kAF2QY@3v?liX~pUCiS@T`;y@cS$$cb>$=Syvg^5r5zL%pp}0 zV^L+QB+thVTtGI{P`BkMAoenNXdZ*|AO;O3)GZjUqTlK7xGwrt_1;l7lcWP=8qYY* zm&OO!l>*A;{?^~^F;W$#;5A+GWmFgVt39qMX0v${(gcN3=pVEwtI2I0-+X0ur5;Az z^@5iCgdf@zxb~NLHemGo3Rt1_3QF7@w3$fNvSd@=zkf^(u}sDgg|au&>aL&Pygq6! zH-9azHwxgV24x0K?iW~fYWLTKXJx{tx>zQ|i;7*)u(-bq_eEtOel33|1XeVrj*{=` z(9%|atVVvjx)cxXofJle*3T=^ghv0+k2#y}B;V8TzlymJ@z#%*Bn@mu_A%AGc0O3~ zO7W}QXpahUi++Wot|ds$9&B?E!$`5`cX}rM>|$Ky3IlRZG{0MaMX{sM8T#;otbwf| z98j)Q{u=~XiyfbIkrbyO3p1RjBwZVN&v;$on2HNPG-O6o95U5(L^_84mh?zeMh48o zRzN`lWJVJoRZ$ct8YWH&dG@uDUT-Ykz#4kLN4@0t>=Tm|R%ZI6IENw+_V>`;4!V>^ z$Rmo@AAF}5S-LQ>o=K{Bith&hjJ@3PrG-;p4HwFOTUYe?g{VyEWc9Q7WS;w3yGJng z5#9{J#x|gWEL#M#s9!9siA3xTLwf*ZH3oV?`2=!&BUL-r%U>PI2P}CtH~-8C!l2Tn z5>VGmVSmFtY?xkoH*i8s!N5ZPrT-Xq|3~IYdDWRjk&M3x3N^g!iO7?)7ok~N`=;id zkOZpdHb{EctID(@m}s@^k`_&di_*xFegV-kA}HaY5Q){8(udlT%@KjGKHZJ*-XKEhXIzrfp%;D$hc~i?)p#xbZ#p*bJz3rmLxpatjO9FJM3Ev z=h7Cx@@Rb%eoP31XE^B%5Du+s9^6ZD7e6s7~aWKLXuQh+Rj=@*Io!FKqWusIS{{<5&K@MQqRrijPd1Ww=kc zAhdT}qARiJ&UY|B8Yk)`mv9;sNzJK*bIbx-5EqLWTB-1}vnL zP#M~`eg?0DU{Im1W>a?V(Ix1Ek1cX!e6l#`qb1sDT)>|7C&RRla-pr2Vu2j@-vkVg zvW9QZ(IQuq#A7@e#)3X;T6BUDAwiVOejMVUJGKV+7bw4HD7fc2?Zhj;A0i~ELls8O zNQU}AMw^@@gQndF6KEy}-rNw}<(>wZC;@

SH_X(i1B+*LrL%*VtTFIlXR_fYDUW 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
$r|wQ_`>cT)QS8p3fAnR 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⁡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