Answer:
speed by mass attain is 55.86 m/s
Explanation:
given data
glucose = 10 g
mass = 100 kg
to find out
speed by mass attain
solution
we know glucose have 180 g molecular weight and
that 1 g glucose produce energy = 2816/180 × 10³ J
so here 10 g of glucose produce energy = 1.56 ×
J
so here energy release = 1/2 × mv²
1.56 ×
= 1/2 × (100)v²
v² = 3.12 × 10³
and v = 55.86 m/s
so speed by mass attain is 55.86 m/s
Answer:
L= 50000 lb
D = 5000 lb
Explanation:
To maintain a level flight the lift must equal the weight in magnitude.
We know the weight is of 50000 lb, so the lift must be the same.
L = W = 50000 lb
The L/D ratio is 10 so
10 = L/D
D = L/10
D = 50000/10 = 5000 lb
To maintain steady speed the thrust must equal the drag, so
T = D = 5000 lb
Answer:
a) 0.487
b) refrigeration load = 5.46w
c) cop = 2.24
d)ref load max = 12.43kw
Explanation:
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