Interface DiffEquations
- All Superinterfaces:
Named
- All Known Subinterfaces:
Continuum
Interface defining a system of first-order differential equations.
dy/dt = f(t, y)
- Since:
- 1.0
- Author:
- Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
-
Method Summary
Modifier and TypeMethodDescriptionReal[]computeDerivatives(Real t, Real[] y) Calculates the derivatives dy/dt at a given state.intReturns the dimension of the state vector.
-
Method Details
-
computeDerivatives
-
getDimension
int getDimension()Returns the dimension of the state vector.
-