aboutsummaryrefslogtreecommitdiffstats
path: root/yage/physics/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'yage/physics/README.md')
-rw-r--r--yage/physics/README.md13
1 files changed, 13 insertions, 0 deletions
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.