Feeds
질문
Quiver and Streamline functions
How does one change the angles of the streamlines with this code? [x,y] = meshgrid(0:0.1:1); u = x; v = -y; quiver(x,y,u,v) ...
대략 4년 전 | 답변 수: 1 | 0
1
답변질문
Rankine Leading Edge Graph
m = 1; V = 1; disp('V m') disp([V m]) disp('Velocity Potential:') disp('Stream function:') disp('psi=V*y+(m/2/pi *...
대략 4년 전 | 답변 수: 1 | 1
1
답변질문
Plot uniform flow in any direction by defining u and v for the flow field
[x,y] = meshgrid(0:0.1:1); x = u; y = -y; quiver(x,y,u,v) startx = 0.1:0.1:1; starty = ones(size(startx)); streamline(x,y,...
대략 4년 전 | 답변 수: 1 | 0
1
답변질문
Trying to plot viscosity and kinematic viscosity vs altitude
close all clear clc temp_sl = 288; %temperature at sea level rho_sl = 1.225; %density at sea level alt = 1:1:47000; t...
대략 4년 전 | 답변 수: 1 | 1
