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/tests/integration/hook-dp.sh

54 lines
1.5 KiB
Bash
Raw Permalink Normal View History

#!/bin/bash
#
# Integration test for dp hook.
#
# @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
2020-01-20 17:17:00 +01:00
# @copyright 2014-2020, Institute for Automation of Complex Power Systems, EONERC
# @license GNU General Public License (version 3)
#
# VILLASnode
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
##################################################################################
2021-03-19 06:38:29 -04:00
# Test is not ready yet
exit 99
2021-03-19 06:38:29 -04:00
INPUT_FILE=$(mktemp)
OUTPUT_FILE=$(mktemp)
RECON_FILE=$(mktemp)
2019-03-09 00:33:13 +01:00
NUM_SAMPLES=10000
RATE=5000
F0=50
2019-03-09 00:33:13 +01:00
OPTS="-o f0=${F0} -o rate=${RATE} -o signal=0 -o harmonics=0,1,3,5,7"
villas-signal sine -v1 -l ${NUM_SAMPLES} -f ${F0} -r ${RATE} -n > ${INPUT_FILE}
villas-hook dp -o inverse=false ${OPTS} < ${INPUT_FILE} > ${OUTPUT_FILE}
2019-03-09 00:33:13 +01:00
villas-hook dp -o inverse=true ${OPTS} < ${OUTPUT_FILE} > ${RECON_FILE}
2019-03-09 00:33:13 +01:00
exit 0
# Compare only the data values
2021-05-10 00:12:30 +02:00
villas-compare ${OUTPUT_FILE} ${EXPECT_FILE}
RC=$?
rm -f ${INPUT_FILE} ${OUTPUT_FILE} ${EXPECT_FILE}
exit ${RC}