ODE-Solvers
Solving of ODE-Systems in the form
\[\begin{split}\frac{\mathrm{d} \mathbf{x}}{\mathrm{d} t}&= f(\mathbf{x}, \mathbf{u}, t)\\\end{split}\]
ODE-Solver Base Class
- class gym_electric_motor.physical_systems.solvers.OdeSolver[source]
Interface and base class for all used OdeSolvers in gym-electric-motor.
- integrate(t)[source]
Integrate the ODE-System from current time until time t
- Parameters:
t (float) – Time until the system shall be integrated
- Returns:
New system state at time t
- Return type:
ndarray(float)
- set_f_params(*args)[source]
Set further arguments for the systems function call like input quantities.
- Parameters:
args (list) – Additional arguments for the next function calls.
- set_initial_value(initial_value, t=0)[source]
Set the new initial system state after reset.
- Parameters:
initial_value (numpy.ndarray(float)) – Initial system state
t (float) – Initial system time
- property t
Returns: float: Current system time t
- property y
Returns: float: Current system state y