Statistics
4 Questions
0 Answers
RANK
23,523
of 301,172
REPUTATION
2
CONTRIBUTIONS
4 Questions
0 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
2
RANK
of 21,183
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 173,200
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
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 years ago | 1 answer | 0
1
answerQuestion
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 years ago | 1 answer | 1
1
answerQuestion
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 years ago | 1 answer | 0
1
answerQuestion
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 years ago | 1 answer | 1
