CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

How to create a shape in MATLAB

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 12, 2013, 16:13
Thumbs up How to create a shape in MATLAB
  #1
New Member
 
ananza
Join Date: Nov 2012
Posts: 8
Rep Power: 13
greenfire is on a distinguished road
Hi guys. I'm a student and I've a homework. If you're gonna help me about that I'll be thankful.

I'm studying mechanical engineering. In the lecture of CFD, everybody got a shape of pipe (Actually it's not a pipe. A structure which lets fluid flows inside) We'd to make a 2-d simulation at Star CCM first. Than we must make the same thing in MATLAB and than compare the results. I've already made the Star CCM simulation and got results:

Scalar Scene 1_Velocity Magnitude
Scalar Scene 2_Pressure Coefficient
Vector Scene 1_Cell Relative Velocity









Now I've to do the same thing at the MATLAB but I've really no idea how to start. Can you guys please help me?

My pipe is:





The exercise is: The flow is frictionless, incompressible, stable and irrotational. Fluid is water and entrance velocity is 8 m/s, and d= 1000 Kg/m3

1) The flow function (ψ) for the water passage must be calculated point by point with Laplace-Equation

2) The velocity compenents U and V must be calculated for all the corners. U = dψ/dy, V = -d/dx.

3) The pressure distribution must be calculated with Bernoulli-equation. Especially the pressure coefficient (Cp) must be calculated for all the points.

I've some old MATLAB codes from kind of related project


%Streamfunction etc.
function [psi]=msteinmetz_a()
dy=1;
dx=1;
ymax=40;
xmax=2000;
yb=25;
xb=100;
eps=0.00001;
dif=eps+1;
Uin=0.8;
Uout=(ymax-1)*dy/((ymax-yb)*dy)*Uin;
psi=zeros(ymax,xmax);

%initial distribution
for i=1:1:xb-1
for j=2:1:ymax
psi(j,i)=psi(j-1,i)+dy*Uin;
end
end
for i=xb:1:xmax
for j=yb+1:1:ymax
psi(j,i)=psi(j-1,i)+dy*Uout;
end
end


% Finding Stable distribution
while (dif > eps)
psibefore=psi;
for j=2:1:yb
for i=2:1:xb-1
psi(j,i)=0.25*(psi(j,i-1)+psi(j,i+1)+psi(j-1,i)+psi(j+1,i));
end
end

for j=yb+1:1:ymax-1
for i=2:1:xmax-1
psi(j,i)=0.25*(psi(j,i-1)+psi(j,i+1)+psi(j-1,i)+psi(j+1,i));
end
end
dif=abs(max(max(psibefore-psi)));

end

%U
U=zeros(ymax,xmax);

for j=2:1:yb
for i=2:1:xb-1
U(j,i)=(psi(j+1,i)-psi(j-1,i))/2*dy;
end
end

for j=yb+1:1:ymax-1
for i=2:1:xmax-1
U(j,i)=(psi(j+1,i)-psi(j-1,i))/2*dy;
end
end

%V
V=zeros(ymax,xmax);

for j=2:1:yb
for i=2:1:xb-1
V(j,i)=(psi(j,i-1)-psi(j,i+1))/2*dx;
end
end

for j=yb+1:1:ymax-1
for i=2:1:xmax-1
V(j,i)=(psi(j,i-1)-psi(j,i+1))/2*dx;
end
end

%Velocity Magnitude
Umag=zeros(ymax,xmax);

for j=2:1:yb
for i=2:1:xb-1
Umag(j,i)=sqrt((U(j,i)^2+V(j,i)^2));
end
end

for j=yb+1:1:ymax-1
for i=2:1:xmax-1
Umag(j,i)=sqrt((U(j,i)^2+V(j,i)^2));
end
end

%cp Field
cp=zeros(ymax,xmax);

for j=2:1:yb
for i=2:1:xb-1
cp(j,i)=1-(Umag(j,i)^2)/2*Uin^2;
end
end

for j=yb+1:1:ymax-1
for i=2:1:xmax-1
cp(j,i)=1-(Umag(j,i)^2)/2*Uin^2;
end
end


%plotting

subplot(2,1,1)
hold on
title({'Velocitiy Vectors'})
quiver(U,V);
hold off

subplot(4,2,5)
hold on
title({'Streamlines'})
contour(psi,20);
hold off

subplot(4,2,7)
hold on
title({'Pressure Coefficient'})
surf(cp);
colormap jet;
hold off

subplot(2,2,4)
hold on
title({'Streamfunction'})
surf(psi);
hold off

Last edited by greenfire; January 12, 2013 at 19:37.
greenfire is offline   Reply With Quote

Old   January 17, 2013, 19:41
Default
  #2
New Member
 
ananza
Join Date: Nov 2012
Posts: 8
Rep Power: 13
greenfire is on a distinguished road
Please help ...
greenfire is offline   Reply With Quote

Old   January 25, 2013, 12:14
Default
  #3
New Member
 
ananza
Join Date: Nov 2012
Posts: 8
Rep Power: 13
greenfire is on a distinguished road
Bumb bumb .. Please
greenfire is offline   Reply With Quote

Old   February 9, 2013, 17:54
Default
  #4
New Member
 
ananza
Join Date: Nov 2012
Posts: 8
Rep Power: 13
greenfire is on a distinguished road
Please hellp
greenfire is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
[ICEM] How can I create prism mesh for a 3D domain surrounded by a torus? lzgwhy ANSYS Meshing & Geometry 5 May 18, 2017 17:10
Calculation of the Governing Equations Mihail CFX 7 September 7, 2014 06:27
Call CFX from MATLAB alikhube CFX 7 December 30, 2012 06:35
Steps to create a quater O grid or Y grid brissyben ANSYS Meshing & Geometry 3 April 12, 2012 05:46
STL shape into Fluent Lionel S. Main CFD Forum 8 December 12, 2007 10:58


All times are GMT -4. The time now is 07:00.