From 1b390135a193b7de437442ed3bf4ae3310f4bb16 Mon Sep 17 00:00:00 2001 From: david Date: Tue, 1 Jul 2003 21:22:01 +0000 Subject: [PATCH] Make the inclinometer a little more lively. --- src/Instrumentation/slip_skid_ball.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Instrumentation/slip_skid_ball.cxx b/src/Instrumentation/slip_skid_ball.cxx index 3a1a4604b..3d2c8c475 100644 --- a/src/Instrumentation/slip_skid_ball.cxx +++ b/src/Instrumentation/slip_skid_ball.cxx @@ -34,7 +34,7 @@ SlipSkidBall::update (double delta_time_sec) double d = -_z_accel_node->getDoubleValue(); if (d < 1.0) d = 1.0; - double pos = _y_accel_node->getDoubleValue() / d * 5.0; + double pos = _y_accel_node->getDoubleValue() / d * 10.0; pos = fgGetLowPass(_out_node->getDoubleValue(), pos, delta_time_sec); _out_node->setDoubleValue(pos); } -- 2.39.5