Polyrhythmic said:
In which sense can one not talk about motion of particles in QFT?
By the way, I tried to get the application you have on your website to run (the one in BASIC code), but I can't copy the code because it's an image, not a text.
For one, the concept of field is used to represent streams of particles defined ofer a whole region of space-time, then the S-matrix is calculated from the in and out field to obtain the cross-section that is interpreted as probabilties of certain events occurring. you can google for s-matrix. The the Psi^2 probability density interpreted as position does not exist in QFT. I will get you the link that explains that later.
I have no problem in copy and paste (IE6). but here it is. you can play with it by changing the start position of the second particle (which acts as a potential barrier) st1 and its width d1 and see the interaction.
l = 500
t= 0
dim S(1000)
dim L(1000)
dim S1(1000)
dim L1(1000)
open "Draw" for graphics as #draw
for n=1 to 10
for j = 1 to 1000000
d1=4
st1=3
p= int(l * rnd(0))
li = int(l * rnd(0))
p1= st1+int(d1 * rnd(0))
li1 = int(d1 * rnd(0))
if p1+li1>p-li and p1+li1<p+li goto [q]
if p+li>p1-li1 and p+li<p1+li1 goto [q]
if (st1+d1-p1-li1)/d1 < rnd(0) then goto [qc]
if (-1*st1+p1-li1)/d1 < rnd(0) then goto [qc]
L1(p1)=L1(p1)+li1
S1(p1) = S1(p1) + 1
[qc]
if (l-p-li)/l < rnd(0) then goto [q]
if (p-li)/l < rnd(0) then goto [q]
L(p)=L(p)+li
S(p) = S(p) + 1
goto [q]
[q1]
goto [q]
[q2]
[q]
next j
for k = 1 to l
print k , S(k),S(k)^.5,L(k)/(S(k)+1)
tx=tx+S(k)
tn=tn+L(k)/(S(k)+1)
print sin((k*3.14)/l)*sin((k*3.14)/l)*y
next k
y=7.5*tx/k
print tx,tn/l
print #draw, "home ; down "
for r = 1 to l
print #draw,"goto "; r * 2 ; " "; S(r)*2
next r
print #draw, "up ; home ;color red ; down"
print #draw, "home ; down "
for r = 1 to l
print #draw,"goto "; r * 2 ; " "; S1(r)*1
next r
print #draw, "up ; home ;color red ; down"
for e = 1 to l
print #draw, "goto "; e* 2 ; " "; sin((e*3.14)/l)*sin((e*3.14)/l)*y
next e
print #draw, "up ; home ;color blue ; down"
for e = 1 to l
print #draw, "goto "; e* 2 ; " "; sin((e*3.14)/l)*y
print #draw, "flush"
next e
input a
next n