What Should I learn to do N-body simulations?

  • Thread starter Arman777
  • Start date
  • Tags
    Simulations
In summary, a student should learn differential equations, classical mechanics, computational physics, and programming languages to do N-body simulations.
  • #1
Arman777
Insights Author
Gold Member
2,168
193
What Should I learn in terms of concepts to do N-body simulations ? Is there any books that I can follow in this process ?

Thanks
 
Technology news on Phys.org
  • #2
Differential equations, Classical Mechanics at the Goldstein undergrad level, Computational Physics and programming in some language.

More specifically, the Open Source Physics library and Java is one way. They have a three body example in java that shows the various known solutions to the problem. They have a book that teaches an intro to computational physics.

Another is Matlab and its collection of libraries and toolboxes. Youll have to search for a book or course that discusses the tecniques to use. Mathworks has many resources and notes on its website to get you going.

Python and Anaconda is yet another route.

There is a lot to learn here. While you could bash your way through some examples you’ll always have a doubt that your sim is correct if you don’t understand the math and physics.

I learned via the java route through a grad course i took based on the OSP book and code. I already knew java quite well so that part was easy and the prof guided us through the hard stuff. The funny part was he didn't fully understand java and the new version of the book switched from using basic to using java.
 
  • Like
Likes BvU, QuantumQuest, Arman777 and 1 other person
  • #3
Hmm so where should I start ?
 
  • #4
Take an assessment with what you know.

I'd start with the math:
- Algebra
- Geometry
- Algebra 2 ie trig in particular, series, sequences for Calculus ...
- Calculus 1,2,3
- Differential Eqns
- Linear AlgebraAt this point, you should have a good basis for doing any classical mechanics, E&M Theory and Quantum Mechanics at the undergrad level using all the math you've studied so far.

Then the physics:
- Classical Mechanics

And lastly the programming:
- either Java+OSP or Matlab or Python

Finally, you need to understand the specifics of encoding a set of differential equations to solve for numerically in the environment chosen.

https://www.wired.com/2016/06/way-solve-three-body-problem/
Personally, I'd choose learning Java and using OSP because it's designed for doing computational physics in an academic environment. However, there's a lot to be said for using Matlab too.

https://www.compadre.org/osp/items/detail.cfm?ID=9777
https://stackoverflow.com/questions/5293535/programming-a-3-body-problem-using-matlab
Python I'm not as sure of although its heavily used in Data Science and Machine Learning work, but using Numpy and related libraries you could construct some good simulations and Python is easier to learn than Java.

https://github.com/htx1219/Python/blob/master/222/Three Body Problem.py
Miscellaneous resources:

https://www.newscientist.com/articl...dy-problem-has-over-a-thousand-new-solutions/
https://javalab.org/en/three_body_problem_en/
 
  • #5
Arman777 said:
Hmm so where should I start ?
With a 2-body simulation...? :smile:

How far along are you in your math learning? Have you had calculus yet?

What programming languages are you most familiar with?
 
  • Like
Likes DrStupid and QuantumQuest
  • #6
I am a physics undergrad student and this is my last year. I took CM, Diff Eqn. , linear algebra and many more courses.
berkeman said:
With a 2-body simulation...? :smile:
Yes that also came to my mind today. I ll start from there.
berkeman said:
What programming languages are you most familiar with?
python
jedishrfu said:
Finally, you need to understand the specifics of encoding a set of differential equations to solve for numerically in the environment chosen.
Once I did a trajectory for an electron under the lorentz force. I guess this would be more complicated but I ll try.

I can't learn java currently so I ll go with python.
 
  • Like
Likes jedishrfu and berkeman
  • #7
'N-body simulator' is quite generic. You can do it like this: https://compphys.go.ro/Newtonian-gravity/ for the cases when you have forces acting on large distances, or like this: https://compphys.go.ro/event-driven-molecular-dynamics/ when you have only forces that act a very short distance.

Then the optimization issues appear: using Barnes-Hut, neighbors lists and so on... some things I mentioned on the blog. Unfortunately the associated projects are in C++, not python.
 
  • Like
Likes berkeman

Related to What Should I learn to do N-body simulations?

1. What is the purpose of N-body simulations?

N-body simulations are used to model the dynamics of systems consisting of a large number of interacting particles, such as stars, galaxies, or molecules. They allow scientists to study the evolution and behavior of these complex systems over time.

2. What skills are required to perform N-body simulations?

To perform N-body simulations, one needs a strong foundation in mathematics and physics, particularly in mechanics and computational methods. Knowledge of programming languages and simulation software is also necessary.

3. How do you choose the appropriate simulation method for a specific system?

The choice of simulation method depends on the specific system being studied and the desired level of accuracy and computational efficiency. Some common simulation methods include direct summation, Barnes-Hut tree algorithm, and Fast Multipole Method.

4. What challenges are associated with N-body simulations?

N-body simulations can be computationally intensive and require a significant amount of time and resources. Additionally, accurately modeling the initial conditions and accounting for all relevant forces and interactions can be challenging.

5. What are some applications of N-body simulations?

N-body simulations have a wide range of applications in astrophysics, cosmology, molecular dynamics, and other fields of physics. They are used to study the structure and formation of galaxies, the dynamics of star clusters, and the behavior of molecules in chemical reactions, among other things.

Similar threads

  • Programming and Computer Science
Replies
11
Views
299
  • Programming and Computer Science
Replies
4
Views
2K
  • Programming and Computer Science
Replies
19
Views
3K
  • Programming and Computer Science
Replies
1
Views
1K
  • Programming and Computer Science
Replies
6
Views
2K
  • Programming and Computer Science
Replies
3
Views
1K
  • Programming and Computer Science
Replies
1
Views
1K
  • Programming and Computer Science
Replies
23
Views
2K
  • Programming and Computer Science
Replies
4
Views
1K
  • Programming and Computer Science
Replies
15
Views
2K
Back
Top