poliastro.core.events

Module Contents

Functions

eclipse_function(k, u_, r_sec, R_sec, R_primary, umbra=True)

Calculates a continuous shadow function.

line_of_sight(r1, r2, R)

Calculates the line of sight condition between two position vectors, r1 and r2.

poliastro.core.events.eclipse_function(k, u_, r_sec, R_sec, R_primary, umbra=True)

Calculates a continuous shadow function.

Parameters
  • k (float) – Standard gravitational parameter (km^3 / s^2).

  • u (array) – Satellite position and velocity vector with respect to the primary body.

  • r_sec (array) – Position vector of the secondary body with respect to the primary body.

  • R_sec (float) – Equatorial radius of the secondary body.

  • R_primary (float) – Equatorial radius of the primary body.

  • umbra (bool) – Whether to calculate the shadow function for umbra or penumbra, defaults to True i.e. calculates for umbra.

Note

The shadow function is taken from Escobal, P. (1985). Methods of orbit determination. The current implementation assumes circular bodies and doesn’t account for flattening.

poliastro.core.events.line_of_sight(r1, r2, R)

Calculates the line of sight condition between two position vectors, r1 and r2.

Parameters
  • r1 (array) – The position vector of the first object with respect to a central attractor.

  • r2 (array) – The position vector of the second object with respect to a central attractor.

  • R (float) – The radius of the central attractor.

Returns

delta_theta – Greater than or equal to zero, if there exists a LOS between two objects located by r1 and r2, else negative.

Return type

float