The cheapest solver per step but also the least accurate. Its small stability
region requires very small timesteps for moderately dynamic block diagrams,
which usually makes higher-order methods more efficient overall. Prefer
RK4 for fixed-step or RKDP54 for adaptive integration of non-stiff
systems. Only practical when computational cost per step must be absolute
minimum and accuracy is secondary.
Maximum stability at the cost of accuracy. L-stability fully damps
parasitic high-frequency modes, making this a safe fallback for very stiff
block diagrams (e.g. high-gain PID loops or fast electrical dynamics coupled
to slow mechanical plant). Because each step requires solving a nonlinear
equation, the cost per step is higher than explicit methods. For better
accuracy on stiff systems, use BDF2 (fixed-step) or ESDIRK43
(adaptive).