Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
0

How to tabulate (rcosθ,rsinθ) from (t,r,θ) obtained from solving a system of ODE using RK4?

asked 3 years ago

Abby11 gravatar image

I am trying to solve a system of first-order differential equations of the following form: drdt=f(r,θ),dθdt=g(r,θ) I am using desolve_system_rk4 which gives me a list of triples (t,r,θ). Now I need to plot the trajectory in the xy-plane. For this, I require to obtain the x and y coordinate using x=rcosθ,y=rsinθ and then obtain the xy-plot. How can I tabulate the pair (rcosθ,rsinθ) from (t,r,θ)?

Preview: (hide)

Comments

1

Please add your code using desolve_system_rk4, so that it's easier to give an answer.

rburing gravatar imagerburing ( 3 years ago )

Can a parametric plot solve your problem?

tolga gravatar imagetolga ( 3 years ago )

1 Answer

Sort by » oldest newest most voted
0

answered 3 years ago

Emmanuel Charpentier gravatar image

Starting from the example given in the documentation that you could have bothered to read by typing desolve_system_rk4? :

sage: from sage.calculus.desolvers import desolve_system_rk4
sage: x,y,t=var('x y t')
sage: P=desolve_system_rk4([x*(1-y),-y*(1-x)],[x,y],ics=[0,0.5,2],ivar=t,end_points=20)

you can see that the solution P is a list of [t, x, y] triplets. You can display the x and y functions by :

sage: line2d([[i, j] for i, j, k in P])
sage: line2d([[i, k] for i, j, k in P])

(line2d interpolates between the points that list_plot displays, which is aesthetically more pleasing).Your phase trajectory can therefore be displayed by :

sage: line2d([[j,k] for i, j, k in P])

HTH,

Preview: (hide)
link

Your Answer

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

Add Answer

Question Tools

1 follower

Stats

Asked: 3 years ago

Seen: 727 times

Last updated: Mar 25 '22