Answer:
Check the explanation
Explanation:
Energy alance of 2 closed systems: Heat from CO2 equals the heat that is added to air in

1x0.723x
=3x0.780x
⇒
= 426.4 °K
The initail volumes of the gases can be determined by the ideal gas equation of state,
=
= 0.201
The equilibrium pressure of the gases can also be obtained by the ideal gas equation

= 1x(8.314 28.97)x426.4+3x(8.314 44)x426.4
(0.201+1.275)
= 246.67 KPa = 2.47 bar
Answer:3.47 m
Explanation:
Given
Temperature(T)=300 K
velocity(v)=1.5 m/s
At 300 K


And reynold's number is given by



x=3.47 m
Complete Question
The complete question is shown on the first uploaded image.
Answer:
The answer is shown on the second uploaded image
Explanation:
The explanation is also shown on the second uploaded image
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