Answer:
def output_ints_less_than_or_equal_to_threshold(user_values, upper_threshold):
for value in user_values:
if value < upper_threshold:
print(value)
def get_user_values():
n = int(input())
lst = []
for i in range(n):
lst.append(int(input()))
return lst
if __name__ == '__main__':
userValues = get_user_values()
upperThreshold = int(input())
output_ints_less_than_or_equal_to_threshold(userValues, upperThreshold)
Answer:
second-law efficiency = 62.42 %
Explanation:
given data
temperature T1 = 1200°C = 1473 K
temperature T2 = 20°C = 293 K
thermal efficiency η = 50 percent
solution
as we know that thermal efficiency of reversible heat engine between same temp reservoir
so here
efficiency ( reversible ) η1 = 1 -
............1
efficiency ( reversible ) η1 = 1 -
so efficiency ( reversible ) η1 = 0.801
so here second-law efficiency of this power plant is
second-law efficiency =
second-law efficiency =
second-law efficiency = 62.42 %
Answer:
The perceived economic impact of CO2 generated per year by lighting sstem is $8164.67.
Explanation:
The CO2 requirement for the plant is:
Amount of CO2 per year = (2.4 lb / KWh)(300,000 KWh)
Amount of CO2 per year = (720000 lb)(1 ton/ 2204.62 lb)
Amount of CO2 per year = 326.59 ton
The perceived economic impact of CO2 generated per year will then be:
Economic Impact = ($25 / ton)(326.59 ton)
<u>Economic Impact = $8164.67</u>