]> git.tdb.fi Git - ext/subsurface.git/commitdiff
Fix broken average SAC calculation
authorMiika Turkia <miika.turkia@gmail.com>
Fri, 30 Mar 2012 05:10:05 +0000 (08:10 +0300)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 30 Mar 2012 05:37:32 +0000 (22:37 -0700)
old_sac_time was always 0 when calculating average air consumption.
Thus the results were incorrect.  Move the counter to stats_t structure
as suggested by Linus.

Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
statistics.c

index 65efdf145dea8d17d55152777d5169b5667998a1..34f487b521398cdc025186462d1ae81e1df63314 100644 (file)
@@ -69,6 +69,7 @@ typedef struct {
        unsigned int combined_temp;
        unsigned int combined_count;
        unsigned int selection_size;
+       unsigned int total_sac_time;
 } stats_t;
 
 static stats_t stats;
@@ -93,14 +94,14 @@ static void process_dive(struct dive *dp, stats_t *stats)
        stats->avg_depth.mm = (1.0 * old_tt * stats->avg_depth.mm +
                        dp->duration.seconds * dp->meandepth.mm) / stats->total_time.seconds;
        if (dp->sac > 2800) { /* less than .1 cuft/min (2800ml/min) is bogus */
-               int old_sac_time = sac_time;
-               sac_time += dp->duration.seconds;
-               stats->avg_sac.mliter = (1.0 * old_sac_time * stats->avg_sac.mliter +
+               sac_time = stats->total_sac_time + dp->duration.seconds;
+               stats->avg_sac.mliter = (1.0 * stats->total_sac_time * stats->avg_sac.mliter +
                                dp->duration.seconds * dp->sac) / sac_time ;
                if (dp->sac > stats->max_sac.mliter)
                        stats->max_sac.mliter = dp->sac;
                if (stats->min_sac.mliter == 0 || dp->sac < stats->min_sac.mliter)
                        stats->min_sac.mliter = dp->sac;
+               stats->total_sac_time = sac_time;
        }
        if (dp->watertemp.mkelvin) {
                if (stats->min_temp == 0 || dp->watertemp.mkelvin < stats->min_temp)