Class RungeKuttaIntegrator

java.lang.Object
  extended by Integrator
      extended by RungeKuttaIntegrator

public class RungeKuttaIntegrator
extends Integrator


Field Summary
(package private)  double[] k1
           
(package private)  double[] k2
           
(package private)  double[] k3
           
(package private)  double[] k4
           
(package private)  double[] yk1
           
(package private)  double[] yk2
           
(package private)  double[] yk3
           
(package private)  double[] yk4
           
 
Fields inherited from class
modell
 
Constructor Summary
RungeKuttaIntegrator(Modell modell)
           
 
Method Summary
 double[] berechneZeitschritt(double[] yalt, double t, double dt)
           
static void main(java.lang.String[] args)
           
 
Methods inherited from class
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

k1

double[] k1

k2

double[] k2

k3

double[] k3

k4

double[] k4

yk1

double[] yk1

yk2

double[] yk2

yk3

double[] yk3

yk4

double[] yk4
Constructor Detail

RungeKuttaIntegrator

public RungeKuttaIntegrator(Modell modell)
Method Detail

berechneZeitschritt

public double[] berechneZeitschritt(double[] yalt,
                                    double t,
                                    double dt)
Overrides:
berechneZeitschritt in class Integrator

main

public static void main(java.lang.String[] args)