2020-01-20 17:17:00 +01:00
|
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
2023-08-31 11:25:01 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-01-20 17:17:00 +01:00
|
|
|
logging = {
|
2024-02-29 21:36:38 +01:00
|
|
|
level = "info"
|
2020-01-20 17:17:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
http = {
|
2024-02-29 21:36:38 +01:00
|
|
|
enabled = false
|
2020-01-20 17:17:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
nodes = {
|
2024-02-29 21:36:38 +01:00
|
|
|
opal = {
|
|
|
|
type = "socket"
|
|
|
|
|
|
|
|
in = {
|
|
|
|
address = "*:13000"
|
|
|
|
|
|
|
|
hooks = (
|
|
|
|
{ type = "stats" }
|
|
|
|
),
|
|
|
|
signals = (
|
|
|
|
{ type = "float", name = "f0" },
|
|
|
|
{ type = "float", name = "f1" },
|
|
|
|
{ type = "float", name = "f2" },
|
|
|
|
{ type = "float", name = "f3" },
|
|
|
|
{ type = "float", name = "cnt" }
|
|
|
|
)
|
|
|
|
}
|
|
|
|
out = {
|
|
|
|
address = "134.130.169.81:13000"
|
|
|
|
|
|
|
|
netem = {
|
|
|
|
enabled = true,
|
|
|
|
|
|
|
|
delay = 10000, // 10 ms
|
|
|
|
jitter = 5000, // 5 ms
|
|
|
|
distribution = "normal",
|
|
|
|
loss = 10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-20 17:17:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
paths = (
|
2024-02-29 21:36:38 +01:00
|
|
|
{
|
|
|
|
in = "opal",
|
|
|
|
out = "opal",
|
|
|
|
|
|
|
|
hooks = (
|
|
|
|
{
|
|
|
|
type = "average",
|
|
|
|
offset = 0,
|
|
|
|
signals = ["f0", "f1", "f2", "f3"]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
2020-01-20 17:17:00 +01:00
|
|
|
)
|