2019-02-18 01:11:47 +01:00
|
|
|
#!/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
|
2019-02-18 01:11:47 +01:00
|
|
|
# @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/>.
|
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
2019-03-09 00:33:13 +01:00
|
|
|
#INPUT_FILE=$(mktemp)
|
|
|
|
#OUTPUT_FILE=$(mktemp)
|
|
|
|
#RECON_FILE=$(mktemp)
|
2019-02-18 01:11:47 +01:00
|
|
|
|
2019-03-09 00:33:13 +01:00
|
|
|
INPUT_FILE=in
|
|
|
|
OUTPUT_FILE=out
|
|
|
|
RECON_FILE=recon
|
|
|
|
|
|
|
|
NUM_SAMPLES=10000
|
2019-02-18 01:11:47 +01:00
|
|
|
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"
|
2019-02-18 01:11:47 +01:00
|
|
|
|
|
|
|
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-02-18 01:11:47 +01:00
|
|
|
|
2019-03-09 00:33:13 +01:00
|
|
|
exit 0
|
2019-02-18 01:11:47 +01:00
|
|
|
|
|
|
|
# Compare only the data values
|
|
|
|
villas-test-cmp ${OUTPUT_FILE} ${EXPECT_FILE}
|
|
|
|
RC=$?
|
|
|
|
|
|
|
|
rm -f ${INPUT_FILE} ${OUTPUT_FILE} ${EXPECT_FILE}
|
|
|
|
|
2020-09-10 17:32:02 +02:00
|
|
|
exit ${RC}
|