mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
dsp: moved window to DSP namespace
This commit is contained in:
parent
0219236d00
commit
026f253e11
3 changed files with 48 additions and 76 deletions
|
@ -1,5 +1,6 @@
|
||||||
/** A sliding/moving window.
|
/** A sliding/moving window.
|
||||||
*
|
*
|
||||||
|
* @file
|
||||||
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
||||||
* @copyright 2014-2019, Institute for Automation of Complex Power Systems, EONERC
|
* @copyright 2014-2019, Institute for Automation of Complex Power Systems, EONERC
|
||||||
* @license GNU General Public License (version 3)
|
* @license GNU General Public License (version 3)
|
||||||
|
@ -20,42 +21,62 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*********************************************************************************/
|
*********************************************************************************/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#pragma once
|
||||||
|
|
||||||
#include <villas/window.h>
|
|
||||||
#include <villas/utils.h>
|
#include <villas/utils.h>
|
||||||
|
|
||||||
int window_init(struct window *w, size_t steps, double init)
|
namespace villas {
|
||||||
{
|
namespace dsp {
|
||||||
size_t len = LOG2_CEIL(steps);
|
|
||||||
|
|
||||||
/* Allocate memory for ciruclar history buffer */
|
template<typename T>
|
||||||
w->data = (double *) alloc(len * sizeof(double));
|
class Window {
|
||||||
if (!w->data)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
for (size_t i = 0; i < len; i++)
|
public:
|
||||||
w->data[i] = init;
|
typedef typename std::vector<T>::size_type size_type;
|
||||||
|
|
||||||
w->steps = steps;
|
protected:
|
||||||
w->pos = len;
|
std::vector<T> data;
|
||||||
w->mask = len - 1;
|
|
||||||
|
|
||||||
return 0;
|
T init;
|
||||||
}
|
|
||||||
|
|
||||||
int window_destroy(struct window *w)
|
size_type steps;
|
||||||
{
|
size_type mask;
|
||||||
free(w->data);
|
size_type pos;
|
||||||
|
|
||||||
return 0;
|
public:
|
||||||
}
|
|
||||||
|
|
||||||
double window_update(struct window *w, double in)
|
Window(size_type steps = 0, T i = 0) :
|
||||||
{
|
init(i)
|
||||||
double out = w->data[(w->pos - w->steps) & w->mask];
|
{
|
||||||
|
size_type len = LOG2_CEIL(steps);
|
||||||
|
|
||||||
w->data[w->pos++ & w->mask] = in;
|
/* Allocate memory for ciruclar history buffer */
|
||||||
|
data = std::vector<T>(len, i);
|
||||||
|
|
||||||
return out;
|
steps = steps;
|
||||||
}
|
pos = len;
|
||||||
|
mask = len - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
T update(T in)
|
||||||
|
{
|
||||||
|
T out = data[(pos - steps) & mask];
|
||||||
|
|
||||||
|
data[pos++ & mask] = in;
|
||||||
|
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_type getPos() const
|
||||||
|
{
|
||||||
|
return steps;
|
||||||
|
}
|
||||||
|
|
||||||
|
T operator[](int i) const
|
||||||
|
{
|
||||||
|
return data[(pos + i) & mask];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace dsp
|
||||||
|
} // namespace villas
|
|
@ -1,48 +0,0 @@
|
||||||
/** A sliding/moving window.
|
|
||||||
*
|
|
||||||
* @file
|
|
||||||
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
||||||
* @copyright 2014-2019, Institute for Automation of Complex Power Systems, EONERC
|
|
||||||
* @license GNU General Public License (version 3)
|
|
||||||
*
|
|
||||||
* VILLAScommon
|
|
||||||
*
|
|
||||||
* 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/>.
|
|
||||||
*********************************************************************************/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <sys/types.h>
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct window {
|
|
||||||
double *data;
|
|
||||||
|
|
||||||
size_t steps;
|
|
||||||
size_t mask;
|
|
||||||
size_t pos;
|
|
||||||
};
|
|
||||||
|
|
||||||
int window_init(struct window *w, size_t steps, double init);
|
|
||||||
|
|
||||||
int window_destroy(struct window *w);
|
|
||||||
|
|
||||||
double window_update(struct window *w, double in);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
|
@ -46,7 +46,6 @@ add_library(villas-common SHARED
|
||||||
version.cpp
|
version.cpp
|
||||||
copyright.cpp
|
copyright.cpp
|
||||||
common.cpp
|
common.cpp
|
||||||
window.cpp
|
|
||||||
)
|
)
|
||||||
|
|
||||||
execute_process(
|
execute_process(
|
||||||
|
|
Loading…
Add table
Reference in a new issue