Answer & Explanation:
function Temprature
NYC=[33 33 18 29 40 55 19 22 32 37 58 54 51 52 45 41 45 39 36 45 33 18 19 19 28 34 44 21 23 30 39];
DEN=[39 48 61 39 14 37 43 38 46 39 55 46 46 39 54 45 52 52 62 45 62 40 25 57 60 57 20 32 50 48 28];
%AVERAGE CALCULATION AND ROUND TO NEAREST INT
avgNYC=round(mean(NYC));
avgDEN=round(mean(DEN));
fprintf('\nThe average temperature for the month of January in New York city is %g (F)',avgNYC);
fprintf('\nThe average temperature for the month of January in Denvar is %g (F)',avgDEN);
%part B
count=1;
NNYC=0;
NDEN=0;
while count<=length(NYC)
if NYC(count)>avgNYC
NNYC=NNYC+1;
end
if DEN(count)>avgDEN
NDEN=NDEN+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in New York city was above the average',NNYC);
fprintf('\nDuring %g days, the temprature in Denvar was above the average',NDEN);
%part C
count=1;
highDen=0;
while count<=length(NYC)
if NYC(count)>DEN(count)
highDen=highDen+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in Denver was higher than the temprature in New York city.\n',highDen);
end
%output
check the attachment for additional Information
Answer:
modulus =3.97X10^6 Ib/in^2, Poisson's ratio = 0.048
Explanation:
Modulus is the ratio of tensile stress to tensile strain
Poisson's ratio is the ratio of transverse contraction strain to longitudinal extension strain within the direction of the stretching force
And contraction occur from 0.6 in x 0.6 in to 0.599 in x 0.599 in while 2 in extended to 2.007, with extension of 0.007 in
Answer: the mass flow rate of concentrated brine out of the process is 46,666.669 kg/hr
Explanation:
F, W and B are the fresh feed, brine and total water obtained
w = 2 x 10^4 L/h
we know that
F = W + B
we substitute
F = 2 x 10^4 + B
F = 20000 + B .................EQUA 1
solute
0.035F = 0.05B
B = 0.035F/0.05
B = 0.7F
now we substitute value of B in equation 1
F = 20000 + 0.7F
0.3F = 20000
F = 20000/0.3
F = 66666.67 kg/hr
B = 0.7F
B = 0.7 * F
B = 0.7 * 66666.67
B = 46,666.669 kg/hr
the mass flow rate of concentrated brine out of the process is 46,666.669 kg/hr
Answer:
please help you are not the intended recipient