Module to calculate the RHS of the differential equations in Eq. \eqref{eq_ode2}. More...
Prototypes | |
| void | LALInspiralDerivatives (REAL8Vector *values, REAL8Vector *dvalues, void *params) |
Module to calculate the RHS of the differential equations in Eq. \eqref{eq_ode2}.
values: Input containing the values of the variables \(v\) and \(\phi\) at the current time. dvalues: Output containing the derivatives \(dv/dt\) and \(d\phi/dt\) at the current time. params: Input of type InspiralDerivativesIn that must be cast to a void.\ This module calculates the right-hand sides of the follwoing two coupled first-order differential equations which are solved to obtain the gravitational wave phasing equation, as described in the documentation for the function LALInspiralWave1: The equations are
\begin{equation} \label{ode2} \frac{dv}{dt} = - \frac{\mathcal{F}(v)}{m E^{\prime}(v)},\ \ \ \ \frac{d \phi(t)}{dt} = \frac{2v^{3}}{m}. \end{equation}
None.
params is of type InspiralDerivativesIn and must be cast to a void before calling this function. For example, InspiralDerivativesIn in3; void *funcParams; in3.totalmass = totalmass; ... funcParams = (void *) &in3; Definition in file LALInspiralDerivatives.c.
Go to the source code of this file.
| void LALInspiralDerivatives | ( | REAL8Vector * | values, |
| REAL8Vector * | dvalues, | ||
| void * | params | ||
| ) |
Definition at line 87 of file LALInspiralDerivatives.c.