From cdb177792a74856849149524dc31ff43bc2b650e Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Tue, 11 Nov 2025 09:49:36 +0100 Subject: Changed structure a bit and added some ignores --- .gitignore | 1 + .nix/derivation.nix | 5 ++++- typst/main.typ | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++ typst/refs.bib | 19 ++++++++++++++++ typst/report.typ | 55 ----------------------------------------------- 5 files changed, 86 insertions(+), 56 deletions(-) create mode 100644 typst/main.typ create mode 100644 typst/refs.bib delete mode 100644 typst/report.typ diff --git a/.gitignore b/.gitignore index fcfc4a1..34b3328 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ result* +*.pdf diff --git a/.nix/derivation.nix b/.nix/derivation.nix index 5a1f1db..3be1695 100644 --- a/.nix/derivation.nix +++ b/.nix/derivation.nix @@ -1,6 +1,7 @@ { lib , stdenv , typst +, typstPackages }: stdenv.mkDerivation { @@ -11,7 +12,9 @@ stdenv.mkDerivation { nativeBuildInputs = [ typst - ]; + ] ++ (with typstPackages; [ + charged-ieee + ]); buildPhase = '' typst compile report.typ out.pdf diff --git a/typst/main.typ b/typst/main.typ new file mode 100644 index 0000000..198fd66 --- /dev/null +++ b/typst/main.typ @@ -0,0 +1,62 @@ +#import "@preview/charged-ieee:0.1.3": ieee + +#show: ieee.with( + title: [Stokes flow - Particle interaction in low Reynolds Number environments], + abstract: [ + ], + authors: ( + ( + name: "Claudius Holeksa", + department: [CSSR], + organization: [NORCE Research AS], + location: [Bergen, Norway], + email: "clho@norceresearch.no" + ), + ), + index-terms: ("Scientific writing", "Typesetting", "Document creation", "Syntax"), + bibliography: bibliography("refs.bib"), + figure-supplement: [Fig.], +) + += Introduction + +For the understanding of near-well injections multiple elements such as multiphase behaviour, particle-solid interaction and +the geometry of the porous structure is required. +While at heart most numerical modelling approaches such as the Lattice-Boltzmann-Method are based on the Navier-Stokes Equations, +here we will take a glance on a more special case. +Since we are interested in very viscous cases with our Reynolds number (Re \< \< 1) our base equation reduces itself to the Stokes Equations, +which are well understand in terms of the description by Stokes [dummy, I mean the old paper from 1851]. +So the Navier-Stokes equations + +todo insert NS eqs here + +are reduced to + +todo insert S eqs here +// Rather move this to the lower chapters and use book citations I guess. Well, maybe also Stokes paper. The initial rant is quite fun + + +== Navier + +The Navier Stokes equations are governed as follows + +// we don't really need the external force here? do we? + +#math.equation( +block: true, +$ ρ((∂)/(∂t)u + (u · ∇)u) = −∇p + μ∇²u + f\ +∇ · u = 0 $ +) + +// Introduction +== Stokes flow + +While we are often interested in Navier-Stokes flows, on higher viscous fluids the viscosity dominates. + + +== Solid-Fluid interaction with Stokes flow + +So while + +// References +== References diff --git a/typst/refs.bib b/typst/refs.bib new file mode 100644 index 0000000..c862e98 --- /dev/null +++ b/typst/refs.bib @@ -0,0 +1,19 @@ +@article{netwok2020, + title={At-scale impact of the {Net Wok}: A culinarically holistic investigation of distributed dumplings}, + author={Astley, Rick and Morris, Linda}, + journal={Armenian Journal of Proceedings}, + volume={61}, + pages={192--219}, + year=2020, + publisher={Automatic Publishing Inc.} +} + +@article{netwok2022, + title={{Net Wok}++: Taking distributed dumplings to the cloud}, + author={Morris, Linda and Astley, Rick}, + journal={Armenian Journal of Proceedings}, + volume={65}, + pages={101--118}, + year=2022, + publisher={Automatic Publishing Inc.} +} diff --git a/typst/report.typ b/typst/report.typ deleted file mode 100644 index 112ed12..0000000 --- a/typst/report.typ +++ /dev/null @@ -1,55 +0,0 @@ -// Title Page -= Solid particle interaction in Stokes flow - -Author: "Claudius Holeksa" -Date: 2025-11-09 - -// Abstract -// == Abstract -// This is a brief summary of the report. It gives an overview of the objectives, methods, and conclusions. - -// Table of Contents -[toc] - -== Introduction - -For the understanding of near-well injections multiple elements such as multiphase behaviour, particle-solid interaction and -the geometry of the porous structure is required. -While at heart most numerical modelling approaches such as the Lattice-Boltzmann-Method are based on the Navier-Stokes Equations, -here we will take a glance on a more special case. -Since we are interested in very viscous cases with our Reynolds number (Re \< \< 1) our base equation reduces itself to the Stokes Equations, -which are well understand in terms of the description by Stokes [dummy, I mean the old paper from 1851]. -So the Navier-Stokes equations - -todo insert NS eqs here - -are reduced to - -todo insert S eqs here -// Rather move this to the lower chapters and use book citations I guess. Well, maybe also Stokes paper. The initial rant is quite fun - - -== Navier - -The Navier Stokes equations are governed as follows - -// we don't really need the external force here? do we? - -#math.equation( -block: true, -$ ρ((∂)/(∂t)u + (u · ∇)u) = −∇p + μ∇²u + f\ -∇ · u = 0 $ -) - -// Introduction -== Stokes flow - -While we are often interested in Navier-Stokes flows, on higher viscous fluids the viscosity dominates. - - -== Solid-Fluid interaction with Stokes flow - -So while - -// References -== References -- cgit v1.2.3