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/hooks/pmu_dft.conf

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

55 lines
1.3 KiB
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",
signals = (
"sine"
)
# Sample rate of the input signal
sample_rate = 1000,
# Number of phasors calculated per second
dft_rate = 10,
# Lowest frequency bin
start_frequency = 49.7,
# Highest frequency bin
end_frequency = 50.3,
# Frequency bin resolution
frequency_resolution = 0.1,
# A factor with which the window will be increased
window_size_factor = 1,
# One of: flattop, hamming, hann
window_type = "hamming",
# One of: signal_repeat, zero
padding_type = "zero",
# One of: quadratic
frequency_estimate_type = "quadratic",
# Signal index of the PPS signal
pps_index = 0,
# One of: rad, degree
angle_unit = "rad"
}
)
}
2021-09-13 11:41:42 +02:00
)