FACT++  1.0
void palEpv ( double  date,
double  ph[3],
double  vh[3],
double  pb[3],
double  vb[3] 
)

Definition at line 79 of file palEpv.c.

References eraEpv00(), i, and PAL__MJD0.

Referenced by palPertue(), palPlantu(), and t_evp().

80  {
81 
82  int i;
83  double pvh[2][3];
84  double pvb[2][3];
85 
86  eraEpv00( PAL__MJD0, date, pvh, pvb );
87 
88  /* Copy into output arrays */
89  for (i=0; i<3; i++) {
90  ph[i] = pvh[0][i];
91  vh[i] = pvh[1][i];
92  pb[i] = pvb[0][i];
93  vb[i] = pvb[1][i];
94  }
95 
96 }
int i
Definition: db_dim_client.c:21
static const double PAL__MJD0
Definition: palmac.h:96
int eraEpv00(double date1, double date2, double pvh[2][3], double pvb[2][3])
Definition: epv00.c:3

+ Here is the call graph for this function:

+ Here is the caller graph for this function: