Answer:
minimum electric power consumption of the fan motor is 0.1437 Btu/s
Explanation:
given data
area = 3 ft by 3 ft
air density = 0.075 lbm/ft³
to find out
minimum electric power consumption of the fan motor
solution
we know that energy balance equation that is express as
E in - E out =
......................1
and at steady state
= 0
so we can say from equation 1
E in = E out
so
minimum power required is
E in = W = m
=
put here value
E in =
E in =
E in = 0.1437 Btu/s
minimum electric power consumption of the fan motor is 0.1437 Btu/s
Answer:
Activation energy for creep in this temperature range is Q = 252.2 kJ/mol
Explanation:
To calculate the creep rate at a particular temperature
creep rate, 
Creep rate at 800⁰C, 

.........................(1)
Creep rate at 700⁰C


.................(2)
Divide equation (1) by equation (2)
![\frac{0.01}{5.5 * 10^{-4} } = \exp[\frac{-Q}{1073R} -\frac{-Q}{973R} ]\\18.182= \exp[\frac{-Q}{1073R} +\frac{Q}{973R} ]\\R = 8.314\\18.182= \exp[\frac{-Q}{1073*8.314} +\frac{Q}{973*8.314} ]\\18.182= \exp[0.0000115 Q]\\](https://tex.z-dn.net/?f=%5Cfrac%7B0.01%7D%7B5.5%20%2A%2010%5E%7B-4%7D%20%7D%20%3D%20%5Cexp%5B%5Cfrac%7B-Q%7D%7B1073R%7D%20-%5Cfrac%7B-Q%7D%7B973R%7D%20%5D%5C%5C18.182%3D%20%5Cexp%5B%5Cfrac%7B-Q%7D%7B1073R%7D%20%2B%5Cfrac%7BQ%7D%7B973R%7D%20%5D%5C%5CR%20%3D%208.314%5C%5C18.182%3D%20%5Cexp%5B%5Cfrac%7B-Q%7D%7B1073%2A8.314%7D%20%2B%5Cfrac%7BQ%7D%7B973%2A8.314%7D%20%5D%5C%5C18.182%3D%20%5Cexp%5B0.0000115%20Q%5D%5C%5C)
Take the natural log of both sides

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:
A. optical isolation
Explanation:
well I can't really give a good explanation because I also saw the same question in my exams and option A was the correct answer
Answer:
As we know that every molecule is attached by a strong force .The force required to disassemble the atoms is know as atomic binding force or we can say that the force required to disassemble the electron from atoms is known as binding force.On the other hand the energy require to doing this is known as atomic binding energy.
If the binding force is high then it will become difficult to disassemble thermally as well as mechanically.So we can say that it have direct relationship with materials strength and thermal stability.