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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
797 B
Text
Raw Permalink Normal View History

2019-03-25 21:17:34 +01:00
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
2019-01-07 12:52:33 +01:00
nodes = {
2019-03-25 21:17:34 +01:00
rtp_node = {
type = "rtp"
2019-01-07 12:52:33 +01:00
format = {
type = "raw"
2022-02-23 15:57:22 +01:00
bits = 32
endianess = "big"
}
rtcp = false
2019-03-25 21:17:34 +01:00
aimd = {
a = 10,
b = 0.5
2019-03-29 09:50:47 +01:00
Kp = 1.0
Ki = 0.0
Kd = 0
rate_min = 100
rate_init = 2000
rate_source = 10000
2019-03-29 09:50:47 +01:00
log = "aimd-rates-%Y_%m_%d_%s.log"
hook_type = "limit_rate"
2019-03-25 21:17:34 +01:00
}
2019-03-25 21:17:34 +01:00
in = {
address = "0.0.0.0:12000",
signals = {
count = 3
type = "float"
}
}
2019-01-07 12:52:33 +01:00
2019-03-25 21:17:34 +01:00
out = {
address = "127.0.0.1:12000"
2019-03-25 21:17:34 +01:00
netem = { # Network emulation settings
enabled = false,
delay = 100000, # Additional latency in microseconds
loss = 10 # Packet loss in percent
}
}
}
2019-01-07 12:52:33 +01:00
}