From 866393b70f5baddcaf9571b7240ebd4ce44bc67c Mon Sep 17 00:00:00 2001 From: hybrid Date: Sat, 11 Jul 2026 10:15:52 +0300 Subject: add: tmp commit --- include/ballistics.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/ballistics.h (limited to 'include/ballistics.h') diff --git a/include/ballistics.h b/include/ballistics.h new file mode 100644 index 0000000..470c7a6 --- /dev/null +++ b/include/ballistics.h @@ -0,0 +1,16 @@ +#ifndef ACE_BALLISTICS_H +#define ACE_BALLISTICS_H + +#include "context.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); + +#endif -- cgit v1.3.1