https://github.com/N-BodyShop/changa
Raw File
Tip revision: 7430317c4c88438f9292c1a2024bc3dc8bc3fa66 authored by Harshitha on 10 May 2014, 01:33:10 UTC
Intra node load balancing using CkLoop
Tip revision: 7430317
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