Scenarios » History » Version 5

Janez Barbic, 13.01.2011 18:59

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 2 Janez Barbic
</code></pre> 
26 2 Janez Barbic
27 2 Janez Barbic
Controlled device unique id:
28 2 Janez Barbic
<pre><code class="xml">
29 2 Janez Barbic
<name nam="Air Conditioner"/>
30 2 Janez Barbic
</code></pre>
31 2 Janez Barbic
32 2 Janez Barbic
Device name, for logging purposes only:
33 2 Janez Barbic
<pre><code class="xml"> 
34 2 Janez Barbic
<name nam="Air Conditioner"/>
35 2 Janez Barbic
</code></pre> 
36 2 Janez Barbic
37 2 Janez Barbic
Boundaries which define interval which is used by logics. 
38 2 Janez Barbic
<pre><code class="xml">
39 2 Janez Barbic
<minvalue minval="18"/>
40 2 Janez Barbic
<maxvalue maxval="27"/>
41 2 Janez Barbic
</code></pre> 
42 2 Janez Barbic
43 2 Janez Barbic
Optimal value of our interval:
44 2 Janez Barbic
<pre><code class="xml">
45 2 Janez Barbic
<optimal_value optVal="23"/>
46 2 Janez Barbic
</code></pre> 
47 2 Janez Barbic
48 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.
49 2 Janez Barbic
<pre><code class="xml">
50 2 Janez Barbic
<tolerance_value tolVal="0.5"/>
51 2 Janez Barbic
</code></pre> 
52 2 Janez Barbic
53 2 Janez Barbic
Frequency of checks preformed by logics if the controlled device is +idle+ (in seconds):
54 2 Janez Barbic
<pre><code class="xml">
55 2 Janez Barbic
<idle_check_interval ici="600"/>
56 2 Janez Barbic
</code></pre> 
57 2 Janez Barbic
58 2 Janez Barbic
Frequency of checks preformed by logics if the controlled device is +active+ (in seconds):
59 2 Janez Barbic
<pre><code class="xml">
60 2 Janez Barbic
<active_check_interval aci="600"/>
61 2 Janez Barbic
</code></pre> 
62 2 Janez Barbic
63 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.
64 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.
65 2 Janez Barbic
66 3 Janez Barbic
Devices (sensors) whose readings influence current controlled device:
67 3 Janez Barbic
Caution, these devices (sensors) should +always+ be defined in +devices.xml+!
68 2 Janez Barbic
<pre><code class="xml">
69 3 Janez Barbic
<sensors chk_dev1="thermometer_01" chk_dev2="dummydevice_01"/>
70 2 Janez Barbic
</code></pre> 
71 2 Janez Barbic
72 2 Janez Barbic
Function type used by logic to calculate parameter to send to controlled device.
73 2 Janez Barbic
Options are _static (ON/OFF), linear, logarithmic_ ... TBD
74 2 Janez Barbic
<pre><code class="xml">
75 2 Janez Barbic
<reaction_function fr="linear"/>
76 2 Janez Barbic
</code></pre> 
77 2 Janez Barbic
78 2 Janez Barbic
Location of action program with additional parameters:
79 2 Janez Barbic
<pre><code class="xml">
80 2 Janez Barbic
<action act="testAction_1"/>
81 1 Janez Barbic
<param par="testParam_1"/>
82 1 Janez Barbic
</code></pre> 
83 1 Janez Barbic
84 1 Janez Barbic
85 1 Janez Barbic
86 3 Janez Barbic
Example:
87 1 Janez Barbic
88 3 Janez Barbic
ID: ac_01
89 3 Janez Barbic
Name Air Conditioner 
90 3 Janez Barbic
Temperatures: 18 - 27
91 3 Janez Barbic
Optimal temperature: 23
92 3 Janez Barbic
Tolerance: 0.5
93 3 Janez Barbic
Idle check interval: 10 min (600s)
94 3 Janez Barbic
Active check interval: 1 min (60s)
95 3 Janez Barbic
Sensors: thermometer_01
96 3 Janez Barbic
Function type: linear
97 3 Janez Barbic
Action path: ../turnACon
98 3 Janez Barbic
Parameters: none
99 1 Janez Barbic
100 3 Janez Barbic
1. Current buffer average temperature 23.3 - within tolerance boundaries, logic takes no action.
101 3 Janez Barbic
2. In the next 10 minutes, buffer average temperature rises to 25.
102 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)
103 3 Janez Barbic
   Logic executes action turnACon with parameter -75
104 3 Janez Barbic
   Device ac_10 is active, logic checks its sensors after 1 min.
105 3 Janez Barbic
3. Current buffer average temperature 22.8 - within tolerance boundaries, logic takes no action.
106 3 Janez Barbic
   Device ac_10 is inactive, logic checks its sensors after 10 min.