1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00

add copyright to example configuration for smu node-type

Signed-off-by: Alexandra <alexandra.bach@eonerc.rwth-aachen.de>
This commit is contained in:
Alexandra 2024-04-22 12:12:37 +00:00
parent c89aa0ab30
commit 18662e7e7f

View file

@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: 2014-2024 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
http = { http = {
enabled = false enabled = false
} }
@ -24,50 +27,19 @@ nodes = {
) )
} }
raw = {
type = "file"
format = "csv"
uri = "./raw.csv",
in = {
epoch_mode = "original",
eof = "wait"
signals = (
{ name = "ch1" type = "float"},
{ name = "ch2" type = "float"},
{ name = "signal3" type = "float"},
{ name = "signal4" type = "float"},
{ name = "signal5" type = "float"},
{ name = "signal6" type = "float"},
{ name = "signal7" type = "float"}
)
}
}
file1 = {
type = "file"
format = "csv"
uri = "./raw.csv"
}
file = { file = {
type = "file" type = "file"
format = "csv" format = "csv"
uri = "./phasor.csv" uri = "./data.csv"
} }
} }
paths = ( paths = (
{
enabled = false
queuelen = 30000
enabled = false
in = "smu"
out = "file1"
},
{ {
enabled = true enabled = true
#queuelen = 20000 #queuelen = 20000
in = "raw" in = "smu"
#out = "mqtt" out = "file"
#out="file"
hooks = ( hooks = (
{ {
type = "scale" type = "scale"
@ -89,7 +61,7 @@ paths = (
timestamp_align = "center" timestamp_align = "center"
add_channel_name = true add_channel_name = true
phase_offset = 0 phase_offset = 0
#frequency_offset = 0.0015 frequency_offset = 0.0015
amplitude_offset = 0 amplitude_offset = 0
} }
) )