Initial commit

This commit is contained in:
Alex Selimov 2026-03-15 22:45:27 -04:00
commit 0848e7afe6
5 changed files with 22 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*/target/*

7
12_steps_to_navier_stokes/Cargo.lock generated Normal file
View file

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "steps"
version = "0.1.0"

View file

@ -0,0 +1,6 @@
[package]
name = "steps"
version = "0.1.0"
edition = "2024"
[dependencies]

View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

5
README.md Normal file
View file

@ -0,0 +1,5 @@
# CFD Playground
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 🦀🦀🦀.