From 30d651c6cd397e79c80580b2ee9b9db2ebb9b2e9 Mon Sep 17 00:00:00 2001 From: Orestis <orestis.malaspinas@pm.me> Date: Thu, 14 Mar 2024 13:18:25 +0100 Subject: [PATCH] added foreword --- lattice-boltzmann.com/content/_index.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lattice-boltzmann.com/content/_index.md b/lattice-boltzmann.com/content/_index.md index 5e74d20..13b618e 100644 --- a/lattice-boltzmann.com/content/_index.md +++ b/lattice-boltzmann.com/content/_index.md @@ -4,3 +4,18 @@ sort_by = "date" template = "index.html" +++ +Welcome to my opinionated lattice Boltzmann method (LBM) "blog". The aim of this project +is to create a simple yet complete lattice Boltzmann solver and guide the reader through every +step of the way. In order to be self consistent it will contain a theoretical presentation +of the lattice Boltzmann method and present the derivation of the numerical method +as well as a complete implementation. The idea behind this blog is also to +introduce the reader to novel implementation techniques using functional programming. +To this aim we will use the hardware agnostic [Futhark](https://futhark-lang.org/) +that allows to target a vast amount of architectures (single/multi-core CPU to any +possible GPU). + +The content in this blog does not claim to be a complete reference on the LBM, +but rather a useful resource for beginners and more advanced researchers to understand the basics +and also advanced implementation details on the method. + + -- GitLab