MathGroup Archive 2012

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Compiling Runge-kutta

  • To: mathgroup at smc.vnet.net
  • Subject: [mg125607] Re: Compiling Runge-kutta
  • From: Murray Eisenberg <murray at math.umass.edu>
  • Date: Wed, 21 Mar 2012 05:46:30 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <201203200721.CAA11925@smc.vnet.net>
  • Reply-to: murray at math.umass.edu

Why not just use the built-in NDSolve with a Method option?

On 3/20/12 3:21 AM, Joao wrote:
> Hi there, I've been going through this thread (Vector Runge-Kutta ODE solver with compilation?) and I would like to know if anyone could give me an opinion on the problem I have.
>
> Basically I am using the same runge-kutta 4 taken from Jason Cantarella's page than Dmitry was, but I am using the NestList version.
>
> I really need to speed up this algorithm. When I did one of the examples you provided on this thread, the compiled version solved it at a duration of 7% of the non compiled version which was pretty cool.
>
> My problem was that when I tried to use it on the work I'm doing the compiled and non compiled versions took the same time. My guess is that the compiled version wasn't able to compute and it returned to the non-compiled version.
>
> At this moment I don't know if I'm doing something wrong or if the nature of the RHS of the functions I'm using prevents the compiled algorithm to work in a proper way.
>
> I can send the code if necessary.
>
> Nevertheless, I may advance that my RHS is a system of 6 ODE (hamiltonian), these ODE call other functions (controls). These last functions (controls) are coded in a module box. Inside that box are some implicit functions in R1 (hence a newton algorithm is called) and there is also a switch - if a given condition is above a threshold the control box assumes one form, bellow that threshold another form is assumed. After all these calculations inside the control box it returns simply a vector of order 3.
>
> I would appreciate any help. At the moment I do not know if this is feasible with Compile or not. Maybe I have to put all this different boxes inside a compile?
>
> Thanks in advance
>
> Joao Pereira
>

-- 
Murray Eisenberg                     murray at math.umass.edu
Mathematics & Statistics Dept.
Lederle Graduate Research Tower      phone 413 549-1020 (H)
University of Massachusetts                413 545-2859 (W)
710 North Pleasant Street            fax   413 545-1801
Amherst, MA 01003-9305



  • Prev by Date: Re: Problems reading text files with embedded delimiters
  • Next by Date: Re: Eigenvalues, eigenvectors, matrix ranks, determinants, and all that stuff
  • Previous by thread: Compiling Runge-kutta
  • Next by thread: Re: Compiling Runge-kutta