-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraphConfig.xml
More file actions
64 lines (64 loc) · 2.4 KB
/
GraphConfig.xml
File metadata and controls
64 lines (64 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version='1.0' encoding='utf-8'?>
<root>
<graphs>
<settings1>
<colourList>r,b,g</colourList>
<labels>alias_names</labels>
<figures figures='1'>
<figure1 figure1='Single Switch Timing Diagram'>
<plots plots='2'>
<plot1 plot1='switch logic level'>switch</plot1>
<plot2 plot2='Output logic level'>output</plot2>
</plots>
</figure1>
</figures>
</settings1>
<settings2>
<colourList>r,b,g</colourList>
<labels>alias_names</labels>
<figures figures='1'>
<figure1 figure1='Double Switch Timing Diagram'>
<plots plots='3'>
<plot1 plot1='switch 1 logic level'>switch1</plot1>
<plot2 plot2='switch 2 logic level'>switch2</plot2>
<plot3 plot3='Output logic level'>Output</plot3>
</plots>
</figure1>
</figures>
</settings2>
<settings3>
<colourList>r,b,g</colourList>
<labels>alias_names</labels>
<figures figures='1'>
<figure1 figure1='Triple Switch Timing Diagram'>
<plots plots='4'>
<plot1 plot1='switch 1 logic level'>switch1</plot1>
<plot2 plot2='switch 2 logic level'>switch2</plot2>
<plot3 plot3='switch 3 logic level'>switch3</plot3>
<plot4 plot4='Output logic level'>ouput</plot4>
</plots>
</figure1>
</figures>
</settings3>
<dataSets>
<set1>
<filepath>C:\Users\Aaron W\Documents\academicTerm6\industrialControlAndInstrumentation\singleSwitchLog.csv</filepath>
<regX>^[0-9]+,([0-9]+)/([0-9]+)/([0-9]+)\s+([0-9]+):([0-9]+):([0-9]+),([0-9]+)/([0-9]+)/([0-9]+)\s+([0-9]+):([0-9]+):([0-9]+),([a-zA-Z0-9]+),.*$</regX>
<initialStates>switch=0,output=0</initialStates>
<settings>settings1</settings>
</set1>
<set2>
<filepath>C:\Users\Aaron W\Documents\academicTerm6\industrialControlAndInstrumentation\doubleSwitchLog.csv</filepath>
<regX>^[0-9]+,([0-9]+)/([0-9]+)/([0-9]+)\s+([0-9]+):([0-9]+):([0-9]+),([0-9]+)/([0-9]+)/([0-9]+)\s+([0-9]+):([0-9]+):([0-9]+),([a-zA-Z0-9]+),.*$</regX>
<initialStates>switch1=0,switch2=0,Output=0</initialStates>
<settings>settings2</settings>
</set2>
<set3>
<filepath>C:\Users\Aaron W\Documents\academicTerm6\industrialControlAndInstrumentation\TripleSwitchLog.csv</filepath>
<regX>^[0-9]+,([0-9]+)/([0-9]+)/([0-9]+)\s+([0-9]+):([0-9]+):([0-9]+),([0-9]+)/([0-9]+)/([0-9]+)\s+([0-9]+):([0-9]+):([0-9]+),([a-zA-Z0-9]+),.*$</regX>
<initialStates>switch1=0,switch2=0,switch3=0,ouput=1</initialStates>
<settings>settings3</settings>
</set3>
</dataSets>
</graphs>
</root>