Answer:
The total tube surface area in m² required to achieve an air outlet temperature of 850 K is 192.3 m²
Explanation:
Here we have the heat Q given as follows;
Q = 15 × 1075 × (1100 -
) = 10 × 1075 × (850 - 300) = 5912500 J
∴ 1100 -
= 1100/3
= 733.33 K

Where
= Arithmetic mean temperature difference
= Inlet temperature of the gas = 1100 K
= Outlet temperature of the gas = 733.33 K
= Inlet temperature of the air = 300 K
= Outlet temperature of the air = 850 K
Hence, plugging in the values, we have;

Hence, from;
, we have
5912500 = 90 × A × 341.67

Hence, the total tube surface area in m² required to achieve an air outlet temperature of 850 K = 192.3 m².
Answer:
W= 8120 KJ
Explanation:
Given that
Process is isothermal ,it means that temperature of the gas will remain constant.
T₁=T₂ = 400 K
The change in the entropy given ΔS = 20.3 KJ/K
Lets take heat transfer is Q ,then entropy change can be written as

Now by putting the values

Q= 20.3 x 400 KJ
Q= 8120 KJ
The heat transfer ,Q= 8120 KJ
From first law of thermodynamics
Q = ΔU + W
ΔU =Change in the internal energy ,W=Work
Q=Heat transfer
For ideal gas ΔU = m Cv ΔT]
At constant temperature process ,ΔT= 0
That is why ΔU = 0
Q = ΔU + W
Q = 0+ W
Q=W= 8120 KJ
Work ,W= 8120 KJ
Answer:
μ = 0.136
Explanation:
given,
velocity of the car = 20 m/s
radius of the track = 300 m
mass of the car = 2000 kg
centrifugal force


F c = 2666. 67 N
F f= μ N
F f = μ m g
2666.67 = μ × 2000 × 9.8
μ = 0.136
so, the minimum coefficient of friction between road surface and car tyre is equal to μ = 0.136
Full Question
1. Correct the following code and
2. Convert the do while loop the following code to a while loop
declare integer product
declare integer number
product = 0
do while product < 100
display ""Type your number""
input number
product = number * 10
loop
display product
End While
Answer:
1. Code Correction
The errors in the code segment are:
a. The use of do while on line 4
You either use do or while product < 100
b. The use of double "" as open and end quotes for the string literal on line 5
c. The use of "loop" statement on line 7
The correction of the code segment is as follows:
declare integer product
declare integer number
product = 0
while product < 100
display "Type your number"
input number
product = number * 10
display product
End While
2. The same code segment using a do-while statement
declare integer product
declare integer number
product = 0
Do
display "Type your number"
input number
product = number * 10
display product
while product < 100