500,000 particles. The Newton's gravity law. Real time simulation

  Рет қаралды 249,887

Alex Nize

Alex Nize

Күн бұрын

Пікірлер: 208
@AlexNize
@AlexNize 2 жыл бұрын
Hi! More than 10 years have passed since the creation of the simulation, to my surprise, the video is still popular. I will try to briefly answer the questions that might arise. First of all, I've also made N-Body simulation, you can find it on my GitHub: github.com/DrA1ex/JS_ParticleSystem/blob/main/README.md#n-body-simulation About Simulation in the video: The simulation simulation is simplified, it's not an N-Body (each particle interacts with each other). All calculations been made for one point, which is controlled by the mouse. In order to implement precise calculation of physics, it will be necessary to do optimizations (e.g. clustering of points), otherwise the performance will be so much lower (the complexity of calculations instead of O(N) will be O(N^2)), but even with optimizations it will not be possible to achieve a significant increase in performance, since for a precise gravity calculation will need to calculate the interaction of each point with each other. For 1 thousand points, this will be up to 1 million operations. In my simplified version, 1 million points requires 1 million operations. You can try GPU (best for Desktop) in-browser simulation via WebGL: - 500,000 particles: dra1ex.github.io/WebGL_ParticleSystem/?particle_count=500000 - 1,000,000 particles: dra1ex.github.io/WebGL_ParticleSystem/?particle_count=1000000 - 2,000,000 particles: dra1ex.github.io/WebGL_ParticleSystem/?particle_count=2000000 - 4,000,000 particles: dra1ex.github.io/WebGL_ParticleSystem/?particle_count=4000000 My MacBook Pro 16 can simulate ~2,500,000 in 60fps Or you can try CPU (best for mobile) simulation via HTML5 Canvas: - 100,000 particles: dra1ex.github.io/JS_ParticleSystem/?particle_count=300000 - 500,000 particles: dra1ex.github.io/JS_ParticleSystem/?particle_count=500000 - 1,00,000 particles: dra1ex.github.io/JS_ParticleSystem/?particle_count=1000000 My IPhone 11 Pro can simulate ~600,000 in 60 fps At this moment I've made 3 main versions: - DirectX 9 (you see it in the video) version uses CPU for physics calculation, uses AVX vectorization for speedup. Points are drawn through the billboard technique (for texture mapping). Maximum number of points in real-time: about 1 million. - DirectX 10 version uses GPU for physics calculation. It's rendered through geometry shaders (a polygon is created from a point). The calculations located in shader, and results of iteration are dumpred into memory via the StreamOut technique. Maximum number of points in real-time: about 10 million. - WebGL 2.0 version uses GPU for physics calculation. Used Transform Feedback technique for GPGPU physics calculation. Number of points in real-time: about 5 million (maybe more). So what about source? - DirectX 9 version: github.com/DrA1ex/ParticleSystem - DirectX 10 version: github.com/DrA1ex/D3D10_ParticleSystem - Windows Forms version: github.com/DrA1ex/GDI_ParticlesSystem - JavaScript version: github.com/DrA1ex/JS_ParticleSystem - WebGL version: github.com/DrA1ex/WebGL_ParticleSystem I used DirectX for rendering, but the implementation can be done on any engine: OpenGL, Vulkan, Metal, even HTML5. I choose DirectX because 10 years ago there were more manuals about DirectX on the Internet. I'm also thinking about implementing a gravity simulation in WebGL (JavaScript or WASM), but a precice N-Body simulation with calculation optimization and of course with source code. So tell me, do you interested in such a simulation?
@9551Dev
@9551Dev 2 жыл бұрын
wow playing with this is really mesmorizing. looks very nice !
@water_is_wet
@water_is_wet 2 жыл бұрын
great work
@JanPBtest
@JanPBtest 2 жыл бұрын
What happened at 0:48 ?
@buttafan4010
@buttafan4010 2 жыл бұрын
Like a description of star birth, star death by super nova, black hole and void formation.
@Hibbyhubby
@Hibbyhubby 2 жыл бұрын
yes for Precise N-Body Simulation!!! good work
@m.sierra5258
@m.sierra5258 6 жыл бұрын
The youtube compression algorithm REALLY doesn't like this
@roygalaasen
@roygalaasen 5 жыл бұрын
Oh man, not even in 720p could The compression algorithm handle, but it is not really weird. “Noise” like this require bandwidth to be rendered properly, and the compression algorithm is trying the hardest to keep the bandwidth down. Conflicting interests to say the least.
@m.sierra5258
@m.sierra5258 2 жыл бұрын
@@roygalaasen Upscaled to 4k could probably handle it :D
@vincentschumann937
@vincentschumann937 2 жыл бұрын
@@m.sierra5258 double/triple the bitrate at 720 and it would look fine
@jaredf6205
@jaredf6205 2 жыл бұрын
Need to upload it to Vimeo. They have much higher bitrates if your connection can handle it.
@vitorstreetboys
@vitorstreetboys 2 жыл бұрын
TRUE
@AlexNize
@AlexNize 12 жыл бұрын
I was changing the simulation parameters while recording video
@cicik57
@cicik57 4 жыл бұрын
you should not, instead you d better create many simulations with different params and compare but still amazing work, dud
@KK-pq6lu
@KK-pq6lu 3 жыл бұрын
Edge artifacts? Looks like the particles can wrap?
@soliderarmatang5664
@soliderarmatang5664 2 жыл бұрын
This is why I love KZbin, because of videos and people like this! Thanks for all the links!
@mikaelpaavola4781
@mikaelpaavola4781 2 жыл бұрын
This is so rad man. Cool of you to share the code!!
@yougeo
@yougeo 8 жыл бұрын
Nice bit code appears to be 2d forces only. Also would be nice to see without infinite walls bounce of particles.
@AvZNaV
@AvZNaV 10 жыл бұрын
What CPU are you running? Intel i81 @ 50GHz?
@samb7291
@samb7291 7 жыл бұрын
He is using his GPU. its magnitudes faster than that
@ShredST
@ShredST 6 жыл бұрын
@@samb7291 The description says it's using an AVX particle system, so presumably it's running on the CPU.
@ylliimeri
@ylliimeri 2 жыл бұрын
Nice looking simulation. But it doesn't seem to conserve angular momentum. At one point all particles were rotating in the same direction.
@monkeyman5513
@monkeyman5513 2 жыл бұрын
You still conserve angular momentum when you have backwards rotation from the total momentum if other particles have extra angular momentum in the opposite direction to cancel it out
@ylliimeri
@ylliimeri 2 жыл бұрын
@@monkeyman5513 well, true, but it doesn’t seem to be the case here. If you look at 3:10 all the particles are rotating counterclockwise, and unless a few of them rotate clockwise at very high speeds the angular momentum isn’t conserved. Btw, the initial angular momentum seems to be zero.
@srijanraghavula
@srijanraghavula 2 жыл бұрын
Beautiful simulation
@iinRez
@iinRez 2 жыл бұрын
*This is what the Universe is doing. To us it's billions of years, at this scale it's 6 minutes.* *We are currently in the expansion period of this undulating phenomenon.*
@shivas3003
@shivas3003 4 жыл бұрын
the nightmare for compression algorithm ^^
@vaughnalexander31
@vaughnalexander31 2 жыл бұрын
this video has been blessed by the algorithm
@AlexNize
@AlexNize 11 жыл бұрын
GPU version can. ~ 5m (2m pixels at FullHD) particles at 60 fps on GTX670
@grecinos2
@grecinos2 12 жыл бұрын
I downloaded the CUDA SDK and the samples. After installing it, I was able to play with some of the demos and they are great! I have VS 12 and it is having a tough time loading the demo programs. The CUDA docs say that the samples are compatible with VS 8 and 10. Needless to say, I was unsuccessful at compiling them. My goal is to be able to animate an n-body simulation in 2-d w/o collision detection. Say, 100000 little circles and perhaps a planetoid for kicks.
@nullbeyondo
@nullbeyondo 3 жыл бұрын
This is beautiful.. I just wish KZbin didn't hate this video :D
@caseyford3368
@caseyford3368 2 жыл бұрын
It depends on what particles you're using and many other variables.
@shinshia
@shinshia 2 жыл бұрын
After 10 years, algorithm finally bring me here
@marquizzo
@marquizzo 7 жыл бұрын
Thank you for sharing the source code!
@jyxtheberzerking4824
@jyxtheberzerking4824 2 жыл бұрын
new xbox screensaver just dropped, looks awesome. edit: OLD xbox screensaver rediscovered, looks awesome.
@marianotrebino6027
@marianotrebino6027 8 жыл бұрын
Good job man!!!! Its beautiful, the only physics is the newtons gravity law? Do you apply any external force? Can you explain it to me or share a resource? I want to do something similar. Thank you!!!
@Azakadune
@Azakadune 2 жыл бұрын
Well that’s the only force you’d need. I’m guessing there ain’t any collisions based on how it behaves?
@jsstt
@jsstt 2 жыл бұрын
"What are you watching son?" Chaos.
@Ryrzard
@Ryrzard 9 жыл бұрын
We have just witnessed a star's life from beggining to the end.
@Ryrzard
@Ryrzard 8 жыл бұрын
What do you mean?
@ImperativeGames
@ImperativeGames 8 жыл бұрын
I would say it represents Universe, with Big Bang and stuff like that
@Ryrzard
@Ryrzard 8 жыл бұрын
Where was this big bang? I don't really see it here.
@ImperativeGames
@ImperativeGames 8 жыл бұрын
TheFarciarz777 When it all goes into one point, then everything explodes and new Universe created.
@Ryrzard
@Ryrzard 8 жыл бұрын
Well, you can't really simulate a Big Bang in an euclidian space. Besides, plenty of stuff in the universe goes into a very close space and explodes after some time.
@nazardidkovskyi
@nazardidkovskyi 8 жыл бұрын
Hi, again) Do you use 3D space in this program? And do you use such parameters as mass of particles? Do this program compute force for all particles?(I mean the force with which each particle interacts with all 499 999 other) Because I can't get such performance in my program, though I'm using multithreading.
@AlexNize
@AlexNize 8 жыл бұрын
+Nazar Didkovskyy, привет. Это не N-Body симуляция, каждая частица взаимодействует только с одной. К тому же z-координата фиксирована и не рассчитывается.
@NimerionTech
@NimerionTech 8 жыл бұрын
Hello Nazar. I just saw this video and your comment, and once encountered a similar problem, but with Flocking simulation. What I've learned was that you don't really need to go over all the other entities in your world to get them collide successfully. You can simply either make a grid model on which you can detect if the neighbor positions (sells) are empty, or not for every object. OR you can do a QuadTree which will increase the performance drastically. I've never tried a QuadTree, tho.
@patrickthepure
@patrickthepure 6 жыл бұрын
See multilevel fast multipole method. It reduces the complexity from N^2 to somewhat like NlogN in these kind of situations.
@mastershooter64
@mastershooter64 2 жыл бұрын
@@patrickthepure woahhh bro really???? that's insane!!
@c.howard9413
@c.howard9413 2 жыл бұрын
Just stumbled upon this video and it’s pretty cool. I understand the GPU aspect of improving runtimes but what other approximations did you make? Did you use the fast multipole method to speed up the approximation?
@cmilkau
@cmilkau 2 жыл бұрын
0:48 What's going on here? Looks weird, like a sudden change in mean impulse.
@StanislavMarchevsky
@StanislavMarchevsky 12 жыл бұрын
Это просто космос!
@timoakeley6085
@timoakeley6085 9 жыл бұрын
truly amazing
@kazimierzmarkiel5400
@kazimierzmarkiel5400 2 жыл бұрын
What this animation is modelling? Gravitation itself causes the mass focusing in the the gravity center. What is causing the rotation of mass, repeated many times asymetric explosions, the changes of the center of gravity in the space ? Stary
@anchorcult
@anchorcult 7 жыл бұрын
BEAUTIFUL AN AMAZING MOMENT! GLAD I COULD BE A PART OF IT! OOIIOO
@emanueol
@emanueol 2 жыл бұрын
great resources :) simple question, imagining you just have 3 particles.. does calculation use same location/vel/accl of each particle on beginning of each frame to calc (using newton f=m1*m2/D^2) or something more exotic ?
@aadiduggal1860
@aadiduggal1860 2 жыл бұрын
you can just use Newton's law as that's complex enough for a numerical solver. For the case of 3 particles, each particle would have a force vector in 2 directions. From that, you numerically integrate the summed forces which would result in position. For say, particle 1, we can simulate its acceleration (ẍ) as a function of its position to the other 2 particles (x1, x2, x3) as per Newton's law, f_i = m_i * ẍ_i = m_i * m_j / x_i ^ 2 ( where f_i is the force acted on the ith particle to the jth particle). The math would be something like this: f1 = m1 * ẍ1 = m1 * m2 / x2^2 f2 = m1 * ẍ1 = m1 * m3/ x3^2 (f1 + f2)/m1 = ẍ1 = m2/x2^2 + m3/x3^2 From this, you can probably tell a pattern that the other 2 particles would follow a similar procedure. In total we would have (assuming G = 1) : ẍ1 = m2/x2^2 + m3/x3^2 ẍ2 = m1/x1^2 + m3/x3^2 ẍ3 = m1/x1^2 + m2/x2^2 This is a fully defined system of differential equations which can now be numerically integrated with respect to time by a computer, giving us the positions of x1, x2, x3 which can be plotted with time and animated. You would, of course need the initial conditions for x and ẋ. Extending this to 500,000 particles would result in a system of 500,000 differential equations, which can really only be solved if you do some further optimization (and probably will need a supercomputer) which I'm not too familiar with. UPDATE: So it seems that the way this video works is that the particles are following the user's mouse. That's the same thing as here, with the difference being that your mouse would define the initial position coordinates of a very, very big mass. This video is NOT an N-body, so each particle is not being attracted to the other. Each particle is very small (pretty much 0 mass) and ONLY being attracted to the mouse. This greatly simplifies the calculations. Still, it's kinda cool to see everything coalesce into a sphere given enough time (which is why planets are round).
@emanueol
@emanueol 2 жыл бұрын
@@aadiduggal1860 thanks for confirming :) I think you got typo on first x1 equation: I think instead of: ẍ1 = m2/x2^2 + m1/x1^2 should be ? ẍ1 = m2/x2^2 + m3/x3^2
@aadiduggal1860
@aadiduggal1860 2 жыл бұрын
@@emanueol yep, thanks for catching that.
@Broxzier
@Broxzier 12 жыл бұрын
Nicely done!
@riki_XD
@riki_XD 2 жыл бұрын
A 10 years old comment !
@Broxzier
@Broxzier 2 жыл бұрын
@@riki_XD A one-day-old reply!
@NAANsoft
@NAANsoft 2 жыл бұрын
Do you include the time propagation of gravitaion - i.e. that gravity is propagating with the speed of light, not with infinite speed?
@Khepramancer
@Khepramancer 5 жыл бұрын
0:48 Was that spontaneous?
@matthewsupra
@matthewsupra 2 жыл бұрын
Mesmerising
@Xonatron
@Xonatron 11 жыл бұрын
Are they attracting each other, or just the center mass? I'm guessing the latter.
@professionalgoob
@professionalgoob 2 жыл бұрын
This is amazing!
@mitchellkeenan4356
@mitchellkeenan4356 10 жыл бұрын
Best film i've ever seen
@szilardorosz371
@szilardorosz371 4 жыл бұрын
do the particles collide or just gravitate?
@christopherrogers532
@christopherrogers532 2 жыл бұрын
lol nothing like seeing a random video like this bob to the surface of youtube and getting sucked in. :)
@ShredST
@ShredST 4 жыл бұрын
Was inspired to write my own version after watching this video.
@SolarMusicZ
@SolarMusicZ 2 жыл бұрын
How are they all together and then all of a sudden shoot apart again?
@korek3787
@korek3787 7 жыл бұрын
Very stable formation :D
@NeoVamp
@NeoVamp 10 жыл бұрын
Ran it at 15 million, holy shit NICE CODE!
@buttafan4010
@buttafan4010 2 жыл бұрын
Like a description of star birth, star death by super nova, black hole and void formation.
@jdahllquist6823
@jdahllquist6823 10 жыл бұрын
Fascinating. I kept waiting for it to form a galaxy. I wonder why it can collapse to a near sphere then burst out again? Simple rules can lead to complex behavior.
@עמריטפלא
@עמריטפלא 9 жыл бұрын
J Dahllquist It bursts out because of momentum reservation: One of the partical gets so close to the overall origin of gravitation, that it gets flung at a huge velocity, resulting in the movement of the other particals.
@MaxAltair
@MaxAltair 7 жыл бұрын
J Dahllquist Looks like particles doesn't have collision.
@Scelenaarwen
@Scelenaarwen 6 жыл бұрын
it doesn't. This is from a website where when you hold left click you attract the particels when you hold right click you repell them. The bursting out is just the guy pressing the rght mouse button. You won't get that type of behaviour just out of a purelly attractional force. Only if a particle gets acceleated really fast to the center of mass and gets sling-shot outwards, but not a bulk of the cloud bursting.
@AltumNovo
@AltumNovo 2 жыл бұрын
@@Scelenaarwen Not true. Every head of a supernova?
@ShredST
@ShredST 6 жыл бұрын
I'm reading the source code and I just got to the AVX part. Man, it's going to be a long night. Edit: fuck it, I checking out an older commit.
@AlexNize
@AlexNize 12 жыл бұрын
It's CPU only. GPU version can simulate 5 million particles in real time.
@grecinos2
@grecinos2 12 жыл бұрын
I've been searching on and off for some years for someone to publish a simple gravity simulation that uses DirectX. I think your's is the best I've found yet! I've been tinkering around with your code. I was trying to see if I can convert it into a particle simulation whereby each particle is attracted to all others. I've yet to figure it out. Can you please give me some insight on how I might go about doing this?
@JoeCenatiempo
@JoeCenatiempo 2 жыл бұрын
Look up multi body physics and the three body problem perhaps
@dejanpopovic7903
@dejanpopovic7903 8 жыл бұрын
Why do all the bodies coalesce towards the end of the simulation? I thought they would continue their respective eccentric behavior?
@ItsNotAllRainbows_and_Unicorns
@ItsNotAllRainbows_and_Unicorns 7 жыл бұрын
There might be a dissipative term involved
@marceliwanicki2843
@marceliwanicki2843 6 жыл бұрын
From the comments i assume that the program involves some user input so the guy is probably changing stuff
@cicik57
@cicik57 4 жыл бұрын
is it attraction to center or fair calculation for every pair of particles?
@Astromath
@Astromath 2 жыл бұрын
Attraction to a point (the mouse)
@cicik57
@cicik57 2 жыл бұрын
@@Astromath not between particles?
@Mahishasur
@Mahishasur 2 жыл бұрын
Music?
@nenotu8400
@nenotu8400 4 жыл бұрын
Did you used Blender or something like After Effects to make this
@bitterlemonboy
@bitterlemonboy 2 жыл бұрын
no he used opengl
@TH0M2610
@TH0M2610 8 жыл бұрын
What are the colors corresponding to ?
@matthewbarnes7029
@matthewbarnes7029 9 жыл бұрын
...such beauty...
@potatocrusher1922
@potatocrusher1922 2 жыл бұрын
Why did it bounce back ?🤔
@arc8216
@arc8216 2 жыл бұрын
Can you see any Lagrange points?
@nothsim
@nothsim 2 жыл бұрын
Closed loop universe?
@Reuleaux99
@Reuleaux99 2 жыл бұрын
Cool simulation! Why did this happen?? 5:19
@grecinos2
@grecinos2 12 жыл бұрын
I sent a reply earlier this week. Not sure what happened. Anyways, lol, yes, I’ve been searching for some years, but only every 3 to 4 months. In particular, I’m searching for an n-body simulation that takes advantage of today’s GPU’s. I would like to find one that I can modify and recompile. I’ve yet to find one, even the original source from this video. I tried your recommendations. I used the compiler of their choice, but no go. I’m real frustrated.
@nielsdaemen
@nielsdaemen 5 жыл бұрын
KZbin compression raped the quality!
@evanwonisch788
@evanwonisch788 3 жыл бұрын
RK4? Or Euler? Or something else?
@ishaanlohani
@ishaanlohani 2 жыл бұрын
"And then there was Light" -God
@ger10izq92
@ger10izq92 2 жыл бұрын
wonderful
@megadalton3006
@megadalton3006 2 жыл бұрын
At 2:02, did we just witness a virtual big bang?
@WiocorEnergy
@WiocorEnergy 12 жыл бұрын
Great simulation ;-)
@Markus9705
@Markus9705 9 жыл бұрын
Wonderful.
@gountzas
@gountzas 2 жыл бұрын
*"when the center of gravity is literally the center of your screen"*
@eduardositedotcom
@eduardositedotcom 10 жыл бұрын
Wonderful!!!
@Razorcarl
@Razorcarl 2 жыл бұрын
So cool
@solcarzemog5232
@solcarzemog5232 10 жыл бұрын
Are particles elastic and bounce agaist each other?
@FreekHoekstra
@FreekHoekstra 10 жыл бұрын
there seems to be no collision, so they pass through the centre of gravity and their inertia caries them forward. untill they slow down due to the gravity again and go towards the centre
@ps4games164
@ps4games164 2 жыл бұрын
law?
@karlsoriso2304
@karlsoriso2304 2 жыл бұрын
pov: isagi is about to do somethin lit
@NTC
@NTC 3 жыл бұрын
holy... amazing!!! and inspiring
@LordBackuro
@LordBackuro 2 жыл бұрын
Kinda looks like what i imagine the Universe to be like
@d.........
@d......... 2 жыл бұрын
War between gravity and entropy.
@grecinos2
@grecinos2 11 жыл бұрын
I'm not sure what the deal is, but my replies keep getting deleted. Anyways... I installed the CUDA SDK, and was able to run the demos. They are great, and close to what I want to accomplish. My goal is to make a 2d Nbody sim with 50-100k particles. Pretty much, just for the eye-candy. I have VS 12, and the CUDA samples were made in VS 8 and 10. Needless to say, I was unable to compile the samples (yet). I think I need to set the Path, referencing the CUDA's libraries, includes, etc.
@prostytroll
@prostytroll 2 жыл бұрын
I don't see any consistent circular motion...
@bsgsujgd3406
@bsgsujgd3406 2 жыл бұрын
this is great to watch once youve studied astrophysics
@Knowledge.o.Everything
@Knowledge.o.Everything 2 жыл бұрын
Name of simulator or this software
@rejeenaldflores5039
@rejeenaldflores5039 7 жыл бұрын
how did you do that?
@1.4142
@1.4142 2 жыл бұрын
It went supernova
@sleeppy66
@sleeppy66 9 жыл бұрын
this is from an app for the apple ipad ( the original)
@MisterClassified
@MisterClassified 10 жыл бұрын
Is that a supernovae at 5:20.
@mm-ov2gg
@mm-ov2gg 2 жыл бұрын
Just need some otherworldly music and it's perfect
@SimSoupYT
@SimSoupYT 2 жыл бұрын
computers this good existed in 2012?
@YoungDegenerate
@YoungDegenerate 2 жыл бұрын
Darkness cannot exist without light and light Cannot exist without darkness.
@h3nnn4n
@h3nnn4n 12 жыл бұрын
Real time? How? gpgpu?
@StefanoBusnelliGuru
@StefanoBusnelliGuru 2 жыл бұрын
Gravitation on a toroidal manifold :D
@lol532-t2g
@lol532-t2g 8 жыл бұрын
Now we can create our own virtual universes using OpenGL, can't we?
@karolakkolo123
@karolakkolo123 7 жыл бұрын
No, we would have to know all the physics rules and equations, but for now we don't know very much about our universe. Including dark energy, antimatter, and other elementary particles that we yet have to discover
@bitterlemonboy
@bitterlemonboy 2 жыл бұрын
Have fun trying to gather the computing resources for that
@swarog3
@swarog3 3 жыл бұрын
I am just trying to implement the Einstein's gravity. Later I dream to make a little atom. At the end I want to create a world with animals having artificial intelligence brains.
@SeanSkyhawk
@SeanSkyhawk 2 жыл бұрын
This is basically gravity on a toroidal plane
@darchojandreoski2451
@darchojandreoski2451 2 жыл бұрын
Der Weltraum Raumschiff sagte 3 Milliarden Pixel orteten wir Jahr 1988 /1989 auf Planet Erde
@zloykushnir
@zloykushnir 11 жыл бұрын
Thats fucking awesome!
@DigitalAlligator
@DigitalAlligator 3 жыл бұрын
2d or 3d
@xirustam
@xirustam 3 жыл бұрын
Does it really work in real time?... 500.000 x 500.000 = 250.000.000.000 calculations per frame.
@C0braGameplays
@C0braGameplays 5 жыл бұрын
It looks like there is black hole in there
@sirahmad
@sirahmad 2 жыл бұрын
the animation is beautiful but i still didn't understand how its relate to newton law of gravity
@openleft4214
@openleft4214 2 жыл бұрын
Got really confuse when I thought this was a GR sim.
@zackbarkley7593
@zackbarkley7593 2 жыл бұрын
Do the same simulation using MOND theory.
@JohnDoe_1237
@JohnDoe_1237 9 жыл бұрын
damn, you need some really cool music for this video!
Simulating Particle Life
18:18
Digital Genius
Рет қаралды 290 М.
Gravity Simulation
5:24
JOrbits
Рет қаралды 18 М.
When Cucumbers Meet PVC Pipe The Results Are Wild! 🤭
00:44
Crafty Buddy
Рет қаралды 63 МЛН
ТВОИ РОДИТЕЛИ И ЧЕЛОВЕК ПАУК 😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 7 МЛН
How Many Balloons To Make A Store Fly?
00:22
MrBeast
Рет қаралды 172 МЛН
«Осень». Самая большая загадка Windows XP
14:36
Девять десятых
Рет қаралды 1,4 МЛН
I Finally Discovered Perpetual Motion
4:16
The Action Lab
Рет қаралды 4,5 МЛН
Journey to the edge of the Observable Universe
10:03
Spacetime
Рет қаралды 6 МЛН
Realtime 2D Gravity Simulation
12:31
Brendan Galea
Рет қаралды 417 М.
Construction Materials: 10 Earthquakes Simulation
5:17
EarthquakeSim
Рет қаралды 4,8 МЛН
Are there other Chaotic Attractors?
6:54
Orfeas Liossatos
Рет қаралды 476 М.
Animation vs. Physics
16:08
Alan Becker
Рет қаралды 31 МЛН
I never understood why you can't go faster than light - until now!
16:40
FloatHeadPhysics
Рет қаралды 4,2 МЛН
100 000 Planets Gravity Simulation
3:55
Spleesh
Рет қаралды 14 М.
When Cucumbers Meet PVC Pipe The Results Are Wild! 🤭
00:44
Crafty Buddy
Рет қаралды 63 МЛН