Answer:
worth of being noticed
Explanation:
i had this in iready it’s correct trust me
Answer:
exit temperature 285 K
Explanation:
given data
temperature T1 = 270 K
velocity = 180 m/s
exit velocity = 48.4 m/s
solution
we know here diffuser is insulated so here heat energy is negleted
so we write here energy balance equation that is
0 = m (h1-h2) + m ×
.....................1
so it will be
.....................2
put here value by using ideal gas table
and here for temperature 270K
h1 = 270.11 kJ/kg
solve it we get
h2 = 285.14 kJ/kg
so by the ideal gas table we get
T2 = 285 K
Answer:
The program is as follows:
i = 1
while(i<11):
j = 1
while(j<=i):
print('*', end = '')
j += 1
i += 1
print()
Explanation:
Initialize i to 1
i = 1
The outer loop is repeated as long as i is less than 11
while(i<11):
Initialize j to 1
j = 1
The inner loop is repeated as long as j is less than or equal i
while(j<=i):
This prints a *
print('*', end = '')
This increments j and ends the inner loop
j += 1
This increments i
i += 1
This prints a blank and ends the inner loop
print()
Answer: for ideal situation
T2 = 16.5158K
Work = - 11.4J
For appropriate generalization correlation
T2 = 308.57K
Work = 177.797MJ
Explanation:detailed calculation and explanation is shown in the image below.