#ifndef ACE_BALLISTICS_H #define ACE_BALLISTICS_H #include "context.h" #include "drag_model.h" double atmospheric_correction(double ballistic_coefficient, double temperature, double pressure, double relative_humidity, AtmosphereModel atmosphere_model); double calculate_air_density(double temperature, double pressure, double relative_humidity); double retard(DragFunction drag_function, double ballistic_coefficient, double velocity, double temperature); #endif