pymloc.model.dynamical_system.representations¶
Classes
|
Adds additional methods for the computation of quantities of the flow formulation for strangeness-free DAEs. |
-
class
pymloc.model.dynamical_system.representations.LinearFlowRepresentation(variables, e, a, f, n, der_e=None)¶ Bases:
pymloc.model.dynamical_system.dae.LinearDAEAdds additional methods for the computation of quantities of the flow formulation for strangeness-free DAEs.
See Baum, 2015 for more details.
-
cal_projection(t)¶ - Parameters
t (float) –
- Return type
numpy.ndarray
-
d_a(t)¶ - Parameters
t (float) –
- Return type
numpy.ndarray
-
d_d(t)¶ - Parameters
t (float) –
- Return type
numpy.ndarray
-
f_a(t)¶ - Parameters
t (float) –
- Return type
numpy.ndarray
-
f_d(t)¶ - Parameters
t (float) –
- Return type
numpy.ndarray
-
projection(t)¶ - Parameters
t (float) –
- Return type
numpy.ndarray
-
projection_complement(t)¶ - Parameters
t (float) –
- Return type
numpy.ndarray
-
projection_derivative(t)¶ - Parameters
t (float) –
- Return type
numpy.ndarray
-
x_a(t, x)¶ - Parameters
x (float) –
- Return type
numpy.ndarray
-
x_d(t, x)¶ - Parameters
x (float) –
- Return type
numpy.ndarray
-