Why is the energy decreasing in my atom simulation?

  • Thread starter Thread starter ebrattr
  • Start date Start date
  • Tags Tags
    Energy
AI Thread Summary
The discussion revolves around simulating a long chain of atoms with constraints on bond lengths and angles, using the Lennard-Jones Potential for interactions. The user experiences a constant decrease in energy during simulations, which they initially attributed to the integration method. It is clarified that the user is in a rotating frame but was not accounting for the potential energy due to inertial centrifugal forces. The conversation also touches on the implementation of constraints and the calculation of forces, leading to the identification of a key error in the energy computation related to indexing in the internal cycle. The user ultimately resolves the issue by correcting the condition for energy calculation.
ebrattr
Messages
16
Reaction score
0
I'm trying to simulate a long chain of atoms where I restrict the bond (length between two consecutive atoms) and angle (between three consecutive atoms). Therefore, if I want to simulate N particles, then I have N+3 degrees of freedom. The only interactions between atoms is due to Lennard-Jones Potential.
I am using the classical Runge-Kutta fourth order method to integrate the equations. But, I got that the energy is always decreasing and then it keeps constant, like in the picture shown below.

http://img194.imageshack.us/img194/3757/examplexy.png

What can I do to keep constant the energy ?

What is happening ? I'm new with the topic. My english is not that good, so if you do not understand something, just let me know it.
Thanks !
 
Last edited by a moderator:
Physics news on Phys.org
What velocity dependent forces do you have exactelly? If you have Coriolis forces then you are obviously in a rotating frame. To get energy conservation in a rotating frame you have to include the potential energy due to the inertial centrifugal force. If the angular velocity of the frame is not constant, you can't expect energy to be consereved at all.
 
A.T. said:
What velocity dependent forces do you have exactelly? If you have Coriolis forces then you are obviously in a rotating frame. To get energy conservation in a rotating frame you have to include the potential energy due to the inertial centrifugal force. If the angular velocity of the frame is not constant, you can't expect energy to be consereved at all.

No, I don't have velocity dependent forces, because my only forces are due to a Lennard-Jones Potential. I was a little confused. What I do really have is a rotating frame. Got it. I was not including the potential energy due to inertial centrifugal force. I was just including, kinetick energies (\dfrac{1}{2}mv^2) and the corresponding LJ potential. However, these velocities are the global velocities of the particles.

Thanks !
 
Last edited:
ebrattr said:
No, I don't have velocity dependent forces, because my only forces are due to a Lennard-Jones Potential. I was a little confused. What I do really have is a rotating frame.
In a rotating frame you have inertial forces too (Centrifugal and Coriolis). And Coriolis is velocity dependent, but it is not doing any work, so it is irrelevant for Energy conservation.
ebrattr said:
However, these velocities are the global velocities of the particles.
To make an energy analysis you have to transform every thing into one frame.
 
Can you post your program?
 
Yeah, I compute all the velocities to one frame, my global frame.
 
ebrattr said:
Yeah, I compute all the velocities to one frame, my global frame.
And that global frame is rotating?
 
No. It is not rotating.
 
DrClaude said:
Can you post your program?

Yeah, off corse. But what part ? There many lines of code.
 
  • #10
How do you implement the constraints?
 
  • #11
DrClaude said:
How do you implement the constraints?

By setting every positiion in terms of those coordinates I mentioned before? I don't understand the question.
 
  • #12
I was asking about this
ebrattr said:
I'm trying to simulate a long chain of atoms where I restrict the bond (length between two consecutive atoms) and angle (between three consecutive atoms).
I took "restrict" to mean that you had constraints of the bond lengths and angles.

Do I understand correctly that you don't have an angular potential? Do you calculate the Lennard-Jones potential over all particle pairs?
 
  • #13
DrClaude said:
I was asking about this

I took "restrict" to mean that you had constraints of the bond lengths and angles.

Do I understand correctly that you don't have an angular potential? Do you calculate the Lennard-Jones potential over all particle pairs?

Yes. I do not have an angular potential. And I calculate Lennard Jones potential over all particle pairs, except those that have an angle or a bond.

In fact, in the most simple case, with M chains and 2 particles for every chain, I get the same thing.

In fact, can we only discuss this particular case ? To see what is going on here.
 
  • #14
Before we get into the particulars, I have a couple more questions.

Do you use a cutoff for the LJ potential?

Have you tired changing the time step?
 
  • #15
DrClaude said:
Before we get into the particulars, I have a couple more questions.

Do you use a cutoff for the LJ potential?

Have you tired changing the time step?

Yeah I am tired changin the time step. And I'm not using a cutoff for the LJ potential.
 
  • #16
What is the smallest possible system you can simulate and what are the results then?
 
  • #17
I'll try to have a look at all that tomorrow.
 
  • #18
ebrattr said:
Forces:
<br /> \mathbf{F}_{1}^{1}=f_{LJ}(\mathbf{r}_{1}^{2},\mathbf{r}_{2}^{2},\mathbf{r}_{1}^{1})/m<br />
What are F, fLJ and m here?
 
  • #19
A.T. said:
What are F, fLJ and m here?

F_i^j is the resultant force over the particle i in the j-chain. f_{LJ} is the corresponding magnitude.
 
  • #20
ebrattr said:
F_i^j is the resultant force over the particle i in the j-chain. f_{LJ} is the corresponding magnitude.
The magnitude of what? And what is m?
 
  • #21
A.T. said:
The magnitude of what? And what is m?

Mass. Magnitude of the force due to Lennard Jones potential.
 
  • #22
ebrattr said:
Mass. Magnitude of the force due to Lennard Jones potential.
So you divide force by mass and get force again?
 
  • #23
A.T. said:
So you divide force by mass and get force again?

Suppose I have mass of 1 kg. This not real important.
 
  • #24
Thanks !
I have found the problem !, when I compute the Total energy, in the internal cycle, it is not k \neq j, it is instead k &gt; j.
 
Back
Top