mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00

And various other cleanups and harmonizations Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
21 lines
801 B
Text
21 lines
801 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" ],
|
|
|
|
values = 3, # Number of values per sample
|
|
amplitude = [ 1.2, 0.0, 4.0 ], # Amplitude of generated signals
|
|
frequency = 10, # Frequency of generated signals
|
|
stddev = 2, # Standard deviation of random signals (normal distributed)
|
|
rate = 10.0, # Sample rate
|
|
offset = 1.0, # Constant offset
|
|
realtime = true, # Wait between emitting each sample
|
|
limit = 1000, # Only emit 1000 samples, then stop
|
|
monitor_missed = true # Count and warn about missed steps
|
|
}
|
|
}
|