1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/etc/WSCC_9bus_MV.conf
Steffen Vogel 1b1643834c Use spaces for indention of .conf files
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2024-02-29 23:18:47 +01:00

61 lines
1.2 KiB
Text

# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
logging = {
level = "info"
}
http = {
enabled = false
}
nodes = {
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
}
}
}
}
paths = (
{
in = "opal",
out = "opal",
hooks = (
{
type = "average",
offset = 0,
signals = ["f0", "f1", "f2", "f3"]
}
# {
# type = "print"
# }
)
}
)