Scenarios » History » Version 6

Aleksander Bešir, 18.01.2011 14:15

1 1 Janez Barbic
h1. Scenarios
2 1 Janez Barbic
3 5 Janez Barbic
(XML - values are in attributes just because of some issues with XML parser, should be fixed in future)
4 5 Janez Barbic
5 2 Janez Barbic
Scenarios are defined in xml format in scenarios.xml file.
6 2 Janez Barbic
7 2 Janez Barbic
Example for one device:
8 2 Janez Barbic
<pre><code class="xml">
9 2 Janez Barbic
<scenariotree>
10 2 Janez Barbic
    <scenario id="ac_01">
11 2 Janez Barbic
        <name nam="Air Conditioner"/>
12 2 Janez Barbic
        <minvalue minval="18"/>
13 2 Janez Barbic
        <maxvalue maxval="27"/>
14 2 Janez Barbic
	<optimal_value optVal="23"/>
15 2 Janez Barbic
        <tolerance_value tolVal="0.5"/>
16 2 Janez Barbic
	<idle_check_interval ici="600"/>
17 3 Janez Barbic
	<active_check_interval aci="60"/>
18 3 Janez Barbic
	<sensors chk_dev1="thermometer_01"/>
19 2 Janez Barbic
	...additional options, waiting for your input :)
20 2 Janez Barbic
	<reaction_function fr="linear"/>
21 2 Janez Barbic
        <action act="testAction_1"/>
22 2 Janez Barbic
        <param par="testParam_1"/>
23 2 Janez Barbic
    </scenario>
24 2 Janez Barbic
</scenariotree>
25 6 Aleksander Bešir
</code></pre>
26 6 Aleksander Bešir
27 6 Aleksander Bešir
Version 2:
28 6 Aleksander Bešir
29 6 Aleksander Bešir
<pre><code class="xml">
30 6 Aleksander Bešir
<scenariotree>
31 6 Aleksander Bešir
  <scenario id="scenario_01">
32 6 Aleksander Bešir
    <inDevice id="thermometer_01" />
33 6 Aleksander Bešir
    <outDevice id="air_cond_01" />
34 6 Aleksander Bešir
    <minvalue val="20" />
35 6 Aleksander Bešir
    <maxvalue val="35" />
36 6 Aleksander Bešir
    <optvalue val="28" />
37 6 Aleksander Bešir
    <tolerance val="0.5" />
38 6 Aleksander Bešir
    <check_idle val="600" />
39 6 Aleksander Bešir
    <check_active val="60" />
40 6 Aleksander Bešir
    <conditions>
41 6 Aleksander Bešir
      <and>
42 6 Aleksander Bešir
        <greater inDeviceId="barometer_01" val="80" />
43 6 Aleksander Bešir
        <lower_or_equal inDeviceId="lightSensor" val="50" />
44 6 Aleksander Bešir
        <or>
45 6 Aleksander Bešir
          <greater inDeviceId="time" val="15:00"
46 6 Aleksander Bešir
          <smaller inDeviceId="time" val="10:00"
47 6 Aleksander Bešir
        </or>
48 6 Aleksander Bešir
      </and>
49 6 Aleksander Bešir
    </conditions>
50 6 Aleksander Bešir
  </scenario>
