From 6a13d81cf00d273ea06bf3788b699e8776bec5d0 Mon Sep 17 00:00:00 2001 From: Thorsten Liebig Date: Sat, 16 Dec 2023 15:48:58 +0100 Subject: [PATCH] python: add missing definition for custom excite, #129 Signed-off-by: Thorsten Liebig --- python/openEMS/openEMS.pxd | 1 + 1 file changed, 1 insertion(+) diff --git a/python/openEMS/openEMS.pxd b/python/openEMS/openEMS.pxd index cb3b322..156eea2 100644 --- a/python/openEMS/openEMS.pxd +++ b/python/openEMS/openEMS.pxd @@ -51,6 +51,7 @@ cdef extern from "openEMS/openems.h": void SetSinusExcite(double f0) void SetDiracExcite(double f_max) void SetStepExcite(double f_max) + void SetCustomExcite(string _str, double f0, double fmax) void SetAbort(bool val)