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

@@ -1,6 +1,6 @@
[package]
name = "differential_equations"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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)
}
}