-
Notifications
You must be signed in to change notification settings - Fork 1
/
Final_Jet.m
150 lines (138 loc) · 4.75 KB
/
Final_Jet.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
clear;
clc;
close all;
%Giovanni Muhammad Raditya
%081951007
%Variables%
T0=278; %ambient temperature [K]
Th=403; %heated wall temperature [K]
a=2*10^-5; %diffusivity[m2/s]
c=1.5; %velocity constant -> a
b=0.004; %velocity constant -> b
Nx=500; %Number of x-Tiles
Ny=500; %Number of y-Tiles
Lx=8.0; %x-axis Length of the room [m]
Ly=8.0; %y-axis Length of the room [m]
Lh=2; %Length of the heater (x-by-x) [m]
Center=[0.0]; %Center of Heater x-coordinate [m]
dx = Lx/Nx; %mesh size in the x direction [m]
dy = Ly/Ny; %mesh size in the y direction [m]
dt = 0.1; %time increment [s]
Nt = 2000; %end time [s]
Nstep = floor(Nt/dt);
plotInterval = floor(Nt/dt/100); %Plot Interval for Pcolor
%%%matrix%%%
x = zeros(Nx+4,1); %location
y = zeros(Ny+4,1); %location
T_cd = zeros(Nx+4,Ny+4); %temperature for diffusion-convection equation
XconvT = zeros(Nx+4,Ny+4); %convection term in the x direction
YconvT = zeros(Nx+4,Ny+4); %convection term in the y direction
diffX = zeros(Nx+4,Ny+4); %diffusion term in the y direction for d-c eq.
diffY = zeros(Nx+4,Ny+4); %diffusion term in the y direction for d-c eq.
RHS = zeros(Nx+4,Ny+4); %Right Hand Side of the Heat Transfer eq.
Vr= zeros(Nx+4,Ny+4);
% Setting Initial Condition
for i = 3:Nx+2
for j = 3:Ny+2
T_cd(i,j) = T0;
end
end
%coordinates for figures
for i = 1:Nx+4
x(i) = -Lx/2+(i-2) *dx;
end
for j = 1:Ny+4
y(j) = -Ly/2+(j-2) *dy;
end
%coordinates for Pcolor
[XCoor,YCoor] = meshgrid(x,y);
XCoor = XCoor';
YCoor = YCoor';
%Setting boundary Condition in a different file
T_cd = RenewBCJet(T_cd,T0,Th,Lh,dx,dy,Center);
%Cool stuff (Plot figure to identify the heat value in 4 variables (x,y,T,t) using Pcolor)
figure(1)
pcolor(XCoor(3:Nx+2,3:Ny+2),YCoor(3:Nx+2,3:Ny+2),T_cd(3:Nx+2,3:Ny+2))
axis([x(3),x(Nx+2),y(3),y(Ny+2)])
shading interp
hold on
xlabel('X','FontSize',16)
ylabel('Y','FontSize',16)
colorbar('location','SouthOutside','FontSize',16)
caxis([T0 Th]);
set(gca,'FontSize',13);
colormap(jet(256));
%start the heat transfer iteration
for t=1:Nstep
pause(0.001);
for i=3:Nx+2
for j=3:Ny+2
if x(i)^2+y(j)^2>=c^2
if x(i)<=Lh/2 && x(i)>=-Lh/2
Vy=b*c^2*x(i)/(y(j)^2+x(i)^2)-0.001*(1-(x(i)/(Lh/2))^2)*(y(j)+Ly/2);
Vx=b*c^2*y(j)/(y(j)^2+x(i)^2)*-1;
else
Vx=b*c^2*y(j)/(y(j)^2+x(i)^2)*-1;
Vy=b*c^2*x(i)/(y(j)^2+x(i)^2);
end
Vxx(i,j)=Vx; %for velocity distribution graph
Vyy(i,j)=Vy; %for velocity distribution graph
Vr(i,j)=sqrt(Vx^2+Vy^2);
elseif x(i)^2+y(j)^2<c^2
if x(i)<=Lh/2 && x(i)>=-Lh/2
Vy=b*x(i)-0.001*(1-(x(i)/(Lh/2))^2)*(y(j)+Ly/2);
Vx=b*y(j)*-1;
else
Vx=b*y(j)*-1;
Vy=b*x(i);
end
Vxx(i,j)=Vx; %for velocity distribution graph
Vyy(i,j)=Vy; %for velocity distribution graph
Vr(i,j)=sqrt(Vx^2+Vy^2);
end
XconvT(i,j) = Vx*(T_cd(i+1,j)-T_cd(i-1,j))/(2*dx);
YconvT(i,j) = Vy*(T_cd(i,j+1)-T_cd(i,j-1))/(2*dy);
diffX(i,j) = a*(-T_cd(i+2,j)+16*T_cd(i+1,j)-30*T_cd(i,j)+16*T_cd(i-1,j)-T_cd(i-2,j))/(12*dx^2);
diffY(i,j) = a*(-T_cd(i,j+2)+16*T_cd(i,j+1)-30*T_cd(i,j)+16*T_cd(i,j-1)-T_cd(i,j-2))/(12*dy^2);
end
end
RHS = diffX+diffY - XconvT - YconvT;
T_cd = T_cd + dt * RHS;
T_cd = RenewBCJet(T_cd,T0,Th,Lh,dx,dy,Center);
if(mod(t,plotInterval) == 0)
pcolor(XCoor(3:Nx+2,3:Ny+2),YCoor(3:Nx+2,3:Ny+2),T_cd(3:Nx+2,3:Ny+2))
shading flat
step = num2str(t*dt);
step = strcat('t = ','',step);
title(step,'FontSize',24);
end
end
%Below are extras figure to visualize the velocity vector on a graph
figure(2)
q=quiver(XCoor(3:Nx+2,3:Ny+2),YCoor(3:Nx+2,3:Ny+2),Vxx(3:Nx+2,3:Ny+2),Vyy(3:Nx+2,3:Ny+2));
axis([x(3),x(Nx+2),y(3),y(Ny+2)])
title('Velocity Distribution in the room')
set(gca,'Color','k')
xlabel('x(m)')
ylabel('y(m)')
colorbar('location','SouthOutside','FontSize',16)
caxis([min(Vr(:,Nx+2)) max(Vr(:,Nx+2))]);
colormap(jet(256));
mags = sqrt(sum(cat(2, q.UData(:), q.VData(:), ...
reshape(q.WData, numel(q.UData), [])).^2, 2));
%// Get the current colormap
currentColormap = colormap(gca);
%// Now determine the color to make each arrow using a colormap
[~, ~, ind] = histcounts(mags, size(currentColormap, 1));
%// Now map this to a colormap to get RGB
cmap = uint8(ind2rgb(ind(:), currentColormap) * 255);
cmap(:,:,4) = 255;
cmap = permute(repmat(cmap, [1 3 1]), [2 1 3]);
%// We repeat each color 3 times (using 1:3 below) because each arrow has 3 vertices
set(q.Head, ...
'ColorBinding', 'interpolated', ...
'ColorData', reshape(cmap(1:3,:,:), [], 4).'); %'
%// We repeat each color 2 times (using 1:2 below) because each tail has 2 vertices
set(q.Tail, ...
'ColorBinding', 'interpolated', ...
'ColorData', reshape(cmap(1:2,:,:), [], 4).');