[Physics] Solving Schrödinger equation for an infinite potential well with an obstacle (Numerical/Analytic)

computational physicshomework-and-exercisesquantum mechanicsschroedinger equationwavefunction

I'm a beginner in both quantum mechanics and computational physics, So please be as simple as possible. I know these topics can become so complicated.

I've been trying to solve the Schrödinger equation for an infinite potential well with an obstacle in it's middle section. Here's my potential as a function of x:

v(x)

I wrote a program to solve this equation numerically and first tested it with an ordinary potential well and I got correct results with tolerance of 0.0001. Then added potential and increased $a$ by a fixed step each time and computed $\Psi$ for the lowest energy state (ground state) and plotted the wave function ($\Psi$) against $x$. Here's the results (note that $a$ has increased by a fixed step each time):

enter image description here

I noticed the first energy level and the second get close and closer each time. For example in psi680, in dimensionless units, $E_0$ is equal to $71.166$ and $E_1$ is $71.180$ (so $E_1-E_0=0.014$).

I'm curious to find out where do they merge into one? I couldn't solve this numerically because of the method I used for finding energy eigenvalues and of course my code's accuracy.

  • I wonder if there is an analytical way to predict this?
  • An other question would be at what point this middle section becomes an infinite wall? (Where will the $\Psi$ be equal to zero in $x=0.5$ in this particular potential function?)
  • Any other help about this problem would be very appreciated.

Best Answer

Yes, your model can be fully solved analytically, though actually finding the spectrum may involve the numerical solution of a trascendental equation. This is done explicitly in several introductory QM textbooks, but in essence all you need to do is solve locally for each region (which gives you sines and cosines, or exponentials) and then stitch the solutions by demanding continuity of the wavefunction and its derivative.

In essence, as $a$ becomes bigger than the ground state energy, you end up solving for two weakly coupled wells, with roughly independent ground states; the global well ground and first excited state then become even and odd linear combinations of the two individual ground states, with an energy splitting that depends on the coupling between the two wells.

Regarding your other points,

  • An other would be at what point this middle section becomes an infinite wall?

When the middle bit goes up to infinity.

  • Where will the Ψ be equal to zero in x=0.5 in this particular potential function?

When the middle bit goes up to infinity. The ground state is never zero there (though it does decay exponentially in $a$); the first excited state is identically zero in the middle.