Calibrated the hood, indexer and drivetrain
Change-Id: I83f1043a0131f9c4dc414b88325667afc3ee514b
diff --git a/y2017/control_loops/python/turret.py b/y2017/control_loops/python/turret.py
index 4bfa245..edd5b53 100755
--- a/y2017/control_loops/python/turret.py
+++ b/y2017/control_loops/python/turret.py
@@ -45,7 +45,8 @@
# Moment of inertia, measured in CAD.
# Extra mass to compensate for friction is added on.
- self.J = 0.05 + self.motor_inertia * ((1.0 / self.G) ** 2.0)
+ self.J = 0.06 + self.motor_inertia * ((1.0 / self.G) ** 2.0)
+ glog.info('Turret J is: %f', self.J)
# Control loop time step
self.dt = 0.005