summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorhybrid <hybrid@hybridlabs.pro>2026-07-12 21:30:48 +0300
committerhybrid <hybrid@hybridlabs.pro>2026-07-12 21:30:48 +0300
commit4020a7124a80a608acd41a913ca5f6ad3ff3d488 (patch)
tree53ecefe6279497a4d2c6a921cab6dade6ed85e40 /include
parent866393b70f5baddcaf9571b7240ebd4ce44bc67c (diff)
downloada3catragmx-4020a7124a80a608acd41a913ca5f6ad3ff3d488.tar.gz
a3catragmx-4020a7124a80a608acd41a913ca5f6ad3ff3d488.tar.bz2
a3catragmx-4020a7124a80a608acd41a913ca5f6ad3ff3d488.zip
add: tmp commit
Diffstat (limited to '')
-rw-r--r--include/ballistics.h5
-rw-r--r--include/context.h2
-rw-r--r--include/drag_model.h6
3 files changed, 12 insertions, 1 deletions
diff --git a/include/ballistics.h b/include/ballistics.h
index 470c7a6..84a883d 100644
--- a/include/ballistics.h
+++ b/include/ballistics.h
@@ -13,4 +13,9 @@ double calculate_air_density(double temperature,
double pressure,
double relative_humidity);
+double retard(DragModel ballistic_model,
+ double ballistic_coefficient,
+ double velocity,
+ double temperature);
+
#endif
diff --git a/include/context.h b/include/context.h
index a2f651f..65b4585 100644
--- a/include/context.h
+++ b/include/context.h
@@ -16,7 +16,7 @@ typedef enum {
BC_G5,
BC_G6,
BC_G7,
-} BallisticModel;
+} DragModel;
typedef enum {
ICAO,
diff --git a/include/drag_model.h b/include/drag_model.h
new file mode 100644
index 0000000..baf5f72
--- /dev/null
+++ b/include/drag_model.h
@@ -0,0 +1,6 @@
+#ifndef DRAG_MODEL_H
+#define DRAG_MODEL_H
+
+
+
+#endif