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/signal.conf
Alexandra b39e4a0ace feat: new smu node-type
Signed-off-by: Alexandra <alexandra.bach@eonerc.rwth-aachen.de>
2025-01-14 14:42:39 +00:00

38 lines
957 B
Text

# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
nodes = {
signal_node = {
type = "signal",
# One of "sine", "square", "ramp", "triangle", "random", "mixed", "counter"
signal = [ "sine", "pulse", "square" ],
# Number of values per sample
values = 3,
# Amplitude of generated signals
amplitude = [ 1.2, 0.0, 4.0 ],
# Frequency of generated signals in Hz
frequency = 10,
# Standard deviation of random signals (normal distributed)
stddev = 2,
# Sample rate in Hz
rate = 10.0,
# Constant offset
offset = 1.0,
# Wait between emitting each sample
realtime = true,
# Only emit 1000 samples, then stop
limit = 1000,
# Count and warn about missed steps
monitor_missed = true
}
}