CAES fleet ---------- Alt text **Technology ID: CAES_FLEET** **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 - DISCHARGE_TIMES - RESERVE **Technology parameters:** | ID | Label | Unit | Behaviors | Description | | --- | --- | --- | --- | --- | | SYNC_RESERVE_UP_MAX_SHARE | Max share to upward sync. reserve | % | RESERVE | Maximal share of upward sync. reserve in running capacity | | SYNC_RESERVE_DOWN_MAX_SHARE | Max share to downward sync. reserve | % | RESERVE | Maximal share of downward sync. reserve in running capacity | | MFRR_UP_MAX_SHARE | Max share to upward reserve | % | RESERVE | Maximal share of upward mFRR and sync. reserve in running capacity | | MFRR_DOWN_MAX_SHARE | Max share to downward reserve | % | RESERVE | Maximal share of downward mFRR and sync. reserve in running capacity | | 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) | | STORAGE_CAPEX_OVERNIGHT | Overnight CAPEX (Storage) | Euro/MW.h/Year | | Overnight capital expenditure for storage assets | | 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) | 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 | % | | Available capacity, expressed as a percentage of the installed capacity | | PRODUCTION_COST | Production cost | Euro/MW.h | | Production cost (emission cost excluded) | | STORAGE_CAPEX | CAPEX (Storage) | Euro/MW.h/Year | | Capital expenditure for storage assets | | STORAGE_CAPACITY | Storage capacity | MW.h | (not DISCHARGE_TIMES) | Storage capacity | | DISCHARGE_TIME | Discharge time | h | DISCHARGE_TIMES | Discharge time | | STORAGE_AVAILABILITY | Storage availability | % | | Storage availability, expressed as a percentage of the installed storage capacity | | INPUT_EFFICIENCY | Input efficiency | % | | Pumping efficiency | | OUTPUT_EFFICIENCY | Output efficiency | % | | Turbining efficiency | | LOSS_RATE | Loss rate | %/h | | Storage loss rate | | | **Model code:** ``` python stateON = AssetState('ON') addEnergyProduction(asset, stateON) addEnergyConsumption(asset, stateON) addDischargeStock(asset, stateON, inputEfficiency=INPUT_EFFICIENCY, outputEfficiency=OUTPUT_EFFICIENCY, storageAvailability=STORAGE_AVAILABILITY, initialEqualsFinal=True) addReserveProductionStorage(asset, stateON) finalize(stateON) ```