diff options
author | Adrian Kummerlaender | 2021-06-15 00:10:29 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2021-06-15 00:10:29 +0200 |
commit | a743ad65386404d03016511c8af0b2b055cca4b0 (patch) | |
tree | 81e173bee8662c2947b246fda485d7fa643b92a2 | |
parent | 74ec92324ed32a08c9117ab437e5c10845f85081 (diff) | |
download | LiterateLB-a743ad65386404d03016511c8af0b2b055cca4b0.tar LiterateLB-a743ad65386404d03016511c8af0b2b055cca4b0.tar.gz LiterateLB-a743ad65386404d03016511c8af0b2b055cca4b0.tar.bz2 LiterateLB-a743ad65386404d03016511c8af0b2b055cca4b0.tar.lz LiterateLB-a743ad65386404d03016511c8af0b2b055cca4b0.tar.xz LiterateLB-a743ad65386404d03016511c8af0b2b055cca4b0.tar.zst LiterateLB-a743ad65386404d03016511c8af0b2b055cca4b0.zip |
Fix source link
-rw-r--r-- | lbm.org | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,14 +1,13 @@ #+TITLE: A literate Lattice Boltzmann Code #+SUBTITLE: [[https://kummerlaender.eu][Adrian Kummerländer]] #+STARTUP: latexpreview -#+HTML_DOCTYPE: html5 #+OPTIONS: toc:nil html-postamble:nil html5-fancy:t html-style:nil #+PROPERTY: header-args :exports both :mkdirp yes :noweb no-export :eval no-export #+PROPERTY: header-args:python+ :var lattice="D2Q9" #+PROPERTY: header-args:cpp+ :main no :eval no -#+HTML_MATHJAX: path:"https://static.kummerlaender.eu/mathjax/MathJax.js?config=TeX-AMS_HTML" - +#+HTML_DOCTYPE: html5 #+HTML_HEAD: <link rel="stylesheet" type="text/css" href="org.css"/> +#+HTML_MATHJAX: path:"https://static.kummerlaender.eu/mathjax/MathJax.js?config=TeX-AMS_HTML" #+BEGIN_ABSTRACT This file describes a full Lattice Boltzmann code featuring both 2D and 3D lattices, a workable selection of boundary conditions, Smagorinsky @@ -126,7 +125,7 @@ Such boundary conditions are one of the major topics of LBM research with a very steps for modeling e.g. inflow, outflow, solid or moving walls of various kinds. ** Literate Programming -The present website is the documentation /woven/ from the literate program file [[https://literatelb.org/tangle/lbm.org][=lbm.org=]]. +The present website is the documentation /woven/ from the literate program file [[https://code.kummerlaender.eu/LiterateLB/tree/lbm.org][=lbm.org=]]. In the same fashion this program file may also be /tangled/ into compilable code. Programs written using this paradigm are commonly referred to as /literate/ and promise to decouple program exposition from the strict confines of machine-targeted languages. @@ -140,7 +139,7 @@ On CUDA-enabled NixOS hosts the following commands are all that is needed to tan git clone https://code.kummerlaender.eu/LiterateLB cd LiterateLB nix build -./result/nozzle +./result/bin/nozzle #+END_SRC On other systems the dependencies |