File:QM rectangular vs poshl-teller potentials.gif

QM_rectangular_vs_poshl-teller_potentials.gif(360 × 424 pixels, file size: 1.3 MB, MIME type: image/gif, looped, 200 frames)

Captions

Captions

Time evolution of a Gaussian packet in the presence of rectangulkar and a Poschl-Teller potential.

Summary edit

Description
English: Usually a potential well will (partially) reflect the wavefunction. But some particular shapes of the potential (e.g. the Pöschl-Teller potential) will produce no reflection at all.
Date
Source https://twitter.com/j_bertolotti/status/1102239192703291392
Author Jacopo Bertolotti
Permission
(Reusing this file)
https://twitter.com/j_bertolotti/status/1030470604418428929

Mathematica 11.0 code edit

L = 100; (*System size*)
dx = 0.1; (*Space step*)
dt = 0.01; (*time step*)
k0 = 4; (*Momentum of the incident packet*)
V1 = Table[If[x > 45 && x < 55, -15, 0], {x, 0, L, dx}]; (*Potential*)
dim = Dimensions[V1][[1]]
(*For a undergraduate level explanation of why this works, see physik.uni-graz.at/~pep/Theses/BachelorThesis_Wachter_2017.pdf *)
\[Alpha] = (I dt)/(2 dx^2);
\[Xi]1 = Table[1 + (I dt)/2 (2/dx^2 + V1[[j]]), {j, 1, dim}];
\[Gamma]1 = Table[1 - (I dt)/2 (2/dx^2 + V1[[j]]), {j, 1, dim}];
U1 = SparseArray[{Band[{1, 1}] -> \[Xi]1, Band[{2, 1}] -> -\[Alpha], Band[{1, 2}] -> -\[Alpha]}, {dim, dim}];
U2 = SparseArray[{Band[{1, 1}] -> \[Gamma]1, Band[{2, 1}] -> \[Alpha], Band[{1, 2}] -> \[Alpha]}, {dim, dim}];
\[Psi]0 = Table[E^(-((x - L/4)^2/(2 3^2))) E^(I k0 x), {x, 0, L, dx}]; (*Initial condiotion*)
nsteps = 700; (*Number of time steps*)
U = Inverse[U1].U2; (*Evolution operator*)
evo1 = NestList[Dot[U, #] &, \[Psi]0, nsteps]; (*Apply the evolution operator repeatedly to obtain the soltion at each time step*)

V2 = Table[-((5 (5 + 1))/2) Sech[x - 50]^2, {x, 0, L, dx}];
\[Xi]2 = Table[1 + (I dt)/2 (2/dx^2 + V2[[j]]), {j, 1, dim}];
\[Gamma]2 = Table[1 - (I dt)/2 (2/dx^2 + V2[[j]]), {j, 1, dim}];
U1 = SparseArray[{Band[{1, 1}] -> \[Xi]2, Band[{2, 1}] -> -\[Alpha], Band[{1, 2}] -> -\[Alpha]}, {dim, dim}];
U2 = SparseArray[{Band[{1, 1}] -> \[Gamma]2, Band[{2, 1}] -> \[Alpha], Band[{1, 2}] -> \[Alpha]}, {dim, dim}];
U = Inverse[U1].U2;
evo2 = NestList[Dot[U, #] &, \[Psi]0, nsteps];

p1 = Table[
   GraphicsColumn[{
     ListPlot[{Abs[evo1[[j]]]^2, V1/30}, Joined -> True, 
      PlotRange -> {-0.6, 1}, Axes -> False, 
      PlotStyle -> {Directive[Black, Thick], 
        Directive[Red, Thick, Dashed]}, 
      PlotLabel -> "Rectangular potential well", 
      LabelStyle -> {Bold, Black}],
     ListPlot[{Abs[evo2[[j]]]^2, V2/30}, Joined -> True, 
      PlotRange -> {-0.6, 1}, Axes -> False, 
      PlotStyle -> {Directive[Black, Thick], 
        Directive[Red, Thick, Dashed]}, 
      PlotLabel -> "Pöschl\[Dash]Teller potential", 
      LabelStyle -> {Bold, Black}]
     }]
   , {j, 1, 600, 3}];
ListAnimate[p1]

Licensing edit

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

This file, which was originally posted to https://twitter.com/j_bertolotti/status/1030470604418428929, was reviewed on 5 March 2019 by reviewer Ronhjones, who confirmed that it was available there under the stated license on that date.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current10:13, 5 March 2019Thumbnail for version as of 10:13, 5 March 2019360 × 424 (1.3 MB)Berto (talk | contribs)User created page with UploadWizard

There are no pages that use this file.

Metadata