From 3be2d1bb66db121fd0a50daae62c1c38359d1c61 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Wed, 20 Sep 2017 01:03:06 +0100 Subject: #9 readme fix: Fixed --- yage/physics/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 yage/physics/README.md (limited to 'yage/physics/README.md') diff --git a/yage/physics/README.md b/yage/physics/README.md new file mode 100644 index 00000000..c1419155 --- /dev/null +++ b/yage/physics/README.md @@ -0,0 +1,13 @@ +# Physics Engine + +## Acceleration + +speed and position: + +I have +``` +a = dv / dt; +v = dp / dt; +``` + +I am going to use the second order runga kutta method with a = 0, b = 1, alpha = 1 / 2 and beta = 1 / 2. -- cgit