aboutsummaryrefslogtreecommitdiffstats
path: root/yage/physics/README.md
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-20 01:03:06 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-20 01:03:06 +0100
commit3be2d1bb66db121fd0a50daae62c1c38359d1c61 (patch)
tree1a7b23c3a5bd13b42ff524a1d451e1a006b4b0b0 /yage/physics/README.md
parent6ff7c59466e0c9d4c9ad6324f3f819197506371f (diff)
downloadYAGE-3be2d1bb66db121fd0a50daae62c1c38359d1c61.tar.gz
YAGE-3be2d1bb66db121fd0a50daae62c1c38359d1c61.zip
#9 readme fix: Fixed
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.