Skip to content
Snippets Groups Projects
Commit 7c890b69 authored by Andreas Kraft's avatar Andreas Kraft
Browse files

Merge pull request #13 from ankraft/sdt3

Added more documentation and examples
parents f1208039 c9402c98
No related branches found
No related tags found
No related merge requests found
# Examples and Contributions
[A simple example](#simpleExample)
[Multi Socket Electrical-Extension-Block](#mseeb)
## HGI
<a name="simpleExample"></a>
## A very simple SDT example
In the ideal case, a large organization or SDO would define a widely-applicable set of [ModuleClasses](SDT_Components.md#ModuleClass), each of which could be used as needed to compose the description of a complex device. In order to show the appoach, this section will create a few example ModuleClasses based on - or inspired by - featues in the Echonet Lite protocol. Please note that the examples shown in this document are very "cut down" and by no means represent a true representation of Echonet Lite.
The Echonet Consortium has standardized their specifications within IEC/ISO (IEC62394, ISO/IEC24767-1, ISO/IEC24767-2, IEC62480, ISO/IEC14543-4-1, ISO/IEC14543-4-2, IEC62457) and they provide a comprehensive collection of various types of home appliances relevant to SmartGrid applications as ECHONET Device objects (see [https://echonet.jp/spec_object_rf_en/](https://echonet.jp/spec_object_rf_en/) ).
For the example in this document, to show re-use of ModuleClass definitions, two complex devices are chosen which have some common features and hence could be expected to both use some of the same ModuleClasses: an air conditioner and a washing machine.
<table>
<tr><th>Funtionality</th><th>Air Conditioner</th><th>Washing Machine</th></tr>
<tr><td>operationStatus</td><td>operates on/off</td><td>operates on/off</td></tr>
<tr><td>measuredCumulativePowerConsumption</td><td>the cumulative power consumption</td><td>the cumulative power consumption</td></tr>
<tr><td>installationLocation</td><td>this sets/reads a string text describing the location (room) of the air-conditioner.</td><td>this sets/reads a string text describing the location (room) of the washing machine.</td></tr>
<tr><td>setTimer</td><td>(not applicable. there is no preset start for an air-conditioner)</td><td>This sets/reads use the on/off timer</td></tr>
</table>
Based on the simplified example above, the two appliances will need the ModuleClasses below:
- *air-conditioner*: operationStatus, measuredCumulativePowerConsumption, installationLocation;
- *washing-machine*: operationStatus, measuredCumulativePowerConsumption, and setTimer.
<ModuleClass name="operationStatus">
<Data>
<DataPoint name="operationStatus" writable="true">
<Doc>This property sets/reads the ON/OFF status.</Doc>
<DataType>
<SimpleType type="boolean"/>
</DataType>
</DataPoint>
</Data>
<Events>
<Event name="operationStatus">
</Event>
</Events>
</ModuleClass>
<ModuleClass name="measuredCumulativePowerConsumption">
<Data>
<DataPoint name="measuredCumulativePowerConsumption" writable="false">
<Doc>This indicates cumulative power consumption of the device in increments of 0.001kWh.</Doc>
<DataType>
<SimpleType type="integer"/>
</DataType>
</DataPoint>
</Data>
</ModuleClass>
<ModuleClass name="installationLocation">
<Data>
<DataPoint name="installationLocation" writable="true">
<Doc>This property indicates the installation location</Doc>
<DataType>
<SimpleType type="string"/>
</DataType>
</DataPoint>
</Data>
<Events>
<Event name="installationLocation"> </Event>
</Events>
</ModuleClass>
<ModuleClass name="onTimerSetting">
<DataPoint name="onTimer" writable="true">
<Doc>Timer value (HH:MM)</Doc>
<DataType>
<SimpleType type="time"/>
</DataType>
</DataPoint>
</ModuleClass>
The structure and the according SDT now looks like this:
<table>
<tr><td colspan="2" width="50%"><b>Example1.SDT</b></td></tr>
<tr><td> </td><td>Namespace information</td></tr>
<tr><td> </td><td>Modules (contains ModuleClasses)</td></tr>
<tr><td> </td><td>operationStatus<ul>
<li>measuredCumulativePowerConsumption</li>
<li>installationLocation</li>
<li>onTimerSetting</li></ul></td></tr>
</table>
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Example1 SDT inspired by some Echonet Lite examples -->
<Domain xmlns="http://homegatewayinitiative.org/xml/dal/3.0"
xmlns:xi="http://www.w3.org/2001/XInclude"
id="example1.SDT">
<Modules>
<!-- Various examples for module classes -->
<ModuleClass name="operationStatus">
<Data>
<DataPoint name="operationStatus" writable="true">
<Doc>This property sets the ON/OFF status.</Doc>
<DataType>
<SimpleType type="boolean"/>
</DataType>
</DataPoint>
</Data>
<Events>
<Event name="operationStatus">
</Event>
</Events>
</ModuleClass>
<ModuleClass name="installationLocation">
<Data>
<DataPoint name="installationLocation" writable="true">
<Doc>This property indicates the installation location</Doc>
<DataType>
<SimpleType type="string"/>
</DataType>
</DataPoint>
</Data>
<Events>
<Event name="installationLocation"> </Event>
</Events>
</ModuleClass>
<ModuleClass name="measuredCumulativePowerConsumption">
<Data>
<DataPoint name="measuredCumulativePowerConsumption" writable="false">
<Doc>This indicates cumulative power consumption of the device in increments of 0.001kWh.</Doc>
<DataType>
<SimpleType type="integer"/>
</DataType>
</DataPoint>
</Data>
</ModuleClass>
<ModuleClass name="onTimerSetting">
<DataPoint name="onTimer" writable="true">
<Doc>Timer value (HH:MM)</Doc>
<DataType>
<SimpleType type="time"/>
</DataType>
</DataPoint>
</ModuleClass>
</Modules>
</Domain>
---
<a name="mseeb"></a>
### Multi Socket Electrical-Extension-Block
[mseeb.xml](../test/mseeb.xml)
This example is a specification for an imaginged device, a connected extension block with multiple power socket where each of the sockets are modeled as a
separate *SubDevice*.
![Multi Socket Electrical-Extension-Block Structure](images/examples/hgi_mseeb.png)
[mseeb.xml](../test/mseeb.xml)
## DECT ULE
## Echonet
---
## EnOcean
\ No newline at end of file
This diff is collapsed.
......@@ -5,8 +5,8 @@
<element>
<id>UMLNote</id>
<coordinates>
<x>70</x>
<y>420</y>
<x>21</x>
<y>427</y>
<w>217</w>
<h>182</h>
</coordinates>
......@@ -35,8 +35,8 @@ Cardinalities:
<element>
<id>Relation</id>
<coordinates>
<x>154</x>
<y>490</y>
<x>105</x>
<y>497</y>
<w>77</w>
<h>28</h>
</coordinates>
......@@ -49,8 +49,8 @@ m1=0..*
<element>
<id>Relation</id>
<coordinates>
<x>154</x>
<y>518</y>
<x>105</x>
<y>525</y>
<w>77</w>
<h>21</h>
</coordinates>
......@@ -61,8 +61,8 @@ fontsize=10</panel_attributes>
<element>
<id>UMLClass</id>
<coordinates>
<x>700</x>
<y>763</y>
<x>651</x>
<y>770</y>
<w>105</w>
<h>154</h>
</coordinates>
......@@ -85,8 +85,8 @@ uri</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>406</x>
<y>826</y>
<x>357</x>
<y>833</y>
<w>98</w>
<h>56</h>
</coordinates>
......@@ -98,8 +98,8 @@ m1= 0,1
<element>
<id>Relation</id>
<coordinates>
<x>406</x>
<y>770</y>
<x>357</x>
<y>777</y>
<w>98</w>
<h>56</h>
</coordinates>
......@@ -111,8 +111,8 @@ m1= 0,1
<element>
<id>UMLClass</id>
<coordinates>
<x>70</x>
<y>770</y>
<x>21</x>
<y>777</y>
<w>133</w>
<h>84</h>
</coordinates>
......@@ -129,8 +129,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>175</x>
<y>728</y>
<x>126</x>
<y>735</y>
<w>490</w>
<h>91</h>
</coordinates>
......@@ -142,8 +142,8 @@ m2=1..*
<element>
<id>Relation</id>
<coordinates>
<x>175</x>
<y>728</y>
<x>126</x>
<y>735</y>
<w>490</w>
<h>133</h>
</coordinates>
......@@ -155,8 +155,8 @@ m2=1
<element>
<id>UMLClass</id>
<coordinates>
<x>490</x>
<y>854</y>
<x>441</x>
<y>861</y>
<w>133</w>
<h>35</h>
</coordinates>
......@@ -169,8 +169,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>616</x>
<y>868</y>
<x>567</x>
<y>875</y>
<w>98</w>
<h>35</h>
</coordinates>
......@@ -182,8 +182,8 @@ m1= 1
<element>
<id>UMLClass</id>
<coordinates>
<x>490</x>
<y>910</y>
<x>441</x>
<y>917</y>
<w>133</w>
<h>70</h>
</coordinates>
......@@ -199,8 +199,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>196</x>
<y>840</y>
<x>147</x>
<y>847</y>
<w>308</w>
<h>98</h>
</coordinates>
......@@ -212,8 +212,8 @@ m1=0..*
<element>
<id>Relation</id>
<coordinates>
<x>616</x>
<y>910</y>
<x>567</x>
<y>917</y>
<w>147</w>
<h>56</h>
</coordinates>
......@@ -225,8 +225,8 @@ m1=1
<element>
<id>UMLClass</id>
<coordinates>
<x>490</x>
<y>770</y>
<x>441</x>
<y>777</y>
<w>133</w>
<h>35</h>
</coordinates>
......@@ -239,8 +239,8 @@ fg=blue</panel_attributes>
<element>
<id>UMLClass</id>
<coordinates>
<x>490</x>
<y>812</y>
<x>441</x>
<y>819</y>
<w>133</w>
<h>35</h>
</coordinates>
......@@ -253,8 +253,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>406</x>
<y>805</y>
<x>357</x>
<y>812</y>
<w>98</w>
<h>35</h>
</coordinates>
......@@ -267,8 +267,8 @@ m1= 0,1
<element>
<id>UMLClass</id>
<coordinates>
<x>70</x>
<y>665</y>
<x>21</x>
<y>672</y>
<w>735</w>
<h>28</h>
</coordinates>
......@@ -282,8 +282,8 @@ lw=0.1</panel_attributes>
<element>
<id>UMLClass</id>
<coordinates>
<x>70</x>
<y>0</y>
<x>21</x>
<y>7</y>
<w>840</w>
<h>28</h>
</coordinates>
......@@ -297,8 +297,8 @@ lw=0.1</panel_attributes>
<element>
<id>UMLClass</id>
<coordinates>
<x>308</x>
<y>119</y>
<x>259</x>
<y>126</y>
<w>154</w>
<h>133</h>
</coordinates>
......@@ -310,7 +310,7 @@ lw=0.1</panel_attributes>
/- extends/
/ @domain : IDRF/
/ @class : text /
/* Property : Properties/
/* Properties : Property/
/* Actions : Action/
/* Data : DataPoint/
/* Events : Event/
......@@ -321,8 +321,8 @@ fg=blue
<element>
<id>UMLClass</id>
<coordinates>
<x>546</x>
<y>119</y>
<x>497</x>
<y>126</y>
<w>154</w>
<h>77</h>
</coordinates>
......@@ -339,8 +339,8 @@ fg=blue</panel_attributes>
<element>
<id>UMLClass</id>
<coordinates>
<x>791</x>
<y>182</y>
<x>742</x>
<y>189</y>
<w>119</w>
<h>56</h>
</coordinates>
......@@ -355,8 +355,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>693</x>
<y>182</y>
<x>644</x>
<y>189</y>
<w>112</w>
<h>28</h>
</coordinates>
......@@ -367,8 +367,8 @@ m1= 0..*</panel_attributes>
<element>
<id>UMLClass</id>
<coordinates>
<x>70</x>
<y>119</y>
<x>21</x>
<y>126</y>
<w>154</w>
<h>77</h>
</coordinates>
......@@ -385,8 +385,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>217</x>
<y>119</y>
<x>168</x>
<y>126</y>
<w>105</w>
<h>63</h>
</coordinates>
......@@ -397,8 +397,8 @@ m1= 0..*</panel_attributes>
<element>
<id>UMLClass</id>
<coordinates>
<x>70</x>
<y>301</y>
<x>21</x>
<y>308</y>
<w>154</w>
<h>70</h>
</coordinates>
......@@ -406,7 +406,7 @@ m1= 0..*</panel_attributes>
--
*@ id : Name*
/- Doc : Doc/
/* Property : Properties/
/* Properties : Property/
/* Modules : Module/
fg=blue</panel_attributes>
<additional_attributes/>
......@@ -414,8 +414,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>217</x>
<y>175</y>
<x>168</x>
<y>182</y>
<w>49</w>
<h>63</h>
</coordinates>
......@@ -427,8 +427,8 @@ m1=0..*
<element>
<id>Relation</id>
<coordinates>
<x>217</x>
<y>308</y>
<x>168</x>
<y>315</y>
<w>105</w>
<h>49</h>
</coordinates>
......@@ -439,8 +439,8 @@ m1= 0..*</panel_attributes>
<element>
<id>UMLClass</id>
<coordinates>
<x>791</x>
<y>350</y>
<x>742</x>
<y>357</y>
<w>119</w>
<h>35</h>
</coordinates>
......@@ -452,8 +452,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>455</x>
<y>119</y>
<x>406</x>
<y>126</y>
<w>105</w>
<h>42</h>
</coordinates>
......@@ -465,8 +465,8 @@ m1= 0..*
<element>
<id>Relation</id>
<coordinates>
<x>735</x>
<y>343</y>
<x>686</x>
<y>350</y>
<w>70</w>
<h>35</h>
</coordinates>
......@@ -478,8 +478,8 @@ m1=0,1
<element>
<id>Relation</id>
<coordinates>
<x>455</x>
<y>154</y>
<x>406</x>
<y>161</y>
<w>105</w>
<h>84</h>
</coordinates>
......@@ -491,8 +491,8 @@ m1= 0..*
<element>
<id>UMLClass</id>
<coordinates>
<x>546</x>
<y>210</y>
<x>497</x>
<y>217</y>
<w>154</w>
<h>98</h>
</coordinates>
......@@ -513,8 +513,8 @@ fg=blue
<element>
<id>UMLClass</id>
<coordinates>
<x>546</x>
<y>322</y>
<x>497</x>
<y>329</y>
<w>154</w>
<h>63</h>
</coordinates>
......@@ -531,8 +531,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>455</x>
<y>224</y>
<x>406</x>
<y>231</y>
<w>105</w>
<h>126</h>
</coordinates>
......@@ -544,8 +544,8 @@ m1= 0..*
<element>
<id>UMLClass</id>
<coordinates>
<x>308</x>
<y>273</y>
<x>259</x>
<y>280</y>
<w>154</w>
<h>21</h>
</coordinates>
......@@ -556,8 +556,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>217</x>
<y>273</y>
<x>168</x>
<y>280</y>
<w>105</w>
<h>98</h>
</coordinates>
......@@ -569,8 +569,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>371</x>
<y>245</y>
<x>322</x>
<y>252</y>
<w>21</w>
<h>42</h>
</coordinates>
......@@ -581,8 +581,8 @@ fg=blue</panel_attributes>
<element>
<id>UMLClass</id>
<coordinates>
<x>70</x>
<y>210</y>
<x>21</x>
<y>217</y>
<w>154</w>
<h>77</h>
</coordinates>
......@@ -590,7 +590,7 @@ fg=blue</panel_attributes>
--
*@ id : Name*
/- Doc : Doc/
/* Property : Properties/
/* Properties : Property/
/* Modules : Module/
/* SubDevices : SubDevice/
fg=blue</panel_attributes>
......@@ -599,8 +599,8 @@ fg=blue</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>217</x>
<y>273</y>
<x>168</x>
<y>280</y>
<w>49</w>
<h>56</h>
</coordinates>
......@@ -612,8 +612,8 @@ m1=0..*
<element>
<id>Relation</id>
<coordinates>
<x>217</x>
<y>245</y>
<x>168</x>
<y>252</y>
<w>105</w>
<h>56</h>
</coordinates>
......@@ -625,8 +625,8 @@ m1= 0..*
<element>
<id>Relation</id>
<coordinates>
<x>217</x>
<y>259</y>
<x>168</x>
<y>266</y>
<w>105</w>
<h>70</h>
</coordinates>
......@@ -636,8 +636,8 @@ m1= 0..*
<element>
<id>UMLClass</id>
<coordinates>
<x>308</x>
<y>308</y>
<x>259</x>
<y>315</y>
<w>154</w>
<h>77</h>
</coordinates>
......@@ -655,8 +655,8 @@ transparency=80</panel_attributes>
<element>
<id>Relation</id>
<coordinates>
<x>693</x>
<y>210</y>
<x>644</x>
<y>217</y>
<w>56</w>
<h>147</h>
</coordinates>
......@@ -668,8 +668,8 @@ m1=0..*
<element>
<id>Relation</id>
<coordinates>
<x>455</x>
<y>238</y>
<x>406</x>
<y>245</y>
<w>49</w>
<h>98</h>
</coordinates>
......@@ -680,8 +680,8 @@ m1=0..*</panel_attributes>
<element>
<id>UMLClass</id>
<coordinates>
<x>280</x>
<y>770</y>
<x>231</x>
<y>777</y>
<w>133</w>
<h>70</h>
</coordinates>
......@@ -698,8 +698,8 @@ Array : ArrayType
<element>
<id>Relation</id>
<coordinates>
<x>196</x>
<y>777</y>
<x>147</x>
<y>784</y>
<w>98</w>
<h>63</h>
</coordinates>
......
SDT/schema3.0/docs/images/Device.png

4.79 KiB | W: | H:

SDT/schema3.0/docs/images/Device.png

4.81 KiB | W: | H:

SDT/schema3.0/docs/images/Device.png
SDT/schema3.0/docs/images/Device.png
SDT/schema3.0/docs/images/Device.png
SDT/schema3.0/docs/images/Device.png
  • 2-up
  • Swipe
  • Onion skin
SDT/schema3.0/docs/images/ModuleClass.png

8.34 KiB | W: | H:

SDT/schema3.0/docs/images/ModuleClass.png

8.34 KiB | W: | H:

SDT/schema3.0/docs/images/ModuleClass.png
SDT/schema3.0/docs/images/ModuleClass.png
SDT/schema3.0/docs/images/ModuleClass.png
SDT/schema3.0/docs/images/ModuleClass.png
  • 2-up
  • Swipe
  • Onion skin
SDT/schema3.0/docs/images/SDT_UML_Basic_Elements.png

57 KiB | W: | H:

SDT/schema3.0/docs/images/SDT_UML_Basic_Elements.png

57.1 KiB | W: | H:

SDT/schema3.0/docs/images/SDT_UML_Basic_Elements.png
SDT/schema3.0/docs/images/SDT_UML_Basic_Elements.png
SDT/schema3.0/docs/images/SDT_UML_Basic_Elements.png
SDT/schema3.0/docs/images/SDT_UML_Basic_Elements.png
  • 2-up
  • Swipe
  • Onion skin
SDT/schema3.0/docs/images/SubDevice.png

4.4 KiB | W: | H:

SDT/schema3.0/docs/images/SubDevice.png

4.43 KiB | W: | H:

SDT/schema3.0/docs/images/SubDevice.png
SDT/schema3.0/docs/images/SubDevice.png
SDT/schema3.0/docs/images/SubDevice.png
SDT/schema3.0/docs/images/SubDevice.png
  • 2-up
  • Swipe
  • Onion skin
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment