Answer:
The kinetic energy correction factor the depends on the shape of the cross section of the pipe and the velocity distribution.
Explanation:
The kinetic energy correction factor take into account that the velocity distribution over the pipe cross section is not uniform. In that case, neither the pressure nor the temperature are involving and as we can notice, the velocity distribution depends only on the shape of the cross section.
Answer:
12.332 KW
The positive sign indicates work done by the system ( Turbine )
Explanation:
Stagnation pressure( P1 ) = 900 kPa
Stagnation temperature ( T1 ) = 658K
Expanded stagnation pressure ( P2 ) = 100 kPa
Expansion process is Isentropic, also assume steady state condition
mass flow rate ( m ) = 0.04 kg/s
<u>Calculate the Turbine power </u>
Assuming a steady state condition
( p1 / p2 )^(r-1/r) = ( T1 / T2 )
= (900 / 100)^(1.4-1/1.4) = ( 658 / T2 )
= ( 9 )^0.285 = 658 / T2
∴ T2 = 351.22 K
Finally Turbine Power / power developed can be calculated as
Wt = mCp ( T1 - T2 )
= 0.04 * 1.005 ( 658 - 351.22 )
= 12.332 KW
The positive sign indicates work done by the system ( Turbine )
Answer:
False I'm pretty sure sorry If its wrong
Answer:
Complete question is:
write the following decorators and apply them to a single function (applying multiple decorators to a single function):
1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”
2. The decorator will return the wrapper per usual.
3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.
4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.
5. Apply both decorators (by @ operator to greetings()).
6. Invoke the greetings() function and capture the result.
Code :
def strong_decorator(func):
def func_wrapper(name):
return "<strong>{0}</strong>".format(func(name))
return func_wrapper
def em_decorator(func):
def func_wrapper(name):
return "<em>{0}</em>".format(func(name))
return func_wrapper
@strong_decorator
@em_decorator
def Greetings(name):
return "{0}".format(name)
print(Greetings("Hello"))
Explanation: