As the title suggest, is there any package in Julia that enables solving differential algebraic equations DAEs with arbitrary implicit Runge Kutta (beyond the available ones) methods? Alternatively, is there any publicly available implementation that does that? All I found was the Julia solvers that have their default methods and error controls.
If you look here there are a couple of them DAE Solvers · DifferentialEquations.jl . If you search for radau you will find some that are specifically runge kutta.
If you don’t want to add the new solver yourself, you could file an issue to request the method be considered for implementation. However, open source software relies on contributions from interested parties, so I would suggest trying to implement the new solver.