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/examples/nodes/rtp.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

52 lines
1.1 KiB
Text

# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
nodes = {
rtp_node = {
type = "rtp"
format = {
type = "raw"
bits = 32
endianess = "big"
}
rtcp = false
aimd = {
a = 10,
b = 0.5
Kp = 1.0
Ki = 0.0
Kd = 0
rate_min = 100
rate_init = 2000
rate_source = 10000
log = "aimd-rates-%Y_%m_%d_%s.log"
hook_type = "limit_rate"
}
in = {
address = "0.0.0.0:12000",
signals = {
count = 3
type = "float"
}
}
out = {
address = "127.0.0.1:12000"
netem = { # Network emulation settings
enabled = false,
delay = 100000, # Additional latency in microseconds
loss = 10 # Packet loss in percent
}
}
}
}