keplerian-core
Version:
High-performance TypeScript library for orbital mechanics calculations, providing numerical integration, state propagation, and perturbation modeling for Keplerian orbits.
10 lines (9 loc) • 317 B
TypeScript
export * from './euler';
export * from './leapfrog';
export * from './rk2';
export * from './rk4';
export * from './velocity-verlet';
export * from './dormand-prince';
export * from './wisdom-holman';
export { integratorRegistry } from './registry';
export type { IntegratorFunction, IntegratorInfo } from './types';