I'm trying to use Python to numerically solve a system of equations described in this paper, Eqs. 30 and 31, with a simplified form looking like:
where G(k)
and D(k)
are some known functions, independent of Y
. Of course, all quantities are functions of t
as well. The authors comment that, due to the dependence exhibited by the various functions, a numerical solution is necessary.
I usually implement the solution to this type of coupled equations as indicated here or here, for example, but now the extra k-dependence is confusing me a bit.
Any suggestions? Thanks a lot.