00001 #import <Cocoa/Cocoa.h>
00002
00003 #import "Euler.h"
00004
00010 @interface RungeKutta2 : Euler {
00011
00012 }
00013
00014 + (RungeKutta2*) createWithGeometry: (FlowGeometry*)_geometry Channel1: (FlowChannel*)_channel1 Channel2: (FlowChannel*)_channel2
00015 DimensionX: (float)_drawDimX DimensionY: (float)_drawDimY ScaleStepsize: (bool)_scaleStepsize;
00016
00017 - (id) initWithGeometry: (FlowGeometry*)_geometry Channel1: (FlowChannel*)_channel1 Channel2: (FlowChannel*)_channel2
00018 DimensionX: (float)_drawDimX DimensionY: (float)_drawDimY ScaleStepsize: (bool)_scaleStepsize;
00019
00020 @end