CO2 captured sequestration -------------------------- Alt text **Technology ID: CO2_CAPTURED_SEQUESTRATION** **Input energy interface, with default energy:** - CONSUMPTION: co2_captured **Technology behaviors:** - OPTIM_PMAX - OPTIM_PATHWAY **Technology parameters:** | ID | Label | Unit | Behaviors | Description | | --- | --- | --- | --- | --- | | CONSUMPTION_COST | Consumption cost | Euro/t | | Consumption cost | | CAPEX_OVERNIGHT | CAPEX Overnight | Euro/t/h | | -Overall capital expenditure (only used for pathway optimization) | | DEINVEST_COST | Deinvest cost | Euro/t/h | | 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 | t/h | OPTIM_PATHWAY | Max installation (only used for pathway optimization) | | DECOMM_MAX | Max decommissioning | t/h | OPTIM_PATHWAY | Max decommissioning (only used for pathway optimization) | | PMAX | Pmax | t/h | (not OPTIM_PMAX) and (not OPTIM_PATHWAY) | Installed power capacity | | CAPEX | CAPEX | Euro/t/h/Year | | Capital expenditure (only used for capacity optimization) | | FOC | Fixed Operating Costs | Euro/t/h/Year | | Fixed Operating Costs (only used for capacity optimization) | | PMAXMIN | Min Pmax | t/h | OPTIM_PMAX or OPTIM_PATHWAY | Installed capacity lower bound for capacity optimization | | PMAXMAX | Max Pmax | t/h | OPTIM_PMAX or OPTIM_PATHWAY | Installed capacity upper bound for capacity optimization | | | **Model code:** ``` python stateON = AssetState('ON') addEnergyConsumption(asset, stateON, availability=100) finalize(stateON) ```