From: Callum Date: Tue, 29 Oct 2013 18:29:56 +0000 (+0800) Subject: Update dilatometer.c X-Git-Url: https://git.ucc.asn.au/?p=matches%2FMCTX3420.git;a=commitdiff_plain;h=797dd747d118bdfb374d220017b035382c4ec3c7;hp=d3c7eb2f00c302804af973f9f4b2200dcf7ca1b3 Update dilatometer.c --- diff --git a/server/sensors/dilatometer.c b/server/sensors/dilatometer.c index 3b05c5f..f197941 100644 --- a/server/sensors/dilatometer.c +++ b/server/sensors/dilatometer.c @@ -230,7 +230,7 @@ bool Dilatometer_GetExpansion( int id, double * value, int samples) if( lastPosition > 0) { // Find the rate of expansion and convert to mm. Will give a negative result for compression. - *value = (average - lastPosition) * SCALE; + *value = (average - lastPosition) * SCALE *2; lastPosition = average; // Current position now becomes the last position } return result;