Initial commit
This commit is contained in:
commit
0848e7afe6
5 changed files with 22 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
*/target/*
|
||||
7
12_steps_to_navier_stokes/Cargo.lock
generated
Normal file
7
12_steps_to_navier_stokes/Cargo.lock
generated
Normal 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"
|
||||
6
12_steps_to_navier_stokes/Cargo.toml
Normal file
6
12_steps_to_navier_stokes/Cargo.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "steps"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
3
12_steps_to_navier_stokes/src/main.rs
Normal file
3
12_steps_to_navier_stokes/src/main.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
5
README.md
Normal file
5
README.md
Normal 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 🦀🦀🦀.
|
||||
Loading…
Add table
Add a link
Reference in a new issue