Add step_1 of navier stokes

This commit is contained in:
Alex Selimov 2026-03-16 14:30:02 -04:00
parent 0848e7afe6
commit 17ee54abd4
8 changed files with 466 additions and 2 deletions

View file

@ -3,3 +3,10 @@
Playground for me to mess around with CFD simulations.
First part of this will be implementing Lorena Barba's 12 steps to Navier-Stokes codes.
Also will be doing this in Rust because performance isn't critical here and I like Rust the best 🦀🦀🦀.
## Notes on Rust Code
Just fyi to anyone coming across this.
This is a playground and not intended to be production grade rust.
As a result, you may see some unwraps here and there (or other not safe/not production Rust).
I don't suggest copying this code exactly if you are writing your own production grade solvers.