Answer:
0.5°c
Explanation:
Humidity ratio by mass can be expressed as
the ratio between the actual mass of water vapor present in moist air - to the mass of the dry air
Humidity ratio is normally expressed in kilograms (or pounds) of water vapor per kilogram (or pound) of dry air.
Humidity ratio expressed by mass:
x = mw / ma (1)
where
x = humidity ratio (kgwater/kgdry_air, lbwater/lbdry_air)
mw = mass of water vapor (kg, lb)
ma = mass of dry air (kg, lb)
It can be as:
x = 0.005 (100) / [(100 - 100)]
x = 0.005 x 100 / (100 - 100)
x = 0.005 x 100 / 0
x = 0.5°c
So the temperature to which atmospheric air must be cooled in order to have humidity ratio of 0.005 lb/lb is 0.5°c
The question is incomplete. The complete question is :
The solid rod shown is fixed to a wall, and a torque T = 85N?m is applied to the end of the rod. The diameter of the rod is 46mm .
When the rod is circular, radial lines remain straight and sections perpendicular to the axis do not warp. In this case, the strains vary linearly along radial lines. Within the proportional limit, the stress also varies linearly along radial lines. If point A is located 12 mm from the center of the rod, what is the magnitude of the shear stress at that point?
Solution :
Given data :
Diameter of the rod : 46 mm
Torque, T = 85 Nm
The polar moment of inertia of the shaft is given by :


J = 207.6 
So the shear stress at point A is :



Therefore, the magnitude of the shear stress at point A is 4913.29 MPa.
Answer:
pliers
Explanation:
because that makes the most sense
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: