Answer:
(a) the percent thermal efficiency is 27.94%
(b) the temperature of the cooling water exiting the condenser is 31.118°C
Explanation:
Answer:
184.6 BTU
Explanation:
The thermal efficiency for a Carnot cycle follows this equation:
η = 1 - T2/T1
Where
η: thermal efficiency
T1: temperature of the heat source
T2: temperature of the heat sink
These temperatures must be in absolute scale:
1000 F = 1460 R
50 F = 510 R
Then
η = 1 - 510/1460 = 0.65
We also know that for any heat engine:
η = L / Q1
Where
L: useful work
Q1: heat taken from the source
Rearranging:
Q1 = L / η
Q1 = 120 / 0.65 = 184.6 BTU
Answer:
The solution code is written in Python:
- def convertCSV(number_list):
- str_list = []
- for num in number_list:
- str_list.append(str(num))
-
- return ",".join(str_list)
- result = convertCSV([22,33,44])
- print(result)
Explanation:
Firstly, create a function "convertCSV" with one parameter "number_list". (Line 1)
Next, create an empty list and assign it to a new variable <em>str_list</em>. (Line 2)
Use for-loop to iterate through all the number in the <em>number_list</em>.(Line 4). Within the loop, each number is converted to a string using the Python built-in function <em>str() </em>and then use the list append method to add the string version of the number to <em>str_list</em>.
Use Python string<em> join() </em>method to join all the elements in the str_list as a single string. The "," is used as a separator between the elements (Line 7) . At the end return the string as an output.
We can test the function by calling the function and passing [22,33,34] as an argument and we shall see "22,33,44" is printed as an output. (Line 9 - 10)
Answer:
Total wight =640.7927 KN
Explanation:
Given that
do= 61 cm
L =120
t= 0.9 cm
That is why inner diameter of the pipe
di= 61 - 2 x 0.9 cm
di=59.2 cm
Water density ,ρ = 1 kg/L = 1000 kg/m³
Weight of the pipe ,wt = 2500 N/m
wt = 2500 x 120 N = 300,000 N
The wight of the water
wt ' = ρ V g

wt'=340792.47 N
That is why total wight
Total wight = wt + wt'
Total wight =300,000+ 340792.47 N
Total wight =640,792.47 N
Total wight =640.7927 KN