Coding Adventure: Simulating Fluids

  Переглядів 1,564,527

Sebastian Lague

Sebastian Lague

День тому

Let's try to convince a bunch of particles to behave (at least somewhat) like water.
Written in C# and HLSL, and running inside the Unity engine.
Source code:
github.com/SebLague/Fluid-Sim
If you'd like to support me in creating more videos like this, you can do so here:
/ sebastianlague
ko-fi.com/sebastianlague
Resources:
matthias-research.github.io/p...
www.ligum.umontreal.ca/Clavet-...
sph-tutorial.physics-simulati...
web.archive.org/web/201407250...
Music:
github.com/SebLague/Misc-Proj...
Chapters:
0:00 Intro
0:27 Gravity and Collisions
2:31 Smoothed Particles
3:55 Calculating Density
7:53 The Interpolation Equation
11:58 Gradient Calculations
15:38 The Pressure Force
19:19 Trying to Make it Work...
22:05 Optimizing Particle Lookups
26:31 Spatial Grid Code
27:48 Position Predictions
30:32 Mouse Force
33:22 Artificial Viscosity
36:46 Pressure Problems
39:51 Bugs
41:06 Parallel Sorting
43:22 Some Tests and Experiments
44:47 The Third Dimension
47:23 Outro

КОМЕНТАРІ: 2 800
@SebastianLague
@SebastianLague 6 місяців тому
Hi everyone, I hope you enjoy the video! This is a topic I’ve been wanting to tackle for ages, but have always found a bit intimidating to get started with. So I’m happy to have finally dived in! Let me know if you have any suggestions for improving it, or ideas for future projects. In other news, I’ve recently created a Ko-Fi page where it’s possible to support my work with a one-off contribution (as opposed to the monthly pledges on Patreon). No pressure of course, but if that’s something you’d like and are able to do, you can find the page here ko-fi.com/sebastianlague
@SebastianLague
@SebastianLague 6 місяців тому
​@@sfsasteroid1 Yes, I definitely want to get back to that project. Hopefully soon!
@ivanalantiev2397
@ivanalantiev2397 6 місяців тому
I liked the video overall, but the first half was a slog to watch through. I like how acerolla approaches writing a script for that, maybe you could do something similar if there's lots of math involved.
@xu_fengxuan
@xu_fengxuan 6 місяців тому
Could you also create more videos about shaders and how beautiful and realistic they make the “world”?
@dominicmcg2368
@dominicmcg2368 6 місяців тому
I wrote a reply before but I think it was removed because I included links. Anyway, I highly suggest you look into a fluid simulation method called FLIP (Fluid Implicit Particle), it's also primarily a Lagrangian or particle based method, like SPH, but it achieves improved conservation of quantities like density, and better divergence, by incorporating aspects of finite volume simulations, so it should address many of the issues you've noticed so far with pure SPH being more gas like. Considering you already have the particle code working, building an implementation of FLIP should be fairly easy as most of the changes it requires are calculating some quantities like velocity on a fixed grid rather than at particle locations. FLIP also happens to be one of the default fluid simulation methods used by commercial software such as Houdini, and is available as a very popular Blender addon too, so there's boatloads of work that's gone into optimising, much of which is available for free online. The paper I linked before was titled Flip: A low-dissipation, particle-in-cell method for fluid flow, if you want to learn more.
@stonefreak5763
@stonefreak5763 6 місяців тому
I'd love for you to make a truly incompressable simulation, since this might also allow you to simulate stuff like sand or wheat
@clavetsi
@clavetsi 6 місяців тому
The near-density trick was something I came up with for my master's thesis 18 years ago, and nobody mentioned that they were using it before today. It took a long time, but it was worth it in the end because I got my name in one of best videos on youtube. Thank you Sebastian.
@SebastianLague
@SebastianLague 6 місяців тому
Thank you for the super-helpful paper, and I’m so happy you liked the video!
@Ben-rz9cf
@Ben-rz9cf 6 місяців тому
I'd say that deserves at least a like
@Dr.Kay_R
@Dr.Kay_R 6 місяців тому
Damn. Masters of tech! Thanks for everything!
@JavSusLar
@JavSusLar 6 місяців тому
Maybe the same behaviour can be obtained by including a local minimum to the "interaction" function, so that particles tend to keep a certain distance to their neighbours, not more not less. The constant density would be an emergent property.
@JavSusLar
@JavSusLar 6 місяців тому
A local minimum in the interaction function would also provide a "boiling point": if the energy of the particles is higher than the well depth, the particules break their "bond" and fly with more freedom.
@fxzn
@fxzn 6 місяців тому
The worst part about Sebastian Lague videos is that they end.
@VivaanTheCraft3r
@VivaanTheCraft3r 6 місяців тому
Absolutely HATE when that happens :(
@stickguy9109
@stickguy9109 6 місяців тому
Ong😭
@Vextrove
@Vextrove 6 місяців тому
The best part is that my memory isn't infallible, which means I can rewatch old videos
@lucbloom
@lucbloom 6 місяців тому
Wisdom to put on a bathroom tile and hang in your kitchen.
@TheMagicat
@TheMagicat 6 місяців тому
He is my favorite tumblr scrimblo
@jucom756
@jucom756 6 місяців тому
I love how one of the bugs you try to fix is just emergent surface tension.
@MasterofTheDucks
@MasterofTheDucks 6 місяців тому
That's what even I thought
@KipIngram
@KipIngram 6 місяців тому
Yes, I thought the same. That's likely exactly what it's supposed to do. There's no pressure from the other side, and that affects the distribution of particles.
@Rothron
@Rothron 6 місяців тому
It is sort of like surface tension but not really. Because of the function he picked, his water is compressible. And it shouldn't be.
@Owen_loves_Butters
@Owen_loves_Butters 6 місяців тому
@@RothronThat can be mostly fixed by turning up the pressure multiplier.
@rileywheb4444
@rileywheb4444 6 місяців тому
@@Rothron Only weakly compressible, right?
@michellinzer4881
@michellinzer4881 6 місяців тому
He is the Bob Ross of Coding. He is like: „Lets put a happy little rekursive non-linear differencial equation of sixt order here.“ I love it!
@ragingram2
@ragingram2 6 місяців тому
absolutely spot on!
@0.Andi.0
@0.Andi.0 4 місяці тому
"This bug is a happy accident if you look at it this way"
@batimius
@batimius 6 місяців тому
Sebastian Lague never disappoints. I am astonished by how much a single man can accomplish, and at the same time, how much he can teach others. The 48 minutes that this video lasted felt more like 10 because of how enjoyable and informative it was. I can't wait to see how the finished product will look like. Amazing work!
@murmeldin
@murmeldin 6 місяців тому
My problem is that these videos are often a bit too complicated to wrap my mind around, and therefore I have to watch them twice to understand. But that's probably also because I'm not a native speaker. Despite that, this channel is one of the best in explaining.
@hypertizer
@hypertizer 6 місяців тому
​@@murmeldinAlthough I really like his videos, I do not believe that he codes these projects alone.
@TheStolenBattenberg
@TheStolenBattenberg 6 місяців тому
@@hypertizerWhy? Most of the time his projects are based on well documented techniques. He consistently mentions using papers and reference material - that’s really all you need to implement this stuff.
@Rick104547
@Rick104547 6 місяців тому
Its very much possible to do all this coding alone. Just takes patience, skill and persistence. Remember the research was already done in the papers. Not saying it's easy but any decent software engineer should be able to figure out a implementation.
@nullzishere
@nullzishere 6 місяців тому
@@hypertizer if someones gonna take like months to upload videos I'm sure he's doing it by his own
@OddlySpecificGaming
@OddlySpecificGaming 6 місяців тому
The real insane part of these videos isn’t the coding is the visualisation of the coding at the same time to make it so that non coders can understand clearly, I love these videos
@MayaPapaya497
@MayaPapaya497 6 місяців тому
Even people who do code benefit from the beautiful visualizations! It's just an all around great thing to include Kind of like how accessibility features benefit everyone I like this channel a lot 😊
@adrianstarfinger5721
@adrianstarfinger5721 6 місяців тому
It's insane how much time he invests for visually explaining clips that end up being 10 seconds, while they can easily sometimes take hours to create
@MightyBOBcnc
@MightyBOBcnc 6 місяців тому
@@MayaPapaya497 Honestly, yeah I wish programming tools had those sorts of visualizations right out of the box. It would make debugging so much easer and less mentally abstract if you could see what was happening.
@ryanmccampbell7
@ryanmccampbell7 5 місяців тому
Honestly making everything as interactive and visualizable as he does is probably as much or more work then just getting the actual equations to work. Though I guess Unity helps a lot with that.
@muradm7748
@muradm7748 3 місяці тому
unity ❤
@lordesfairgenug
@lordesfairgenug 6 місяців тому
Good throwback to my old times as a molecular dynamics scientist :) Heating up of your simulation: This is normal and happens for different reasons, the biggest contribution is certainly that your forces are cut off and discretized. There is a difference for incoming and outgoing particles (whenever particles bounce, they heat up a little bit, because not everything is perfectly symmetrical over time). The only way to solve this with 100% correct physics is to go via action integral solutions, which is absolutely not feasible for a simulation of that size, that is why even physicists don't use that for molecular dynamics (MD). The easy and cheap way here to go is to introduce a thermostat, which for example every 100 or 10k frames readjusts the temperature, by shifting the speed of each particle a bit more in the direction of the desired speed. In your case you don't need to care about real temperature, just pick an average speed that you are aiming for, which means you still set the temperature but don't know the value in terms of K or °C. Incompressibility: Be happy you don't have it. You don't want it. It is not a good thing for discrete particle simulations. This is something for totally different methods like finite volume/element simulations, density functional and such things. If you have discrete particles exchanging forces, don't try incompressibility. It is unphysical and it only works in more abstract and less close to real physics. Even in these fields it ends up with singularities and problems everywhere, ask people who try to model turbulence ;-) Behavior at the boundaries: This is no surprise. You have this behavior because the particles at the edges do not have any force pulling on them from the other side. They only have forces pulling on them from the inside and along the boundary but not from outside. This increases their local density there. In MD simulations there are several solutions for this. Often simulations have periodic boundary conditions, then this problem is mostly gone. In your case this is not a solution. You can have a background field that is outside of the box, which is calculated from what is happening inside the box, fast fourier transform is used to calculate that cheaply, this basically means that you copy your box abstractly into each direction, so the particles feel long distance forces from all sides. This is really important for MD simulation to get proper bulk behavior of materials, but in your case this is absolutely not necessary as you do not care if your fluid has a realistic volume viscosity, density, temperature / pressure relation etc. pp. You don't care about physical correctness, so you don't need to go that costly route (especially coding it from scratch). Another solution is to not have "neutral" walls. Your walls can have forces too, which results in the walls being sticky or repulsive, changing the behavior. The easiest solution would be to put ghost particles on the walls, which just emit the same forces as your other particles, but do not receive anything and do not move ever. This is often used in simulation of pores and confined materials. The ghost particles will certainly imprint a structure on the wall (and pull real particles into that structure), which you might not desire. In that case a homogenous wall force might be more what you are looking for, that is basically the same thing, but smooth, so that particles do not stick to certain points on the wall, but just still glide, without higher local density.
@user-rb7vs5bx6b
@user-rb7vs5bx6b 6 місяців тому
This is probably the only channel where I can watch an almost hour long video and not get bored for a tiny second
@MrSquares
@MrSquares 6 місяців тому
fr bro
@playbird9009
@playbird9009 5 місяців тому
While not understanding half of the stuff happening lol
@daffa_fm4583
@daffa_fm4583 4 місяці тому
i didnt even realize it was almost an hour long
@Basuliic
@Basuliic 4 місяці тому
the visualization here is better than marvel sgi
@MrSquares
@MrSquares 4 місяці тому
You do realize that all of NY city was cgi. so I wouldn't go that far, but his visualizations are very impressive none the less.@@Basuliic
@Danidev
@Danidev 6 місяців тому
Super cool video! We need part 2 👁👄👁
@nkkls
@nkkls 6 місяців тому
yoo! danis here (im a big fan
@lowpolygons8562
@lowpolygons8562 6 місяців тому
you need a part 1 to literally anything first bro 😭
@davidemmanuel9418
@davidemmanuel9418 6 місяців тому
Duuude, where you been?
@Gapi505
@Gapi505 6 місяців тому
He isn't dead! :)
@5x9x
@5x9x 6 місяців тому
Yo, its the milk man! His milk is delicious
@HeisenbergFam
@HeisenbergFam 6 місяців тому
Sebastian comes back every once in a while like a Santa to bless us with heavenly vibe
@catguy265
@catguy265 6 місяців тому
fr
@penewoldahh
@penewoldahh 6 місяців тому
you have great taste in the videos you comment on
@wChris_
@wChris_ 6 місяців тому
This is number 91
@sussy-coder
@sussy-coder 6 місяців тому
stop appearing everywhere PLEASE
@Nae_Ayy
@Nae_Ayy 6 місяців тому
@@penewoldahh You think they have great taste because they comment on literally every popular video, so the ones you watch you will see their comment.
@KipIngram
@KipIngram 6 місяців тому
I personally would love to see a "deep dive walkthrough" on you porting this to the GPU. It seems like a great vehicle for introducing a lot of people to GPU programming. You mostly did that part "off screen" here - those details would be hugely interesting, I think.
@casperkant
@casperkant 4 місяці тому
I think he made a video on compute shaders where he goes over a lot of the techniques.
@bluevisor
@bluevisor 3 місяці тому
ditto this request! And please do it in taichi!
@Yewtewba
@Yewtewba 28 днів тому
I found that analysing and modifying his marching cubes terrain source code was really informative.
@felipea.barretto7503
@felipea.barretto7503 6 місяців тому
It's so fun to watch these as a physicist! On the one hand, if feels like you get just enough of the physics to follow along with your project, and I, on the other hand, get just enough of the programming to follow along with your video. It's also so cool to see you implementing these ideas. One of my favorite youtube series for sure.
@ashlysherief3850
@ashlysherief3850 4 місяці тому
Hello Fellow Physicist! Can you tell me what kind of engine does real life use to simulate Millions and billions of particles (Atoms) and make them interact with each other seamlessly? I mean.. is there even an engine? or is there something else at play here? I've been wondering that for the longest time 😭
@user-gi7vi9gm4t
@user-gi7vi9gm4t 3 місяці тому
@@ashlysherief3850 oh yeah real life uses a very complicated engine it is called physics and it has no documentation
@FabioMazza
@FabioMazza 3 місяці тому
@@ashlysherief3850 Gromacs, NAMD, Amber, OpenMM are the most used ones if we're talking about fairly accurate, atomistic, classical simulations. And yes, with multi-gpu or even better, multinode clusters they can simulate even tens or hundreds of million of atoms. They get nowhere near "real time" speed though. Usually it takes months to accurately model big biomolecular systems for just a few tens of microseconds, or a few milliseconds. The problem is that atoms are really really fast, so your simulation step must be about a few femtoseconds. The faster you allow your particles to go, the slower will be the simulation, and with realistic atomist systems you really don't have a choice. BTW they mostly use the leapfrog (Verlet) method for the integration of the equations of motions, which Sebastian mentions, but then they also add stochastic terms in order to sample from the correct distribution of temperatures and pressures.
@kstxevolution9642
@kstxevolution9642 3 місяці тому
@@user-gi7vi9gm4t yeah the coder who came up with it doesnt seem to be answering any emails and apparently left the project as it is a long time ago
@thecakecraft7724
@thecakecraft7724 6 місяців тому
Sebastian didn’t end his video with “cheers”. My conclusion is that he’s been kidnapped and had to send a secret message that only we’d understand something was weird about. The chessbots must have finally got him.
@Harry-kt3lk
@Harry-kt3lk 6 місяців тому
Read this before I've finished the video, son's crying now... Cheers.
@robrobusa
@robrobusa 6 місяців тому
I feel like he's smiling through his teeth the entire video.
@ChrisD__
@ChrisD__ 6 місяців тому
I'm pretty sure his cat made this one. The cat was covering the keyboard in almost every shot.
@LHInstrumentals
@LHInstrumentals 6 місяців тому
Developing these prototypes requires a lot of work. The fact you go the extra mile to create visual graphs on what is currently taking place using the Editor itself and no editing tricks is ridiculous, you take a great deal of pride in your work! You are a very smart man!
@hurktang
@hurktang 6 місяців тому
I think at his level, trying to learn editing tricks would be slower.
@Maxy.waxyyy
@Maxy.waxyyy 6 місяців тому
I love how the water particles simulate adhesion and cohesion naturally… so cool… (33:05)
@alexbroaddus2380
@alexbroaddus2380 6 місяців тому
The way you timed up the music with the waves at 45:58 was so clean 🤌 love the production quality you put into these videos
@trinitrotolueneRBLX
@trinitrotolueneRBLX 2 місяці тому
I think he uses DaVinci Resolve
@AngeTheGreat
@AngeTheGreat 6 місяців тому
This is extremely cool! There's something about the combination of particle-based systems and fluid simulations that is fascinating. I ran into a lot of the same problems while trying to implement a particle-based fluid visualization where the underlying simulation is not actually particle based. A lot of the techniques you showed would definitely be applicable to this problem and I'll look into them a bit more. My solution was just giving up on trying to match the density with the particles and instead make the particles act more like dust that is pulled and pushed by the fluid's motion. It works alright but suffers from its own set of issues... Anyway, great video as always!
@SebastianLague
@SebastianLague 6 місяців тому
Thank you! I don't know if I've said before, but your simulations are super impressive and always really fascinating to watch. I'm excited to catch up on the latest videos (now that I've finally finished editing this)!
@arthurblack-petersen4213
@arthurblack-petersen4213 6 місяців тому
Omg its the engine simulator guy. Huge fan
@1e1001
@1e1001 6 місяців тому
woah it's the trumpet simulator person
@AaronStatic
@AaronStatic 6 місяців тому
Please do a collaboration, you two!
@SuperFireMatt
@SuperFireMatt 6 місяців тому
​@AaronStatic I do think if two or three of these GOAT coders worked together they would fix humanities problems. Genius
@Oziji
@Oziji 6 місяців тому
An absolutely classic Lague video
@zaidlacksalastname4905
@zaidlacksalastname4905 6 місяців тому
It's been 8 minutes (I agree) Edit: nvm patron
@aspectreishauntingeurope
@aspectreishauntingeurope 6 місяців тому
hi oziji
@Oziji
@Oziji 6 місяців тому
hi zorby
@zaidlacksalastname4905
@zaidlacksalastname4905 6 місяців тому
That's how you spell it? Always thought it was league lol
@ahegaoweeb9453
@ahegaoweeb9453 6 місяців тому
a certified hood classic
@chimpana
@chimpana 6 місяців тому
I did a compsci degree at a decent university many years back... this video is astounding quality and right up there in terms of lecturer quality... and it's free!
@mlisic431
@mlisic431 6 місяців тому
As someone who works with SPH I am almost bursting of joy. Thank you so much @SebastianLague Consider using Artificial Viscosity (Monaghan et al.), diffusive density terms (Antuono et al.) and particle shifting technique (Sun et al.) to improve your simulation. Make sure your CFL conditions are correct. You can use kernel corrections to improve accuracy at the fluid boundary (Sheppard or CSPM (expensive)). For surface tension, use the CSF model (Morris is a simple enough model).
@user-wz8hj5fl4r
@user-wz8hj5fl4r 6 місяців тому
Not having any experience in the field i just assumed the boundary conditions arrise since he does not consider the density outside the bounding box or the pressure of the "air" obove, so his pressure gradients push particles outwards
@mlisic431
@mlisic431 6 місяців тому
Not quite. Allow me to make it a little more abstract: SPH is a way if interpolating a mathematical function (or continuous field in 3D), but it depends on particle distribution. If you want to approximate the constant number 1, you calculate = sum(1 * vol_j * W_j), with symbolizing SPH approximation, volume and kernel W. Ideally that would sum to 1, but at boundaries you don't have particles everywhere, so you get an error. Conseptually, a "missing particle is like interpolating 0. (0 * vol_j * W_j) That also arrises when particles move and have uneven distributions. For function interpolation (no derivate) that's pretty easy to fix: you just normalize = sum(f(x) * vol_j * W) / sum(vol_j * W) But for the gradient you have directionality (+/-) in 3 dimensions (x,y,z). Thus matrix calculation and getting their inverse is required. And this procedure is called corrected Corrective Smoothed Particle Method (CSPM). It is zeroth order consistent (constant gradients remain constant). There are higher order accurate schemes for gradient correction (e.g. Finite Particle Method (FPM), 1st order consistent), which are more taxing In summary: Because particles aren't evenly distributed everywhere, you need to correct your methods, which approximate the math of the governing physics that drive your simulation, in order the accurately approximate the physics. For gradiends, depending on accuracy use CSPM (0th) or FPM (1st)
@user-wz8hj5fl4r
@user-wz8hj5fl4r 6 місяців тому
Oh wow thats a lot for a non native speaker :D but if i get you right we correct the gradients based on the assumption that we have somewhat mundane situations (air pressure=water pressure at the surface etc) and dont look at situations like venting water into the vacuum of space or something which would lead to valid extreme changes in gradient direction?@@mlisic431
@physbuzz
@physbuzz 4 місяці тому
@mlisic431 Ahh that's awesome, thank you for all of the information! I have a question if you wouldn't mind taking a look at it! I implemented a realistic ideal gas SPH with an adiabatic equation of state. So I can simulate thermodynamic things like adiabatic expansion; also it's not too hard to add conduction (Monaghan has a good lecture where he discusses that as well, Introduction to SPH by Monash Astro here on youtube). But I'm wondering how one would go about modeling a classic irreversible thermodynamic process: free expansion. I guess that I'll start by looking at the literature on explosions with SPH, but if you have any recommendations that would be fantastic!
@mlisic431
@mlisic431 4 місяці тому
hey. I've worked with thermal expansion only in liquids and made bad experience in terms of stability of wcsph. I'm lacking hands on experience with gas phase. In my case i replicated a benchmark proposed by russell et al. "Numerical simulation of laser Fusion additive manufacturing processes using the SPH method." 2018. That is 2D free surface delta-SPH. I reckon Test1 fits your purposes. My intuition tells me that for big expansions, adaptive smoothing length might be worth looking into, to maintain stability (dont forget to average smoothing length upon particle interaction to maintain symmetry). I didn't implement that at the time. Be mindful of kernel correction at the free surface. Make sure your pressure term registers empty particles as a vacuum (i'd have to investigate, but assymmetric pressure term doesnt work, pressure can't be centered around 0 (like Russell)) I hope that helps as a starting point
@RealLukeLudicrous
@RealLukeLudicrous 6 місяців тому
Have been waiting for a fluid simulation video for 10 years, thank you Sebastian.
@SebastianLague
@SebastianLague 6 місяців тому
I'm not sure it can live up to 10 years of anticipation, but I hope you enjoy it nonetheless :) Definitely a topic I'll be exploring more in the future too.
@MrTitaniumCreeper
@MrTitaniumCreeper 6 місяців тому
@@SebastianLague any ideas for future experiments involving AI-related algorithms? I would love watching a revisit to Ecosystem Simulation (probably one of my favourites) with Q-Learning, perhaps
@ChuckSploder
@ChuckSploder 6 місяців тому
Gonkee has a similar video, but he doesn't explain how it works
@account9949
@account9949 6 місяців тому
Great video dude@@SebastianLague
@kallethoren
@kallethoren 6 місяців тому
You're like the Bob Ross of coding! Always a great day when you upload 😁
@crakhaed
@crakhaed 6 місяців тому
No bugs, only happy accidents lol
@user-pc2rz9xv2g
@user-pc2rz9xv2g 6 місяців тому
Very impressive. I also like the fact that you don't hide your mistakes.
@2pringles
@2pringles 6 місяців тому
Something i think would be cool to see is a simulation with different liquids, different colors, viscosity, weight, ect, and have them collide together to see how they diffuse and mix together 😮
@jemakrol
@jemakrol 6 місяців тому
I'd love to see some sort of implementation of adding energy - as in heating the liquid. You could then not only plat with different kinds of liquids but watch how they behave if temp goes up. Something like that
@NeverSink
@NeverSink 6 місяців тому
This is truly inspiring and the production quality is amazing as well, thank you! I also picked up a few notes for spatial search optimisations I'm excited to try out in my little evolution sandbox simulator
@SebastianLague
@SebastianLague 6 місяців тому
Thanks! And that's awesome, I'm happy to hear it!
@kalledk21
@kalledk21 6 місяців тому
Excited to see fluid sims in my poe filters 👌
@xu_fengxuan
@xu_fengxuan 6 місяців тому
Truly amazing how this comment is reading as created 21 hours ago when the video was uploaded an hour ago
@NeverSink
@NeverSink 6 місяців тому
@@kalledk21 Haha, that's one way to liquify your currency in Path of Exile I suppose :)
@strelnagaming
@strelnagaming 6 місяців тому
​@@xu_fengxuanim pretty sure members get early access
@CriticalMonkey623
@CriticalMonkey623 6 місяців тому
It would be cool to see how different particles dispersed in the fluid. Like, start with 50% red particles and 50% blue and just watch them mix and diffuse.
@ZombieChicken-X
@ZombieChicken-X 6 місяців тому
you can kind of already see that, red just means fast and blue slow. When the waves crash you are effectively seeing that
@Operational117
@Operational117 6 місяців тому
@@ZombieChicken-X Except that color is just velocity. He wants discrete red and discrete blue particles mixing, with no velocity shading. But just mixing 50-50 red and blue particles won't do us any good unless the particles are smaller than a pixel and there are at least two particles per pixel. Obviously, this massively increases the simulation time, even with the cell-based simulation method, so unless we actually use the GPU to calculate all of this, it's computationally unviable at the moment. However, I'm certain one could emulate this by creating a smoothed color gradient using the smoothing circle and gradually shifting each and every particles' color towards this average at their location., performing this shift on the HSV color system.
@ZombieChicken-X
@ZombieChicken-X 6 місяців тому
@@Operational117 I dont understand, so like mixing two cups of water? Or mixing water and milk
@goldenbananas1389
@goldenbananas1389 6 місяців тому
@@ZombieChicken-X imagine a cup water but colored with red dye and one with blue dye and mixing them together watching the colors diffuse and disperse. he doesnt want to see the velocities, he wants to see diffusion of basically two different liquids
@ZombieChicken-X
@ZombieChicken-X 6 місяців тому
gotcha@@goldenbananas1389
@mr.inconspicuous6395
@mr.inconspicuous6395 6 місяців тому
Here's a rogue idea for how the fluid sticks to the bounding box: Make the walls of the bounding box a little bit "elusive" by making it strongly repulse the particles instead of preventing the particles to go past it. This will prevent the particles from sticking to it and instead should bounce off of it. Hopefully.
@Josbird
@Josbird 6 місяців тому
That would make sense since the wall is also made of particles in real life!
@siltax2814
@siltax2814 6 місяців тому
I think that's only the half story, but in its core it's the right idea. The particles accumulate because there is no force coming from the walls that tell the to go in the other direction. So particles must accumulate until a certain threshold is reached that roughly represent the force that would be introduced by the wall. Almost the same logic applies to the surface. Anyway I think you would need some kind of logic that flags particles in a way to determine if they contribute the the rendering of the surface or not, so you should be able to give them special treatment based on this flag. In the case of the walls simply apply the force they experience in opposite direction regarding the angle of the wall, aka dot product. If I'm not mistaken that should result in evenly spaced out points throughout the walls. The actual surface of the water is a little different there is a factor involved that is more closely related to surface tension.
@schwatoo
@schwatoo 6 місяців тому
Just make the visual edge of the wall outset from the "physical" edge of the wall. It's a quick and dirty hack but it would look fine.
@adaloveless3904
@adaloveless3904 5 місяців тому
Absolutely wonderful video! I really like that you kept many of the fumbles and mistakes in the video and showed the thought process exactly the way an experienced programmer might or should, instead of just showing us the complex end result. Really looking forward to seeing how you turn the particles into a rendered result. Great video!
@LevTheDev
@LevTheDev 6 місяців тому
Not only did he learn these concepts and teach them, he built an interactive tool to use as a presentation aid.
@alpani6805
@alpani6805 6 місяців тому
Not to take from his amazing work but I'm pretty sure he is using Unity. It's free if you want to try and experiment a bit yourself :)
@avananana
@avananana 6 місяців тому
@@alpani6805 Yes, we are all well aware of that. But what LevTheDev is referring to is that Sebastian goes out of his way to code interactive simulations for things like the smoothing curves and whatnot as a means to help explain things. It's a lot of work for little progress on the project itself, but helps the audience a lot.
@schnitzelhannes6431
@schnitzelhannes6431 6 місяців тому
Better use Godot and dont support those Unity poopheads @@alpani6805
@cathalredmond4789
@cathalredmond4789 6 місяців тому
0:38 Sebastian: "Let's keep track of the particle's position and velocity." Heisenberg: "Am I a Joke to you?"
@honza4471
@honza4471 6 місяців тому
Just came across your channel and as a fluid dynamics student who's starting his thesis using SPH and I'm super excited to see this and I love your approach! It's an awesome video and I'm definitely gonna stick around for more coding adventures! Thank you and have a lovely day
@birb4415
@birb4415 6 місяців тому
I barely understand anything about how coding works, but your videos are not only relaxing, but somehow make it so easy to understand whats actually happening. Always are great day when a new Coding Adventure releases! Also, cute cat.
@felippemiguel6751
@felippemiguel6751 6 місяців тому
Sebastian Lague: new video \0/ All programmers while watching: “This part of my life, this little part, is called happiness” Thank you.
@critical_always
@critical_always 6 місяців тому
Well said.
@crakhaed
@crakhaed 6 місяців тому
That's beautiful :')
@silvertakana3932
@silvertakana3932 6 місяців тому
This relates harrrd
@valeriynefedov5629
@valeriynefedov5629 6 місяців тому
That perfectly describes my perception of those videos
@jeroencommandeur
@jeroencommandeur 6 місяців тому
That made me smile, as did the video. Thank you! 🙂
@rijden-nu
@rijden-nu День тому
Immediately in the beginning I thought you were going to ask me to focus on the circle, relax my muscles and feel my feet touching the ground, to breathe in and out slowly and to let my thoughts pass by like little clouds in a blue blue sky. I'm relaxed now.
@yoyobro98
@yoyobro98 6 місяців тому
You have genuinely changed my life, your videos have been a landmark for my development as a programmer and also reaffirming my interest in game development. I started game development at first just through loving games, but you have a way of presenting game development that made me love it as much as a love games themselves. Keep doing it❤️
@DaveeeOnTop
@DaveeeOnTop 6 місяців тому
That 3blue1brown plush was so fitting with the math refresh, glad to see him also enjoy the obscure math problems and their explanation
@waffles6132
@waffles6132 6 місяців тому
I love how humble and determined he is.
@F1nalspace
@F1nalspace Місяць тому
This is absolutely awesome. Even i wrote some fluid simulations many years before, i learned a lot from that again and i think this is the best introduction into SPH fluid simulations at all. All that visualizations of the particles, kernels, the smoothing radius, the density, the cell spatial structure makes it much more easy to understand. I did visualizations too, but used it not enough to understand everything that is going on. Also it was so nice to see, that tuning the parameters can result in a lot of weird and funny results and interestingly enough, i had similar ones - like gliding hundreds of particles on the boundary in one line.
@nurofen127
@nurofen127 6 місяців тому
Thank you for the journey. It was great and satisfying to watch how you handle pretty complex problems of this project.
@YitzharVered
@YitzharVered 6 місяців тому
I've done some fluid mechincs lately, and was utterly shocked (positively, of course) when I saw how fluid like you got it to behave sheerly through trying to enforce incompressibility. Very impressive!
@darkstar76
@darkstar76 6 місяців тому
this guy can make the most complicated concepts digestible and he has a calming voice and amazing editing
@netomtoloko01
@netomtoloko01 6 місяців тому
My handsome fellow youtuber, I subscribed in your channel because of some cool Blender rigging tutorials and... here we are, 8 years later and you still amazes me with your videos. You make programing a lot more fun, thank you
@FreshJerz
@FreshJerz 2 місяці тому
Hi, Huge respect for your work. I am doing right now my thesis in fluid dynamics. I have written already about all math basics. In your video I have not only visualisation but also you share with everyone how to creat code for it. During my studies I was writing the code for movement of the buoy on the waves. I spend lots of time to do it with supervision of my porfesor. I felt like a child id the fog. After your video I have comprehend all knowlege from my Naval Architect studies. Huge respect and thank you thousand times.
@charliezard64
@charliezard64 6 місяців тому
The production value, education, and accessibility of Sebastian Lague’s videos is astounding. Keep up the great work! ❤
@cognisent_
@cognisent_ 6 місяців тому
I feel like "on the brink of pandemonium" describes many of your projects 😂. This was both technically interesting and beautiful, like so many things you make.
@ramazandurmaz3012
@ramazandurmaz3012 6 місяців тому
I recently have come across to this channel after the fluid simulation being recommended multiple times but I'm simply amazed by how skilled you are. You go on to the depth to show every piece of code and your mathematical explanations are remarkable. I'm pretty sure you can create a black hole simulation as well. That'd be fantastic😂
@lucasf.v.n.4197
@lucasf.v.n.4197 5 місяців тому
amazing man; way to go; I can't wait to see the future video; more videos on fluids are always welcome!
@Tomsbax
@Tomsbax 6 місяців тому
It's always a good day when you post a new video. As always the effort you put in and the amazing simple explanation of a complex topic is much appreciated so thank you a lot for everything. What a legend
@SebastianLague
@SebastianLague 6 місяців тому
Thank you! :)
@OldShatterham
@OldShatterham 6 місяців тому
Fluid simulation is probably one of the holy grails of indie gamedev. Great work!
@1234macro
@1234macro 6 місяців тому
Unless your entire game revolves around the fluid simulation, you're not gonna be looking to implement one
@dav1dsm1th
@dav1dsm1th 2 місяці тому
I keep recommending this video to people on reddit - and then usually end up watching it again myself, because it's just so damn good. Thanks for the videos Mr Lague.
@rastyisanerd3686
@rastyisanerd3686 3 місяці тому
I am in complete awe at this. This might just be the most informative video ever created on fluid simulation. Thank you immensely for sharing this with us.
@SpringySpring04
@SpringySpring04 6 місяців тому
47 minute Sebastian Lague video? Heck yeah! Love seeing these very charming and interesting programming projects you do. It's a lot of fun!
@Hailfire08
@Hailfire08 6 місяців тому
Awesome video! I've been reading a lot on fluid simulation, mainly focusing on gases. The reason using the predicted position works is because either way, you're incurring some O(dt^2) error, but using the predicted position has an error which tends to slow down the particles, while the initial position tends to speed them up. Consider a particle sliding in a bowl. If you use the position at the start of a timestep, it'll be higher up the bowl and see a larger speeding-up force when it's sliding downhill, and when it's sliding uphill, it'll be lower down and see a weaker slowing-down force. So you end up consistently speeding up the particle. The opposite happens when you use the predicted position. And that's also why the simulations at 30:00 diverge - the smaller the timestep, the more similar the predicted/initial positions become, and the closer you are to the exact value. The most physically realistic solution is to use a higher-order integrator (e.g. RK4) so your error becomes O(dt^5) and small enough to neglect. Then apply some viscosity to achieve the damping you were previously getting from your O(dt^2) error. (There are also other "symplectic" integrators which are designed around conserving energy, which you can also get higher-order versions of.)
@Hailfire08
@Hailfire08 6 місяців тому
By the way, I've been mainly reading about finite-volume codes. Unlike SPH, which deals with particles of fixed shape which overlap with each other, finite-volume codes generally do not overlap, and deal with volumes which store conserved quantities (mass, energy, momentum). They immediately conserve these quantities (since you only ever deal with them getting transferred from one cell to its neighbour). Incompressibility is unfortunately hard, but you can do it using something like a potential-vorticity treatment (where you use an iterative solver to impose incompressibility).
@SebastianLague
@SebastianLague 6 місяців тому
That makes sense, thanks for the explanation!
@davidvargas7651
@davidvargas7651 6 місяців тому
Yes! I was looking for this comment. The true physics should be conservative in the absence of viscosity, so as the time step size decreases, your simulation will be less and less viscous. Fixing the lookahead value to a constant will greatly limit the accuracy of the simulation. If you want to prevent the explosion caused by the high density initial condition, you can instead use gradient descent on the initial condition to minimize the potential energy!
@feha92
@feha92 6 місяців тому
Interesting. Would using "pos + (predictedpos - pos)/2" remove any error in this case? I imagine not, but maybe it could at least _reduce_ it (as compared to picking either extreme)?
@Pavel10017
@Pavel10017 6 місяців тому
I’d love a video on how these animations are made. Beautiful.
@viktordominguez
@viktordominguez 6 місяців тому
God I love these videos! Love seeing you go through the steps and explain your thinking. This was a blast watching, can't wait to see what you do next
@charliemw333
@charliemw333 6 місяців тому
I work doing Computational Fluid Dynamics and this is just awesome. I just wish you'd talked a bit more about conservation of momentum, cause I feel it's one of the most important things for fluid simulations, given that conservation of mass is already accomplished by using a SPH. Otherwise, great work!!! I pretty much look forward to the next episode on fluid dynamics
@MayaPapaya497
@MayaPapaya497 6 місяців тому
I think it's so cool that vorticity came about naturally, but only after he added the speculative velocity update! I'm not entirely sure but I think that line helped satisfy the constant density part of navier Stokes? I'm not exactly sure but that is so fascinating
@Hailfire08
@Hailfire08 6 місяців тому
For the boundaries, you could try getting WolframAlpha to calculate int_{-1}^{x} W(x,y,z) dx, which would give you the density if there was a uniform sea of particles on the other side of the wall
@Ra99y
@Ra99y 6 місяців тому
yes or extend the particles beyond the boundary and only render those within
@thecasualparry7797
@thecasualparry7797 6 місяців тому
@@Ra99y This would make particles suddenly dissapear. An interesting tradeoff though.
@opitopit2105
@opitopit2105 6 місяців тому
Or maybe just damp the velocities along the normals of the boundary surface? This paper might be helpful: "PIC/FLIP Fluid simulation using a block-optimized grid data structure", 2.5.7 Boundary conditions
@WelcomeToTheGooniverse
@WelcomeToTheGooniverse 6 місяців тому
So cool. Love the project and seeing your thought process throughout! Great job!
@pindab0ter
@pindab0ter 6 місяців тому
Absolutely amazing. One of the fastest three quarters of an hour I’ve experienced. I’m loving the iteration: from idea, to concept, to good enough, a bit of polish, and on to the next idea. I can’t wait till the next one!
@mariandev
@mariandev 6 місяців тому
First I must say this was an awesome video, thanks for making it. Now that I've released my new game on steam I have some more free time to do experiments and your video motivated me greatly. Happy to be a patreon, your content is always amazing.
@SebastianLague
@SebastianLague 6 місяців тому
Thank you, and congrats on the release! What is your game called?
@mariandev
@mariandev 6 місяців тому
@@SebastianLague Monos: The Endless Tower
@SebastianLague
@SebastianLague 6 місяців тому
@@mariandev Looks really nice! That's a cool idea to have the game take place along the outside of the tower :)
@Jejkobbb
@Jejkobbb 6 місяців тому
A cool project could be building a unity museum where you could walk through and see/interact with all of your different coding adventures projects
@koolkdny
@koolkdny 6 місяців тому
they could all be on their own planets, from the solar system video
@curhob
@curhob 6 місяців тому
Since it's Lague doing these things and not Unity, he would need an SL logo, coding adventure or something specific.
@lucaseastman1877
@lucaseastman1877 6 місяців тому
This was awesome! It is so inspiring and I want to build something like this myself now. I am really excited to see what you do next with this project! I can't wait to see your updates!
@adixx328
@adixx328 6 місяців тому
Love your videos, your style of making them is so good. Waiting for part 2 already!
@whwahhdsh
@whwahhdsh 6 місяців тому
It's a good day when Sebastian uploads.
@BrahimHadriche
@BrahimHadriche 6 місяців тому
I find your videos really soothing and engaging. You raise the bar for what's considered high quality educational, yet entertaining content. You explain complicated concepts in simple terms, and turned boring and complicated papers into entertaining work of art, and you're too humble about it. I also love how you explain your thought process, what you tried, what did not work, and how you are equally in love with the journey as you are with the end result. I was watching this with my wife, who has about over a year of programming experience. She commented on how clean, readable and pleasant your code is, even though she did not know the language you're using (she did not know it was C#). When I explained that not only the simulation work is done in C#, but also all the graphs and animations are also done in Unity, she was blown away. I'm a Unity employee btw, and I have shared this video with other colleagues on internal Slack. Good reactions, and a few are already fans and familiar with your work. Thank you for a great video!
@BlackDidThis
@BlackDidThis 6 місяців тому
DAMN, do you simplify such complex iterations of getting to the point on such an overwhelming subject! I have to date not been ever as happy as now for a UKposts suggestion. And I am embarrassed to have not noticed you sooner. I shall Sub and Bell to hopefully never miss out again. Thank you so much for your contribution!
@Skeffles
@Skeffles 5 місяців тому
Fantastic to see the simulation and hearing about how you made it! I can't wait to see where you take this.
@dampfwatze
@dampfwatze 6 місяців тому
Idea for rendering: You could try to implement the marching cubes algorithm to generate a mesh for it. Since you can already calculate the density at any point in space, this might be pretty straightforward. Marching Cubes is essentially used to approximate a boundary of some sort of single value field, like a density field!
@samuelthecamel
@samuelthecamel 6 місяців тому
He actually did a video on the marching cubes algorithm once
@theangry0077
@theangry0077 6 місяців тому
46:38
@1e1001
@1e1001 6 місяців тому
@@samuelthecamel that's probably part of why it was brought up
@feha92
@feha92 6 місяців тому
Hmm, the same stuff he did for clouds (taking a noise-field and march cubes over it to generate a mesh) could surely be used for the water-rendering, yeah?
@Hexcede
@Hexcede 6 місяців тому
​@@theangry0077Raymarching and marching cubes aren't the same thing
@rojnx9
@rojnx9 6 місяців тому
When the particles settle down you can see multiple different hexagonal lattices forming, and I think that is really cool, because you see those in real life, if you look at galvanised steel those different shades are each their own lattice arrangement that are reflecting light slightly differently and they come from when the zinc coating was still a liquid, and formed those arrangements on the steel surface.
@Vajtosan
@Vajtosan 6 місяців тому
Always such high quality videos from you. I am looking forward to part 2.
@Siebeng
@Siebeng 6 місяців тому
Man I'd love to see how far you can bring this one! It looks amazing! So soothing aswell. Thanks
@mattwhelan13
@mattwhelan13 6 місяців тому
I made something very like this for my final project at university, using spheres to represent fluid particles with variable density, the posibility of multiple fluids mixed together and sliders for variable gravity. I loved setting the gravity to nothing and watching my fluids float like they were on the space station
@ivovelo
@ivovelo 6 місяців тому
You are the best thing about youtube! I love the witty, not-taking-yourself-too-seriously narration and your voice is - as always - heavenly. My wife is not interested in math/programming at all but has commented many times saying you should read audiobooks for a living :) cheers and thanks as always!
@urari4244
@urari4244 6 місяців тому
great work! rally nice video. you explain it excellently, and make it all really fun and entertaining. i think that a really funky idea would be to connect motion control to it all, so you can shake the entire liquid tank like a water bottle and see it react accordingly on your screen. it would also probably help testing if the liquid motion feels right. thanks for the video!
@AlleluyaChuu
@AlleluyaChuu 6 місяців тому
I do like those kind of video, really nice. Concerning the optimisation i've read about some not a long time ago. Basically, even if we work and leave on a 3D world, our screen will still be in 2D, we only gonna see what is in front of our eyes, and also the first layer. So in case of water, you don't have to render each ball, especially those who are in the middle of the simulation. Of course the computer/the script have to know that they are their, but our eyes will not see the differences. Meaning that you can work with more particules only by rendering the ones we see or we're supposed to see. I'm amazed by your capacity to read & do sketches on paper with those kind of mathematics. I'm also amazed by your smoothness with the code. Amazing wideo.
@LinuxBacon
@LinuxBacon 6 місяців тому
I really love coding adventures. They have long been my favorite series on youtube. I feel like this community views the world with a healthy sense of curiosity and wonder. In many ways I feel at home watching these.
@Abstract_Code
@Abstract_Code 6 місяців тому
The editing on this video is on another level!!! Great job Sebastian 👏
@GainesSteve
@GainesSteve 6 місяців тому
Fascinating and fabulous, as ever, Sebastian - thankyou!
@GearsDatapacks
@GearsDatapacks 6 місяців тому
I can't explain with words the emotion that runs through me when watching your videos. They are truly fascinating and beautiful
@robbybobbyhobbies
@robbybobbyhobbies 6 місяців тому
My MSC project back in 1990 was simulating forces in a 3D surface using the Inmos Transputer chip (actually a set of five of them, one controller and four workers). It used a very trivial averaging formula (vertical velocity of cell in next generation is the average of the height differences to its neighbours). It ended up looking quite pretty. After handing the project in, I've barely done anything with computer graphics, sadly. The point of the project was to demonstrate the power of parallelism and message passing rather than accurately model reality. But your adventure is next level and has got me thinking about downloading a games library for Python and reimplementing my MSc project, then moving onto yours. Thanks for the inspiration.
@squirrel
@squirrel 6 місяців тому
That was absolutely fascinating to watch. The evolved behaviour that comes from such relatively “simple” rules coupled to mass computation is amazing to watch. Excellent explanation of your journey and fantastic visuals made this a riveting watch whilst I waited for my bread to bake. Well done 😊
@harmoniac.design
@harmoniac.design 6 місяців тому
So inspiring! I'm so happy to found your work and that you share it with us!
@doblajesimberbe1966
@doblajesimberbe1966 6 місяців тому
Nice job! This is amazing, your research, the video editing... beautiful, really
@MarushiaDark316
@MarushiaDark316 6 місяців тому
Love the 3Blue1Brown plushie cameo. Been looking forward to this video since you first teased it. Though a couple things to note. Firstly, if it wasn't clear, Sebastian is using Freya's "Shapes" asset to draw the circles, which isn't native to Unity. It's a paid asset. (He mentioned that in his video on how he makes these tutorials.) Secondly, it's not really clear to me how the blurring is done, but I suspect that's also a feature of Shapes as well. Would be nice to have Seb confirm or clarify those points.
@codeconduit1576
@codeconduit1576 6 місяців тому
That “clumping up against the boundaries” you noticed was actually the surface tension of the fluid as-is! Surface tension is an emergent property of fluids being simulated as individual particles, and is the reason you didn’t have to implement any special math to get those droplets. The tendrils you saw in the high-particle-count simulation were a result of extreme capillary forces dragging the fluid up!
@EdepolFox
@EdepolFox 6 місяців тому
Capillary action is the result of inter-molecular forces which were not being simulated. In capillary action the walls of the container literally attract the fluid a small amount. The "tendrils" in the simulation were spray caused by extreme pressure (not capillary forces) forcing the fluid against the sides of the container, the only direction available was up, so it got sprayed up, like how covering the nozzle of a hose or tap increases the pressure of the water coming out, or how lowering a glass from your face too fast can cause the water to splash against the bottom of the glass and spray your face.
@matze8824
@matze8824 6 місяців тому
Thank you for this incredible video and explanation. The subject of simulating fluids seems to be beautiful and filled with challenges : how it reacts to different solicitations, external pressure, etc.
@finnheinemann3682
@finnheinemann3682 6 місяців тому
It is so beautiful to see how you transform really simple implementation into wonderfully complex models that are really rich in details
@OrganicCitrus
@OrganicCitrus 6 місяців тому
you're a literal coding code, every upload is just another mind boggling adventure
@DigitalHandle
@DigitalHandle 6 місяців тому
even though im currently sick, i still wanna watch sebastian lague, don't wanna miss his greatness, do i?
@Alex-lp6bg
@Alex-lp6bg 6 місяців тому
Same here....
@jackthehacker05
@jackthehacker05 6 місяців тому
Feeling rubbish too! We’ll get through it!
@forgettd
@forgettd 6 місяців тому
Get well soon guys! ❤
@dingolovethrob
@dingolovethrob 6 місяців тому
beyond anything I could produce in a lifetime and visually beautiful. Stunning work. Subscribed.
@GArts89
@GArts89 5 місяців тому
Amazing and thorough presentation on a complex but very interesting field of computer graphics. I like how you show every step and trying to tackle every problem that arises with different approaches. I would love to see a similar video on other kinds of simulation as well such as Soft Bodies.
@4.0.4
@4.0.4 6 місяців тому
It's kind of magical to see it start to look like a real physical thing, when you've seen the math evolve to that point.
@toara
@toara 6 місяців тому
Yes!! Was waiting for this one after I had watched Acerola video about ocean simulation and wondered how this fluid simulation project of yours is doing (since you mentioned it back in the AI game challenge). Question answered
@GameDevBits
@GameDevBits 6 місяців тому
Phenomenal new video. Wow. Those little waves emerging in the last part was such a testament to how accurate it's getting!
@melodicwuitartree
@melodicwuitartree 6 місяців тому
I've been trying to figure this out for an app I am working on. I love that you released this and explained everything. Thank you!
@Rotem_S
@Rotem_S 6 місяців тому
Hey, physicist with experience in numerics here. First of all, great stuff! A few comments: Pretty sure the "prediction" part of the code is only helpful since it effectively makes the particles repel from their own future versions, which in essence means they experience a global damping force - this both explains why it "calms" the dynamics, by being the only mechanism for the system energy to lower (apart from the more realistic damping you added later), and possibly why it depends on the prediction timestep. I'd recommend just getting rid of this and using only the more realistic damping, unless that doesn't work. Also, did you try using some other spatial partitions, such as KDTrees? They might be better, though honestly I doubt it. Another neat option would be to instead of calculating the actual average quantities per particle, calculate a rough scale approximation for the average quantities per cell, and use that for approximating the effects of any far away particles (say, those further that R/3 or so) - this is similar to the Fast multipole method, though for such local interactions which decay quickly it again might just be wasteful. Oh, and, maybe try some symplectic integration schemes, such as Verlet or even something better (note that even though you have damping forces, which make your system non-Hamiltonian, you could just plug the force directly instead of dV/dq and get nice results) - I didn't mess around with these much, but I've seen claims they greatly improve long term stability for integration (i.e. better conserve energy for the same amount of compute). Oh, and for the boundary, at least against walls you could treat each wall like a really long and flat particle, manually adding a set density from them to the local density estimate. I don't know how to treat the free boundary "collapsing" though, maybe messing around with the near-repulsion term a little?
@dylanherrera5395
@dylanherrera5395 6 місяців тому
on the KDTrees part, i believe he made a small footnote that he might experiment with them which means he likely didnt attempt it, i dunno though, might just be hallucinating
@sh4dow666
@sh4dow666 6 місяців тому
The "prediction" part of the code is actually analogous to the backward Euler method, ie. a more stable numerical integration scheme with less truncation error per step. It would probably be even more stable to use the Heun method (use the average between the current and the extrapolated position), though that would increase the frame time... ((in the specific example in the video, the backward Euler method has the advantage of underestimating the total kinetic energy, while the normal Euler method overestimates it. So if starting off with particles under really high pressure, any kind of energy underestimation probably helps... Simply making the initial packing less dense would be the most elegant solution tho)) Dampening might mask the integration error, but for a realistic simulation it still shouldn't be ignored. I don't have any practical experience with symplectic integrators, but I'd assume them to be relatively costly computationally, and since we have a dissipative system, they might not actually be much better then Heun/RK4 integration in practice. The density interpretation doesn't really help my intuition, but I'd guess the reason for the isolated surface layer/tendrils is energetic - ie. surfaces are energetically favorable compared to bulk states at low pressure (or at least a local optimum reinforced by the gravity induced flatness of the surface). I'm really curious whether sufficiently low gravity would cause a 2nd isolated layer to form, or perhaps even dissolve the existing one? I'd also guess it would be the attractive term, not the near-repulsive one, which is the primary cause of tendril formation in this simulation. btw, 13:44 shows really nice surface formation in the middle while in zero-G. So getting the gas to form droplets instead of surfaces (minimize surface area, instead of maximizing it) by tweaking the terms definitely seems to be the way to go to prevent tendril formation.
@Kuroten01
@Kuroten01 6 місяців тому
Games aren't like engineering fluid dynamics so I disagree about the prediction part. The state of the art for real time fluids is actually to get rid of SPH, leaving only the density computation, and instead solve the particles via constraints via newton's method. Of course with newton's method you'll make an even more crude prediction and then adjust multiple times per time step, which leads to even worse global damping (solved via introducing aritifical constraints) Yes, this is nothing like what a physcists would do, but this is computer graphics, not physics. The position based constraints give nearly identical visuals but performs much better for a wider range of time steps, and is less susceptible to tensile instability.
@Kuroten01
@Kuroten01 6 місяців тому
@@sh4dow666 I'm making my own video, but it will have all the steps: simulating, rendering, external object interaction, and control (turning water into the shape of meshes and animating them). The integrator isn't the issue here imo. The real issue is the way the simulation is being solved via SPH, when it's more efficient and stable to solve via density constraints alone. Which is pretty obvious during the video once he runs into incompressibility issues (common flaw of standard SPH).
@sh4dow666
@sh4dow666 6 місяців тому
@@Kuroten01The question is whether this is primarily supposed to be a physical or graphical fluid simulation :)
@Operational117
@Operational117 6 місяців тому
You can also clearly see convection currents being generated at 46:12 as the boundary volume shrinks, showing that while it probably isn't as realistic as one would like, it is still fairly realistic.
@neogoo123
@neogoo123 6 місяців тому
This is absolutely insanely cool. Awesome stuff! It was really cool seeing how issues you were noticing looked quite similar to natural phenomena we see in liquids. You mentioned of course how when you were working with the droplet how you had a crude surface tension, and I was really intrigued by that! At the end of your presentations, in 3D-space, when you tipped the container on its side, it almost looked like the liquid was "working it's way up" the surface, similar to how water will wick it's way up a glass due to it's surface tension. In fact, I wouldn't be surprised if your "little" fluid sim here also unintentionally has capillary action "built-in" due to this. It would be interesting to see how the liquid behaves when put into an area that has something similar in shape to a straw. Very cool stuff, and I look forwards to seeing more on it!
@IagoBrayham
@IagoBrayham 6 місяців тому
Im a developer myself and this video reminded me of how fun coding can be. Definitely subscribing. Thank you for all the work put into this.
Coding Adventure: Ant and Slime Simulations
17:54
Sebastian Lague
Переглядів 1,8 млн
The Bubble Sort Curve
19:18
Lines That Connect
Переглядів 228 тис.
Гражданская оборона 2024 - 16 полный выпуск
1:04:15
Телеканал ICTV
Переглядів 644 тис.
Это было легко! Оживили и Отдаем BMW владельцу!
1:40:26
ИЛЬДАР АВТО-ПОДБОР
Переглядів 3,1 млн
I run untested, viewer-submitted code on my 500-LED christmas tree.
45:17
Coding Adventure: Making a Better Chess Bot
1:01:01
Sebastian Lague
Переглядів 647 тис.
10 Ways to Move a Lego Ship
11:06
Brick Technology
Переглядів 253 тис.
Coding Adventure: Rendering Text
1:10:54
Sebastian Lague
Переглядів 473 тис.
I Tried Making A Fully Ray Traced Game
26:17
Acerola
Переглядів 132 тис.
Watching Neural Networks Learn
25:28
Emergent Garden
Переглядів 1,1 млн
Fluid dynamics feels natural once you start with quantum mechanics
33:00
10 weird algorithms
9:06
Fireship
Переглядів 1 млн
The Continuity of Splines
1:13:50
Freya Holmér
Переглядів 1,3 млн
how NASA writes space-proof code
6:03
Low Level Learning
Переглядів 1,9 млн
ось чому у нас його так багато
0:40
Ellevika
Переглядів 248 тис.
Чи знаєте ви що у фільмі Таксі 2...
0:34
Recap UA \ Рекап ЮА
Переглядів 165 тис.
ОТСТОЯЛ СВОИ ЛИЧНЫЕ ГРАНИЦЫ😂😂😂
0:42
СЕМЬЯ СТАРОВОЙТОВЫХ 💖 Starovoitov.family
Переглядів 20 млн
НАПОИЛ СОСЕДЕЙ ПИВОМ🥹
0:32
ИССЛЕДОВАТЕЛЬ
Переглядів 3,1 млн
Мужчина Идет с Палкой На Огромной Высоте 😱🔥
0:58
Смотри Под Чаёк
Переглядів 985 тис.