diff options
author | Willem Ferguson <willemferguson@zoology.up.ac.za> | 2014-08-24 20:48:22 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-25 13:53:51 -0700 |
commit | 7575eb44df7541e4a2ad1f073c4f1b8e139c3cfd (patch) | |
tree | d1b9509e2fa63b9873d69d763feb661b82aa5685 /gaspressures.h | |
parent | 214bd0ed6e16933560bbea9fba3d151ad9be8d0b (diff) | |
download | subsurface-7575eb44df7541e4a2ad1f073c4f1b8e139c3cfd.tar.gz |
CCR code: Split profile.c into two files, with gas caluclations separate.
This patch implements a separation of the code for gas pressure
calculations from the rest of the code in profile.c. The latter
file is now split into: profile.c and gaspressures.c. The
details of the transferred functions is given at the top of
gaspressures.c. The following chnages were made:
1) dive.h: The function types of calculate_depth_to_mbar
and depth_to_mbar were made non-static in order to make them
available within gaspressures.c.
2) profile.c: Prototypes for the functions in gaspressures.c
were inserted at the top of profile. Ten functions were
transferred from profile.c to gaspressures.c
3) gaspressures.c as well as a short header, gaspressures.h
were created.
For the gas pressure calculations for CCR dives, gaspressures.c
forms the immediate basis for further code development.
Signed-off-by: Willem Ferguson <willemferguson@zoology.up.ac.za>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'gaspressures.h')
-rw-r--r-- | gaspressures.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gaspressures.h b/gaspressures.h new file mode 100644 index 000000000..e48a32418 --- /dev/null +++ b/gaspressures.h @@ -0,0 +1,33 @@ +#ifndef GASPRESSURES_H +#define GASPRESSURES_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * 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; +}; + +#ifdef __cplusplus +} +#endif +#endif // GASPRESSURES_H |