You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed some issues in the python code. I think that the gradient optimization code for the two non interacting particles case should accumulate the DeltaPsi value, so instead of:
DeltaE = LocalEnergy(PositionOld,alpha)
val = DerivativeWFansatz(PositionOld,alpha)
DeltaPsi += val
energy += DeltaE
DerivativePsiE += val*DeltaE
Also the computation of the GreensFunction looks suspicious at a very superficial look, as there, for example, it should be a division with the TimeStep.
The text was updated successfully, but these errors were encountered:
Hi,
Related with the previous bug report, I was looking over this page:
http://compphysics.github.io/ComputationalPhysics2/doc/pub/vmc/html/vmc-bs.html
I noticed some issues in the python code. I think that the gradient optimization code for the two non interacting particles case should accumulate the
DeltaPsi
value, so instead of:should be something like:
Also the computation of the
GreensFunction
looks suspicious at a very superficial look, as there, for example, it should be a division with theTimeStep
.The text was updated successfully, but these errors were encountered: