Package io.openems.edge.edge2edge.ess
Interface Edge2EdgeEss
-
- All Superinterfaces:
OpenemsComponent
- All Known Implementing Classes:
Edge2EdgeEssImpl
public interface Edge2EdgeEss extends OpenemsComponent
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Edge2EdgeEss.ChannelId
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default FloatWriteChannel
getRemoteSetActivePowerEqualsChannel()
Gets the Channel forEdge2EdgeEss.ChannelId.REMOTE_SET_ACTIVE_POWER_EQUALS
.default FloatWriteChannel
getRemoteSetReactivePowerEqualsChannel()
Gets the Channel forEdge2EdgeEss.ChannelId.REMOTE_SET_REACTIVE_POWER_EQUALS
.default void
setRemoteActivePowerEquals(java.lang.Float value)
Sets an Active Power Equals setpoint in [W].default void
setRemoteReactivePowerEquals(java.lang.Float value)
Sets an Active Power Equals setpoint in [W].-
Methods inherited from interface io.openems.edge.common.component.OpenemsComponent
_channel, _getChannelAs, alias, channel, channel, channels, debugLog, getComponentContext, getState, getStateChannel, hasFaults, id, isEnabled, serviceFactoryPid, servicePid
-
-
-
-
Method Detail
-
getRemoteSetActivePowerEqualsChannel
default FloatWriteChannel getRemoteSetActivePowerEqualsChannel()
Gets the Channel forEdge2EdgeEss.ChannelId.REMOTE_SET_ACTIVE_POWER_EQUALS
.- Returns:
- the Channel
-
setRemoteActivePowerEquals
default void setRemoteActivePowerEquals(java.lang.Float value) throws OpenemsError.OpenemsNamedException
Sets an Active Power Equals setpoint in [W]. Negative values for Charge; positive for Discharge. SeeEdge2EdgeEss.ChannelId.REMOTE_SET_ACTIVE_POWER_EQUALS
.- Parameters:
value
- the next write value- Throws:
OpenemsError.OpenemsNamedException
- on error
-
getRemoteSetReactivePowerEqualsChannel
default FloatWriteChannel getRemoteSetReactivePowerEqualsChannel()
Gets the Channel forEdge2EdgeEss.ChannelId.REMOTE_SET_REACTIVE_POWER_EQUALS
.- Returns:
- the Channel
-
setRemoteReactivePowerEquals
default void setRemoteReactivePowerEquals(java.lang.Float value) throws OpenemsError.OpenemsNamedException
Sets an Active Power Equals setpoint in [W]. Negative values for Charge; positive for Discharge. SeeEdge2EdgeEss.ChannelId.REMOTE_SET_ACTIVE_POWER_EQUALS
.- Parameters:
value
- the next write value- Throws:
OpenemsError.OpenemsNamedException
- on error
-
-