diff options
| author | hybrid <hybrid@hybridlabs.pro> | 2026-07-11 10:15:52 +0300 |
|---|---|---|
| committer | hybrid <hybrid@hybridlabs.pro> | 2026-07-11 10:15:52 +0300 |
| commit | 866393b70f5baddcaf9571b7240ebd4ce44bc67c (patch) | |
| tree | cac69c96fc074c64af54060a044474e40e7e46ad /include/ballistics.h | |
| parent | 4e6026b12eb00ea5bdd6dece2dfc97ffe8c2fc87 (diff) | |
| download | a3catragmx-866393b70f5baddcaf9571b7240ebd4ce44bc67c.tar.gz a3catragmx-866393b70f5baddcaf9571b7240ebd4ce44bc67c.tar.bz2 a3catragmx-866393b70f5baddcaf9571b7240ebd4ce44bc67c.zip | |
add: tmp commit
Diffstat (limited to 'include/ballistics.h')
| -rw-r--r-- | include/ballistics.h | 16 |
1 files changed, 16 insertions, 0 deletions
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 |
