Solving 1D Wave Function Evolution with Quantum Simulation

AI Thread Summary
The discussion focuses on evolving a one-dimensional wave function using Schrodinger's equation, with initial conditions defined by potential V[x] and Psi0[x]. A method is proposed to discretize the wave function and potential, transforming the equation into a finite difference format for time evolution. The user encounters issues with the solution "blowing up," leading to oscillations and spikes, suggesting potential problems with boundary conditions or timestep size. Suggestions include re-normalizing the wave function after updates and utilizing Python's built-in complex number type for efficiency. The conversation also references open-source Java applets by Paul Falstad for more advanced simulations in quantum mechanics.
Mephisto
Messages
93
Reaction score
0
I am looking for a way to evolve a wave function in one dimension. I tried searching already but couldn't find anything. Basically I have:

V[x] gives the potential at x
Psi0[x] gives initial conditions on wave function for each x

I would like to calculate Psi[t,x], the wave function at any time t given those two arrays. How could I go about doing this?
 
Technology news on Phys.org
You'll need two arrays for Psi, for the real and imaginary parts. Omitting various constants, Schrodinger's equation is

i \partial_t \psi(x,t) = - \partial_x^2 \psi(x,t) + V(x) \psi(x,t)

A simple way to implement time-evolution, if you don't need to be extremely precise, is to simply discretize Psi and V and rewrite Schrodinger's equation as a finite difference equation. You can approximate as follows:

\partial_t \psi(x,t) \approx \frac{\psi(x,t+\Delta t) - \psi(x,t)}{\Delta t}

\partial_x^2 \psi(x,t) \approx \frac{\psi(x+\Delta x,t) - 2 \psi(x,t) + \psi(x - \Delta x,t)}{\Delta x^2}

You'll have to take some care at the endpoints (x min and x max) to keep errors from propagating due to the finite length of your Psi array. That is, you need some way of assuming what the value of Psi is beyond the limits of the array, so that you can take accurate finite differences.

Once you figure that out, merely plug these approximations into Schrodinger's equation, and you'll get an algebraic equation that you can solve for \psi(x, t+\Delta t) in terms of your Psi array at the current instant of time.

Note: If you want to, you can even include a time-varying potential! Then you can simulate, for example, what happens to a particle in a potential when it is hit by a pulse of light. Have fun!
 
Thank you very much for that. Surprisingly, it is really hard to find anything about this on the internet!

I implemented the difference equations, and it looks like it could have worked. I don't actually know, because my solution almost always "blows up". I set up potential V=0 with a gaussian distribution initially in the Real part of Psi, and let it evolve. It nicely diffuses, but then starts to oscillate wildly and spikes form inside it, and make it blow up. Its weird. Maybe I got the equations wrong? Or the boundary conditions? Everywhere outside my range I set Psi=0...

Here is my code for the most crucial part. self.at returns real, imaginary parts of Psi at the passed parameter.
Code:
        dtdx = self.dt/(self.dx*self.dx)        
        for x in range(0, self.num):
            r1,i1 = self.at(x-1)
            r2,i2 = self.at(x)
            r3,i3 = self.at(x+1)
            
            newpsir[x] = r2 + dtdx*(-i3 + 2.0*i2 - i1) + i2*self.v[x]*self.dt
            newpsii[x] = i2 + dtdx*(r3 - 2.0*r2 + r1) - r2*self.v[x]*self.dt

Maybe I could try re-normalizing my Psi after every update or something? hmm
 
Last edited:
I am too sleepy to take a close look, but can I point out you can simplify by using Python's built in complex number type?

Code:
>>> x = 1 + 2j
>>> x**2
(-3+4j)

On another unsolicited note, Paul Falstad wrote some (much more sophisticated) Java applets on variations of this, and they are open source! For instance, he has 1D quantum mechanics applets (both wells, and periodic boundary conditions ("quantum crystal")), and 1D quantum mechanics with time-varying potentials ("quantum transitions"), as well as many 2D and 3D versions:

http://www.falstad.com/mathphysics.html

qm1drad.gif
 
Last edited:
thank you for the suggestion signerror!
I implemented it using COMPLEX() in python, and got the same results, but MUCH slower. So I put it back to what it was before, handling imaginary and real separately. So that means the math is right, and its just that my timestep is too large, or the approximation not good enough or something? :(
 
It shouldn't be - there's nothing wrong with the complex type, it's just a struct {double real; double imag}. I just tired a simple example benchmark (square a million complex numbers), and the complex-type version was fully TWICE as fast - user 1.476s, vs 2.930s (uncompiled).

What is COMPLEX()? Is that a class constructor or function? Don't do that - function calls are hugely inefficient (unless they're compiled inline functions, which aren't technically functions anyway). Use complex literals: x = 2+3j, y = x*z, and so forth.
 
Last edited:
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
I tried a web search "the loss of programming ", and found an article saying that all aspects of writing, developing, and testing software programs will one day all be handled through artificial intelligence. One must wonder then, who is responsible. WHO is responsible for any problems, bugs, deficiencies, or whatever malfunctions which the programs make their users endure? Things may work wrong however the "wrong" happens. AI needs to fix the problems for the users. Any way to...
Back
Top