python: add missing definition for custom excite, #129

Signed-off-by: Thorsten Liebig <Thorsten.Liebig@gmx.de>
pull/137/head
Thorsten Liebig 2023-12-16 15:48:58 +01:00
parent 45c90c24e8
commit 6a13d81cf0
1 changed files with 1 additions and 0 deletions

View File

@ -51,6 +51,7 @@ cdef extern from "openEMS/openems.h":
void SetSinusExcite(double f0) void SetSinusExcite(double f0)
void SetDiracExcite(double f_max) void SetDiracExcite(double f_max)
void SetStepExcite(double f_max) void SetStepExcite(double f_max)
void SetCustomExcite(string _str, double f0, double fmax)
void SetAbort(bool val) void SetAbort(bool val)