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 +++++++++++++ yage/physics/README.org | 27 --------------------------- 2 files changed, 13 insertions(+), 27 deletions(-) create mode 100644 yage/physics/README.md delete mode 100644 yage/physics/README.org 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. diff --git a/yage/physics/README.org b/yage/physics/README.org deleted file mode 100644 index 0620cc93..00000000 --- a/yage/physics/README.org +++ /dev/null @@ -1,27 +0,0 @@ -#+ TITLE : README -#+ DATE : <2017 - 04 - 17 Mon> -#+ AUTHOR: -#+ EMAIL : yannherklotz @yann - arch -#+ OPTIONS : ':nil *:t -:t ::t <:t H:3 \n:nil ^:t arch:headline -#+ OPTIONS : author : t c : nil creator : comment d : (not"LOGBOOK") date : t -#+ OPTIONS : e : t email : nil f : t inline : t num : t p : nil pri : nil stat : t -#+ OPTIONS : tags : t tasks : t tex : t timestamp : t toc : t todo : t | : t -#+ CREATOR : Emacs 25.1.1(Org mode 8.2.10) -#+ DESCRIPTION: -#+ EXCLUDE_TAGS : noexport -#+ KEYWORDS: -#+ LANGUAGE : en -#+ SELECT_TAGS : export - -*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