Coding Adventure: Simulating Fluids

Поделиться
HTML-код
  • Опубликовано: 20 ноя 2024

Комментарии • 3 тыс.

  • @SebastianLague
    @SebastianLague  Год назад +2593

    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  Год назад +116

      ​@@sfsasteroid1 Yes, I definitely want to get back to that project. Hopefully soon!

    • @ivanalantiev2397
      @ivanalantiev2397 Год назад +8

      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 Год назад +7

      Could you also create more videos about shaders and how beautiful and realistic they make the “world”?

    • @dominicmcg2368
      @dominicmcg2368 Год назад +23

      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 Год назад +5

      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 Год назад +7699

    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  Год назад +1359

      Thank you for the super-helpful paper, and I’m so happy you liked the video!

    • @Ben-rz9cf
      @Ben-rz9cf Год назад +178

      I'd say that deserves at least a like

    • @JavSusLar
      @JavSusLar Год назад +26

      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 Год назад +15

      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.

    • @MrNallana
      @MrNallana Год назад +7

      Much respect

  • @batimius
    @batimius Год назад +2439

    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 Год назад +29

      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 Год назад +4

      ​@@murmeldinAlthough I really like his videos, I do not believe that he codes these projects alone.

    • @TheStolenBattenberg
      @TheStolenBattenberg Год назад +52

      @@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 Год назад +26

      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 Год назад +21

      @@hypertizer if someones gonna take like months to upload videos I'm sure he's doing it by his own

  • @KipIngram
    @KipIngram Год назад +209

    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 11 месяцев назад +2

      I think he made a video on compute shaders where he goes over a lot of the techniques.

    • @bluevisor
      @bluevisor 10 месяцев назад +1

      ditto this request! And please do it in taichi!

    • @Yewtewba
      @Yewtewba 7 месяцев назад

      I found that analysing and modifying his marching cubes terrain source code was really informative.

  • @OddlySpecificGaming
    @OddlySpecificGaming Год назад +635

    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 Год назад +33

      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 Год назад +8

      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 Год назад +4

      @@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 Год назад

      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 10 месяцев назад

      unity ❤

  • @fxzn
    @fxzn Год назад +2269

    The worst part about Sebastian Lague videos is that they end.

    • @VivaanTheCraft3r
      @VivaanTheCraft3r Год назад +37

      Absolutely HATE when that happens :(

    • @stickguy9109
      @stickguy9109 Год назад +3

      Ong😭

    • @Vextrove
      @Vextrove Год назад +25

      The best part is that my memory isn't infallible, which means I can rewatch old videos

    • @lucbloom
      @lucbloom Год назад +3

      Wisdom to put on a bathroom tile and hang in your kitchen.

    • @TheMagicat
      @TheMagicat Год назад +2

      He is my favorite tumblr scrimblo

  • @felipea.barretto7503
    @felipea.barretto7503 Год назад +112

    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 11 месяцев назад +5

      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 😭

    • @sayorancode
      @sayorancode 10 месяцев назад +5

      @@ashlysherief3850 oh yeah real life uses a very complicated engine it is called physics and it has no documentation

    • @FabioMazza
      @FabioMazza 10 месяцев назад

      @@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 10 месяцев назад +5

      @@sayorancode 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

  • @LHInstrumentals
    @LHInstrumentals Год назад +428

    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 Год назад +13

      I think at his level, trying to learn editing tricks would be slower.

  • @Danidev
    @Danidev Год назад +4666

    Super cool video! We need part 2 👁👄👁

    • @undrsc
      @undrsc Год назад +146

      yoo! danis here (im a big fan

    • @lowpolygons8562
      @lowpolygons8562 Год назад +207

      you need a part 1 to literally anything first bro 😭

    • @davidemmanuel9418
      @davidemmanuel9418 Год назад +101

      Duuude, where you been?

    • @Gapi505
      @Gapi505 Год назад +141

      He isn't dead! :)

    • @5x9x
      @5x9x Год назад +74

      Yo, its the milk man! His milk is delicious

  • @alexbroaddus2380
    @alexbroaddus2380 Год назад +80

    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

  • @HeisenbergFam
    @HeisenbergFam Год назад +798

    Sebastian comes back every once in a while like a Santa to bless us with heavenly vibe

    • @bugge265
      @bugge265 Год назад +1

      fr

    • @penewoldahh
      @penewoldahh Год назад +12

      you have great taste in the videos you comment on

    • @wChris_
      @wChris_ Год назад

      This is number 91

    • @Nae_Ayy
      @Nae_Ayy Год назад

      @@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.

    • @penewoldahh
      @penewoldahh Год назад

      ​@@Nae_Ayythe video had 9k views at the time of my comment. It had less when heisenbergfam commented. This was not popular

  • @AngeTheGreat
    @AngeTheGreat Год назад +250

    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  Год назад +97

      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 Год назад +9

      Omg its the engine simulator guy. Huge fan

    • @1e1001
      @1e1001 Год назад +3

      woah it's the trumpet simulator person

    • @AaronStatic
      @AaronStatic Год назад +2

      Please do a collaboration, you two!

    • @SuperFireMatt
      @SuperFireMatt Год назад +1

      ​@AaronStatic I do think if two or three of these GOAT coders worked together they would fix humanities problems. Genius

  • @chimpana
    @chimpana Год назад +33

    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!

  • @RealLukeLudicrous
    @RealLukeLudicrous Год назад +179

    Have been waiting for a fluid simulation video for 10 years, thank you Sebastian.

    • @SebastianLague
      @SebastianLague  Год назад +93

      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 Год назад +7

      @@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 Год назад +1

      Gonkee has a similar video, but he doesn't explain how it works

    • @account9949
      @account9949 Год назад +2

      Great video dude@@SebastianLague

  • @jucom756
    @jucom756 Год назад +1085

    I love how one of the bugs you try to fix is just emergent surface tension.

    • @MasterofTheDucks
      @MasterofTheDucks Год назад +47

      That's what even I thought

    • @KipIngram
      @KipIngram Год назад +108

      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 Год назад +93

      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 Год назад +19

      @@RothronThat can be mostly fixed by turning up the pressure multiplier.

    • @rileywheb4444
      @rileywheb4444 Год назад +11

      @@Rothron Only weakly compressible, right?

  • @FreshJerz
    @FreshJerz 9 месяцев назад +3

    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.

  • @lordesfairgenug
    @lordesfairgenug Год назад +84

    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.

  • @NeverSink
    @NeverSink Год назад +241

    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  Год назад +44

      Thanks! And that's awesome, I'm happy to hear it!

    • @kalledk21
      @kalledk21 Год назад +13

      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 Год назад +2

      @@kalledk21 Haha, that's one way to liquify your currency in Path of Exile I suppose :)

    • @strelnagaming
      @strelnagaming Год назад

      ​@@xu_fengxuanim pretty sure members get early access

  • @2pringles
    @2pringles Год назад +47

    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

  • @ПослеДождичкавЧетверг-ы2ю

    This is probably the only channel where I can watch an almost hour long video and not get bored for a tiny second

    • @PetasticFood
      @PetasticFood Год назад +4

      fr bro

    • @playbird9009
      @playbird9009 11 месяцев назад +8

      While not understanding half of the stuff happening lol

    • @daffa_fm4583
      @daffa_fm4583 11 месяцев назад +4

      i didnt even realize it was almost an hour long

    • @Basuliic
      @Basuliic 11 месяцев назад +1

      the visualization here is better than marvel sgi

    • @PetasticFood
      @PetasticFood 11 месяцев назад

      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

  • @charliezard64
    @charliezard64 Год назад +92

    The production value, education, and accessibility of Sebastian Lague’s videos is astounding. Keep up the great work! ❤

  • @Maxy.waxyyy
    @Maxy.waxyyy Год назад +47

    I love how the water particles simulate adhesion and cohesion naturally… so cool… (33:05)

  • @kallethoren
    @kallethoren Год назад +95

    You're like the Bob Ross of coding! Always a great day when you upload 😁

    • @crakhaed
      @crakhaed Год назад +4

      No bugs, only happy accidents lol

  • @thecakecraft7724
    @thecakecraft7724 Год назад +618

    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 Год назад +20

      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__ Год назад +4

      I'm pretty sure his cat made this one. The cat was covering the keyboard in almost every shot.

  • @gokayakcay7093
    @gokayakcay7093 2 месяца назад +4

    I am currently a Bcs. Physics senior year student, and you inspired me since my childhood, thank you for that. I hope to make it soon on my term project too..

  • @darkstar76
    @darkstar76 Год назад +46

    this guy can make the most complicated concepts digestible and he has a calming voice and amazing editing

  • @YitzharVered
    @YitzharVered Год назад +41

    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!

  • @birb4415
    @birb4415 Год назад +9

    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.

  • @michellinzer4881
    @michellinzer4881 Год назад +754

    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 Год назад +12

      absolutely spot on!

    • @0.Andi.0
      @0.Andi.0 11 месяцев назад +28

      "This bug is a happy accident if you look at it this way"

    • @keheck
      @keheck 6 месяцев назад

      And let's but another one next to it, because everyone needs a friend

  • @CriticalMonkey623
    @CriticalMonkey623 Год назад +275

    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 Год назад +23

      @@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 Год назад

      @@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 Год назад

      gotcha@@goldenbananas1389

  • @rainrope5069
    @rainrope5069 46 минут назад

    I really love your videos. Exploratory/creative coding content like this is easily digestible and it allows your viewers to follow along and take the same steps that you do. Reading a research paper is pretty daunting-- being explained the concepts in plain language is a lot easier :)

  • @Tomsbax
    @Tomsbax Год назад +57

    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

  • @DaveeeOnTop
    @DaveeeOnTop Год назад +19

    That 3blue1brown plush was so fitting with the math refresh, glad to see him also enjoy the obscure math problems and their explanation

  • @dav1dsm1th
    @dav1dsm1th 9 месяцев назад +3

    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.

  • @LevTheDev
    @LevTheDev Год назад +80

    Not only did he learn these concepts and teach them, he built an interactive tool to use as a presentation aid.

    • @alpani6805
      @alpani6805 Год назад +5

      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 Год назад +19

      @@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 Год назад

      Better use Godot and dont support those Unity poopheads @@alpani6805

  • @waffles6132
    @waffles6132 Год назад +86

    I love how humble and determined he is.

  • @mlisic431
    @mlisic431 Год назад +66

    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).

    • @Kasuyakema
      @Kasuyakema Год назад +3

      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 Год назад +7

      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)

    • @Kasuyakema
      @Kasuyakema Год назад

      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 11 месяцев назад

      @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 11 месяцев назад

      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

  • @SpringySpring04
    @SpringySpring04 Год назад +38

    47 minute Sebastian Lague video?
    Heck yeah!
    Love seeing these very charming and interesting programming projects you do. It's a lot of fun!

  • @cognisent_
    @cognisent_ Год назад +94

    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.

  • @mr.inconspicuous6395
    @mr.inconspicuous6395 Год назад +26

    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 Год назад +5

      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 Год назад +2

      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.

  • @OldShatterham
    @OldShatterham Год назад +25

    Fluid simulation is probably one of the holy grails of indie gamedev. Great work!

    • @1234macro
      @1234macro Год назад +5

      Unless your entire game revolves around the fluid simulation, you're not gonna be looking to implement one

  • @Oziji
    @Oziji Год назад +227

    An absolutely classic Lague video

  • @adaloveless3904
    @adaloveless3904 Год назад +1

    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!

  • @AndyBrice-d8j
    @AndyBrice-d8j Год назад +25

    Very impressive. I also like the fact that you don't hide your mistakes.

  • @felippemiguel6751
    @felippemiguel6751 Год назад +563

    Sebastian Lague: new video \0/
    All programmers while watching: “This part of my life, this little part, is called happiness”
    Thank you.

  • @Pavel10017
    @Pavel10017 Год назад +12

    I’d love a video on how these animations are made. Beautiful.

  • @ivovelo
    @ivovelo Год назад +8

    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!

  • @mariandev
    @mariandev Год назад +34

    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  Год назад +12

      Thank you, and congrats on the release! What is your game called?

    • @mariandev
      @mariandev Год назад +12

      @@SebastianLague Monos: The Endless Tower

    • @SebastianLague
      @SebastianLague  Год назад +13

      @@mariandev Looks really nice! That's a cool idea to have the game take place along the outside of the tower :)

  • @netomtoloko01
    @netomtoloko01 Год назад +1

    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

  • @Jejkobbb
    @Jejkobbb Год назад +12

    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 Год назад +1

      they could all be on their own planets, from the solar system video

    • @curhob
      @curhob Год назад

      Since it's Lague doing these things and not Unity, he would need an SL logo, coding adventure or something specific.

  • @charliemw333
    @charliemw333 Год назад +18

    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 Год назад +3

      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

  • @honza4471
    @honza4471 Год назад +2

    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

  • @rojnx9
    @rojnx9 Год назад +7

    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.

  • @Hailfire08
    @Hailfire08 Год назад +30

    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 Год назад +7

      yes or extend the particles beyond the boundary and only render those within

    • @thecasualparry7797
      @thecasualparry7797 Год назад

      @@Ra99y This would make particles suddenly dissapear. An interesting tradeoff though.

    • @opitopit2105
      @opitopit2105 Год назад +4

      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

  • @nurofen127
    @nurofen127 Год назад +2

    Thank you for the journey. It was great and satisfying to watch how you handle pretty complex problems of this project.

  • @mattwhelan13
    @mattwhelan13 Год назад +10

    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

  • @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!

  • @pindab0ter
    @pindab0ter Год назад +1

    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!

  • @HedgeByte
    @HedgeByte Год назад +9

    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.

  • @robbybobbyhobbies
    @robbybobbyhobbies Год назад +4

    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.

  • @rastyisanerd3686
    @rastyisanerd3686 10 месяцев назад +1

    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.

  • @dampfwatze
    @dampfwatze Год назад +100

    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 Год назад +2

      He actually did a video on the marching cubes algorithm once

    • @theangry0077
      @theangry0077 Год назад +2

      46:38

    • @1e1001
      @1e1001 Год назад +2

      @@samuelthecamel that's probably part of why it was brought up

    • @feha92
      @feha92 Год назад +2

      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

  • @DigitalHandle
    @DigitalHandle Год назад +36

    even though im currently sick, i still wanna watch sebastian lague, don't wanna miss his greatness, do i?

    • @Alex-lp6bg
      @Alex-lp6bg Год назад +1

      Same here....

    • @jackthehacker05
      @jackthehacker05 Год назад +1

      Feeling rubbish too! We’ll get through it!

    • @forgettd
      @forgettd Год назад

      Get well soon guys! ❤

  • @azyrael96
    @azyrael96 4 месяца назад

    I think this is my favorite video of him so far. Good length, dives into some interesting details, and seems not too complicated to write yourself (disregarding the compute shader part). Also leads to very pleasing visual results. Great work all around.

  • @shadowcraftersr
    @shadowcraftersr Год назад +20

    New coding adventure: Time to binge watch the whole series again!

  • @whwahhdsh
    @whwahhdsh Год назад +31

    It's a good day when Sebastian uploads.

  • @cheesetheorange4503
    @cheesetheorange4503 Год назад

    A really underrated quality of this sort of basic simulation is it shows how fundamental properties are-stuff like the fluid levels on both sides of a barrier staying even, etc. All a “fluid” needs to have these properties is just the basic density pressure functions, and this is a real physical effect.

  • @cathalredmond4789
    @cathalredmond4789 Год назад +50

    0:38 Sebastian: "Let's keep track of the particle's position and velocity." Heisenberg: "Am I a Joke to you?"

  • @toara
    @toara Год назад +5

    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

  • @oblongowl
    @oblongowl Год назад

    Really enjoyed this video. As a senior artist in effects i understood most of it - but it was still very illuminating on the procedures and math you needed to implement. Thanks for sharing.

  • @4.0.4
    @4.0.4 Год назад +4

    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.

  • @Operational117
    @Operational117 Год назад +4

    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.

  • @lukef8978
    @lukef8978 11 месяцев назад +1

    This reminds me of a game I had on my phone years ago, where it was basically the same 2 dimensional fluid but you could only pick up the fluid. Great video

  • @Hailfire08
    @Hailfire08 Год назад +12

    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 Год назад +3

      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  Год назад +1

      That makes sense, thanks for the explanation!

    • @davidvargas7651
      @davidvargas7651 Год назад +1

      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 Год назад

      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)?

  • @squirrel
    @squirrel Год назад +4

    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 😊

  • @dgoodwin1122
    @dgoodwin1122 Год назад

    I know little to nothing about coding and i find your videos absolutely fascinating.

  • @franknord4826
    @franknord4826 Год назад +6

    I love your videos, mate. It's at the perfect level where I can still follow and covers so many things I want to try doing with Godot.
    Also please never stop documenting all the ways your implementations fail, that stuff is *so* relatable - I swear I had point for point the same problems as you when I was doing erosion simulation and actually cackled like a maniac when you too got the spikes forming. 😂

  • @OrganicCitrus
    @OrganicCitrus Год назад +5

    you're a literal coding code, every upload is just another mind boggling adventure

  • @podoke
    @podoke Год назад +1

    crazy how i can watch you do every single step, hear you explain everything so simply and yet the end result feels like magic
    like the world is really just made up of math isnt it

  • @Abstract_Code
    @Abstract_Code Год назад +5

    The editing on this video is on another level!!!
    Great job Sebastian 👏

  • @VojtaKoci
    @VojtaKoci Год назад +14

    Bloody hell, I never comment on videos, but I have to now. You really are a RUclips prodigy. Every time I watch one of your videos I'm just amazed how much better it is compared to other "gamdev" (I have nothing but contempt for that word), coding or other educative videos. The incredible care for visualizations and editing, the detailed examples of code or even the strict presence of subtitles make your videos so helpful and enjoyable. Thanks and have a good day, cheers!

    • @eddiedoesstuff872
      @eddiedoesstuff872 Год назад

      Why do you have so much contempt for the term gamedev?

    • @VojtaKoci
      @VojtaKoci 11 месяцев назад

      @@eddiedoesstuff872 Hehehe , sorry, that was a misfortunate choice of words... I think I just have a subtle allergic reaction to the term as it is so brutally overused all over the internet, where on every corner of RUclips or other sites people keep selling you the "gamedev lifestyle". I guess my brain just created a shortcut between the term and this unique type of narcissism. I'm fine with all the other terms, videogame creator, game developer or whatnot. Sorry, it was just an unnecessary note...

  • @formal4029
    @formal4029 4 месяца назад

    An unbelievably amazing watch and nothing has made me simultaneously as excited to program and overwhelmed at how little i know

  • @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.

    • @antoniomacia7718
      @antoniomacia7718 3 месяца назад +1

      I would love to know how the density field is drawn. Specially since CPU computing the density for each pixel on screen is not feasible.

  • @sailehd1666
    @sailehd1666 Год назад +7

    a constant flow of fluid would be cool. Like a fountain. Or a water wheel

  • @isleofdeath
    @isleofdeath Год назад

    The SPH tutorial is gorgeous, thanks for the link.Easy to understand without too much knowledge of physics.

  • @feha92
    @feha92 Год назад +4

    Honestly really interesting video. Much more than I expected from the subject.
    I particularly liked it when you started going into spatial indexing with a grid (forget the name of the exact method you picked, but basically same idea as a quadtree except uniform grid-sizes etc) and got into stuff like how to turn it infinite without dynamic quadtrees/lists of cells, etc. Though I also liked watching pretty animations before that, as always (you are truly surprisingly good at them, particularly how you turn "writing code" animations into something that manages to retain attention is surprising. (Honestly, overall I can only compare your animations to 3blue1brown).
    beware for an incoming WALL OF TEXT of my ponderances, observations, and impressions, noted down throughout as I watched the video :)
    24:00
    I was like "of course!" when you mentioned multiplying axes by primes :D Though you should imo have expanded a bit on the hashing, as ie. "3" and "2" are primes (coprime, even), but (2,0) would end up with same hash as (0,3), so explaining what properties/kinds of primes are desired would have been nice. Additionally, there was no mention of the risk of collisions, and *_why_* it is mostly a non-issue (at most you additionally calculate that extra grid-cell unnecessarily literally no change in result - optimization was 'robust'), with any hit on performance being utterly unnoticeable). While I figure it is something rather intuitive if you understand this part, I still think it deserves highlighting for ppl who stumbled because they assumed hashes must be unique, or simply didn't consciously think of this and might appreciate having this fun 'robustness' in the optimization pointed out.
    Spatial indexing is honestly such a fascinating subject!
    25:00
    When you mentioned the sorting, I started further pondering on how the nature of modifications over time play at the sorting algorithms that should be used. Like, I imagine that as the simulation plays only a few particles might change cell at any point, so even if a sorting algorithms worst-case is bad, it might be worth using over others if it handles cases where only a fraction of the list is out of order well. Maybe even ones that require being told _which_ indices has moved out of order.
    Would have been nice to have mentions on your thoughts and work on this topic. Or maybe if you decided to not run sort once per frame (that needed it), and instead make Removal and Insertion (aka Modify) operations ensure the list remains sorted? If so, how worthwhile is that to simply running a sort instead, how many particles would need to be out-of-order in a single frame to warrant sorting-per-frame over using a sorted data-structure?
    25:50
    Not a fan of how you represent start indices here. The infinity values makes sense when you understand what you are doing, but not only does it not truly exist in code (apart from the few languages where it does), but it also implies existence of such a key in the lookup table.
    I would much have preferred something like an Option/Result type ("[None, None, Some(0), Some(3), None, ...]"), or if you imagine it risks needing another subject explained, simply use obviously invalid values like "null" or "-1" (I have difficulty ppl watching this video not understanding null values, but negative values is guaranteed to be understood once mentioned how there are no negative indices in a list).
    26:00 oh, you did end up explaining collisions. Would much have preferred to see this mentioned back at the hashing section, rather than the very end of spatial indexing.
    26:50 so we now see you decided on sorting per frame (I imagine this is best for this many particles). But any thoughts on which algorithm? I know you are using Array's default, but would love to hear any considerations you might have had :)
    27:10 I appreciate being shown the hash stuff :) Was curious which primes you would pick, and see you decided on somewhat large ones, as is generally desired for has functions.
    28:20 I think it _is_ actually a "somewhat usable solution"? Fairly sure I have heard of "easing in the physics" as being a not too unusual thing to do with simulations, and particularly I have a (very) vague memory of a 2minutepapers video about a liquid simulations where they _did_ "ease in the physics"?
    28:40 Why is this so much better? I have some thoughts, but can't feel certain about them and would have loved further indepth explanation on this. Also, would doing something like "position + (predictposition-position)/2" (getting the position between current and predicted) be a further improvement? Or worse?
    And does the "step frame-by-frame" work in reverse? Or is this an irreversible process?
    30:30 that's interesting behaviour. Any idea why this is, what might have been the issue, and how/what you would need to do to solve it?
    Also, damn those are some satisfying animations/simulations to watch, The velocity heat-colors really adds to it :) And vortices looks so good with that!
    32:40 I'm noting that the particles seem to like hugging the wall a lot. Unsure why, but I do find it funny as it appears to be an unintentional implementation of surface tension making water like to climb up the sides of a glass slightly. Could you try having a straw of those walls lowered into the fluid to see if there will be capillary action too?
    Oh, you kinda mention this later, though not mentioning how this causes that "stick to glass and travel a bit up the side" behaviour.
    38:20 Those negative nearpressures actually made for cool effects. I wonder what other fund stuff you could reappropriate this project for if you use that. Maybe something space like? Or like your mold simulations, maybe simply for making cool-looking animations? I also can't help but imagine games taking place in it...
    btw, the nearpressure kernel, how can it not mess up the simulation despite having nearly the same radius as the other one, and almost never be less than 50% of it? Or is the smoothingradius secretly much lower for the nearpressure, or the spike spikier than the graph suggests?
    40:00 always love your compute shader bloopers :D Look funny, and in a world where we almost only ever see the final results, this kind of thing does really help lower impostor syndrome feelings. We all go through those iterative processes. PS: that one at 40:44 was _really_ cool. Reminded me of something kinda like electricity. Would love to see something more, based on that.
    41:00 ooh, another really fascinating subject! Would have loved more indepth on this topic. Also, I imagine you used unit-testing to sanity-check this code? As I imagine trying to figure out it's wrong from looking at a fluid simulation would be difficult :p :D
    43:40 ooh, (2 frames of) cool interference patterns at the lower left!!! ...wait ..interference in the velocities? Interesting!
    44:40 makes me wish to see the capillary test again, as well as makes me really interested in seeing a siphoning test (does momentum in the fluid make a siphon continue to operate after being started?
    In conclusion: really impressed by all you did, learned some stuff, had new questions created, and immensely enjoyed all the mesmerizing animations! :)

    • @sh4dow666
      @sh4dow666 Год назад

      Sorting: since adjacent cells are not adjacent in the hash list, moving one object to another cell potentially moving most array entries over by one position. Since the complexity of sorting is just a bit worse (n log n vs n), and there might be many cell transitions per frame, the sorting approach is probably asymptotically optimal.
      Why is this so much better?: A big part is that this integration scheme underestimates the kinetic energy of the particles, and that makes them slow down faster. It also has a lower integration error, which is probably good to have in general. Your idea is close to a method that's actually used to improve integration: evaluating the acceleration at start- and endpoint, and taking the average (f(position)+f(position+speed)/2). It's called Heuns method.
      As it stands, it is not perfectly reversible, since the original "predictedPositions" estimate is lost. The actual next-step position differs by the acceleration, and since that depends on the predictedPositions, it's exact value is not recoverable. You could however approximate it reasonably well (simply integrate backwards).
      that's interesting behaviour: the "intended" bahavior is actually the misestimation of the kinetic energy (making the particles slower than they "should" be, given the high initial compression (it's like a pressure canister explosion)). More steps means lower error -> the slowing down of the particles is replaced by a more "physically correct" simulation.
      stick to glass: it's actually a consequence of the density difference between the inside and outside of the box - the particles are "attracted" to (or rather, pushed against it by the liquid) the relative vacuum on the outside (nothing "reflects" the density force from the wall), and slowed down by repeated contact with the wall. Ie. "freezing vacuum walls"...
      Walls (or pairs of walls) within the liquid would slow it down (drain energy/speed with each collision), but show no "capillary action", since the water acts across the walls (the missing expected action from "water" on the other side of the wall is what causes the strange behavior).
      nearpressures: the nearpressure is very similar to the normal pressure, so if anything, it would just reduce the effective density by a bit (the behavior of a gas is pretty robust concerning different repulsion geometries). Also, the "preferred" distance between the particles was probably already beyond the region where the nearpressure has a significant impact.
      You'd expect to see waves in a fluid, and waves do tend to form interference patterns :)
      siphon: this simulation has neither air pressure nor significant enough intramolecular attraction (the tendril formation means the liquid has negative surface energy, at least in 2D - ie. you could never siphon bulk water, at most single "strands" of water, and probably only in very weak gravity), nor capillary effects (a side effect of surface energy). So no luck in the current version.

    • @feha92
      @feha92 Год назад

      @@sh4dow666
      stick to glass: right, thats obvious now that I think about it.
      beyond the region where the nearpressure has a significant impact: except they had the same smoothing radius, and almost never less than 50% the amplitude (I think it did at the very fringes of the radius, but even slightly in and the difference is small).
      Yes, interference patterns was expected. Except I expected them to appear in the form of density. What was interesting here (aside from simply the "whoa pretty pictures~", which admittedly is something I enjoy with this creators videos) was how they were in the form of velocities instead (I do imagine it comes from the velocity equalization).
      siphon: you don't _need_ air-pressure to power a siphon. It is enough that there is a momentum in the liquid (which could manifest from unexpected parts of the implementation - particularly the velocity equalization might provide enough of an adhesive force for a started siphon to continue running. If only for a short while as they probably don't spawn infinite amounts of energy into the system. They also like sticking to eachother as we saw in 43:45, and although this might be caused from the aforementioned, it still does show potentially for forming a band pulling out liquid from the raised reservoir).

  • @jeanladoire4141
    @jeanladoire4141 Год назад +8

    I don't even do programming, but i just love your videos

  • @iustin1174
    @iustin1174 Год назад

    Man, this channel is inspiring, I mean the whole mindset of let's take it step by step, read how others did it before ... gives me the hope that I just need to start anything and somehow I will make it... it's so cool!!

  • @artemius8442
    @artemius8442 Год назад +4

    42:10 gives me Factorio vibes. Kinda makes sense as a sorter and balancer are related. Never thought of it that way.

    • @terdragontra8900
      @terdragontra8900 11 месяцев назад

      hmmm... im not sure if this kind of sorter is always perfectly a balanced when made of splitters in factorio, that would very cool if true

  • @SolidIncMedia
    @SolidIncMedia Год назад +8

    Thank you for including more of your cat in the video. They're the icing on the top of the cake!

  • @RoySATX
    @RoySATX 2 месяца назад

    Having struggled all my life with both math and self confidence, I can honestly say nothing has been more therapeutic, constructive, or productive for me as watching Sabastian's coding videos. With each video of his I watch I shed a little anxiety and think a little clearer. "Let's call this array 'Spatial Lookup' because that sounds nice and fancy"! Brilliant.

  • @OutbackCatgirl
    @OutbackCatgirl Год назад +17

    I'm a simple gal. I see a new Coding Adventure, I click.
    Love these.

  • @lejoueurfreetoplay
    @lejoueurfreetoplay Год назад +6

    Wait until Sebastian Lague reveals that he used all of his coding adventures to make an actual game

  • @jftsang
    @jftsang 6 месяцев назад

    Fascinating. My PhD was modelling dry fluids like sand and grains as spherical or cylindrical particles, so this was a nice trip down memory lane. Many of the principles were the same but the contact laws were very different. I'm very jealous of your tools for visualising output and interactively changing parameters: not only do they make for a lovely RUclips video, but it sure makes trial-and-error investigations much easier than loading results in gnuplot!

  • @Christanoid
    @Christanoid Год назад +4

    For my masters thesis I have actually used your Marching Cubes algorithm from the Terraforming video to render a fluid amongst other methods of rendering. Raymarching was one rendering technique I gave up on due to the limited time I have for the thesis. Allthough I would love you see your spin on it at a later point.

    • @SebastianLague
      @SebastianLague  Год назад +2

      That’s awesome! What other methods did you look at? I guess one could blur the particles, it struggling to think of anything else to try beyond that.

    • @Christanoid
      @Christanoid Год назад +3

      I looked at the Screen Space Meshing Paper from Matthias Müller which creates a new Mesh every frame that fits the viewport frustums view of the Particles and am currently stitching together some old Nvidia Papers for direct rendering as basically a post process shader by rendering the Particles into a depth buffer, smoothing that, creating normals from that depth map and then shading that. Was a GDC 2010 talk named "Screen Space Fluid Rendering for Games" by Simon Green. It compliments well with another paper from Simon Green called "Screen space fluid rendering with curvature flow".

    • @SebastianLague
      @SebastianLague  Год назад +4

      @@Christanoid Nice, I'll look into those -- thank you :)

  • @danielmyers76
    @danielmyers76 6 месяцев назад +3

    So…did anyone else notice this guy sounds like 40% Sean Carrol’s voice 60% Grant Sanderson’s voice with an accent…It almost wasn’t a surprise to me to see Grant’s Pi creature.

  • @martingamer434
    @martingamer434 Год назад

    I am a mechanical engineering student and this semester I programmed the lid-driven-cavity model by solving the navier stokes equations by using the finite difference method. Nice to see another experiment like yours!

  • @ThaRemo
    @ThaRemo Год назад +4

    Those moments when things suddenly look sort of realistic the first time are just 💆

  • @Yakushii
    @Yakushii Год назад +5

    I just need to say that I find it very encouraging that you are paying the cat tax up front. I hate it when people have cats, and don't pay the cat tax on their videos.

  • @peturh
    @peturh Год назад +1

    I don't know why, but so many points in the video just made me grin. An alternative title to this video could be "The beauty of math".
    For every addition you make to the simulation it becomes more captivating and hypnitizing. Watching the initial steps with, what i would call, fairly little math, you can see how its starting to behave water like.
    Beautiful video, amazing watch.