Reserve demand -------------- Alt text **Technology ID: RESERVE_DEMAND** **Input energy interface, with default energy:** - CONSUMPTION: reserveEnergy **Technology parameters:** | ID | Label | Unit | Behaviors | Description | | --- | --- | --- | --- | --- | | DEMAND | Demand | MW | | Power demand | | LOCAL_RESERVE | National procurement minimum (w.r.t the total requirement) | % | | Fraction of the total reserve requirement that needs to be procured localy (ie within the associated zone) | | | **Model code:** ``` python stateON = AssetState('ON') stateON.setEquality(asset.getParameter(ENERGY_PICKUP), True, asset.getData(DEMAND)) MODEL.addState(stateON) ```