Ask Your Question
0

ode_solver : unable to convert to float

asked 13 years ago

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

I am trying to solve a system of 38 first-order differential equations using ode_solver(). Among many problems, I have a problem with complex numbers. The functions in question are complex functions (equations include conjugate(function)), and initial contitions are also complex numbers.

The error I get is following:

TypeError: Unable to convert 0.0353553390593274 - 0.0353553390593274*I
to float; use abs() or real_part() as desired

0.0353553390593274 - 0.0353553390593274*I is the value of one of the inital conditions. I am rather new to sage, so I wonder if ode_solver() can deal with complex functions and complex numbers as such?

Thank you!

Preview: (hide)

Comments

If you have a specific example, that would be really helpful. If it's quite long, use http://pastebin.com or something to link to.

kcrisman gravatar imagekcrisman ( 13 years ago )

It's REALY long, and it contains lots of abbreviations and definitions within definitions... I doubt it would be very useful. I can describe the system: I have 39 functions (y[0], ..., y[38]) and 39 dependent first-order diferential equations. Functions are defined in the complex ring, the inital values are complex numbers, etc. RHS of equations are complicated combinations of y's. So i write them all down, define range and initial conditions and that's it. In Mathematica I did it with NDSolve, there were absolutly no problems (I have just typed the equations) and the whole job is done in about 2 seconds. Now I am trying to do the same job with Sage. But it turns out it's not that simple :(

Hurin gravatar imageHurin ( 13 years ago )

Can you maybe post a much smaller test case that illustrates the problem?

Jason Grout gravatar imageJason Grout ( 13 years ago )

3 Answers

Sort by » oldest newest most voted
1

answered 13 years ago

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

It is not possible to solve complex differential equation with ode_solver. You have to convert n complex differential equations to 2n real differential equations.

Preview: (hide)
link

Comments

Thank you for your answer, I had a feeling something like that will be the case :) Can you advise me with the best way to do that conversion? Do I have to do it "by hand" (separating each function f = fRe + fIm, and each value like y0 = y0Re + y0Im) , or is there some routine that can do it?

Hurin gravatar imageHurin ( 13 years ago )

I normally use .real().simplify() and .imag().simplify() to seperate the real and imaginary parts of the function and just redefine the function in terms of 2n variables. I think there might be a more elegant way of doing it. But I don't have anything offhand.

Shashank gravatar imageShashank ( 13 years ago )
0

answered 11 years ago

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

scipy.integrate.ode hanldes numerical solution of variable coefficient complex valued ODEs, by means of the quite fast 'zvode' fortran routine. see http://docs.scipy.org/doc/scipy/refer...

Preview: (hide)
link
0

answered 13 years ago

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

You could just write a Runge-Kutta 4th-order solver in python, and if your system isn't too nasty that will speedily and happily use complex values.

Preview: (hide)
link

Comments

So are you saying that the Runge-Kutta methods from GSL in `ode_solver` we have don't work with complex values at all? Is there anything else in Sage (maybe Maxima?) that does numerical ODEs over complex values?

kcrisman gravatar imagekcrisman ( 13 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 13 years ago

Seen: 1,488 times

Last updated: Dec 19 '13