Revision d0eae6805438f13e1b297755327a7162c80c7190 authored by Tom Quinn on 28 January 2016, 05:27:07 UTC, committed by Tom Quinn on 28 January 2016, 05:27:07 UTC
1 parent 6abe351
Raw File
runge.h
/*
 * Runge-Kutta integrator originally written for PKDGRAV by Thomas
 * Quinn
 */
void
RungeKutta(void *CTX, 
	   void (*deriv)(void *, double, double *, double*),
	   int nDep,		/* number of dependent variables */
	   double tin,		/* independent variable */
	   double *xin,		/* array of input */
	   double tout,
	   double *xout,		/* array of output */
	   int nSteps);
back to top