PSR
CHIVE
Ask a Question
Search
PSR
CHIVE:
powered by
FreeFind
Home
Install
Use
Develop
Support
News
Credits
hosted by
Util
genutil
orbital.h
1
/***************************************************************************
2
*
3
* Copyright (C) 1999 by Willem van Straten
4
* Licensed under the Academic Free License version 2.1
5
*
6
***************************************************************************/
7
// psrchive/Util/genutil/orbital.h
8
9
#ifndef __ORBITAL_H
10
#define __ORBITAL_H
11
12
#ifdef __cplusplus
13
extern
"C"
{
14
#endif
15
16
/* Solves Kepler's equation using the Newton-Raphson method */
17
double
eccentric_anomaly (
double
mean_anomaly,
double
eccentricity);
18
19
/* Solves mass function for the companion mass */
20
double
companion_mass (
double
mass_function,
double
sini,
double
m1);
21
22
#ifdef __cplusplus
23
}
24
#endif
25
26
#endif
27
Generated using
doxygen
1.14.0