Particle Simulation in 2D: Estimating Cell Values

In summary: I don't think that's a feasible amount of computation.In summary, the problem is how to approximate the number and average velocity of molecules in the 4 adjacent cells at time t=1 without going through and calculating the forces on the molecules.
  • #1
mXSCNT
315
1
I would like to simulate a gas--very approximately--in 2 dimensions. The container will be divided into a grid, and instead of keeping track of each molecule of gas individually, I want to let each cell in the grid have a value for the number of particles in that cell, and another couple of values for the average velocity within the cell. This will allow me to simulate a larger number of particles, without slowing down the simulation.

The problem is then this: given that a cell has n molecules at time t=0, with average velocity v, how can one approximate the number and average velocity of molecules in the 4 adjacent cells at time t=1?

I guess that I need to look at the number and velocity of molecules passing across the boundary between an adjacent pair of cells over that time unit. I'm sure this problem has been solved before, I just don't know where.
 
Physics news on Phys.org
  • #2
What kind of numbers are we talking about?

I don't think you could approximate the number and average velocity of molecules in the 4 adjacent cells at time t=1 without going through and calculating the forces on the molecules. Unless you have a very large number of molecules to work with you are not going to see a statistically averaged result (and really, with large numbers of gas particles situated haphazardly in a cell, the average net velocity would be zero and though the average speed would not be zero). There are ways to simulate large number of unknowns, like using fast multipole method. You can estimate the interaction of particles far away from your particle of interest by combining their potentials into the summation of pole moments (monopole, dipole, quadrapole, etc).

Sometimes you can use monte carlo methods to achieve desired results as well. Monte carlo and similar methods (random walk, worm theory (I think that's the name), etc) generally iterate towards the final state, they aren't useful for observing the motion of the particles, but if you want to know the equilibrium state then these methods are a different way of achieving that.
 
  • #3
It doesn't have to be very accurate--this is for a cellular automaton (an ant colony--I want to give my ants velocities, instead of having them drift randomly). If the result looks qualitatively OK then it's good enough. Long-range effects aren't a concern, because velocities can be slow (1 cell/time step or less) and my ants don't have their own gravity :P

For scale: presently I'm simulating a 640x480 grid, there could be 0-255 particles per pixel, and I want to have a high frame rate (30+ FPS). I want to be economical in how much computation I do per pixel.
 
  • #4
Well I'm just not sure how you would do this with a gas. The molecules of a gas have a potential profile, Van der Waals potential. The interaction between particles is a summation of the forces from all possible pairs according to the potential used. You can't just stick 10 gas molecules in a box and ask how will they come out and with what velocities without doing the calculations. Only if you have a very very large number would you be able to estimate this from statistical averages but that wouldn't be the case here.

Take a look at Verlet integrators for an accurate and fast way to model molecular dynamics. If your "potential" has a sharp distance cutoff, then what you can do is ID each particle with the box they are in. You could keep a relationship for the neighboring boxes. For example, you have an array of box ids and each element points to a list of atoms that are in each box. Then you have a second list of box ids where each element points to a list of the neighboring boxes. Then you could just go through and only calculate the interactions from the atoms in the 9 boxes (1 self box, 8 neighbors).

Another way is to have a list for each atom of the atoms that are within a cutoff distance of itself. Then you calculate the resulting interactions at that time step and integrate. The next time step, you would go through and update the list. You could speed this up by only looking at the atoms from the previous time step and the atoms in the list of these atoms (need to check for atoms that may come into your cutoff distance). This could work as long as the velocities are kept low enough.
 
  • #5
I think that to keep a separate ID and compute separate behavior for each particle would be too slow. That would amount to tens of millions of particles (the grid is not sparse).
 
  • #6
I believe you will need to know two things. 1) Divergence in two dimensions and 2) Diffusivity (diffusion coefficient). With this information, you can calculate a diffusion current from one cell to adjacent cells.
 
  • #7
I'm going to try Lattice Boltzmann methods.
 

1. What is particle simulation in 2D and how does it work?

Particle simulation in 2D is a computational technique used to model the behavior and movement of particles in a two-dimensional space. It involves simulating the interactions between individual particles based on physical laws and equations. This is typically done using a computer program that calculates the position, velocity, and other properties of each particle over time.

2. How is particle simulation in 2D useful in estimating cell values?

Particle simulation in 2D can be used to estimate cell values by representing cells as particles and simulating their behavior. By tracking the movement and interactions of these particles, we can infer information about the underlying cell properties, such as cell density, growth rate, and diffusion coefficients.

3. What are some common applications of particle simulation in 2D?

Particle simulation in 2D has a wide range of applications, including in physics, chemistry, biology, and engineering. It is commonly used to model fluid dynamics, molecular dynamics, and biological processes such as cell migration and tissue growth. It is also used in computer graphics for animation and special effects.

4. What are the challenges in accurately estimating cell values using particle simulation in 2D?

One of the main challenges in accurately estimating cell values using particle simulation in 2D is choosing the appropriate physical laws and equations to represent the behavior of the particles. This requires a deep understanding of the system being simulated and may involve complex mathematical models. Additionally, the computational power and simulation time needed to accurately model large systems can also be a limiting factor.

5. How can particle simulation in 2D be validated and verified?

To validate and verify the results of particle simulation in 2D, researchers often compare the simulated data with experimental data from real-world observations or use mathematical techniques to analyze the accuracy and consistency of the simulation. Sensitivity analysis and parameter tuning can also be used to ensure that the simulated results are robust and reliable.

Similar threads

Replies
1
Views
510
  • High Energy, Nuclear, Particle Physics
Replies
2
Views
2K
  • High Energy, Nuclear, Particle Physics
Replies
6
Views
1K
Replies
2
Views
1K
  • Precalculus Mathematics Homework Help
Replies
4
Views
641
  • Differential Geometry
Replies
0
Views
626
  • Atomic and Condensed Matter
Replies
1
Views
921
Replies
7
Views
2K
  • Introductory Physics Homework Help
Replies
32
Views
1K
  • Classical Physics
Replies
2
Views
1K
Back
Top