diff --git a/website/docs/examples/nocontrol.md b/website/docs/examples/nocontrol.md index d67c2fe..d96c68f 100644 --- a/website/docs/examples/nocontrol.md +++ b/website/docs/examples/nocontrol.md @@ -3,6 +3,8 @@ title: "Example: Non controllable assets" hide_title: true --- +![image not found](../../static/img/example-inflexible-header.png) + This page serves as a guide for implementing an S2 RM for a non-flexible device, or to give a CEM developer a better understanding of what to expect when taking into account information from non-flexible device. It provides some example S2 messages for same (fictional) non-flexible devices. Some examples of non-flexible devices are a TV, an electric cooking appliance, lights and a non-curtailable PV system. ## Example: Non controllable assets @@ -139,7 +141,7 @@ The RM sends power measurements to the CEM using the PowerMeasurement message. I "values": [ { "commodity_quantity": "ELECTRIC.POWER.L1", - "value": 3450.6 + "value": 510.6 } ] } @@ -158,13 +160,13 @@ It can be quite useful for a CEM to know in advance what the future energy usage "duration": 3600000, "power_values": [ { - "value_upper_limit": 3500.0, - "value_upper_95PPR": 3460.0, - "value_upper_68PPR": 3455.0, - "value_expected": 3450.1, - "value_lower_68PPR": -3445.0, - "value_lower_95PPR": -3440.0, - "value_lower_limit": -3400.0, + "value_upper_limit": 1000.0, + "value_upper_95PPR": 960.0, + "value_upper_68PPR": 800.0, + "value_expected": 545.1, + "value_lower_68PPR": 340.0, + "value_lower_95PPR": 100.0, + "value_lower_limit": 0.0, "commodity_quantity": "ELECTRIC.POWER.L1" } ] diff --git a/website/docs/examples/pv.md b/website/docs/examples/pv.md index b718ce3..5ea67d6 100644 --- a/website/docs/examples/pv.md +++ b/website/docs/examples/pv.md @@ -338,13 +338,13 @@ A PowerForcast can also incorporate uncertainty of the forecast in the values. "duration": 3600000, "power_values": [ { - "value_upper_limit": -3500.0, - "value_upper_95PPR": -3460.0, - "value_upper_68PPR": -3455.0, + "value_upper_limit": -3400.0, + "value_upper_95PPR": -3440.0, + "value_upper_68PPR": -3445.0, "value_expected": -3450.1, - "value_lower_68PPR": -3445.0, - "value_lower_95PPR": -3440.0, - "value_lower_limit": -3400.0, + "value_lower_68PPR": -3455.0, + "value_lower_95PPR": -3460.0, + "value_lower_limit": -3500.0, "commodity_quantity": "ELECTRIC.POWER.L1" } ] diff --git a/website/static/img/example-inflexible-header.png b/website/static/img/example-inflexible-header.png new file mode 100644 index 0000000..b4df4d5 Binary files /dev/null and b/website/static/img/example-inflexible-header.png differ