This is a modern Fortran (2003/2008) implementation of Hairer's DOP853 ODE solver. This implementation is a simplification of the implementation made by Jacob Williams (jacobwilliams). A much-easier-to-use subroutine interface has been created by using the original easy-to-use class interface, however, for simplicity, users can only set the ODE and the initial condition, and cannot set other parameters, such as error tolerance parameters, which can be set by using the original implementation. DOP853 is an explicit Runge-Kutta method of order 8(5,3) due to Dormand & Prince (with stepsize control and dense output).
This project is hosted on GitHub.
See easydop853_test.f90.