symplectic_ode

Next: , Previous: (dir), Up: (dir)   [Index]

1 symplectic_ode


Next: , Previous: Top, Up: Top   [Index]

1.1 Introduction to symplectic_ode

For a hamiltonian of the form F(p) + G(q), the function symplectic_ode numerically solves Hamilton’s equations of motion p' = -dH/dq, q' = dH/dp, where H is the hamiltonian. The method preserves the Poisson bracket of p and q. One time step is accomplished with the loop


for k = 1 ... n 
   q <-  q + c(k)*diff(H,p)*dt ;update momentum p
   p <-  p - d(k)*diff(H,q)*dt ;use updated position q 


where c1, c2, …, cn and d1, d2, …, dn are constants and H is the hamiltonian.

This code has built-in methods for the symplectic Euler, the Verlet method, and third and fourth order methods that are due to Ronald Ruth. For a complete description of these methods, see https://en.wikipedia.org/wiki/Symplectic_integrator. Additionally, there is a fifth order method that is due to Kostas Tselios and T. E. Simos.

The function symplectic_ode creates and compiles functions for updating p & q. The arguments to these functions are modedeclared to have type given by an optional argument (defaults to float). Of course, hand coding of these functions could increase speed or accuracy, but the automatically generated functions are convenient.

Unlike adaptive methods such as RK45, symplectic_ode uses a fixed step size. Generally symplectic methods that use an adaptive step size lose their advantages over non-symplectic methods.


Next: , Previous: Introduction to symplectic_ode, Up: Top   [Index]

1.2 Definitions for symplectic_ode

Function: poisson_bracket poisson_bracket(f, g, p, q)

poisson_bracket(f, g, [p1,…, pn], [q1,…, qn])

Compute the Poisson bracket of the expressions f and g with respect to the canonical coordinates p and q (or p1, p2,…, pn and p1, p2,…, pn).

Examples:

(%i1) load("symplectic_ode")$
(%i2) poisson_bracket(p,p^2/2+q^4,p,q);
(%o2) -4*q^3

(%i3) poisson_bracket(q,p^2/2+q^4,p,q);
(%o3) p

(%i4) poisson_bracket(q1,p1^2/2+p2^2/2+q1^4+q2^4,[p1,p2],[q1,q2]);
(%o4) p1

(%i5) poisson_bracket(p1,p1^2/2+p2^2/2+q1^4+q2^4,[p1,p2],[q1,q2]);
(%o5) -4*q1^3

Function: symplectic_ode symplectic_ode(ham,p,q,po,qo,dt,N)

symplectic_ode(ham,p,q,po,qo,dt,N,method) symplectic_ode(ham,p,q,po,qo,dt,N,method,type)

Numerically solve Hamilton’s equations of motion using a symplectic method. Specifically:




For both the scalar case (both p and q are mapatoms) and the nonscalar case (both p and q are lists of mapatoms), symplectic_ode returns a list of two lists. For the scalar case, the first list is a list of the values of p at the times 0, dt, 2*dt,…, N*dt and similarly for the second list. For a nonscalar case, the first list is a list of the form [p1, p2,…, pn] at the times 0, dt, 2*dt,…, N*dt.

Examples:

(%i2) load("symplectic_ode")$
(%i3) symplectic_ode(p^2/2 + q^4/4,p,q,1,0,1/10,2);
(%o3) [[1.0,1.0,0.9999],[0.0,0.1,0.19999]]

(%i4) symplectic_ode(p^2/2 + q^4/4,[p],[q],[1],[0],1/10,2);
(%o4) [[[1.0],[1.0],[0.9999]],[[0.0],[0.1],[0.19999]]]

(%i5) symplectic_ode(p^2/2 + q^4/4,p,q,1,0,1/10,2,verlet);
(%o5) [[1.0,0.9999875,0.9996500084374297],[0.0,0.099999375,0.1999812504218715]]

(%i6) symplectic_ode(p^2/2 + q^4/4,p,q,1.0b0,0.0b0, 0.1b0,2,verlet,'any);
(%o6) [[1.0b0,9.999875b-1,9.996500084374297b-1],[0.0b0,9.9999375b-2,1.999812504218715b-1]]


Previous: Definitions for symplectic_ode, Up: Top   [Index]

Appendix A Function and variable index

Jump to:   P   S  
Index Entry  Section

P
poisson_bracket: Definitions for symplectic_ode

S
symplectic_ode: Definitions for symplectic_ode

Jump to:   P   S