Answer:
The maximum power that can be generated is 127.788 kW
Explanation:
Using the steam table
Enthalpy at 20 bar = 2799 kJ/kg
Enthalpy at 2 bar = 2707 kJ/kg
Change in enthalpy = 2799 - 2707 = 92 kJ/kg
Mass flow rate of steam = 5000 kg/hr = 5000 kJ/hr × 1 hr/3600 s = 1.389 kg/s
Maximum power generated = change in enthalpy × mass flow rate = 92 kJ/kg × 1.389 kg/s = 127.788 kJ/s = 127.788 kW
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)
Solution :
Given :
Water have quality x = 0.7 (dryness fraction) at around pressure of 200 kPa
The phase diagram is provided below.
a). The phase is a standard mixture.
b). At pressure, p = 200 kPa, T = 
Temperature = 120.21°C
c). Specific volume




d). Specific energy (
)



e). Specific enthalpy 
At 


f). Enthalpy at m = 0.5 kg


= 1022.91 kJ
Answer:
a)σ₁ = 265.2 MPa
b)σ₂ = -172.8 MPa
c)
d)Range = 438 MPa
Explanation:
Given that
Mean stress ,σm= 46.2 MPa
Stress amplitude ,σa= 219 MPa
Lets take
Maximum stress level = σ₁
Minimum stress level =σ₂
The mean stress given as


2 x 46.2 = σ₁ + σ₂
σ₁ + σ₂ = 92.4 MPa --------1
The amplitude stress given as


2 x 219 = σ₁ - σ₂
σ₁ - σ₂ = 438 MPa --------2
By adding the above equation
2 σ₁ = 530.4
σ₁ = 265.2 MPa
-σ₂ = 438 -265.2 MPa
σ₂ = -172.8 MPa
Stress ratio



Range = 265.2 MPa - ( -172.8 MPa)
Range = 438 MPa
Answer: 255
255 turns are required to create 25 ohms of secondary impedance.
Explanation:
Given that,
Number of turns in primary wire N₁ = 900
impedance on Primary wire Z₁ = 400 ohms
Number of turns in Secondary wire N₂ = ?
impedance on Secondary wire Z₂ = 25 ohms
we know that, the relationship between turn and impedance is
Zp / Zs = ( Np / Ns )²
(Primary impedance / secondary impedance) = Number of turns in primary wire / Number of turns in secondary wire)²
there fore
Z₁ / Z₂ = ( N₁ / N₂ )²
Now we substitute
( 400 / 25 ) = ( 900 / N₂ )²
400 / 25 = 900² / N₂²
we cross multiple to get our N₂
400 × N₂² = 900² × 25
N₂² = ( 900² × 25 ) / 400
N₂² = ( 810000 × 25 ) / 400
N₂² = 20250000 / 400
N₂² = 50625
N₂ = √50625
N₂ = 225
Therefore 255 turns are required to create 25 ohms of secondary impedance.