Answer:
Explanation gives the answer
Explanation:
% Using MATLAB,
% Matlab file : fieldtovar.m
function varargout = fieldtovar(S)
% function that accepts single structure as input, assigning each
% of the field values to user-defined variables
fields = fieldnames(S); % get the field names of the input structure
% check if number of user-defined variables and number of fields in
% structure are equal
if nargout == length(fields)
% if equal assign each value of structure to user-defined varable
for i=1:nargout
varargout{i} = getfield(S,fields{i});
end
else
% if not equal display an error message
error('The number of output variables does not equal the number of fields');
end
end
%This brings an end to the program
Answer:


Explanation:
= Area of section 1 = 
= Velocity of water at section 1 = 100 ft/min
= Specific volume at section 1 = 
= Density of fluid = 
= Area of section 2 = 
Mass flow rate is given by

The mass flow rate through the pipe is 
As the mass flowing through the pipe is conserved we know that the mass flow rate at section 2 will be the same as section 1

The speed at section 2 is
.
Answer:
(b)False
Explanation:
Given:
Prandtl number(Pr) =1000.
We know that 
Where
is the molecular diffusivity of momentum
is the molecular diffusivity of heat.
Prandtl number(Pr) can also be defined as

Where
is the hydrodynamic boundary layer thickness and
is the thermal boundary layer thickness.
So if Pr>1 then hydrodynamic boundary layer thickness will be greater than thermal boundary layer thickness.
In given question Pr>1 so hydrodynamic boundary layer thickness will be greater than thermal boundary layer thickness.
So hydrodynamic layer will be thicker than the thermal boundary layer.
Answer:
Determine the added thrust required during water scooping, as a function of aircraft speed, for a reasonable range of speeds.= 132.26∪
Explanation:
check attached files for explanation