Answer:
23.3808 kW
20.7088 kW
Explanation:
ρ = Density of oil = 800 kg/m³
P₁ = Initial Pressure = 0.6 bar
P₂ = Final Pressure = 1.4 bar
Q = Volumetric flow rate = 0.2 m³/s
A₁ = Area of inlet = 0.06 m²
A₂ = Area of outlet = 0.03 m²
Velocity through inlet = V₁ = Q/A₁ = 0.2/0.06 = 3.33 m/s
Velocity through outlet = V₂ = Q/A₂ = 0.2/0.03 = 6.67 m/s
Height between inlet and outlet = z₂ - z₁ = 3m
Temperature to remains constant and neglecting any heat transfer we use Bernoulli's equation

Work done by pump

∴ Power input to the pump 23.3808 kW
Now neglecting kinetic energy

Work done by pump

∴ Power input to the pump 20.7088 kW
Answer:
Hook's law holds good up to. A elastic limit. B. plastic limit. C.yield point. D.Breaking point
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:
Answer:
attached below is the detailed solution and answers
Explanation:
Attached below is the detailed solution
C(iii) : versus the parameter C
The parameter C is centered in a nonlinear equation, therefore the standard locus will not apply hence when you use a polynomial solver the roots gotten would be plotted against C
Answer:
b)False
Explanation:
A battery is a device which store the energy in the form of chemical energy.And this stored energy is used according to the requirement.So battery is not a electromechanical device.Because it does have any mechanical component like gear ,shaft flywheel etc.
A flywheel is known as mechanical battery because it stored mechanical energy and supply that energy when more energy is required.Generally fly wheel is used during punching operation.