Answer:
Jordan has more green paints
Explanation:
Given


Required
Which paint does he have more?
For better understanding, it's better to convert both measurements to decimal.
For the green paint:


For the blue paint:


By comparison:

<em>This means that Jordan has more green paints</em>
Answer:
2062 lbm/h
Explanation:
The air will lose heat and the oil will gain heat.
These heats will be equal in magnitude.
qo = -qa
They will be of different signs because one is entering iits system and the other is exiting.
The heat exchanged by oil is:
qo = Gp * Cpo * (tof - toi)
The heat exchanged by air is:
qa = Ga * Cpa * (taf - tai)
The specific heat capacity of air at constant pressure is:
Cpa = 0.24 BTU/(lbm*F)
Therefore:
Gp * Cpo * (tof - toi) = Ga * Cpa * (taf - tai)
Ga = (Gp * Cpo * (tof - toi)) / (Cpa * (taf - tai))
Ga = (2200 * 0.45 * (150 - 100)) / (0.24 * (300 - 200)) = 2062 lbm/h
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