-
Notifications
You must be signed in to change notification settings - Fork 5
/
command-model.conf
71 lines (61 loc) · 1.69 KB
/
command-model.conf
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
65
66
67
68
69
70
71
subsystem = TEST
component = env.ctrl
description = """
|The following list of commands is still *incomplete*. __TODO__: Add more command descriptions.
"""
receive = [
{
name = ENVIRONMENTAL_CONTROL_INITIALIZE
description = """
|Starts the monitoring of various environmental sensors within TEST
|including interlock state, temperature, humidity, oxygen and pressure sensors,
|as well as the power state and temperatures of the NDM and NTTS, and temperatures of the
|NGS WFS, LGS WFS, MOR TWFS, NACQ, and NHRWFS. All out-of-range reading will generate alarms.
|
|Math test:
|
|$`[x^n + y^n = z^n]`$
| and then
|$`\frac{d}{dx}\left( \int_{0}^{x} f(u)\,du\right)=f(x)`$
|
|Math test 2:
|
|```math
|[x^n + y^n = z^n]
|```
|and then
|```math
|\frac{d}{dx}\left( \int_{0}^{x} f(u)\,du\right)=f(x)
|```
"""
requirements = [INT-TEST-AOESW-0400]
}
{
name = ENVIRONMENTAL_CONTROL_STOP
description = """This command is a no-op and does not disturb any of the
environmental monitoring or control. These operations should always be
active when TEST is in operation.
Math test 3:
```math
[x^n + y^n = z^n]
```
and then
```math
\frac{d}{dx}\left( \int_{0}^{x} f(u)\,du\right)=f(x)
```
"""
requirements = [INT-TEST-AOESW-0405]
}
{
name = engineeringCommand
description = "Test engineering command"
requirements = [INT-TEST-AOESW-0400]
role = eng
}
{
name = adminCommand
description = "Test admin command"
requirements = [INT-TEST-AOESW-0400]
role = admin
}
]