summaryrefslogtreecommitdiff
path: root/rk4.txt
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2015-08-04 15:55:25 +0200
committerErich Eckner <git@eckner.net>2015-08-04 15:55:25 +0200
commit9a20545e798a68ebd73f92ca0f19a2cfbebf5983 (patch)
tree5dae20a84b7c2127d0f182f99a2f79c554304517 /rk4.txt
parente425856940fd5237241d315c26d61b5f41e23ad4 (diff)
downloadPlasmapropagation-9a20545e798a68ebd73f92ca0f19a2cfbebf5983.tar.xz
alle Runge-Kuttas in .inc ausgelagert,
minimales dT auf dX gesetzt (sonst Bug z.B. in AY)
Diffstat (limited to 'rk4.txt')
-rw-r--r--rk4.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/rk4.txt b/rk4.txt
new file mode 100644
index 0000000..7e46483
--- /dev/null
+++ b/rk4.txt
@@ -0,0 +1,30 @@
+ THE COEFFICIENTS OF RK4
+ using the notation of Fehlberg, Bettis, Horn, et alia
+
+
+ k a[k]
+
+ 0 0
+ 1 0.5
+ 2 0.5
+ 3 1
+
+
+ k c[k]
+
+ 0 1/6
+ 1 1/3
+ 2 1/3
+ 3 1/6
+
+
+ k j ß[k,j]
+
+ 1 0 0.5
+ 2 0 0
+ 2 1 0.5
+ 3 0 0
+ 3 1 0
+ 3 2 1
+
+