Answer:
For
- 5.556 lb/s
For
- 7.4047 lb/s
Solution:
As per the question:
System Load = 96000 Btuh
Temperature, T = 
Temperature rise, T' =
Now,
The system load is taken to be at constant pressure, then:
Specific heat of air, 
Now, for a rise of
in temeprature:


Now, for
:


Answer:
See explaination
Explanation:
for a reverse carnot cycle T-S diagram is a rectangle which i have shown
net work for a complete cycle must be equal to net heat interaction.
Kindly check attachment for the step by step solution of the given problem.
Answer:
Given that;
Jello there, see explanstion for step by step solving.
A horizontal channel of height H has two fluids of different viscosities and densities flowing because of a pressure gradient dp/dx1. Find the velocity profiles of two fluids if the height of the flat interface is ha.
Explanation:
A horizontal channel of height H has two fluids of different viscosities and densities flowing because of a pressure gradient dp/dx1. Find the velocity profiles of two fluids if the height of the flat interface is ha.
See attachment for more clearity
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