51 6 Aleksander Bešir
</scenariotree>
52 6 Aleksander Bešir
</code></pre>
53 2 Janez Barbic
54 2 Janez Barbic
Controlled device unique id:
55 2 Janez Barbic
<pre><code class="xml">
56 2 Janez Barbic
<name nam="Air Conditioner"/>
57 2 Janez Barbic
</code></pre>
58 2 Janez Barbic
59 2 Janez Barbic
Device name, for logging purposes only:
60 2 Janez Barbic
<pre><code class="xml"> 
61 2 Janez Barbic
<name nam="Air Conditioner"/>
62 2 Janez Barbic
</code></pre> 
63 2 Janez Barbic
64 2 Janez Barbic
Boundaries which define interval which is used by logics. 
65 2 Janez Barbic
<pre><code class="xml">
66 2 Janez Barbic
<minvalue minval="18"/>
67 2 Janez Barbic
<maxvalue maxval="27"/>
68 2 Janez Barbic
</code></pre> 
69 2 Janez Barbic
70 2 Janez Barbic
Optimal value of our interval:
71 2 Janez Barbic
<pre><code class="xml">
72 2 Janez Barbic
<optimal_value optVal="23"/>
73 2 Janez Barbic
</code></pre> 
74 2 Janez Barbic
75 2 Janez Barbic
Tolerance of optimal value, on both sides (+-). No action should be taken within these boundaries. Tolerance value should not exceed min or max value of interval.
76 2 Janez Barbic
<pre><code class="xml">
77 2 Janez Barbic
<tolerance_value tolVal="0.5"/>
78 2 Janez Barbic
</code></pre> 
79 2 Janez Barbic
80 2 Janez Barbic
Frequency of checks preformed by logics if the controlled device is +idle+ (in seconds):
81 2 Janez Barbic
<pre><code class="xml">
82 2 Janez Barbic
<idle_check_interval ici="600"/>
83 2 Janez Barbic
</code></pre> 
84 2 Janez Barbic
85 2 Janez Barbic
Frequency of checks preformed by logics if the controlled device is +active+ (in seconds):
86 2 Janez Barbic
<pre><code class="xml">
87 2 Janez Barbic
<active_check_interval aci="600"/>
88 2 Janez Barbic
</code></pre> 
89 2 Janez Barbic
90 2 Janez Barbic
Note that some devices have the same value on idle and active status. Typically these are devices, which aren't expected to be active all the time, for example an office computer. It gets turned off or turned only a few times per day.
91 2 Janez Barbic
On the other hand there are some devices which should be checked more frequently if logic took action. For example, window blinds should get more attention during sunrise/sunset or weather changes.
92 2 Janez Barbic
93 3 Janez Barbic
Devices (sensors) whose readings influence current controlled device:
94 3 Janez Barbic
Caution, these devices (sensors) should +always+ be defined in +devices.xml+!
95 2 Janez Barbic
<pre><code class="xml">
96 3 Janez Barbic
<sensors chk_dev1="thermometer_01" chk_dev2="dummydevice_01"/>
97 2 Janez Barbic
</code></pre> 
98 2 Janez Barbic
99 2 Janez Barbic
Function type used by logic to calculate parameter to send to controlled device.
100 2 Janez Barbic
Options are _static (ON/OFF), linear, logarithmic_ ... TBD
101 2 Janez Barbic
<pre><code class="xml">
102 2 Janez Barbic
<reaction_function fr="linear"/>
103 2 Janez Barbic
</code></pre> 
104 2 Janez Barbic
105 2 Janez Barbic
Location of action program with additional parameters:
106 2 Janez Barbic
<pre><code class="xml">
107 2 Janez Barbic
<action act="testAction_1"/>
108 1 Janez Barbic
<param par="testParam_1"/>
109 1 Janez Barbic
</code></pre> 
110 1 Janez Barbic
111 1 Janez Barbic
112 1 Janez Barbic
113 3 Janez Barbic
Example:
114 1 Janez Barbic
115 3 Janez Barbic
ID: ac_01
116 3 Janez Barbic
Name Air Conditioner 
117 3 Janez Barbic
Temperatures: 18 - 27
118 3 Janez Barbic
Optimal temperature: 23
119 3 Janez Barbic
Tolerance: 0.5
120 3 Janez Barbic
Idle check interval: 10 min (600s)
121 3 Janez Barbic
Active check interval: 1 min (60s)
122 3 Janez Barbic
Sensors: thermometer_01
123 3 Janez Barbic
Function type: linear
124 3 Janez Barbic
Action path: ../turnACon
125 3 Janez Barbic
Parameters: none
126 1 Janez Barbic
127 3 Janez Barbic
1. Current buffer average temperature 23.3 - within tolerance boundaries, logic takes no action.
128 3 Janez Barbic
2. In the next 10 minutes, buffer average temperature rises to 25.
129 4 Janez Barbic
   Function is linear, logic calculates linear increase in power: 1-(27-23)/(26-23) = 0.75 (75%); power = 1-(maxT - optimalT)/(currT-optimalT)
130 3 Janez Barbic
   Logic executes action turnACon with parameter -75
131 3 Janez Barbic
   Device ac_10 is active, logic checks its sensors after 1 min.
132 3 Janez Barbic
3. Current buffer average temperature 22.8 - within tolerance boundaries, logic takes no action.
133 3 Janez Barbic
   Device ac_10 is inactive, logic checks its sensors after 10 min.