From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,d75b7d39a8ceb1ac X-Google-Attributes: gid103376,public From: Gautier Subject: Re: Runge-Kutta in Ada Date: 1999/06/17 Message-ID: <3768E98D.E233B4A1@Maths.UniNe.CH>#1/1 X-Deja-AN: 490645347 Content-Transfer-Encoding: 7bit References: <3768DAA6.2CBF7F87@informatik.uni-oldenburg.de> To: Frank Oppenheimer Content-Type: text/plain; charset=us-ascii MIME-Version: 1.0 Newsgroups: comp.lang.ada Date: 1999-06-17T00:00:00+00:00 List-Id: > For modelling a continous physical system I am searching for a numeric package > including the Runge-Kutta method to solve differential equations. Since the > equations are oft second order it would be great to find a package that is > flexible enough to handle a vector of functions. There is a vectorial RK implementation in my math packages / programs URL http://members.xoom.com/gdemont/gsoft.htm arenstor.adb in: http://members.xoom.com/gdemont/logiciel/mathprog.zip uses packages from: http://members.xoom.com/gdemont/logiciel/mathpaqs.zip Methods implemented type t_meth is (Euler1, Runge_Kutta_class4, Runge_Kutta_3_8_4, Butcher6, DoPriF7, DoPriF8, DoPriV8 ); -- V: variable step size (F: fixed) As you see there is even the Dormand-Prince 13 stages variable step method... -- Gautier -------- http://members.xoom.com/gdemont/