-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathtyphoon.conf
More file actions
44 lines (37 loc) · 991 Bytes
/
typhoon.conf
File metadata and controls
44 lines (37 loc) · 991 Bytes
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
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
stats = 1.0
nodes = {
typhoon_1 = {
type = "socket"
layer = "udp"
format = {
type = "raw"
endianess = "little"
bits = 64
}
in = {
address = "*:12000"
hooks = (
"stats"
)
signals = (
{ name = "signal_0", type="float" },
{ name = "signal_1", type="integer" },
{ name = "signal_2", type="boolean" },
{ name = "signal_3", type="float" },
{ name = "signal_4", type="complex" }
)
}
out = {
address = "192.168.2.100:12000" # IP Address of Typhoon HIL target
}
}
}
paths = (
{
# A simple loopback
in = "typhoon_1"
out = "typhoon_1"
}
)