Made the default timestep way larger

This commit is contained in:
Connor Johnstone
2023-03-17 09:50:39 -06:00
parent b4d8f02650
commit 354652cee8
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ impl PIController {
}
}
pub fn default() -> Self {
Self::new(0.17, 0.04, 10.0, 0.2, 10.0, 0.9, 1e-4)
Self::new(0.17, 0.04, 10.0, 0.2, 100000.0, 0.9, 1e-4)
}
}