aboutsummaryrefslogtreecommitdiffstats
path: root/core/gaspressures.c
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-06-04 13:59:44 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-06-19 13:11:10 -0700
commitaf5aa8a23dc66f7883989319949fc2b0255a0374 (patch)
treef02b5985200094c4dbc1daaafc625a1596f563f3 /core/gaspressures.c
parent619d3fb1fd4b7ab532537b7eca78f668d2ce381b (diff)
downloadsubsurface-af5aa8a23dc66f7883989319949fc2b0255a0374.tar.gz
Cleanup: Make gaspressures.h a regular include file
gaspressure.h had definitions of non-exported structs, but did not declare the only function exported by gaspressure.c. Therefore, move the struct definitions into gaspressure.c and the declarations of the populate_pressure_information() function from profile.c to gaspressures.h. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/gaspressures.c')
-rw-r--r--core/gaspressures.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/core/gaspressures.c b/core/gaspressures.c
index 1b191369b..72c6d4a57 100644
--- a/core/gaspressures.c
+++ b/core/gaspressures.c
@@ -25,6 +25,30 @@
#include "gaspressures.h"
#include "pref.h"
+/*
+ * simple structure to track the beginning and end tank pressure as
+ * well as the integral of depth over time spent while we have no
+ * pressure reading from the tank */
+typedef struct pr_track_struct pr_track_t;
+struct pr_track_struct {
+ int start;
+ int end;
+ int t_start;
+ int t_end;
+ int pressure_time;
+ pr_track_t *next;
+};
+
+typedef struct pr_interpolate_struct pr_interpolate_t;
+struct pr_interpolate_struct {
+ int start;
+ int end;
+ int pressure_time;
+ int acc_pressure_time;
+};
+
+enum interpolation_strategy {SAC, TIME, CONSTANT};
+
static pr_track_t *pr_track_alloc(int start, int t_start)
{
pr_track_t *pt = malloc(sizeof(pr_track_t));