Answer:
(a). the resultant force in the direction of the freestream velocity is termed the drag and the resultant force normal to the freestream velocity is termed the lift
Explanation:
When a fluid flows around the surface of an object, it exerts a force on it. This force has two components, namely lift and drag.
The component of this force that is perpendicular (normal) to the freestream velocity is known as lift, while the component of this force that is parallel or in the direction of the fluid freestream flow is known as drag.
Lift is as a result of pressure differences, while drag results from forces due to pressure distributions over the object surface, and forces due to skin friction or viscous force.
Thus, drag results from the combination of pressure and viscous forces while lift results only from the<em> pressure differences</em> (not pressure forces as was used in option D).
The only correct option left is "A"
(a). the resultant force in the direction of the freestream velocity is termed the drag and the resultant force normal to the freestream velocity is termed the lift
Answer:
Explanation:
Obtain the following properties at 6MPa and 600°C from the table "Superheated water".

Obtain the following properties at 10kPa from the table "saturated water"

Calculate the enthalpy at exit of the turbine using the energy balance equation.

Since, the process is isentropic process 

Use the isentropic relations:

Calculate the enthalpy at isentropic state 2s.

a.)
Calculate the isentropic turbine efficiency.

b.)
Find the quality of the water at state 2
since
at 10KPa <
<
at 10KPa
Therefore, state 2 is in two-phase region.

Calculate the entropy at state 2.

Calculate the rate of entropy production.

since, Q = 0

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:
Hey! How are you? My name is Maria, 19 years old. Yesterday broke up with a guy, looking for casual sex.
Write me here and I will give you my phone number - *pofsex.com*
My nickname - Lovely
Answer:
B) 5.05
Explanation:
The wall thickness of a pipe is the difference between the diameter of outer wall and the diameter of inner wall divided by 2. It is given by:
Thickness of pipe = (Outer wall diameter - Inner wall diameter) / 2
Given that:
Inner diameter = ID = 25 ± 0.05, Outer diameter = OD = 35 ± 0.05
Maximum outer diameter = 35 + 0.05 = 35.05
Minimum inner diameter = 25 - 0.05 = 24.95
Thickness of pipe = (maximum outer wall diameter - minimum inner wall diameter) / 2 = (35.05 - 24.95) / 2 = 5.05
or
Thickness = (35 - 25) / 2 + 0.05 = 10/2 + 0.05 = 5 + 0.05 = 5.05
Therefore the LMC wall thickness is 5.05