root/vtcross/trunk/examples/example.xml @ 302

Revision 302, 1.3 KB (checked in by trnewman, 15 years ago)

Python demo updates

Line 
1<!--
2This is an example XML file to interface with our cognitive engine.
3The library shall create a new table "myengine" with the following cols:
4  throughput spectral_efficiency log10_ber mod_scheme tx_power SNR
5-->
6<engine name="myengine" filename="myengine.sql">
7
8    <!-- utilities : QoS metrics -->
9    <utilities>
10        <utility name="throughput" units="kbps" goal="max" target="125" />
11        <utility name="spectral_efficiency" units="b/s/Hz" goal="max" />
12        <utility name="log10_ber" units="none" goal="min" target="-3" />
13    </utilities>
14
15    <!-- radio parameters -->
16    <parameters>
17        <parameter name="mod_scheme" min="1" max="4" step="1">
18            <!-- BPSK, QPSK, 8-PSK, 16-QAM -->
19            <affect utility="throughput" relationship="improve" />
20            <affect utility="spectral_efficiency" relationship="improve" />
21            <affect utility="log10_ber" relationship="degrade" />
22        </parameter>
23        <parameter name="tx_power" units="dBm" min="-30.0" max="0.0" step="0.1">
24            <affect utility="log10_ber" relationship="improve"/>
25        </parameter>
26    </parameters>
27
28    <!-- link/channel observations -->
29    <observables>
30        <observable name="SNR">
31            <affect utility="log10_ber" relationship="improve" />
32        </observable>
33    </observables>
34</engine>
Note: See TracBrowser for help on using the browser.