commit 0848e7afe6fb02d54f843201e1816b70c780bceb Author: Alex Selimov Date: Sun Mar 15 22:45:27 2026 -0400 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bd292a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*/target/* diff --git a/12_steps_to_navier_stokes/Cargo.lock b/12_steps_to_navier_stokes/Cargo.lock new file mode 100644 index 0000000..bdb6ce4 --- /dev/null +++ b/12_steps_to_navier_stokes/Cargo.lock @@ -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" diff --git a/12_steps_to_navier_stokes/Cargo.toml b/12_steps_to_navier_stokes/Cargo.toml new file mode 100644 index 0000000..3515ccb --- /dev/null +++ b/12_steps_to_navier_stokes/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "steps" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/12_steps_to_navier_stokes/src/main.rs b/12_steps_to_navier_stokes/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/12_steps_to_navier_stokes/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..b53a0a7 --- /dev/null +++ b/README.md @@ -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 🦀🦀🦀.