1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/etc/examples/hooks/pmu_dft.conf

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

38 lines
988 B
Text
Raw Permalink Normal View History

2022-03-23 10:02:22 +01:00
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
2021-09-13 11:41:42 +02:00
@include "hook-nodes.conf"
paths = (
{
in = "signal_node"
out = "file_node"
hooks = (
{
type = "pmu_dft",
2021-09-21 14:25:39 +02:00
signals = (
"sine"
)
2022-03-23 10:02:22 +01:00
sample_rate = 1000, # sample rate of the input signal
dft_rate = 10, # number of phasors calculated per second
2021-09-13 11:41:42 +02:00
2022-03-24 14:10:10 +01:00
start_frequency = 49.7, # lowest frequency bin
end_frequency = 50.3, # highest frequency bin
frequency_resolution = 0.1, # frequency bin resolution
2021-09-13 11:41:42 +02:00
2022-03-23 10:02:22 +01:00
window_size_factor = 1, # a factor with which the window will be increased
2021-09-13 11:41:42 +02:00
window_type = "hamming", # one of: flattop, hamming, hann
2022-03-23 10:02:22 +01:00
padding_type = "zero", # one of: signal_repeat, zero
2022-03-24 14:10:10 +01:00
frequency_estimate_type = "quadratic", # one of: quadratic
2021-09-13 11:41:42 +02:00
pps_index = 0, # signal index of the PPS signal
angle_unit = "rad" # one of: rad, degree
}
)
}
)