blob: 470c7a6b2cd06c2abea531d7ac1873b94490e073 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|