this looks like its the different phases of a single cylinder 4 stroke engine what are you doing in the picture or assignment though matching the numbers to the descriptions on the side?
Answer:
Explanation:
Given:
Tooth Number, N = 24
Diametral pitch pd = 12
pitch diameter, d = N/pd = 24/12 = 2in
circular pitch, pc = π/pd = 3.142/12 = 0.2618in
Addendum, a = 1/pd = 1/12 =0.08333in
Dedendum, b = 1.25/pd = 0.10417in
Tooth thickness, t = 0.5pc = 0,5 * 0.2618 = 0.1309in
Clearance, c = 0.25/pd = 0.25/12 = 0.02083in
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:
final temperature is 424.8 K
so correct option is e 424.8 K
Explanation:
given data
pressure p1 = 1 bar
pressure p2 = 5 bar
index k = 1.3
temperature t1 = 20°C = 293 k
to find out
final temperature t2
solution
we have given compression is reversible and has an index k
so we can say temperature is
...........1
put here all these value and we get t2
t2 = 424.8
final temperature is 424.8 K
so correct option is e