Transmission ------------ Alt text **Technology ID: TRANSMISSION** **Input energy interface, with default energy:** - CONSUMPTION: electricity **Output energy interface, with default energy:** - SYNC_RESERVE_DOWN: syncResDown - MFRR_DOWN: mfrrResDown - SYNC_RESERVE_UP: syncResUp - MFRR_UP: mfrrResUp - PRODUCTION: electricity **Technology behaviors:** - OPTIM_PATHWAY - OPTIM_PMAX - RESERVE - DCOPF - FLOW_BASED **Technology parameters:** | ID | Label | Unit | Behaviors | Description | | --- | --- | --- | --- | --- | | SYNC_RESERVE_UP_COST | Op. cost of the upward sync. reserve | Euro/MW | RESERVE | Operating cost of the upward sync. reserve< | | SYNC_RESERVE_DOWN_COST | Op. cost of the downward sync. reserve | Euro/MW | RESERVE | Operating cost of the downward sync. reserve | | MFRR_UP_COST | Op. cost of upward mFRR | Euro/MW | RESERVE | Operating cost of upward mFRR | | MFRR_DOWN_COST | Op. cost of downward mFRR | Euro/MW | RESERVE | Operating cost of downward mFRR | | CAPEX_OVERNIGHT | CAPEX Overnight | Euro/MW | | -Overall capital expenditure (only used for pathway optimization) | | DEINVEST_COST | Deinvest cost | Euro/MW | | Deinvest cost (only used for pathway optimization) | | LIFETIME | Lifetime | | | Lifetime of the asset (only used for pathway optimization) | | YIELD_INVEST | Yield of investment | % | | Yield associated with investment | | INSTALL_MAX | Max installation | MW | OPTIM_PATHWAY | Max installation (only used for pathway optimization) | | DECOMM_MAX | Max decommissioning | MW | OPTIM_PATHWAY | Max decommissioning (only used for pathway optimization) | | CAPEX | CAPEX | Euro/MW/Year | | Capital expenditure (only used for capacity optimization) | | FOC | Fixed Operating Costs | Euro/MW/Year | | Fixed Operating Costs (only used for capacity optimization) | | PMAX | Pmax | MW | (not OPTIM_PMAX) and (not OPTIM_PATHWAY) and (not FLOW_BASED) | Installed power capacity | | PMAXMIN | Min Pmax | MW | OPTIM_PMAX or OPTIM_PATHWAY | Installed capacity lower bound for capacity optimization | | PMAXMAX | Max Pmax | MW | OPTIM_PMAX or OPTIM_PATHWAY | Installed capacity upper bound for capacity optimization | | AVAILABILITY | Availability | % | not FLOW_BASED | Available capacity, expressed as a percentage of the installed capacity | | CONSUMPTION_COST | Consumption cost | Euro/MW.h | | Consumption cost | | LOSSES | Losses | % | not FLOW_BASED | Transmission losses | | SUSCEPTANCE | Susceptance | | DCOPF | The imaginary part of admittance, measure of how easy it is for alternating current to pass through a capacitance or an inductance | | REVERSE_DIRECTION_TRANSMISSION | Reverse direction transmission | | DCOPF | Name of the transmission with reverse input and output point, calculated attribute | | | **Model code:** ``` python stateON = AssetState('ON') addEnergyTransmission(asset, stateON) addTransmissionReserveProduction(asset, stateON) addDcopfModel(asset) finalize(stateON) ```