tdcpy.dae module
Differential Algebraic Equation
-
class tdcpy.dae.DAE(A, B, C, D, E)
Bases: object
class representing a DAE in the form
E x’(t) = A x(t) + B u(t)
y(t) = C x(t) + D u(t)
-
property n: int
-
property A: ndarray[tuple[Any, ...], dtype[_ScalarT]]
-
property B: ndarray[tuple[Any, ...], dtype[_ScalarT]]
-
property C: ndarray[tuple[Any, ...], dtype[_ScalarT]]
-
property D: ndarray[tuple[Any, ...], dtype[_ScalarT]]
-
property E: ndarray[tuple[Any, ...], dtype[_ScalarT]]