Answer: The exit temperature of the gas in deg C is .
Explanation:
The given data is as follows.
= 1000 J/kg K, R = 500 J/kg K = 0.5 kJ/kg K (as 1 kJ = 1000 J)
= 100 kPa,
We know that for an ideal gas the mass flow rate will be calculated as follows.
or, m =
=
= 10 kg/s
Now, according to the steady flow energy equation:
= 5 K
= 5 K + 300 K
= 305 K
= (305 K - 273 K)
=
Therefore, we can conclude that the exit temperature of the gas in deg C is .
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:
1.2727 stokes
Explanation:
specific gravity of fluid A = 1.65
Dynamic viscosity = 210 centipoise
<u>Calculate the kinematic viscosity of Fluid A </u>
First step : determine the density of fluid A
Pa = Pw * Specific gravity = 1000 * 1.65 = 1650 kg/m^3
next : convert dynamic viscosity to kg/m-s
210 centipoise = 0.21 kg/m-s
Kinetic viscosity of Fluid A = dynamic viscosity / density of fluid A
= 0.21 / 1650 = 1.2727 * 10^-4 m^2/sec
Convert to stokes = 1.2727 stokes
Answer:
Recall the formula for the maximum stress, σₐ = 2σ₀ *√ (α/ρₓ)
where
σ₀ = tensile stress = 140 MPa = 1.40x 10⁸Pa
α = crack length = 3.8 × 10–2 mm = 3.8 x 10⁻⁵m
ρₓ = radius of curvature = 1.9 × 10⁻⁴mm = 1.9 × 10⁻⁷m
Substituting these values into the formula, we can calculate the max stress as
====== 2 x 1.40x 10⁸ x √(3.8 x 10⁻⁵/1.9 × 10⁻⁷)
σₐ = 24.4MPa
Answer:
Engineering is the use of science and math to design or make things. People who do engineering are called engineers. They learn engineering at a college or university. Engineers usually design or build things. Some engineers also use their skills to solve technical problems.
Explanation: