From 2025df0c6771de815922da56623c5c703b1d0f8f Mon Sep 17 00:00:00 2001 From: Andreas Stahel Date: Wed, 5 Mar 2025 08:49:13 +0100 Subject: [PATCH] doc line in Poisseuille flows --- doc/Examples/Poiseuille/Annulus.m | 1 + doc/Examples/Poiseuille/Annulus2D.m | 1 + doc/Examples/Poiseuille/Annulus2Doffset.m | 1 + 3 files changed, 3 insertions(+) diff --git a/doc/Examples/Poiseuille/Annulus.m b/doc/Examples/Poiseuille/Annulus.m index 724f65a..4f64bf1 100644 --- a/doc/Examples/Poiseuille/Annulus.m +++ b/doc/Examples/Poiseuille/Annulus.m @@ -1,3 +1,4 @@ +%% Poisseuille flow in an annulus G = 1; mu = 1; R1 = 1; R2 = 2; Interval = linspace(R1,R2,21)'; [r,u] = BVP1D(Interval,@(r)r,0,0,1,@(r)G/mu*r,0,0); diff --git a/doc/Examples/Poiseuille/Annulus2D.m b/doc/Examples/Poiseuille/Annulus2D.m index 98076d4..1e888b3 100644 --- a/doc/Examples/Poiseuille/Annulus2D.m +++ b/doc/Examples/Poiseuille/Annulus2D.m @@ -1,3 +1,4 @@ +%% Poisseuille flow in an annulus, 2D solution G = 1; mu = 1; R1 = 1; R2 = 2; angles = linspace(0,2*pi,201)'; angles = angles(1:end-1); xy = [R2*cos(angles),R2*sin(angles),-ones(size(angles))]; diff --git a/doc/Examples/Poiseuille/Annulus2Doffset.m b/doc/Examples/Poiseuille/Annulus2Doffset.m index eb58a2c..e5a2219 100644 --- a/doc/Examples/Poiseuille/Annulus2Doffset.m +++ b/doc/Examples/Poiseuille/Annulus2Doffset.m @@ -1,3 +1,4 @@ +%% Poisseuille flow in an annulus with an offset, 2D solution G = 1; mu = 1; R1 = 1; R2 = 2; angles = linspace(0,2*pi,201)'; angles = angles(1:end-1); xy = [R2*cos(angles),R2*sin(angles),-ones(size(angles))];