From c48c4a01f45f854a92e67d06af14fdacdec5b3cf Mon Sep 17 00:00:00 2001 From: Alexandra Date: Mon, 22 Apr 2024 14:16:51 +0000 Subject: [PATCH] add example configuration for hdf5 node-type Signed-off-by: Alexandra --- etc/examples/nodes/hdf5.conf | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 etc/examples/nodes/hdf5.conf diff --git a/etc/examples/nodes/hdf5.conf b/etc/examples/nodes/hdf5.conf new file mode 100644 index 000000000..2774c0d80 --- /dev/null +++ b/etc/examples/nodes/hdf5.conf @@ -0,0 +1,32 @@ +# SPDX-FileCopyrightText: 2014-2024 Institute for Automation of Complex Power Systems, RWTH Aachen University +# SPDX-License-Identifier: Apache-2.0 + +nodes = { + hdf5_node = { + type = "hdf5" + file = "test.h5" + dataset = "test" + unit = "none" + } + siggen = { + type = "signal" + + signal = ["sine"] + values = 1 + limit = 3 + rate = 10 + } +} +paths = ( + { + in = "siggen" + out = "hdf5_node" + + hooks = ( { type = "print" }) + } +) + +logging = { + level = "debug" +} +