Skip to content

Commit

Permalink
doc line in Poisseuille flows
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasStahel committed Mar 5, 2025
1 parent 657b5f0 commit 2025df0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/Examples/Poiseuille/Annulus.m
Original file line number Diff line number Diff line change
@@ -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);
Expand Down
1 change: 1 addition & 0 deletions doc/Examples/Poiseuille/Annulus2D.m
Original file line number Diff line number Diff line change
@@ -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))];
Expand Down
1 change: 1 addition & 0 deletions doc/Examples/Poiseuille/Annulus2Doffset.m
Original file line number Diff line number Diff line change
@@ -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))];
Expand Down

0 comments on commit 2025df0

Please sign in to comment.