mtime 1.2.2
Loading...
Searching...
No Matches
orbit.h
1// Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved.
2//
3// SPDX-License-Identifier: BSD-3-Clause
4//
5#ifndef ORBIT_H
6#define ORBIT_H
7
8void orbit_vsop87(double jde, double *ra, double *dec, double *dis, double *gha);
9
10void orbit_kepler(double pvetim, double *pdisse, double *pdec, double *pra);
11
12void earth_position(double t, double *l, double *b, double *r);
13
14#endif