The following velocity field exists inside a room of size 10m × 10m:
u = 0.1(−xi + yj)m/s
a) Draw the rectangular region, and depict the velocity distribution inside using arrows vectors. You may use a software of your choice to do this if you wish.
(b) Compute the equations of the streamlines, and sketch them on top of your arrows. Do the streamlines make sense?
Given velocity field:
u = 0.1(−xi + yj)m/s
Equation of streamline:




,
where C1 = C1/10

MATLAB code to generate the plots for (a) and (b)
[x,y] = meshgrid(0:1:10,0:1:10);
u =(-0.1) * x;
v = 0.1 * y;
figure
quiver(x,y,u,v)
startx = 1:1:10;
starty = ones(size(startx));
streamline(x,y,u,v,startx,starty)
xlim([0 10]);
ylim([0 10]);
OUTPUT:

The following velocity field exists inside a room of size 10m × 10m: u = 0.1(−xi...
Please help me with these questions
represented by the following arrow What is the relationship between a one-dimensional vector and the sign of velocity? This depends on the wa choose to set the positive x axis. Diagram 1 Diagram 2 Positive velocity Negalive velocity 0 Negative velocity Positive velocity In both diagrams above, the top vectors represent velocity toward the right. In diagram 1, the x axis has been drawn so that the positive x direction is toward the right,...