From 0848e7afe6fb02d54f843201e1816b70c780bceb Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Sun, 15 Mar 2026 22:45:27 -0400 Subject: [PATCH] Initial commit --- .gitignore | 1 + 12_steps_to_navier_stokes/Cargo.lock | 7 +++++++ 12_steps_to_navier_stokes/Cargo.toml | 6 ++++++ 12_steps_to_navier_stokes/src/main.rs | 3 +++ README.md | 5 +++++ 5 files changed, 22 insertions(+) create mode 100644 .gitignore create mode 100644 12_steps_to_navier_stokes/Cargo.lock create mode 100644 12_steps_to_navier_stokes/Cargo.toml create mode 100644 12_steps_to_navier_stokes/src/main.rs create mode 100644 README.md 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 🦀🦀🦀.